
        /* ===== CSS VARIABLES - ULTRA PREMIUM LUXURY PALETTE ===== */
        :root {
            /* Light Mode - Elegant Cream & Charcoal */
            --bg-primary: #FAFAFA;
            --bg-secondary: #F5F3F0;
            --bg-card: #FFFFFF;
            --text-primary: #1A1A1A;
            --text-secondary: #4A4A4A;
            --text-muted: #7A7A7A;
            --border-color: #E8E4E0;

            /* Premium Brand Colors */
            --brand-primary: #C9A962;
            --brand-secondary: #8B7355;
            --brand-accent: #D4AF37;
            --brand-glow: rgba(201, 169, 98, 0.35);
            --saffron: #D4A84B;
            --green-india: #2D5A27;
            --whatsapp: #25D366;

            /* Luxury Glow Effects */
            --glow-primary: 0 4px 30px rgba(201, 169, 98, 0.2);
            --glow-secondary: 0 4px 30px rgba(139, 115, 85, 0.15);

            /* Premium Gradients */
            --gradient-gold: linear-gradient(135deg, #C9A962 0%, #E8D5A3 50%, #C9A962 100%);
            --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
            --gradient-hero: linear-gradient(180deg, rgba(26, 26, 26, 0.02) 0%, rgba(201, 169, 98, 0.08) 100%);
        }

        /* Dark Mode - Deep Luxury Black & Gold */
        [data-theme="dark"] {
            --bg-primary: #0D0D0D;
            --bg-secondary: #1A1A1A;
            --bg-card: #141414;
            --text-primary: #F5F5F5;
            --text-secondary: #BFBFBF;
            --text-muted: #8A8A8A;
            --border-color: #2A2A2A;
            --glow-primary: 0 4px 40px rgba(201, 169, 98, 0.25);
            --glow-secondary: 0 4px 40px rgba(212, 175, 55, 0.2);
            --gradient-hero: linear-gradient(180deg, rgba(201, 169, 98, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
        }

        /* ===== RESET & BASE ===== */
        *,
        *::before,
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            overflow-x: hidden;
            width: 100%;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            transition: background-color 0.4s ease, color 0.4s ease;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ===== LAYOUT ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 800;
            text-align: center;
            margin-bottom: 50px;
            color: var(--text-primary);
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transition: width 0.4s ease, height 0.4s ease;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
            color: var(--brand-primary);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(201, 169, 98, 0);
            border: 1px solid var(--brand-primary);
            font-weight: 700;
            letter-spacing: 0.5px;
            animation: btn-glow-pulse 3s ease-in-out infinite;
        }

        @keyframes btn-glow-pulse {

            0%,
            100% {
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 15px rgba(201, 169, 98, 0.2);
            }

            50% {
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 30px rgba(201, 169, 98, 0.4);
            }
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            background: var(--brand-primary);
            color: #0D0D0D;
            box-shadow: 0 10px 40px rgba(201, 169, 98, 0.5), 0 0 50px rgba(201, 169, 98, 0.3);
            animation: none;
        }

        .btn-whatsapp {
            background: linear-gradient(135deg, #1E6F3E 0%, #25D366 100%);
            color: #ffffff;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
            border: none;
            animation: whatsapp-glow-pulse 3s ease-in-out infinite;
        }

        @keyframes whatsapp-glow-pulse {

            0%,
            100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25), 0 0 15px rgba(37, 211, 102, 0.2);
            }

            50% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 0 30px rgba(37, 211, 102, 0.35);
            }
        }

        .btn-whatsapp:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 50px rgba(37, 211, 102, 0.5), 0 0 40px rgba(37, 211, 102, 0.3);
            animation: none;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 15px 0;
            background: transparent;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: var(--bg-primary);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            border-bottom: 1px solid var(--border-color);
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--text-primary);
        }

        .nav-links {
            display: none;
            gap: 25px;
            align-items: center;
        }

        .nav-links a {
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-primary);
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--brand-primary);
        }

        @media (min-width: 968px) {
            .nav-links {
                display: flex;
            }
        }

        .logo span {
            background: linear-gradient(135deg, var(--brand-primary), #E8D5A3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-controls {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .toggle-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid var(--brand-primary);
            background: transparent;
            color: var(--brand-primary);
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .toggle-btn:hover {
            background: var(--brand-primary);
            color: #ffffff;
        }

        .nav-call-btn {
            display: none;
        }

        @media (min-width: 768px) {
            .nav-call-btn {
                display: inline-flex;
            }
        }

        /* ===== HAMBURGER MENU ===== */
        .hamburger {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid var(--brand-primary);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            gap: 5px;
            padding: 10px;
        }

        .hamburger:hover {
            background: var(--brand-primary);
        }

        .hamburger span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--brand-primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger:hover span {
            background: #0D0D0D;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        @media (min-width: 768px) {
            .hamburger {
                display: none;
            }
        }

        /* ===== MOBILE MENU OVERLAY ===== */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(13, 13, 13, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 25px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu a {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            padding: 15px 40px;
            border-radius: 50px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .mobile-menu a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
            transition: all 0.3s ease;
            z-index: -1;
            border-radius: 50px;
        }

        .mobile-menu a:hover::before {
            left: 0;
        }

        .mobile-menu a:hover {
            color: #0D0D0D;
            transform: scale(1.05);
        }

        .mobile-menu .mobile-menu-cta {
            margin-top: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .mobile-menu .btn {
            min-width: 200px;
            justify-content: center;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 80px;
            overflow: hidden;
            color: var(--text-primary);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
            z-index: -1;
        }

        [data-theme="dark"] .hero-overlay {
            background: rgba(10, 10, 10, 0.85);
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/hero_tv_indian.webp') center/cover;
            opacity: 1;
            z-index: -2;
        }

        [data-theme="dark"] .hero-bg {
            opacity: 0.15;
            filter: grayscale(40%);
        }

        .hero-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Vocal for Local Badge */
        .vocal-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 12px 24px;
            background: rgba(201, 169, 98, 0.08);
            border: 1px solid rgba(201, 169, 98, 0.3);
            background-clip: padding-box;
            border-radius: 50px;
            margin-bottom: 25px;
            position: relative;
            backdrop-filter: blur(10px);
            animation: badge-glow 3s ease-in-out infinite;
        }

        @keyframes badge-glow {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(201, 169, 98, 0.2), inset 0 0 20px rgba(201, 169, 98, 0.05);
            }

            50% {
                box-shadow: 0 0 40px rgba(201, 169, 98, 0.4), inset 0 0 30px rgba(201, 169, 98, 0.1);
            }
        }

        .vocal-badge::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
            right: -1px;
            bottom: -1px;
            background: linear-gradient(135deg, var(--brand-primary), transparent, var(--brand-accent));
            border-radius: 50px;
            z-index: -1;
            opacity: 0.5;
            animation: border-glow 3s ease-in-out infinite;
        }

        @keyframes border-glow {

            0%,
            100% {
                opacity: 0.5;
            }

            50% {
                opacity: 0.9;
            }
        }

        .vocal-badge-icon {
            font-size: 1.5rem;
            animation: flag-wave 2s ease-in-out infinite;
        }

        @keyframes flag-wave {

            0%,
            100% {
                transform: rotate(-5deg);
            }

            50% {
                transform: rotate(5deg);
            }
        }

        .vocal-badge-text {
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--brand-primary);
            text-shadow: 0 0 10px rgba(201, 169, 98, 0.3);
        }

        .hero h1 {
            font-size: clamp(1.75rem, 5vw, 3rem);
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--text-primary);
            text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 40px rgba(255, 255, 255, 0.8);
        }

        [data-theme="dark"] .hero h1 {
            color: #ffffff;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
        }

        .hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: var(--text-secondary);
            margin-bottom: 35px;
            font-weight: 600;
            text-shadow: 0 0 15px rgba(255, 255, 255, 1);
        }

        [data-theme="dark"] .hero-subtitle {
            color: rgba(255, 255, 255, 0.85);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 50px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(201, 169, 98, 0.2);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), inset 0 0 20px rgba(255, 255, 255, 0.5);
            position: relative;
            overflow: hidden;
            color: var(--text-primary);
        }

        [data-theme="dark"] .hero-stats {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.02);
            color: #ffffff;
        }

        .hero-stats::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(201, 169, 98, 0.05), transparent);
            animation: stats-shimmer 4s ease-in-out infinite;
        }

        @keyframes stats-shimmer {
            0% {
                transform: translateX(-50%) translateY(-50%) rotate(0deg);
            }

            100% {
                transform: translateX(50%) translateY(50%) rotate(360deg);
            }
        }

        .stat-item {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .stat-number {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 900;
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(201, 169, 98, 0.3);
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 5px;
        }

        [data-theme="dark"] .stat-label {
            color: rgba(255, 255, 255, 0.7);
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
        }

        /* ===== TRUST STRIP ===== */
        .trust-strip {
            background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
            padding: 50px 0;
            color: #ffffff;
            border-top: 1px solid rgba(201, 169, 98, 0.2);
            border-bottom: 1px solid rgba(201, 169, 98, 0.2);
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
        }

        .trust-item {
            padding: 15px;
        }

        .trust-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            filter: drop-shadow(0 0 8px rgba(201, 169, 98, 0.3));
        }

        .trust-text {
            font-weight: 600;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.9);
            letter-spacing: 0.3px;
        }

        /* ===== SERVICE CARDS ===== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
        }

        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 20px;
            border: 2px solid transparent;
            background: linear-gradient(135deg, transparent, var(--brand-primary), transparent) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 50px rgba(201, 169, 98, 0.25), 0 0 30px rgba(201, 169, 98, 0.15);
            border-color: var(--brand-primary);
        }

        .service-card:hover::after {
            opacity: 1;
        }

        .service-img {
            height: 180px;
            overflow: hidden;
            position: relative;
        }

        .service-img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(201, 169, 98, 0) 0%, rgba(201, 169, 98, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover .service-img::after {
            opacity: 1;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 20px;
            text-align: center;
        }

        .service-content h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-primary);
            transition: color 0.3s ease;
        }

        .service-card:hover .service-content h3 {
            color: var(--brand-primary);
        }

        .service-content p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* ===== FEATURES ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 25px;
        }

        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--glow-secondary);
            border-color: var(--brand-secondary);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
            border: 1px solid rgba(201, 169, 98, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .feature-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .feature-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* ===== PROCESS ===== */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .process-step {
            text-align: center;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
            color: #0D0D0D;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            margin: 0 auto 15px;
            box-shadow: 0 8px 25px rgba(201, 169, 98, 0.3);
        }

        .process-step h4 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .process-step p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .testimonial-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 25px;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            box-shadow: var(--glow-primary);
            border-color: var(--brand-primary);
        }

        .testimonial-stars {
            color: #fbbf24;
            font-size: 1.1rem;
            margin-bottom: 12px;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--brand-primary);
        }

        /* ===== BRANDS ===== */
        .brands-section {
            background: var(--bg-secondary);
            padding: 60px 0;
            text-align: center;
        }

        .brands-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 25px;
        }

        .brand-name {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-muted);
            transition: all 0.3s;
        }

        .brand-name:hover {
            color: var(--brand-primary);
        }

        /* ===== CONTACT FORM ===== */
        .contact-section {
            background: var(--bg-secondary);
        }

        .contact-form {
            max-width: 480px;
            margin: 0 auto;
            background: var(--bg-card);
            padding: 40px 35px;
            border-radius: 24px;
            border: 1px solid var(--border-color);
            box-shadow: var(--glow-primary);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            font-size: 1rem;
            background: var(--bg-primary);
            color: var(--text-primary);
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--brand-primary);
            box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
        }

        .form-submit {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--brand-primary), #a855f7);
            color: #ffffff;
            border: none;
            border-radius: 12px;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
        }

        /* ===== CTA ===== */
        .cta-section {
            background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #0D0D0D 100%);
            padding: 100px 0;
            text-align: center;
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
        }

        .cta-section h2 {
            font-size: clamp(1.5rem, 4vw, 2.25rem);
            font-weight: 800;
            margin-bottom: 35px;
            background: linear-gradient(135deg, #FFFFFF 0%, var(--brand-primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-white {
            background: transparent;
            color: var(--brand-primary);
            font-weight: 700;
            border: 2px solid var(--brand-primary);
            letter-spacing: 0.5px;
        }

        .btn-white:hover {
            transform: translateY(-3px);
            background: var(--brand-primary);
            color: #0D0D0D;
            box-shadow: 0 10px 40px rgba(201, 169, 98, 0.3);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            padding: 50px 0 25px;
            text-align: center;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 900;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        .footer-text {
            color: var(--text-muted);
            margin-bottom: 25px;
        }

        .footer-bottom {
            padding-top: 25px;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* ===== FLOATING BUTTONS ===== */
        .floating-call {
            position: fixed;
            bottom: 25px;
            left: 25px;
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: var(--brand-primary);
            color: #fff;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            pointer-events: none;
            transform: translateY(20px);
        }

        .floating-call.visible {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .floating-call:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
        }

        /* ===== FLOATING WHATSAPP ===== */
        .floating-whatsapp {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 28px;
            background: linear-gradient(135deg, #1E6F3E 0%, #25D366 100%);
            color: #ffffff;
            border-radius: 50px;
            font-weight: 800;
            font-size: 1.1rem;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(50px) scale(0.9);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .floating-whatsapp::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 52px;
            border: 2px solid #25D366;
            z-index: -1;
            animation: glowing-pulse 2s infinite;
        }

        @keyframes glowing-pulse {
            0% {
                transform: scale(1);
                opacity: 0.8;
                box-shadow: 0 0 10px #25D366;
            }
            100% {
                transform: scale(1.15);
                opacity: 0;
                box-shadow: 0 0 30px #25D366;
            }
        }

        .floating-whatsapp.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
            animation: bounce-whatsapp 2.5s infinite;
        }

        @keyframes bounce-whatsapp {
            0%, 20%, 50%, 80%, 100% {
                margin-bottom: 0;
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.2);
            }
            40% {
                margin-bottom: 15px;
                box-shadow: 0 25px 30px rgba(37, 211, 102, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.2);
            }
            60% {
                margin-bottom: 7px;
                box-shadow: 0 17px 30px rgba(37, 211, 102, 0.35), inset 0 2px 0 rgba(255, 255, 255, 0.2);
            }
        }

        .floating-whatsapp:hover {
            transform: scale(1.05);
        }

        /* ===== SERVICE DETAIL SECTIONS ===== */
        .service-detail {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .service-detail:nth-child(even) {
            background: var(--bg-secondary);
        }

        .service-detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .service-detail:nth-child(even) .service-detail-grid {
            direction: rtl;
        }

        .service-detail:nth-child(even) .service-detail-grid>* {
            direction: ltr;
        }

        .service-detail-img {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--glow-primary);
            border: 1px solid var(--border-color);
        }

        .service-detail-img img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-detail-img:hover img {
            transform: scale(1.05);
        }

        .service-detail-content h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text-primary);
        }

        .service-detail-content h3 span {
            color: var(--brand-primary);
        }

        .service-detail-content>p {
            color: var(--text-secondary);
            margin-bottom: 25px;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .service-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-secondary);
        }

        .service-features li:last-child {
            border-bottom: none;
        }

        .service-features li::before {
            content: '✓';
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
            color: #0D0D0D;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            flex-shrink: 0;
        }

        .service-price-hint {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(201, 169, 98, 0.1);
            border: 1px solid rgba(201, 169, 98, 0.3);
            border-radius: 50px;
            color: var(--brand-primary);
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* ===== REFER & EARN SECTION ===== */
        .refer-section {
            background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .refer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
        }

        .refer-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .refer-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 10px 24px;
            background: rgba(201, 169, 98, 0.15);
            border: 1px solid rgba(201, 169, 98, 0.3);
            border-radius: 50px;
            margin-bottom: 25px;
        }

        .refer-badge span {
            color: var(--brand-primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
        }

        .refer-section h2 {
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 15px;
        }

        .refer-section h2 span {
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .refer-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            margin-bottom: 50px;
        }

        .refer-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .refer-step {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(201, 169, 98, 0.2);
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .refer-step:hover {
            background: rgba(201, 169, 98, 0.08);
            transform: translateY(-5px);
        }

        .refer-step-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
        }

        .refer-step h4 {
            color: #ffffff;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .refer-step p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .refer-reward {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 20px 40px;
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
            border-radius: 60px;
            margin-bottom: 30px;
        }

        .refer-reward-amount {
            font-size: 2rem;
            font-weight: 900;
            color: #0D0D0D;
        }

        .refer-reward-text {
            color: #0D0D0D;
            font-weight: 600;
            text-align: left;
            line-height: 1.3;
        }

        /* ===== COVERAGE SECTION ===== */
        .coverage-section {
            padding: 100px 0;
            background: var(--bg-secondary);
        }

        .coverage-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .coverage-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .coverage-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--glow-primary);
            border-color: var(--brand-primary);
        }

        .coverage-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
            border: 1px solid rgba(201, 169, 98, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 20px;
        }

        .coverage-card h4 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .coverage-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .village-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
        }

        .village-tag {
            padding: 6px 14px;
            background: rgba(201, 169, 98, 0.1);
            border: 1px solid rgba(201, 169, 98, 0.2);
            border-radius: 50px;
            font-size: 0.8rem;
            color: var(--brand-primary);
        }

        /* ===== FAQ SECTION ===== */
        .faq-section {
            padding: 100px 0;
        }

        .faq-grid {
            max-width: 800px;
            margin: 50px auto 0;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--brand-primary);
        }

        .faq-question {
            width: 100%;
            padding: 20px 25px;
            background: transparent;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            text-align: left;
        }

        .faq-question h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            flex: 1;
            padding-right: 15px;
        }

        .faq-icon {
            width: 30px;
            height: 30px;
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0D0D0D;
            font-weight: 700;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer p {
            padding: 0 25px 20px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
        }

        /* ===== EMERGENCY SECTION ===== */
        .emergency-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #1A0A0A 0%, #0D0D0D 100%);
            position: relative;
            overflow: hidden;
        }

        .emergency-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #D4AF37, #C9A962, transparent);
            animation: emergency-glow 2s ease-in-out infinite;
        }

        @keyframes emergency-glow {

            0%,
            100% {
                opacity: 0.5;
            }

            50% {
                opacity: 1;
            }
        }

        .emergency-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .emergency-text h3 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .emergency-text h3 span {
            color: var(--brand-primary);
        }

        .emergency-text p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.05rem;
        }

        .emergency-cta {
            display: flex;
            gap: 15px;
            flex-shrink: 0;
        }

        .btn-emergency {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
            color: #0D0D0D;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.05rem;
            animation: pulse-emergency 2s infinite;
        }

        @keyframes pulse-emergency {

            0%,
            100% {
                box-shadow: 0 0 20px rgba(201, 169, 98, 0.4);
            }

            50% {
                box-shadow: 0 0 40px rgba(201, 169, 98, 0.6);
            }
        }

        .btn-emergency:hover {
            transform: scale(1.05);
        }

        /* ===== LOCATION SECTION ===== */
        .location-section {
            padding: 80px 0;
            background: var(--bg-card);
        }

        .location-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .location-content {
            padding: 40px;
            background: var(--bg-primary);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border-color);
        }

        .location-title {
            font-size: 2.2rem;
            color: var(--text-primary);
            margin-bottom: 25px;
            font-weight: 700;
        }

        .location-title span {
            color: var(--brand-primary);
        }

        .location-address {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 30px;
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .location-icon {
            font-size: 1.8rem;
            color: var(--brand-primary);
            margin-top: 2px;
        }

        .location-map {
            width: 100%;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 5px solid var(--bg-primary);
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ===== GALLERY SECTION ===== */
        .gallery-section {
            padding: 80px 0;
            background: var(--bg-primary);
        }

        .gallery-carousel-wrapper {
            position: relative;
            width: 100%;
            max-width: 100vw;
        }

        .gallery-carousel-wrapper::before,
        .gallery-carousel-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 80px;
            z-index: 2;
            pointer-events: none;
        }

        .gallery-carousel-wrapper::before {
            left: 0;
            background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
        }

        .gallery-carousel-wrapper::after {
            right: 0;
            background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
        }

        .gallery-carousel-container {
            width: 100%;
            overflow-x: auto;
            overflow-y: hidden;
            position: relative;
            padding: 30px 0 50px 0;
            display: flex;
            cursor: grab;
            -ms-overflow-style: none;
            scrollbar-width: none;
            scroll-behavior: auto;
        }

        .gallery-carousel-container::-webkit-scrollbar {
            display: none;
        }

        .gallery-carousel-container:active {
            cursor: grabbing;
        }

        .gallery-carousel-track {
            display: flex;
            gap: 20px;
            width: max-content;
            padding: 0 40px;
        }

        .gallery-item {
            width: 320px;
            height: 260px;
            flex-shrink: 0;
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            background: #000;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
            z-index: 10;
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            pointer-events: none; 
        }

        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
            opacity: 0.9;
        }

        .gallery-overlay {
            position: absolute;
            bottom: 15px;
            left: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            color: #fff;
            padding: 12px 15px;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transform: translateY(10px);
            opacity: 0;
            transition: all 0.4s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
            opacity: 1;
            background: rgba(0, 0, 0, 0.65);
        }

        /* ===== RESPONSIVE FOR NEW SECTIONS ===== */
        @media (max-width: 968px) {
            .service-detail-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .service-detail:nth-child(even) .service-detail-grid {
                direction: ltr;
            }

            .refer-steps {
                grid-template-columns: 1fr;
            }

            .coverage-grid {
                grid-template-columns: 1fr;
            }

            .location-container {
                grid-template-columns: 1fr;
            }

            .gallery-item {
                width: 250px;
            }

            .gallery-overlay {
                opacity: 1;
                transform: translateY(0);
                background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
            }

            .emergency-content {
                flex-direction: column;
                text-align: center;
            }

            .emergency-cta {
                flex-direction: column;
                width: 100%;
            }

            .emergency-cta .btn {
                width: 100%;
            }
        }

        /* ===== ANIMATIONS ===== */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .hero-stats {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .contact-form {
                padding: 30px 20px;
            }

            .floating-whatsapp {
                bottom: 20px;
                right: 20px;
                left: 20px;
                width: auto;
                border-radius: 50px;
                justify-content: center;
                padding: 16px;
                border: 1px solid rgba(255, 255, 255, 0.2);
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
                font-size: 1.2rem;
                transform: translateY(150%);
            }

            .floating-whatsapp.visible {
                transform: translateY(0);
            }

            
            .floating-whatsapp span {
                display: inline;
            }
        }

        @media (max-width: 480px) {
            .trust-grid {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .hero-buttons .btn {
                width: 100%;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-buttons .btn {
                width: 80%;
            }
        }
        
        .text-center { text-align: center !important; }
    