/* =========================================
   FRANCHISE BENEFITS SECTION
========================================= */

.franchise-benefits-section {

    padding: 100px 0;

    background: linear-gradient(to bottom,
            #ffffff,
            #f8fff5);
}


/* SECTION TITLE */

.section-heading {

    max-width: 800px;

    margin: auto;
}

.section-badge {

    display: inline-block;

    padding: 10px 24px;

    background: #edf9ee;

    color: #2E7D32;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 20px;
}

.section-heading h2 {

    font-size: 40px;

    font-weight: 800;

    color: #111;

    margin-bottom: 20px;
}

.section-heading h2 span {

    color: #2E7D32;
}

.section-heading p {

    color: #666;

    line-height: 1.9;

    font-size: 17px;
}



/* CARD */

.benefit-card {

    background: #fff;

    padding: 40px 30px;

    border-radius: 25px;

    text-align: center;

    height: 100%;

    position: relative;

    overflow: hidden;

    transition: .4s;

    border: 1px solid #eef3ec;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.benefit-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 50px rgba(0, 0, 0, .08);
}

.benefit-card::before {

    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    background: rgba(46, 125, 50, .05);

    border-radius: 50%;

    top: -40px;
    right: -40px;
}



/* ICON */

.icon-box {

    width: 72px;
    height: 72px;

    margin: auto auto 25px;

    border-radius: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg,
            #2E7D32,
            #FF8F00);

    color: #fff;

    font-size: 24px;

    box-shadow: 0 10px 25px rgba(46, 125, 50, .20);
}

.benefit-card h4 {

    font-size: 24px;

    font-weight: 700;

    margin-bottom: 15px;

    color: #111;
}

.benefit-card p {

    color: #666;

    line-height: 1.8;

    margin: 0;
}



/* RESPONSIVE */

@media(max-width:991px) {

    .franchise-benefits-section {

        padding: 80px 0;
    }

    .section-heading h2 {

        font-size: 36px;
    }
}

@media(max-width:768px) {

    .section-heading h2 {

        font-size: 32px;
    }

    .benefit-card {

        padding: 35px 25px;
    }

    .icon-box {

        width: 75px;
        height: 75px;

        font-size: 28px;
    }
}

@media(max-width:576px) {

    .section-heading h2 {

        font-size: 26px;
    }

    .section-heading p {

        font-size: 15px;
    }
}

.franchise-models-section {

    padding: 100px 0;

    background: #fff;
}

.franchise-plan {

    background: #fff;

    border-radius: 30px;

    padding: 40px 30px;

    text-align: center;

    position: relative;

    height: 100%;

    border: 1px solid #e8efe8;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

    transition: .4s;
}

.franchise-plan:hover {

    transform: translateY(-12px);
}

.featured {

    background: linear-gradient(135deg,
            #2E7D32,
            #3d9242);

    color: #fff;

    transform: scale(1.05);
}

.featured h3,
.featured .investment,
.featured .location,
.featured ul li {

    color: #fff;
}

.popular {

    position: absolute;

    top: -15px;
    left: 50%;

    transform: translateX(-50%);

    background: #FF8F00;

    color: #fff;

    padding: 8px 18px;

    border-radius: 50px;

    font-size: 12px;

    font-weight: 700;
}

.plan-tag {

    display: inline-block;

    background: #edf9ee;

    color: #2E7D32;

    padding: 8px 18px;

    border-radius: 50px;

    margin-bottom: 20px;

    font-size: 14px;

    font-weight: 600;
}

.featured .plan-tag {

    background: rgba(255, 255, 255, .15);

    color: #fff;
}

.franchise-plan h3 {

    font-size: 30px;

    font-weight: 700;

    margin-bottom: 15px;
}

.investment {

    font-size: 42px;

    font-weight: 800;

    color: #2E7D32;

    margin-bottom: 10px;
}

.location {

    color: #666;

    margin-bottom: 25px;
}

.franchise-plan ul {

    list-style: none;

    padding: 0;

    margin: 0 0 30px;
}

.franchise-plan ul li {

    padding: 10px 0;

    color: #555;
}

.plan-btn {

    display: inline-block;

    padding: 14px 35px;

    border-radius: 50px;

    text-decoration: none;

    background: linear-gradient(135deg,
            #2E7D32,
            #FF8F00);

    color: #fff;

    font-weight: 600;
}

.featured .plan-btn {

    background: #fff;

    color: #2E7D32;
}

@media(max-width:991px) {

    .featured {

        transform: none;
    }
}

/* =========================================
   FRANCHISE JOURNEY TIMELINE
========================================= */

.franchise-journey-section {

    padding: 100px 0;

    background: #fff;

    position: relative;
}

.journey-header {

    max-width: 800px;

    margin: auto auto 80px;
}

.journey-badge {

    display: inline-block;

    padding: 10px 22px;

    background: #edf9ee;

    color: #2E7D32;

    border-radius: 50px;

    font-weight: 600;

    margin-bottom: 20px;
}

.journey-header h2 {

    font-size: 40px;

    font-weight: 800;

    margin-bottom: 20px;
}

.journey-header h2 span {

    color: #2E7D32;
}

.journey-header p {

    color: #666;

    line-height: 1.9;
}



/* TIMELINE */

.journey-timeline {

    position: relative;

    max-width: 1000px;

    margin: auto;
}

.journey-timeline::before {

    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    width: 4px;

    height: 100%;

    background: linear-gradient(to bottom,
            #2E7D32,
            #FF8F00);

    transform: translateX(-50%);
}



/* ITEM */

.timeline-item {

    width: 50%;

    position: relative;

    padding: 0 50px 60px;
}

.timeline-item:nth-child(odd) {

    left: 0;

    text-align: right;
}

.timeline-item:nth-child(even) {

    left: 50%;
}

.timeline-content {

    background: #fff;

    padding: 25px;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

    transition: .4s;
}

.timeline-content:hover {

    transform: translateY(-8px);
}

.timeline-content span {

    color: #FF8F00;

    font-size: 14px;

    font-weight: 700;
}

.timeline-content h4 {

    margin: 10px 0;

    font-weight: 700;
}

.timeline-content p {

    color: #666;

    margin: 0;
}



/* ICON */

.timeline-icon {

    position: absolute;

    top: 20px;

    width: 70px;
    height: 70px;

    background: linear-gradient(135deg,
            #2E7D32,
            #FF8F00);

    color: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 26px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.timeline-item:nth-child(odd) .timeline-icon {

    right: -35px;
}

.timeline-item:nth-child(even) .timeline-icon {

    left: -35px;
}



/* MOBILE */

@media(max-width:991px) {

    .journey-header h2 {

        font-size: 36px;
    }

    .journey-timeline::before {

        left: 35px;
    }

    .timeline-item {

        width: 100%;

        left: 0 !important;

        text-align: left !important;

        padding-left: 90px;

        padding-right: 0;
    }

    .timeline-icon {

        left: 0 !important;
    }
}

@media(max-width:768px) {

    .franchise-journey-section {

        padding: 70px 0;
    }

    .journey-header h2 {

        font-size: 30px;
    }

    .timeline-content {

        padding: 20px;
    }
}

@media(max-width:768px) {

    .journey-header h2 {

        font-size: 26px;
    }
}

/* =========================================
   FAQ + CTA SECTION
========================================= */

.franchise-faq-cta {

    padding: 100px 0;

    background: #f8fff5;
}

.section-badge,
.cta-badge {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 20px;
}

.section-badge {

    background: #edf9ee;

    color: #2E7D32;
}

.faq-wrapper h2 {

    font-size: 36px;

    font-weight: 800;

    margin-bottom: 15px;
}

.faq-wrapper p {

    color: #666;

    margin-bottom: 30px;

    line-height: 1.8;
}


/* FAQ */

.custom-faq .accordion-item {

    border: none;

    margin-bottom: 15px;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.custom-faq .accordion-button {

    font-weight: 600;

    padding: 20px;

    box-shadow: none;
}

.custom-faq .accordion-button:not(.collapsed) {

    background: #2E7D32;

    color: #fff;
}

.custom-faq .accordion-body {

    padding: 20px;

    color: #666;
}



/* CTA CARD */

.franchise-cta-card {

    position: relative;

    min-height: 650px;

    border-radius: 30px;

    overflow: hidden;

    background: url('images/franchise-cta-bg.jpg');

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

    padding: 50px;
}

.cta-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(rgba(0, 0, 0, .65),
            rgba(0, 0, 0, .45));
}

.cta-content {

    position: relative;

    z-index: 2;

    color: #fff;
}

.cta-badge {

    background: rgba(255, 255, 255, .15);

    color: #fff;
}

.cta-content h2 {

    font-size: 36px;

    font-weight: 800;

    margin-bottom: 20px;
}

.cta-content p {

    line-height: 1.9;

    margin-bottom: 30px;
}



/* BUTTONS */

.cta-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.btn-apply {

    background: #2E7D32;

    color: #fff;

    padding: 15px 30px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;
}

.btn-meeting {

    background: #FF8F00;

    color: #fff;

    padding: 15px 30px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;
}

.btn-apply:hover,
.btn-meeting:hover {

    color: #fff;
}



/* RESPONSIVE */

@media(max-width:991px) {

    .faq-wrapper {

        margin-bottom: 40px;
    }

    .franchise-cta-card {

        min-height: 500px;
    }

    .cta-content h2 {

        font-size: 32px;
    }
}

@media(max-width:768px) {

    .franchise-faq-cta {

        padding: 70px 0;
    }

    .faq-wrapper h2 {

        font-size: 30px;
    }

    .cta-content h2 {

        font-size: 28px;
    }

    .franchise-cta-card {

        padding: 35px;
    }
}

@media(max-width:576px) {

    .cta-buttons {

        flex-direction: column;
    }

    .btn-apply,
    .btn-meeting {

        width: 100%;

        text-align: center;
    }

    .faq-wrapper h2 {

        font-size: 26px;
    }

    .cta-content h2 {

        font-size: 25px;
    }
}