/* ===============================
   GLOBAL FONT – PURE POPPINS
================================ */
[class^="cfp-"],
[class^="cfp-"] * {
    font-family: 'Poppins', sans-serif !important;
}


/* Feature Cards Styles */
.cfp-feature-cards {
    display: grid;
    gap: 2rem;
    margin: 2.5rem 0;
}

.cfp-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.cfp-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.cfp-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Feature Cards Styles */
.cfp-feature-card {
    background: #e6e8ea;
    border: 1px solid #FAFAFA;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: 0.3s ease;
}

.cfp-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    border-color: #eaeaea;
}

/* Green Icon Box */
.cfp-feature-icon-box {
    width: 60px;
    height: 60px;
    background: #00C853;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

/* Feature Card Title */
.cfp-feature-title {
    font-size: 17px;
    font-weight: 700;
    color: #121212;
    margin: 0 0 0.6rem 0;
}

/* Feature Card Description */
.cfp-feature-description {
    font-size: 15px;
    line-height: 1.55;
    color: #555;
    margin: 0;
}

/* ZIG-ZAG EFFECT FOR ROUTE CARDS (DESKTOP ONLY) */
@media (min-width: 769px) {

    .cfp-route-card {
        transition: transform 0.3s ease;
    }

    /* Even cards - down */
    .cfp-route-card:nth-child(even) {
        transform: translateY(25px);
    }

    /* Odd cards - up */
    .cfp-route-card:nth-child(odd) {
        transform: translateY(-25px);
    }

    /* Hover fix (keep zigzag + hover lift) */
    .cfp-route-card:nth-child(even):hover {
        transform: translateY(15px);
    }

    .cfp-route-card:nth-child(odd):hover {
        transform: translateY(-35px);
    }
}
/* ZIG-ZAG FOR MOBILE VIEW */
@media (max-width: 768px) {

    .cfp-route-card:nth-child(odd) {
        transform: translateY(-12px);
    }

    .cfp-route-card:nth-child(even) {
        transform: translateY(12px);
    }

    /* Prevent hover jump on mobile */
    .cfp-route-card:hover {
        transform: translateY(0);
    }
}


/* Single Stats Card Styles */
.cfp-stats-single-card {
    background: #4888E8;
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 2.5rem 0;
    box-shadow: 0 4px 12px rgba(72, 136, 232, 0.2);
    scale: 0.9!important;
}

.cfp-stat-item {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.cfp-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.cfp-star {
    color: #FFD700;
    font-size: 1.8rem;
    margin-left: 0.2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.cfp-stat-label {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.cfp-stat-divider {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 1rem;
    border-radius: 1px;
}

/* Process Steps Styles - PERFECT CENTERING */
.cfp-process-steps {
    margin: 3rem 0;
    text-align: center;
}

.cfp-process-steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 60px;
    flex-wrap: wrap;
}

.cfp-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 260px;
    margin: 0;
}

.cfp-step-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cfp-step-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.cfp-step-title {
    font-size: 17px;
    font-weight: 700;
    color: #121212;
    margin: 0 0 0.8rem 0;
    line-height: 1.3;
}

.cfp-step-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #000000;
    margin: 0;
}

.cfp-step-connector {
    display: none; /* Hide connectors for simplicity */
}

/* Process Features Styles */
.cfp-process-features {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    background: #ECFDF5;
    border-radius: 12px;
    margin: 0 auto;
    max-width: 600px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cfp-process-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    justify-content: center;
}

.cfp-feature-star-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.cfp-feature-text {
    font-size: 0.95rem;
    color: #065F46;
    font-weight: 600;
}

/* Responsive Design for Process Steps - PERFECT CENTERING */
@media (max-width: 1024px) {
    .cfp-process-steps-container {
        gap: 40px;
    }
    
    .cfp-process-step {
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .cfp-process-steps-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .cfp-process-step {
        max-width: 320px;
        width: 100%;
    }
    
    .cfp-process-features {
        max-width: 90%;
        padding: 1.25rem 1.5rem;
    }
    
    .cfp-process-feature-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cfp-process-steps-container {
        gap: 30px;
    }
    
    .cfp-process-step {
        max-width: 280px;
    }
    
    .cfp-process-features {
        max-width: 95%;
        padding: 1rem 1.25rem;
    }
    
    .cfp-feature-text {
        font-size: 0.9rem;
    }
}

/* Routes Cards Styles - PERFECT FOR MOBILE & DESKTOP */
.cfp-routes-cards-container {
    margin: 3rem 0;
    width: 100%;
}

.cfp-routes-cards-scroll-wrapper {
    overflow-x: auto;
    padding: 2rem 0;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Hide scrollbar for cleaner look */
.cfp-routes-cards-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.cfp-routes-cards-scroll-wrapper {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.cfp-routes-cards-scroll {
    display: flex;
    gap: 1.5rem;
    padding: 0.5rem 0;
    min-width: max-content;
}

.cfp-route-card {
    background: #FFFFFF;
    border: 1.5px solid #F1F5F9;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    flex-shrink: 0;
    position: relative;
}

.cfp-route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #4888E8;
}

.cfp-route-image {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cfp-route-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.cfp-route-card:hover .cfp-route-image img {
    transform: scale(1.15);
}

.cfp-route-title {
    font-size: 1rem;
    font-weight: 600;
    color: #121212;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

/* Responsive Design for Routes Cards */
@media (max-width: 1200px) {
    .cfp-routes-cards-scroll {
        gap: 1.25rem;
    }
    
    .cfp-route-card {
        min-width: 150px;
        padding: 1.75rem 1.25rem;
    }
}

@media (max-width: 992px) {
    .cfp-routes-cards-scroll {
        gap: 1rem;
    }
    
    .cfp-route-card {
        min-width: 140px;
        padding: 1.5rem 1rem;
    }
    
    .cfp-route-image {
        width: 65px;
        height: 65px;
        margin-bottom: 1.25rem;
    }
    
    .cfp-route-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .cfp-routes-cards-scroll-wrapper {
        margin: 0 -0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .cfp-routes-cards-scroll {
        gap: 0.875rem;
    }
    
    .cfp-route-card {
        min-width: 130px;
        padding: 1.25rem 0.875rem;
    }
    
    .cfp-route-image {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .cfp-route-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cfp-routes-cards-container {
        margin: 2.5rem 0;
    }
    
    .cfp-routes-cards-scroll-wrapper {
        padding: 1.5rem 0;
    }
    
    .cfp-routes-cards-scroll {
        gap: 0.75rem;
    }
    
    .cfp-route-card {
        min-width: 120px;
        padding: 1rem 0.75rem;
    }
    
    .cfp-route-image {
        width: 55px;
        height: 55px;
        margin-bottom: 0.875rem;
    }
    
    .cfp-route-title {
        font-size: 0.85rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .cfp-routes-cards-scroll {
        gap: 0.5rem;
    }
    
    .cfp-route-card {
        min-width: 110px;
        padding: 0.875rem 0.5rem;
    }
    
    .cfp-route-image {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .cfp-route-title {
        font-size: 0.8rem;
    }
}

/* Existing Responsive CSS remains the same */
@media (max-width: 992px) {
    .cfp-columns-3,
    .cfp-columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cfp-columns-2,
    .cfp-columns-3,
    .cfp-columns-4 {
        grid-template-columns: 1fr;
    }
    
    .cfp-stats-single-card {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .cfp-stat-item {
        padding: 0;
    }
    
    .cfp-stat-divider {
        width: 80%;
        height: 2px;
        margin: 0.5rem 0;
        background: rgba(255, 255, 255, 0.4);
    }
    
    .cfp-stat-number {
        font-size: 2.2rem;
    }
    
    .cfp-star {
        font-size: 1.6rem;
    }
    
    .cfp-process-features {
        max-width: 95%;
        height: auto;
        padding: 1rem;
    }
    
    .cfp-process-feature-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .cfp-step-icon {
        width: 80px;
        height: 80px;
    }
    
    .cfp-step-icon img {
        width: 60px;
        height: 60px;
    }
}

.cfp-feature-cards .cfp-columns-3 {
scale: 0.9!important;
}

/* Feature Cards with CTA Styles */
.cfp-feature-cards-cta {
    margin: 2.5rem 0;
    text-align: center;
}

.cfp-feature-list-card {
    background: #F7FAFD;
    border: 1px solid #E8F0FE;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

.cfp-feature-list-container {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
}

.cfp-feature-list-column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex: 1;
    max-width: 220px;
}

.cfp-feature-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.cfp-feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cfp-feature-text {
    font-size: 0.9rem;
    color: #000000;
    font-weight: 600;
    line-height: 1.4;
}

/* CTA Section Styles - Outside the card */
.cfp-cta-section {
    text-align: center;
}

.cfp-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #4888E8;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(72, 136, 232, 0.3);
}

.cfp-cta-button:hover {
    background: #3a78d8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 136, 232, 0.4);
    color: #ffffff;
}

.cfp-button-text {
    font-size: 1.1rem;
    font-weight: 600;
    font-size:25px;
    color:white!important;
}

.cfp-arrow-icon-home {
    width: 50px !important;
    height: 30px !important;
    object-fit: contain !important;
    transition: transform 0.3s ease !important;
}

.cfp-cta-button:hover .cfp-arrow-icon-home {
    transform: translateX(3px);
}

.cfp-cta-subtext {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

/* Responsive Design for Feature Cards with CTA */
@media (max-width: 768px) {
    .cfp-feature-list-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem 2rem 1rem;
        max-width: none;
    }
    
    .cfp-feature-list-container {
        gap: 2rem;
    }
    
    .cfp-feature-list-column {
        gap: 1rem;
        max-width: none;
    }
    
    .cfp-feature-list-item {
        gap: 0.875rem;
    }
    
    .cfp-feature-text {
        font-size: 1rem;
    }
    
    .cfp-cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .cfp-button-text {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .cfp-feature-list-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cfp-feature-list-column {
        max-width: none;
        width: 100%;
    }
    
    .cfp-feature-list-item {
        justify-content: flex-start;
    }
    
    .cfp-feature-list-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cfp-feature-list-card {
        padding: 1.5rem 1.25rem;
    }
    
    .cfp-feature-list-item {
        gap: 0.75rem;
    }
    
    .cfp-feature-icon {
        width: 20px;
        height: 20px;
    }
    
    .cfp-feature-text {
        font-size: 0.95rem;
    }
    
    .cfp-cta-button {
        padding: 0.75rem 1.5rem;
        gap: 0.5rem;
    }
    
    .cfp-cta-subtext {
        font-size: 0.9rem;
    }
}

/* Feature Cards with CTA Styles */
.cfp-feature-cards-cta {
    margin: 2.5rem 0;
    text-align: center;
}

.cfp-feature-list-card {
    background: #F7FAFD;
    border: 1px solid #E8F0FE;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

.cfp-feature-list-container {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
}

.cfp-feature-list-column {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex: 1;
    max-width: 220px;
}

.cfp-feature-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.cfp-feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


.cfp-feature-text {
    font-size: 0.9rem;
    color: #000000;
    font-weight: 600;
    line-height: 1.4;
}

/* CTA Section Styles - Outside the card */
.cfp-cta-section {
    text-align: center;
}

.cfp-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #4888E8;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(72, 136, 232, 0.3);
}

.cfp-cta-button:hover {
    background: #3a78d8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 136, 232, 0.4);
    color: #ffffff;
}

.cfp-button-text {
    font-size: 1.1rem;
    font-weight: 600;
    font-size:25px;
}

.cfp-arrow-icon-home {
    width: 50px !important;
    height: 30px !important;
    object-fit: contain !important;
    transition: transform 0.3s ease !important;
}


.cfp-cta-button:hover .cfp-arrow-icon-home {
    transform: translateX(3px);
}

.cfp-cta-subtext {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
}

/* Responsive Design for Feature Cards with CTA */
@media (max-width: 768px) {
    .cfp-feature-list-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem 2rem 1rem;
        max-width: none;
    }
    
    .cfp-feature-list-container {
        gap: 2rem;
    }
    
    .cfp-feature-list-column {
        gap: 1rem;
        max-width: none;
    }
    
    .cfp-feature-list-item {
        gap: 0.875rem;
    }
    
    .cfp-feature-text {
        font-size: 1rem;
    }
    
    .cfp-cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .cfp-button-text {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .cfp-feature-list-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cfp-feature-list-column {
        max-width: none;
        width: 100%;
    }
    
    .cfp-feature-list-item {
        justify-content: flex-start;
    }
    
    .cfp-feature-list-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cfp-feature-list-card {
        padding: 1.5rem 1.25rem;
    }
    
    .cfp-feature-list-item {
        gap: 0.75rem;
    }
    
    .cfp-feature-icon {
        width: 20px;
        height: 20px;
    }
    

    
    .cfp-feature-text {
        font-size: 0.95rem;
    }
    
    .cfp-cta-button {
        padding: 0.75rem 1.5rem;
        gap: 0.5rem;
    }
    
    .cfp-cta-subtext {
        font-size: 0.9rem;
    }
}





/* FAQ Accordion Styles */
.cfp-faq-accordion {
    margin: 2.5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cfp-faq-item {
    background: #FFFFFF;
    border: 1px solid #E8F0FE;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cfp-faq-item:last-child {
    margin-bottom: 0;
}

.cfp-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cfp-faq-item:hover .cfp-faq-question {
    background-color: #F7FAFD;
}

.cfp-faq-item.active .cfp-faq-question {
    background-color: #F7FAFD;
}

.cfp-faq-question-text {
    font-size: 21px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.cfp-faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cfp-faq-item.active .cfp-faq-toggle {
    transform: rotate(0deg);
}

.cfp-faq-arrow {
    width: 16px;
    height: 16px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.cfp-faq-answer {
    max-height: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: #FFFFFF;
}

.cfp-faq-item.active .cfp-faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.cfp-faq-answer p {
    font-size: 19px;
    line-height: 1.6;
    color: #000000;
    margin: 0;
    padding-top: 0.5rem;
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .cfp-faq-accordion {
        margin: 2rem 1rem;
    }
    
    .cfp-faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .cfp-faq-item.active .cfp-faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
    
    .cfp-faq-question-text {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .cfp-faq-question {
        padding: 1rem 1.25rem;
    }
    
    .cfp-faq-item.active .cfp-faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
    }
    
    .cfp-faq-question-text {
        font-size: 1rem;
        padding-right: 0.75rem;
    }
    
    .cfp-faq-toggle {
        width: 20px;
        height: 20px;
    }
    
    .cfp-faq-arrow {
        width: 14px;
        height: 14px;
    }
}


/* FORCE ANSWER TO OPEN (override Elementor styles) */
.cfp-faq-item.active .cfp-faq-answer {
    max-height: 800px !important;
    padding: 0 2rem 1.5rem 2rem !important;
    overflow: visible !important;
    opacity: 1 !important;
}

/* Prevent Elementor from overriding our accordion */
.cfp-faq-answer {
    overflow: hidden !important;
    transition: max-height 0.4s ease, padding 0.3s ease !important;
}

/* Ensure toggle click works inside Elementor */
.cfp-faq-question {
    pointer-events: auto !important;
}


.cfp-faq-item.active .cfp-faq-answer {
    max-height: 1000px !important;
    overflow: visible !important;
    padding: 1rem 2rem !important;
    opacity: 1 !important;
}

.cfp-faq-answer {
    transition: max-height .4s ease, padding .4s ease !important;
    display: block !important;
}


.cfp-faq-question {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
}


/* FIX: Correct desktop card width */
.cfp-feature-cards {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* FIX: Reduce wide gap */
.cfp-feature-cards {
    gap: 1.5rem !important;
}

/* FIX: Ensure equal size cards */
.cfp-feature-card {
    width: 100%;
}
