/* ============================================================
   CRM Healthcare - Main Stylesheet
   Premium Healthcare Brand Design
   ============================================================ */
:root {
    --primary: #0ea5e9;
    --primary-dark: #0c4a6e;
    --secondary: #06b6d4;
    --accent: #10b981;
    --gradient-1: linear-gradient(135deg, #0c4a6e, #0284c7, #0ea5e9);
    --gradient-2: linear-gradient(135deg, #0c1830, #0c4a6e, #0284c7);
    --glass: rgba(255,255,255,0.15);
    --glass-border: rgba(255,255,255,0.2);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 30px rgba(14,165,233,0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-primary); color: #1e293b; overflow-x: hidden; background: #fff; }
img { max-width: 100%; height: auto; }
a { color: var(--primary); transition: all 0.3s; }
a:hover { color: var(--primary-dark); }

.text-gradient { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== LOADER ===== */


/* ===== NOTIFICATION BAR ===== */
.notification-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    padding: 6px 0;
    display: none;
}
.notification-bar .social-top a {
    color: rgba(255,255,255,0.6);
    margin-left: 10px;
    font-size: 12px;
    transition: all 0.3s;
}
.notification-bar .social-top a:hover { color: #fff; }

/* ===== MAIN NAVBAR ===== */
.main-navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 0;
    transition: all 0.3s;
}
.main-navbar.scrolled { box-shadow: var(--shadow-md); }
.brand-container { display: flex; align-items: center; gap: 10px; }
.brand-icon {
    width: 42px; height: 42px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff;
    box-shadow: var(--shadow-glow);
}
.brand-text { line-height: 1.2; }
.brand-name { font-size: 22px; font-weight: 800; color: var(--primary-dark); display: block; letter-spacing: -0.5px; }
.brand-sub { font-size: 10px; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; display: block; }

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 13px;
    color: #334155;
    padding: 24px 14px !important;
    position: relative;
    transition: all 0.3s;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 3px;
    background: var(--gradient-1);
    border-radius: 3px 3px 0 0;
    transition: all 0.3s;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 100%; }
.navbar-nav .nav-link:hover { color: var(--primary); }
.dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    min-width: 220px;
}
.dropdown-item {
    font-size: 13px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.dropdown-item:hover { background: #f0f9ff; color: var(--primary); }

/* ===== HOVER DROPDOWN (Desktop only) ===== */
@media (min-width: 1200px) {
    .navbar-nav .nav-item.dropdown { position: relative; }
    .navbar-nav .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(8px);
        transition: all .25s ease;
        pointer-events: none;
    }
    .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }
    .navbar-nav .mega-menu-content {
        visibility: hidden;
        opacity: 0;
        margin-top: 8px;
        transition: all .25s ease;
        pointer-events: none;
    }
    .navbar-nav .nav-item.dropdown:hover > .mega-menu-content {
        visibility: visible;
        opacity: 1;
        margin-top: 0;
        pointer-events: all;
    }
}

/* ===== MEGA MENU ===== */
.mega-menu { position: static !important; }
.mega-menu-content {
    width: 100vw !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    padding: 40px 0 !important;
    margin-top: 0 !important;
    border-radius: 0 0 0 0 !important;
    border-top: 3px solid var(--primary);
}

/* Mobile mega menu - collapsed navbar */
@media (max-width: 1199.98px) {
    .mega-menu { position: relative !important; }
    .mega-menu-content {
        width: 100% !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        padding: 20px 16px !important;
        margin-top: 0 !important;
        border-radius: var(--radius-md) !important;
        border-top: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }
    .mega-menu-content .container {
        padding: 0 !important;
    }
    .mega-menu-content .col-lg-3,
    .mega-menu-content .col-lg-6 {
        width: 100% !important;
        margin-bottom: 16px;
    }
    .mega-menu-content .mega-cta {
        margin-top: 8px;
    }
}
.mega-menu-content a { color: #334155; }
.mega-menu-content a:hover { color: var(--primary); }
.mega-product-item {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}
.mega-product-item:hover { background: #f8fafc; }

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 99998;
    display: none; backdrop-filter: blur(10px);
}
.search-overlay.active { display: block; }
.search-container {
    max-width: 600px; margin: 100px auto; padding: 20px;
    position: relative;
}
.search-close { position: absolute; right: 20px; top: 20px; filter: invert(1); opacity: 0.7; }
.search-form .form-control {
    height: 60px; border-radius: 16px; font-size: 18px;
    border: 2px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.95);
}
.search-form .btn { border-radius: 16px; padding: 0 30px; }
.search-results {
    background: #fff; border-radius: var(--radius-md);
    margin-top: 8px; max-height: 400px; overflow-y: auto;
    display: none;
}

/* ===== SECTION STYLES ===== */
.section { padding: 80px 0; }
.section-badge {
    display: inline-block;
    background: rgba(14,165,233,0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

/* ===== HERO ===== */
.hero-section { height: 90vh; min-height: 600px; position: relative; }
.hero-slide { height: 90vh; min-height: 600px; position: relative; display: flex; align-items: center; }
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-desc { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 540px; margin-bottom: 30px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { color: rgba(255,255,255,0.8); }
.hero-stats .counter-value { font-size: 28px; font-weight: 800; color: #fff; line-height: 1; }
.hero-stats span { font-size: 12px; }
.hero-image-wrapper { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-img { position: relative; z-index: 2; max-width: 100%; animation: floatAnim 6s ease-in-out infinite; }
@keyframes floatAnim { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.floating-circles .circle {
    position: absolute; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: pulseCircle 8s ease-in-out infinite;
}
.floating-circles .c1 { width: 300px; height: 300px; top: -50px; right: -50px; }
.floating-circles .c2 { width: 200px; height: 200px; bottom: -30px; left: -30px; animation-delay: 2s; }
.floating-circles .c3 { width: 150px; height: 150px; top: 50%; left: 50%; animation-delay: 4s; }
@keyframes pulseCircle { 0%,100% { transform: scale(1); opacity: 0.3; } 50% { transform: scale(1.2); opacity: 0.5; } }

.heroSwiper .swiper-pagination-bullet { background: #fff; opacity: 0.5; width: 12px; height: 12px; }
.heroSwiper .swiper-pagination-bullet-active { opacity: 1; width: 30px; border-radius: 6px; }
.heroSwiper .swiper-button-next, .heroSwiper .swiper-button-prev { color: #fff; opacity: 0.5; transition: all 0.3s; }
.heroSwiper .swiper-button-next:hover, .heroSwiper .swiper-button-prev:hover { opacity: 1; }
.hero-particles { position: absolute; inset: 0; z-index: 1; }

/* ===== ABOUT ===== */
.about-image-wrapper { position: relative; }
.about-image-main img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-experience-card {
    position: absolute; bottom: -20px; right: -20px;
    background: #fff; padding: 20px 28px; border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}
.exp-number { font-size: 36px; font-weight: 900; color: var(--primary); line-height: 1; }
.about-shape {
    position: absolute; top: -20px; left: -20px;
    width: 100px; height: 100px; border: 4px solid var(--primary);
    border-radius: var(--radius-md); z-index: -1; opacity: 0.3;
}
.about-feature-card {
    background: #fff; padding: 20px; border-radius: var(--radius-md);
    border: 1px solid #e2e8f0; transition: all 0.3s;
}
.about-feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.about-icon {
    width: 44px; height: 44px;
    background: rgba(14,165,233,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 18px; margin-bottom: 10px;
}

/* ===== HIGHLIGHTS ===== */
.highlight-card {
    background: #fff; padding: 36px 24px; border-radius: var(--radius-lg);
    text-align: center; border: 1px solid #e2e8f0; transition: all 0.3s;
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.highlight-icon { font-size: 36px; color: var(--primary); margin-bottom: 12px; }
.highlight-card .counter-value { font-size: 40px; font-weight: 900; color: var(--primary-dark); line-height: 1; }
.highlight-card p { color: #64748b; font-weight: 500; margin-top: 8px; }

/* ===== CATEGORIES ===== */
.category-card {
    display: block; background: #fff; padding: 28px 20px; border-radius: var(--radius-md);
    text-align: center; border: 1px solid #e2e8f0; transition: all 0.3s;
    color: #334155;
}
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); color: var(--primary); }
.category-card .category-icon {
    width: 60px; height: 60px; margin: 0 auto 14px;
    background: rgba(14,165,233,0.1); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--primary); transition: all 0.3s;
}
.category-card:hover .category-icon { background: var(--gradient-1); color: #fff; }
.category-card h6 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.category-card small { color: #94a3b8; font-size: 11px; }

/* ===== PRODUCT CARD ===== */
.product-card {
    background: #fff; border-radius: var(--radius-md);
    overflow: hidden; border: 1px solid #e2e8f0; transition: all 0.3s;
    position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-badges { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; gap: 4px; }
.product-badges .badge { font-size: 10px; padding: 3px 10px; }
.product-image {
    position: relative; overflow: hidden; height: 200px;
    background: #f8fafc; display: flex; align-items: center; justify-content: center;
}
.product-image img { max-height: 100%; object-fit: contain; padding: 16px; transition: all 0.5s; }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-actions {
    position: absolute; bottom: -50px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 8px; padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    transition: all 0.3s;
}
.product-card:hover .product-actions { bottom: 0; }
.product-info { padding: 16px; }
.product-category { font-size: 11px; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.product-name { font-size: 15px; font-weight: 700; color: #0f172a; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-meta { display: flex; gap: 12px; font-size: 12px; color: #64748b; margin-bottom: 8px; }
.product-footer { display: flex; justify-content: space-between; align-items: center; }
.product-mrp { font-size: 13px; }

/* ===== WHY CHOOSE ===== */
.whychoose-card {
    background: #fff; padding: 32px 24px; border-radius: var(--radius-lg);
    text-align: center; border: 1px solid #e2e8f0; transition: all 0.3s;
}
.whychoose-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.wc-icon {
    width: 64px; height: 64px; margin: 0 auto 16px;
    background: var(--gradient-1); border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #fff; box-shadow: var(--shadow-glow);
}
.whychoose-card h5 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }

/* ===== SERVICE CARD ===== */
.service-card {
    background: #fff; padding: 32px 24px; border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0; transition: all 0.3s;
    height: 100%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon {
    width: 56px; height: 56px;
    background: rgba(14,165,233,0.1); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--primary); margin-bottom: 16px;
    transition: all 0.3s;
}
.service-card:hover .service-icon { background: var(--gradient-1); color: #fff; }
.service-card h5 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.service-card p { color: #64748b; font-size: 14px; line-height: 1.7; margin-bottom: 12px; }
.service-link { font-weight: 600; font-size: 13px; text-decoration: none; }
.service-link i { transition: all 0.3s; font-size: 12px; }
.service-link:hover i { transform: translateX(4px); }

/* ===== FRANCHISE CTA ===== */
.franchise-cta-wrapper {
    background: var(--gradient-2);
    border-radius: var(--radius-lg);
    padding: 60px;
    position: relative; overflow: hidden;
}
.franchise-cta-wrapper::before {
    content: ''; position: absolute;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%; top: -100px; right: -100px;
}
.franchise-globe {
    font-size: 160px; color: rgba(255,255,255,0.1);
    animation: floatAnim 8s ease-in-out infinite;
}

/* ===== STATS ===== */
.stats-section { background: var(--gradient-2); }
.stat-item {
    text-align: center; color: #fff; padding: 24px;
}
.stat-item i { font-size: 40px; margin-bottom: 12px; opacity: 0.5; }
.stat-item .counter-value { font-size: 44px; font-weight: 900; line-height: 1; margin-bottom: 8px; }
.stat-item p { font-size: 14px; opacity: 0.8; font-weight: 500; }

/* ===== CERTIFICATE ===== */
.certificate-card {
    background: #fff; padding: 20px; border-radius: var(--radius-md);
    text-align: center; border: 1px solid #e2e8f0;
}
.certificate-card img { max-height: 140px; object-fit: contain; }

/* ===== TESTIMONIAL ===== */
.testimonial-card {
    background: #fff; padding: 32px; border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
}
.testimonial-stars { margin-bottom: 16px; }
.testimonial-stars i { font-size: 16px; }
.testimonial-text { font-style: italic; color: #475569; line-height: 1.7; margin-bottom: 20px; font-size: 15px; }

/* ===== BLOG CARD ===== */
.blog-card {
    background: #fff; border-radius: var(--radius-md);
    overflow: hidden; border: 1px solid #e2e8f0; transition: all 0.3s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-image { position: relative; height: 200px; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: all 0.5s; }
.blog-card:hover .blog-image img { transform: scale(1.08); }
.blog-date {
    position: absolute; bottom: 12px; left: 12px;
    background: rgba(0,0,0,0.7); color: #fff;
    padding: 4px 12px; border-radius: 6px; font-size: 11px; backdrop-filter: blur(4px);
}
.blog-body { padding: 20px; }
.blog-category { font-size: 11px; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.blog-title { font-size: 16px; font-weight: 700; margin: 6px 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-link { font-weight: 600; font-size: 13px; text-decoration: none; }
.blog-link i { transition: all 0.3s; }
.blog-link:hover i { transform: translateX(4px); }

/* ===== CLIENTS ===== */
.client-logo {
    padding: 20px; text-align: center; opacity: 0.6; transition: all 0.3s;
}
.client-logo:hover { opacity: 1; }
.client-logo img { max-height: 60px; object-fit: contain; filter: grayscale(100%); transition: all 0.3s; }
.client-logo:hover img { filter: grayscale(0); }

/* ===== ENQUIRY FORM ===== */
.enquiry-section { background: #f8fafc; }
.enquiry-form-card {
    background: #fff; padding: 40px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); border: 1px solid #e2e8f0;
}
.ec-icon {
    width: 44px; height: 44px;
    background: rgba(14,165,233,0.1); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 16px; flex-shrink: 0;
}

/* ===== NEWSLETTER ===== */
.newsletter-wrapper {
    background: var(--gradient-2);
    border-radius: var(--radius-lg); padding: 50px;
}
.newsletter-form .form-control {
    border-radius: 12px 0 0 12px; border: none;
    padding: 16px 20px;
}
.newsletter-form .btn {
    border-radius: 0 12px 12px 0;
    padding: 16px 28px; font-weight: 600;
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px;
    width: 56px; height: 56px;
    background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999; transition: all 0.3s;
    animation: pulse 2s infinite;
}
.call-float {
    position: fixed; bottom: 90px; right: 24px;
    width: 48px; height: 48px;
    background: var(--primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 20px;
    box-shadow: 0 4px 20px rgba(14,165,233,0.4);
    z-index: 999; transition: all 0.3s;
    text-decoration: none;
}
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.08); } 100% { transform: scale(1); } }
.back-to-top {
    position: fixed; bottom: 24px; left: 24px;
    width: 44px; height: 44px;
    background: var(--primary-dark); border: none; border-radius: 50%;
    color: #fff; font-size: 18px;
    cursor: pointer; z-index: 999; opacity: 0; visibility: hidden;
    transition: all 0.3s;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary); transform: translateY(-3px); }

/* ===== FOOTER ===== */
.footer-main { background: #0c1830; position: relative; }
.footer-wave { position: relative; margin-top: -1px; }
.footer-wave svg { display: block; width: 100%; height: 80px; }
.footer-top { padding: 60px 0 40px; }
.footer-title { color: #fff; font-weight: 700; font-size: 15px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #94a3b8; text-decoration: none; font-size: 13px; transition: all 0.3s; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-social { display: flex; gap: 8px; }
.social-link {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.1); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); text-decoration: none;
    transition: all 0.3s;
}
.social-link:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; color: #94a3b8; font-size: 13px; }
.footer-contact li i { margin-top: 3px; color: var(--primary); width: 16px; text-align: center; }
.footer-contact a { color: #94a3b8; text-decoration: none; }
.footer-contact a:hover { color: var(--primary); }
.footer-bottom {
    background: rgba(0,0,0,0.3); padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: #fff; padding: 16px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 9999; display: none;
}
.cookie-consent.show { display: block; }

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--gradient-2);
    padding: 100px 0 60px; position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%; top: -150px; right: -100px;
}
.page-header h1 { color: #fff; font-weight: 900; font-size: clamp(32px, 4vw, 48px); }
.page-header .breadcrumb { background: transparent; margin-bottom: 0; }
.page-header .breadcrumb-item, .page-header .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-header .breadcrumb-item.active { color: #fff; }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1199.98px) {
    .hero-section, .hero-slide { height: auto; min-height: 500px; padding: 60px 0; }
}
@media (max-width: 991.98px) {
    .section { padding: 50px 0; }
    .navbar-nav .nav-link { padding: 12px 14px !important; }
    .notification-bar { display: none !important; }
    .franchise-cta-wrapper { padding: 30px; }
    .enquiry-form-card { padding: 24px; }
    .newsletter-wrapper { padding: 30px; }
}
@media (max-width: 575.98px) {
    .hero-title { font-size: 28px; }
    .hero-badge { font-size: 11px; }
    .hero-buttons .btn { font-size: 14px; padding: 10px 20px; }
    .about-experience-card { position: static; margin-top: 16px; }
    .franchise-cta-wrapper { padding: 24px 16px; }
}
