/* ═════════ FRANCHISE PAGE SPECIFIC STYLES ════════ */

/* Page Hero */
.franchise-hero {
    background: url('../images/innerbanner/gallery.jpg');
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
    padding: 60px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    top:70px;
}

.franchise-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.page-hero .eyebrow {
    color: var(--orange);
    font-family: var(--ff-head);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.page-hero .sec-h {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Spacing */
.section {
    padding: 80px 0 20px;
}

/* Franchise Overview */
.franchise-overview {
    background: var(--cream);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-text .eyebrow {
    color: var(--maroon);
}

.overview-text .sec-h {
    margin-bottom: 24px;
}

.overview-text p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.overview-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 120px;
}

.stat-num {
    font-family: var(--ff-head);
    font-size: 2.5rem;
    color: var(--orange);
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-family: var(--ff-head);
    font-size: 2.5rem;
    color: var(--orange);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 8px;
    font-weight: 500;
}

/* Visual Collage */
.visual-collage {
    position: relative;
    height: 550px;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visual-collage .img-main {
    width: 75%;
    height: 70%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    border-radius: var(--r);
    transition: transform 0.8s var(--ease);
}

.visual-collage .img-float {
    width: 55%;
    height: 55%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    border: 8px solid var(--cream);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    transition: transform 0.8s var(--ease);
}

.visual-collage:hover .img-main {
    transform: scale(1.05) translateY(-10px);
}

.visual-collage:hover .img-float {
    transform: scale(1.05) rotate(3deg);
}

.experience-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    background: var(--orange);
    color: var(--maroon-deep);
    padding: 24px 28px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(245, 166, 35, 0.4);
    z-index: 4;
    animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.experience-badge .badge-num {
    display: block;
    font-family: var(--ff-head);
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 6px;
}

.experience-badge .badge-text {
    font-family: var(--ff-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Franchise Section */
.why-franchise {
    background: var(--cream-2);
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header.center .eyebrow {
    color: var(--maroon);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: 22px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.5s var(--ease);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--maroon);
    transition: all 0.5s var(--ease);
}

.feature-card:hover .feature-icon {
    background: var(--orange);
    transform: rotate(-10deg) scale(1.1);
}

.feature-card h3 {
    font-family: var(--ff-head);
    font-size: 1.3rem;
    color: var(--maroon);
    margin-bottom: 14px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

/* Requirements Section */
.franchise-requirements {
    background: var(--white);
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.requirements-visual {
    position: relative;
}

.requirements-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r);
    box-shadow: var(--shadow-lg);
}

.requirements-content .eyebrow {
    color: var(--maroon);
}

.requirements-content .sec-h {
    margin-bottom: 40px;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.requirement-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.req-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.req-content h4 {
    font-family: var(--ff-head);
    font-size: 1.15rem;
    color: var(--maroon);
    margin-bottom: 8px;
}

.req-content p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Investment Section */
.investment-section {
    background: var(--cream);
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.investment-card {
    background: var(--white);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s var(--ease);
    border: 2px solid transparent;
    position: relative;
}

.investment-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.investment-card.featured {
    border-color: var(--orange);
    transform: scale(1.05);
}

.investment-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--orange);
    color: var(--maroon-deep);
    padding: 6px 16px;
    border-radius: 20px;
    font-family: var(--ff-head);
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.invest-header {
    background: linear-gradient(160deg, var(--maroon), var(--maroon-deep));
    color: var(--white);
    padding: 35px 30px;
    text-align: center;
}

.invest-header i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--orange);
}

.invest-header h3 {
    font-family: var(--ff-head);
    font-size: 1.6rem;
    color: var(--white);
}

.invest-body {
    padding: 30px;
}

.invest-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.invest-body ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--ink);
}

.invest-body ul li i {
    color: var(--green);
    font-size: 1.1rem;
}

/* Process Section */
.franchise-process {
    background: var(--cream-2);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 22px;
    box-shadow: var(--shadow);
    transition: all 0.5s var(--ease);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--ff-head);
    font-size: 3rem;
    color: rgba(245, 166, 35, 0.15);
    line-height: 1;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: var(--maroon);
    transition: all 0.5s var(--ease);
}

.process-step:hover .step-icon {
    background: var(--orange);
    transform: rotate(-10deg) scale(1.1);
}

.process-step h3 {
    font-family: var(--ff-head);
    font-size: 1.4rem;
    color: var(--maroon);
    margin-bottom: 14px;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

/* CTA Section */
.franchise-cta {
    background: var(--white);
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(160deg, var(--maroon), var(--maroon-deep));
    border-radius: var(--r);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15), transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.cta-content .eyebrow {
    color: var(--orange);
}

.cta-content .sec-h {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 30px;
}

.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon-deep);
    font-size: 1.3rem;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--orange);
    margin-bottom: 2px;
}

.contact-item a {
    color: var(--white);
    font-size: 1.05rem;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--orange);
}

.cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1199px) {
    .features-grid,
    .investment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .investment-card.featured {
        transform: none;
        order: -1;
    }
}

@media (max-width: 991px) {
    .overview-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .requirements-visual {
        order: -1;
    }
    
    .visual-collage {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
    }
    
    .cta-content p {
        margin: 16px auto 30px;
    }
    
    .cta-contact {
        align-items: center;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn-orange,
    .cta-actions .btn-outline {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 20px 0 0px;
        top:70px;
    }
    
    .section {
        padding: 80px 0 20px;
    }
    
    .features-grid,
    .investment-grid,
    .process-timeline {
        grid-template-columns: 1fr;
		
    }
    .process-timeline{    
	gap: 15px;
    margin-top: 30px;
    }
    .overview-stats {
        justify-content: center;
    }
    
    .stat-box {
        min-width: 140px;
    }
    
    .experience-badge {
        top: 20px;
        right: 20px;
        padding: 18px 22px;
    }
    
    .experience-badge .badge-num {
        font-size: 1.8rem;
    }
    
    .requirements-list {
        gap: 20px;
    }
    
    .requirement-item {
        flex-direction: column;
        text-align: center;
    }
    
    .req-icon {
        margin: 0 auto;
    }
	.page-hero p{display:none;}
	.page-hero .sec-h{
		font-size:23px;
	}
	.section-header.center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px;
}
}

@media (max-width: 575px) {
    .visual-collage .img-main,
    .visual-collage .img-float {
        border: 4px solid var(--cream);
    }
    
    .cta-box {
        padding: 40px 25px;
    }
    
    .cta-content .sec-h {
        font-size: 1.8rem;
    }
    
    .process-step {
        padding: 30px 20px;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
	.page-hero p{display:none;}
	.page-hero .sec-h{
		font-size:28px;
	}
	.section-header.center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px;
    }
    .page-hero .eyebrow{
        letter-spacing:0px!important;
    }
}