/* 
   Premium Wellness Design System
   Colors: Emerald (#044B36), Gold (#D4AF37), Champagne (#F4EBD0)
*/

:root {
    --primary: #044B36;
    --secondary: #D4AF37;
    --accent: #F4EBD0;
    --bg-light: #fdfaf5;
    --text-dark: #121212;
    --text-gray: #4a4a4a;
    --white: #ffffff;
    --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@font-face {
    font-family: 'Kokila';
    src: url('kokila.woff2') format('woff2'),
        url('kokila.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Kokila';
    src: url('kokilab.woff2') format('woff2'),
        url('kokilab.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Kokila';
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Kokila';
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.container.narrow {
    max-width: 850px;
}

.section {
    padding: 120px 0;
}

.bg-emerald {
    background-color: var(--primary);
}

.bg-champagne {
    background-color: var(--accent);
}

.bg-light {
    background-color: var(--bg-light);
}

.text-white {
    color: var(--white);
}

.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.w-100 {
    width: 100%;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 35px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    background: white;
    padding: 20px 0;
    backdrop-filter: blur(10px);

}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 80px;
    width: auto;
}

.logo-text {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
}

.logo-text span {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    color: #C6A75E;
    /* gold */
}


.nav-links a {
    color: #c27e35;
    text-decoration: none;
    margin-left: 35px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    font-family: "Segoe UI", Arial, sans-serif;
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    background: url('../images/Hero-image.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;

}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    text-align: auto;
    margin-right: 550px;
    margin-bottom: -50px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.hero h1 {

    font-size: 68px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Kokila';

}

.lead {
    font-size: 18px;
    margin-bottom: 25px;

}

.description {
    display: block;
    margin-bottom: 40px;
    font-size: 18px;
    color: #e0e0e0;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.btn-primary {
    /* background: #c8a24d; */
    color: #000;
}

.btn-secondary {
    border: 1px solid #fff;
    color: #fff;
}


/* GOLD PRIMARY BUTTON */
.btn-primary {
    background: #d4af37;
    /* background: #c27e35; */
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-4px);

    background: #c27e35;
}

/* OUTLINE BUTTON */
.btn-secondary {
    border: 1px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000;
    transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 42px;
    }

    .hero-content {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 0;
    }

    .hero {
        min-height: 700px;
        padding: 60px 0;
        align-items: center;
    }
}


/**************  oppurtunity  *********************/


.opportunity-section {
    padding: 100px 20px 40px;
    background: white;
    color: #ffffff;
}

/* Split Layout */
.opportunity-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image Styling */
.opportunity-image img {
    width: 100%;
    border-radius: 20px;

    transition: 0.5s ease;
}

.opportunity-image img:hover {
    transform: scale(1.03);
}

/* Content Styling */
.opportunity-content {
    max-width: 550px;
}

.opportunity-content h1 {
    font-size: 50px;
    margin-bottom: 40px;
    font-family: 'Kokila';
    color: #c27e35;
}

.opportunity-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #030303;
    margin-bottom: 50px;
    margin-top: -40px;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Highlight Box */
.highlight-box {
    margin-top: 25px;
    padding: 20px 25px;

    border-left: 4px solid #d4af37;
    border-radius: 8px;
    font-size: 17px;
    color: #d4af37;
    font-weight: 500;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Responsive */
@media (max-width: 992px) {
    .opportunity-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .opportunity-content {
        max-width: 100%;
    }
}






/*****************  WHY THIS MODEL - PREMIUM VERSION  *********************/

.model-section {
    padding: 60px 20px 120px;
    background: white;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated Gold Glow Background */
.model-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;

    top: -200px;
    left: -200px;
    animation: floatGlow 8s ease-in-out infinite alternate;
}

.model-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;

    bottom: -150px;
    right: -150px;
    animation: floatGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(40px);
    }
}

/* Section Header */
.section-header h2 {
    font-size: 46px;

    margin-bottom: 15px;
    color: #c27e35;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 18px;
    color: #090909;
    margin-bottom: 70px;
}

/* Grid Layout */
.model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    position: relative;
    z-index: 2;
}

/* Card Style */
.model-card {
    padding: 45px 30px;
    border-radius: 20px;
    background: white;
    border: 1px solid #c27e35;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Gold hover glow effect */
.model-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(120deg, transparent, rgba(205, 144, 13, 0.15), transparent); */
    top: -100%;
    left: 0;
    transition: 0.6s;
}

.model-card:hover::before {
    top: 100%;
}

.model-card:hover {
    transform: translateY(-12px);
    border-color: #cd900d;
    /* box-shadow: 0 20px 50px rgba(205, 144, 13, 0.3); */
}

/* Icon */
.model-card .icon {
    font-size: 42px;
    margin-bottom: 25px;
    color: #c8a24d;
    /* Premium Gold */
    transition: all 0.4s ease;
    /* filter: drop-shadow(0 5px 15px rgba(200, 162, 77, 0.3)); */
    display: inline-block;
}

/* .model-card:hover .icon {
    transform: translateY(-8px) scale(1.15);
    color: #ffffff;
    filter: drop-shadow(0 8px 25px rgba(255, 255, 255, 0.4));
} */

/* Title */
.model-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #c8a24d;
}

/* Text */
.model-card p {
    font-size: 16px;
    font-weight: 400px;
    color: black;
    line-height: 1.5;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Responsive */
@media (max-width: 992px) {
    .model-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .model-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 34px;
    }
}




/*************************  franchise  rights ***************************/
/************ FRANCHISE RIGHTS SECTION ************/
.franchise-rights {
    padding: 120px 0 60px;
    background: #f9f8f5;

}

/* Layout */
.rights-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 70px;
    margin-bottom: -20px;
    margin-top: -40px;
}

/* Tag */
.section-tag {
    display: inline-block;
    background: #fdf7ea;
    color: #c8a24d;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Heading */
.rights-content h2 {
    font-size: 50px;
    font-weight: 600;
    color: #c27e35;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: 'Kokila';
}

.subtitle {
    font-size: 20px;
    color: #020202;
    margin-bottom: 40px;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* List Items */
.right-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

/* Icon Box */
.icon-box {
    width: 65px;
    height: 65px;
    background: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #c8a24d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1.5px solid #f1f1f1;
    flex-shrink: 0;
}

/* Text */
.right-item h4 {
    font-size: 30px;
    color: #d0ab56;
    margin-bottom: 8px;
    font-weight: 450;
    font-family: 'Kokila';
}

.right-item p {
    color: #020202;
    font-size: 16px;
    line-height: 1.6;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Image Styling */
.rights-image img {
    width: 100%;
    height: 500px;
    border-radius: 24px;

}

/* Responsive */
@media (max-width: 992px) {
    .rights-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .right-item {
        justify-content: center;
        text-align: left;
    }
}




/* Section Title */
.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
}

.section-title.light {
    color: var(--white);
}

/* Grid Utils */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Content Box */
.premium-list {
    list-style: none;
    margin-top: 40px;
}

.premium-list li {
    padding: 15px 0 15px 40px;
    border-bottom: 1px solid #efefef;
    position: relative;
}

.premium-list li::before {
    content: '◈';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 20px;
}

.image-card {
    position: relative;
    padding-bottom: 20px;
    padding-right: 20px;
}

.image-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--secondary);
    z-index: -1;
    transform: translate(20px, 20px);
}

.image-card img {
    width: 100%;
    display: block;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

/* Cards & Glassmorphism */
.feature-card {
    padding: 60px 40px;
    border-radius: 4px;
    background: var(--white);
    transition: var(--transition);
}

.feature-card.glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-card .icon {
    font-size: 40px;
    margin-bottom: 25px;
    display: block;
}

.feature-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--secondary);
}

/************************  Revenue share **********************/

/************ REVENUE SECTION ************/

.earnings-section {
    padding: 60px 0 120px;
    background: #fff;
}

.section-header h2 {
    font-size: 44px;
    font-weight: 700;
    color: #0f5132;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 70px;
}

/* Grid */
.earnings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Card */
.earnings-card {
    background: #d0ab56;
    padding: 55px;
    border-radius: 24px;
    border-top: 5px solid #020202;

}

.earnings-card h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 25px;
    font-family: 'Kokila';
}

.earnings-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.earnings-card ul li {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #020202;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Gold Highlight Box */
.highlight-box {
    background: #fdf7ea;
    padding: 18px 20px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #020202;
    font-family: "Segoe UI", Arial, sans-serif;
}

.highlight-box span {
    color: #c27e35;
    font-size: 25px;

}

/* Premium Second Card */
.premium {
    border-top: 5px solid #020202;
}

/* Responsive */
@media (max-width: 992px) {
    .earnings-grid {
        grid-template-columns: 1fr;
    }
}





/* .revenue-grid {
    background: var(--white);
    padding: 80px;
    border-radius: 0;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.04);
}

.revenue-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
} */

.guarantee-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin: 60px 0;
}

.box-item .val {
    font-size: 84px;
    font-weight: 700;
    display: block;
    line-height: 1;
    color: var(--primary);
}

.box-item .lab {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-gray);
}

.box-divider {
    font-weight: 700;
    font-size: 24px;
    color: #ddd;
    font-style: italic;
}

.box-item.highlight .val {
    color: var(--secondary);
}

/* Stats Premium */
.stats-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--primary);
    padding: 4px;
    gap: 4px;
}

.stat-item {
    background: var(--white);
    padding: 50px 20px;
    text-align: center;
}

.stat-item.highlight {
    background: var(--secondary);
}

.stat-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    display: block;
    color: var(--primary);
}

.stat-item.highlight .stat-label {
    color: rgba(0, 0, 0, 0.6);
}

/* Role & Support Side-by-Side */
.box-shadow-section {
    box-shadow: 0 60px 140px rgba(0, 0, 0, 0.1);
}

.column-white {
    background: var(--white);
    padding: 80px;
}

.column-emerald {
    background: black;
    padding: 80px;
}

.column-title {
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
    font-family: 'Kokila';
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary);
}

.check-list {
    list-style: none;
}

.check-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 20px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}



/****************************  snapchat   ************************* */
.financial-section {
    position: relative;
    padding: 140px 0;
    background: url('../images/Banner3.jpg') center/cover no-repeat;
}

.financial-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(249,248,245,0.95); */
}

.container {
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 50px;
    font-weight: 600px;
    color: #c27e35;
    margin-bottom: 10px;
    font-family: 'Kokila';
}

.section-header p {
    font-size: 20px;
    color: #020202;
    margin-bottom: 70px;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Minimalist Financial Section */
.financial-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.financial-section .section-header h2 {
    color: #c27e35;
    font-size: 50px;
    font-family: 'Kokila';
}

.financial-section .section-header p {
    color: white;
    font-size: 18px;
    margin-top: -10px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.financial-grid.minimalist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.financial-grid.minimalist .financial-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;

    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.financial-grid.minimalist .financial-card:hover {
    transform: translateY(-5px);
    border-color: #c8a24d;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.financial-grid.minimalist .card-icon {
    font-size: 45px;
    color: #c8a24d;
    margin-bottom: 20px;
}

.financial-grid.minimalist .card-body h4 {
    font-size: 18px;
    color: #020202;

    letter-spacing: 1.5px;
    margin-bottom: 5px;
    font-weight: 600;
    font-family: "Segoe UI", Arial, sans-serif;
}

.financial-grid.minimalist .card-body p {
    font-size: 15px;
    color: black;
    margin-bottom: 15px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.financial-grid.minimalist .card-body .value {
    font-size: 34px;
    color: #c27e35;
    font-weight: 700;
    font-family: 'Kokila';
}

.financial-grid.minimalist .financial-card.highlight {
    background: white;
    border-color: #044b36;
}

.financial-grid.minimalist .financial-card.highlight .card-icon {
    color: #c8a24d;
}

.financial-grid.minimalist .financial-card.highlight h4 {
    color: black;
}

.financial-grid.minimalist .financial-card.highlight p {
    color: black;
}

.financial-grid.minimalist .financial-card.highlight .value {
    color: #c27e35;
    font-family: 'Kokila';
}

.financial-grid.minimalist .card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #c8a24d;
    color: #fff;
    font-size: 9px;
    padding: 3px 10px;
    border-radius: 4px;
}

/* Responsive adjustment for financial section background */
.financial-section {
    background: url('../images/Banner3.jpg') center/cover no-repeat;
}

.section-header h2 {
    color: #c27e35;
}

.section-header p {
    color: rgba(255, 255, 255, 0.6);
}





/***************************  investor form   **************************** */

/************************   FRANCHISE HERO & PREMIUM FORM   ************************/
.franchise-hero {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 550px;
    align-items: stretch;
    gap: 60px;
}

.hero-visual {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    min-height: 550px;

}

.franchise-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-visual:hover .franchise-side-img {
    transform: scale(1.08);
}

.hero-form-card {
    background: #ffffff;
    padding: 60px 45px;
    border-radius: 40px;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.08);
    border: 1px solid #f2f2f2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-title {
    font-size: 38px;
    color: #044b36;
    margin-bottom: 10px;
    font-family: 'Kokila';
    font-weight: 700;
}

.form-subtitle {
    color: #888;
    font-size: 15px;
    margin-bottom: 35px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 22px;
    border-radius: 15px;
    border: 1.5px solid #eee;
    background: #fbfbfb;
    font-size: 15px;
    transition: all 0.3s ease;
    color: #333;
    font-family: "Segoe UI", Arial, sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #c8a24d;
    background: #fff;
    outline: none;
    /* box-shadow: 0 0 0 5px rgba(200, 162, 77, 0.1); */
    font-family: "Segoe UI", Arial, sans-serif;
}

.apply-btn {
    width: 100%;
    padding: 20px;
    background: #d4af37;
    color: #fff;
    border: none;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 15px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.apply-btn:hover {
    background: #c27e35;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(4, 75, 54, 0.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-visual {
        min-height: 400px;
    }

    .hero-form-card {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/*      footer */


.footer {
    background: #020202;
    padding: 10px 0 10px;
    color: #d1d5db;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer .logo img {
    height: 190px;
    width: auto;
}


.logo-text h4 {
    margin: 0;
    font-size: 22px;
    color: #c8a24d;
    letter-spacing: 2px;
}

.logo-text span {
    font-size: 12px;
    letter-spacing: 3px;
    color: #ffffff;
}


.footer-tagline {
    margin-top: -20px;
    font-size: 18px;
    color: #f6f7fa;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Social Icons */
/* Social Container */
.social-icons {
    display: flex;
    gap: 18px;

}

.social-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Instagram */
.social-icons a:nth-child(1):hover {
    background: #c8a24d;
    transform: translateY(-4px);
}

/* Facebook */
.social-icons a:nth-child(2):hover {
    background: #c8a24d;
    transform: translateY(-4px);
}

/* LinkedIn */
.social-icons a:nth-child(3):hover {
    background: #c8a24d;
    transform: translateY(-4px);
}

/* Glow Effect */
.social-icons a:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* optional gold hover */





.footer-social a {
    width: auto;
    height: 4px;

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 22px;
    transition: all 0.3s ease;
}

/* Gold Hover Effect */
.footer-social a:hover {
    background: #c8a24d;
    color: #000;
    transform: translateY(-5px);
    /* box-shadow: 0 10px 25px rgba(200, 162, 77, 0.4); */
}

/* Bottom */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 18px;
    color: #9ca3af;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}





/*     limited section           */
.limited-section {
    position: relative;
    padding: 160px 0;
    color: #ffffff;
    overflow: hidden;

    /* Background Image */
    background:

        url("../images/Brand.jpg") center/cover no-repeat;
}

/* Optional Soft Spotlight Effect */

.limited-overlay {
    position: absolute;
    inset: 0;

    pointer-events: none;
}

/* Tag */
.limited-tag {
    display: inline-block;

    color: #c8a24d;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Heading */
.limited-section h2 {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Kokila';
}

/* Subtitle */
.limited-subtitle {
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 18px;
    line-height: 1.7;
    color: #e5e7eb;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Buttons */
.limited-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Base Button */
.btn {
    padding: 16px 34px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    color: white;
}


/* Gold Button */
.btn-gold {
    background: #d4af37;
    color: white;
}

.btn-gold:hover {
    background: #c27e35;
    /* background: #c8a24d; */
    transform: translateY(-3px);


}

/* Outline Gold */
.btn-outline {
    border: 2px solid #c8a24d;
    color: #c8a24d;
}

.btn-outline:hover {
    background: #c8a24d;
    color: #000;
}

/* Light Outline */
.btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #0f5132;
}

/* Responsive */
@media (max-width: 768px) {
    .limited-section {
        padding: 100px 20px;
        text-align: center;
    }

    .limited-section h2 {
        font-size: 38px;
    }

    .limited-subtitle {
        font-size: 17px;
    }
}


/* Master Advantage Section - Minimalist */
.master-advantage {
    padding: 100px 0;
    background: #ffffff;
    color: #333;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.master-advantage .section-header h2 {
    color: #044b36;
    font-size: 48px;
    margin-bottom: 15px;
}

.master-advantage .section-header p {
    color: #666;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    background: #fbfbfb;
    border: 1px solid #eee;
    padding: 50px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantage-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    border-color: #c8a24d;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.advantage-icon {
    font-size: 42px;
    color: #c8a24d;
    margin-bottom: 25px;
}

.advantage-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-family: 'Kokila';
}

.advantage-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .master-advantage {
        padding: 80px 0;
    }

    .master-advantage .section-header h2 {
        font-size: 38px;
    }
}


/* form */


/* ========================================
   ENHANCED MOBILE RESPONSIVE STYLES
   ======================================== */

/* Mobile Navigation - Hamburger Menu */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(2, 2, 2, 0.98);
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.4s ease;
        z-index: 999;
        /* box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3); */
    }

    .nav-links.active {
        right: 0;
        display: flex;
    }

    .nav-links a {
        margin: 0 0 25px 0;
        font-size: 18px;
        color: #fff !important;
        padding: 12px 0;
        /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
    }

    .navbar {
        padding: 20px 0;
    }

    .logo-img {
        height: 55px;
    }
}

/* Hero BG img - hidden on desktop, always hidden by default */
.hero-bg-img {
    display: none;
}

/* ============================================
   HERO SECTION - PREMIUM MOBILE (Centered Background)
   ============================================ */
@media (max-width: 768px) {
    .hero {
        /* Full background image */
        background: url('../images/Hero-image.jpg') center/cover no-repeat !important;
        background-position: 65% center !important;
        /* Shift right slightly to show arch */
        min-height: 500px;
        height: auto;
        padding: 100px 0 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    /* Hide the absolute image hack */
    .hero-bg-img {
        display: none !important;
    }

    /* Strong dark overlay everywhere so white text pops */
    .hero-overlay {
        background: rgba(10, 5, 2, 0.75) !important;
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    /* Text container - on top of overlay */
    .hero .container {
        padding: 0 20px;
        background: transparent;
        position: relative;
        z-index: 3;
        width: 100%;
    }

    /* Remove the gold bar we added previously */
    .hero .container::before {
        display: none;
    }

    .hero-content {
        margin: 0 auto;
        margin-bottom: 0;
        max-width: 100%;
        text-align: center;
        padding: 0;
    }



    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 20px;
        letter-spacing: 0.5px;
    }

    .hero h1 br {
        display: none;
    }

    .lead {
        font-size: 15px;
        margin-bottom: 16px;
        color: #ffffff;
        line-height: 1.6;
    }

    .lead br {
        display: none;
    }

    .description {
        font-size: 14px;
        margin-bottom: 35px;
        color: #e0e0e0;
        line-height: 1.6;
    }

    .description br {
        display: none;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-btns .btn {
        padding: 15px 35px;
        font-size: 14px;
        border-radius: 50px;
        letter-spacing: 0.5px;
        width: auto;
        min-width: 240px;
    }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
    .hero {
        min-height: 480px;
        padding: 90px 0 50px;
        background-position: 85% center !important;
    }

    .hero-overlay {
        background: rgba(10, 5, 2, 0.8) !important;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 1.35;
       margin-top: 30px;
        margin-bottom: 20px;
    }

    .lead {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .description {
        font-size: 13.5px;
        margin-bottom: 30px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-btns .btn {
        padding: 14px 30px;
        font-size: 14px;
        min-width: 220px;
    }

    .hero .container {
        padding: 0 18px;
    }
}
/* Extra Small (≤360px) */
@media (max-width: 360px) {
    .hero {
        min-height: 420px;
        padding: 80px 0 40px;
    }

    .hero h1 {
        font-size: 28px;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .hero-btns .btn {
        min-width: 200px;
        padding: 14px 25px;
        font-size: 13.5px;
    }
}

/* =====================================
   OPPORTUNITY SECTION - MOBILE
   ===================================== */
@media (max-width: 768px) {
    .opportunity-section {
        padding: 55px 18px 35px;
    }

    .opportunity-wrapper {
        gap: 30px;
    }

    .opportunity-image {
        margin-bottom: 10px;
    }

    .opportunity-image img {
        border-radius: 14px;
    }

    .opportunity-content h1 {
        font-size: 36px;
        margin-bottom: 20px;
        margin-top: 0;
        text-align: center;
    }

    .opportunity-content p {
        font-size: 16px;
        margin-bottom: 20px;
        margin-top: 0;
        text-align: center;
    }

    .highlight-box {
        font-size: 15px;
        padding: 16px 18px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .opportunity-content h1 {
        font-size: 30px;
    }

    .opportunity-content p {
        font-size: 15px;
    }
}

/* =====================================
   WHY THIS MODEL SECTION - MOBILE
   ===================================== */
@media (max-width: 768px) {
    .model-section {
        padding: 50px 18px 65px;
    }

    .section-header h2 {
        font-size: 34px;
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 16px !important;
        margin-bottom: 35px !important;
    }

    .model-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .model-card {
        padding: 28px 18px;
    }

    .model-card .icon {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .model-card h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .model-card p {
        font-size: 13.5px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .model-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .model-card {
        padding: 26px 18px;
    }
}

/* =====================================
   FRANCHISE RIGHTS SECTION - MOBILE
   ===================================== */
@media (max-width: 768px) {
    .franchise-rights {
        padding: 55px 18px 40px;
    }

    .rights-wrapper {
        gap: 35px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .rights-content h2 {
        font-size: 34px;
        text-align: center;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 16px;
        text-align: center;
        margin-bottom: 30px;
    }

    .right-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
        margin-bottom: 22px;
    }

    .icon-box {
        width: 52px;
        height: 52px;
        font-size: 20px;
        flex-shrink: 0;
        border-radius: 14px;
    }

    .right-item h4 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .right-item p {
        font-size: 15px;
    }

    .rights-image img {
        height: 260px;
        object-fit: cover;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .rights-content h2 {
        font-size: 28px;
    }

    .right-item h4 {
        font-size: 18px;
    }

    .rights-image img {
        height: 220px;
    }
}

/* =====================================
   EARNINGS SECTION - MOBILE
   ===================================== */
@media (max-width: 768px) {
    .earnings-section {
        padding: 50px 18px 70px;
    }

    .earnings-grid {
        gap: 22px;
    }

    .earnings-card {
        padding: 32px 22px;
        border-radius: 18px;
    }

    .earnings-card h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .earnings-card ul li {
        font-size: 15.5px;
        margin-bottom: 12px;
    }

    .highlight-box {
        font-size: 15px;
        padding: 14px 16px;
    }

    .highlight-box span {
        font-size: 20px;
        display: block;
        margin-top: 4px;
    }
}

@media (max-width: 480px) {
    .earnings-card {
        padding: 26px 18px;
    }

    .earnings-card h3 {
        font-size: 18px;
    }
}

/* =====================================
   FINANCIAL SNAPSHOT SECTION - MOBILE
   ===================================== */
@media (max-width: 768px) {
    .financial-section {
        padding: 60px 18px 60px;
        background-size: cover;
        background-position: center;
    }

    .financial-section .section-header h2 {
        font-size: 36px;
    }

    .financial-section .section-header p {
        font-size: 16px;
        margin-top: -5px;
    }

    /* 2-column grid on tablets */
    .financial-grid.minimalist {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 30px;
    }

    .financial-grid.minimalist .financial-card {
        padding: 28px 18px;
        border-radius: 14px;
    }

    .financial-grid.minimalist .card-icon {
        font-size: 36px;
        margin-bottom: 14px;
    }

    .financial-grid.minimalist .card-body h4 {
        font-size: 15px;
        letter-spacing: 1px;
    }

    .financial-grid.minimalist .card-body p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .financial-grid.minimalist .card-body .value {
        font-size: 28px;
    }
}

@media (max-width: 480px) {

    /* Drop to 1-column on small phones */
    .financial-grid.minimalist {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .financial-section .section-header h2 {
        font-size: 28px;
    }

    .financial-section .section-header p {
        font-size: 15px;
    }

    .financial-grid.minimalist .financial-card {
        padding: 24px 18px;
    }

    .financial-grid.minimalist .card-body .value {
        font-size: 26px;
    }
}

/* =====================================
   ROLE & SUPPORT SECTION - MOBILE
   ===================================== */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .column-white,
    .column-emerald {
        padding: 45px 25px;
    }

    .column-title {
        font-size: 26px;
        margin-bottom: 25px;
        text-align: center;
    }

    .column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .check-list li {
        font-size: 16px;
        padding: 10px 0 10px 30px;
    }
}

@media (max-width: 480px) {

    .column-white,
    .column-emerald {
        padding: 35px 20px;
    }

    .column-title {
        font-size: 23px;
    }

    .check-list li {
        font-size: 15px;
        padding: 9px 0 9px 28px;
    }
}

/* =====================================
   LIMITED AVAILABILITY SECTION - MOBILE
   ===================================== */
@media (max-width: 768px) {
    .limited-section {
        padding: 80px 20px;
    }

    .limited-section h2 {
        font-size: 34px;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .limited-subtitle {
        font-size: 16px;
        margin-bottom: 35px;
        padding: 0 8px;
    }

    .limited-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .limited-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 28px;
        font-size: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .limited-section {
        padding: 60px 15px;
    }

    .limited-section h2 {
        font-size: 26px;
    }

    .limited-subtitle {
        font-size: 15px;
    }
}

/* =====================================
   FRANCHISE FORM SECTION - MOBILE
   ===================================== */
@media (max-width: 768px) {
    .franchise-hero {
        padding: 55px 18px;
    }

    /* Stack image above form on tablet */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-visual {
        min-height: 280px;
        border-radius: 20px;
    }

    .hero-form-card {
        padding: 38px 24px;
        border-radius: 24px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    }

    .hero-form-card h5 {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 22px !important;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 12px;
    }

    .apply-btn {
        padding: 17px;
        font-size: 15px;
        letter-spacing: 1.5px;
        border-radius: 14px;
    }
}

@media (max-width: 480px) {

    /* Hide image on very small phones — show only form */
    .hero-visual {
        min-height: 220px;
    }

    .franchise-hero {
        padding: 45px 15px;
    }

    .hero-form-card {
        padding: 28px 18px;
        border-radius: 18px;
    }

    .hero-form-card h5 {
        font-size: 20px !important;
        margin-bottom: 18px !important;
    }

    .form-group input,
    .form-group select {
        padding: 13px 14px;
        font-size: 14px;
    }

    .apply-btn {
        padding: 15px;
        font-size: 14px;
    }
}

/* =====================================
   FOOTER - MOBILE
   ===================================== */
@media (max-width: 768px) {
    .footer {
        padding: 35px 0 20px;
        text-align: center;
    }

    .footer-wrapper {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
    }

    .footer .logo {
        flex-direction: column;
        align-items: center;
    }

    .footer .logo img {
        height: 120px;
    }

    .footer-tagline {
        font-size: 15px;
        margin-top: 8px;
    }

    .social-icons {
        justify-content: center;
        gap: 14px;
    }

    .social-icons a {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }

    .footer-bottom {
        margin-top: 25px;
        font-size: 13px;
        padding-top: 14px;
    }
}

@media (max-width: 480px) {
    .footer .logo img {
        height: 100px;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* =====================================
   GLOBAL OVERFLOW FIX
   ===================================== */
@media (max-width: 992px) {
    body {
        overflow-x: hidden;
    }

    html {
        overflow-x: hidden;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* =====================================
   GLOBAL TYPOGRAPHY SCALING - MOBILE
   ===================================== */
@media (max-width: 768px) {
    h2 {
        line-height: 1.25;
    }

    h3 {
        line-height: 1.35;
    }

    p {
        line-height: 1.65;
    }
}

/* Buttons - mobile safe */
@media (max-width: 480px) {
    .btn {
        padding: 14px 22px;
        font-size: 14px;
    }
}