
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --navy: #0a1f44;
            --navy-dark: #05152b;
            --navy-light: #1e3a6b;
            --gold: #fbbf24;
            --gold-light: #fcd34d;
            --gold-dark: #d97706;
            --white: #ffffff;
            --light-bg: #f8fafc;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--light-bg);
            color: #1e293b;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 800;
        }

        /* ===== NAVBAR - ALL ITEMS IN SAME LINE ===== */
        .navbar {
            background: var(--navy) !important;
            padding: 10px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .navbar-brand {
            color: var(--gold) !important;
            font-size: 24px;
            font-weight: 700;
            display: flex;
            align-items: center;
            white-space: nowrap;
        }

        .navbar-brand img {
            height: 40px;
            width: auto;
            margin-right: 10px;
        }

        /* Force all navbar items in one line */
        .navbar-nav {
            display: flex;
            flex-direction: row !important;
            align-items: center;
            margin: 0 10px;
        }

        .navbar-nav .nav-item {
            margin: 0 2px;
            white-space: nowrap;
        }

        .navbar-nav .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            padding: 6px 12px !important;
            font-size: 14px;
            border-radius: 30px;
            transition: all 0.3s;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            background: var(--gold);
            color: var(--navy) !important;
        }

        /* Navbar Buttons - Side by side */
        .navbar-buttons {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 8px;
            margin-left: 10px;
            flex-shrink: 0;
        }

        .btn-navbar {
            background: var(--gold);
            color: var(--navy);
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 30px;
            border: 2px solid var(--gold);
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .btn-navbar i {
            margin-right: 5px;
            font-size: 12px;
        }

        .btn-navbar:hover {
            background: transparent;
            color: var(--gold);
            transform: translateY(-2px);
        }

        /* Navbar toggler for mobile */
        .navbar-toggler {
            border: 2px solid var(--gold);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fbbf24' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Hero Section with Flying TV */
        .hero-header {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .flying-tv {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            width: 400px;
            height: auto;
            animation: float 6s ease-in-out infinite;
            filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
            z-index: 10;
        }

        @keyframes float {
            0%, 100% { transform: translateY(-50%) translateX(0); }
            50% { transform: translateY(-55%) translateX(-20px); }
        }

        .hero-header h1 {
            color: var(--gold);
            font-size: 4rem;
            font-weight: 800;
        }

        .hero-header .text-secondary {
            color: var(--gold-light) !important;
        }

        /* Stats Section */
        .stats-section {
            background: var(--navy);
            padding: 30px 0;
            border-top: 3px solid var(--gold);
            border-bottom: 3px solid var(--gold);
        }

        .stat-box {
            text-align: center;
            color: white;
        }

        .stat-box h5 {
            color: var(--gold);
            font-size: 1.5rem;
            font-weight: 700;
        }

        .stat-box img {
            width: 40px;
            height: 40px;
        }

        .has-tooltip {
            position: relative;
            cursor: help;
        }

        .has-tooltip:hover:after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
            color: var(--navy);
            padding: 5px 15px;
            border-radius: 30px;
            white-space: nowrap;
            font-weight: 600;
            z-index: 1000;
        }

        /* Buttons */
        .btn-primary {
            background: var(--gold) !important;
            border: none !important;
            color: var(--navy) !important;
            font-weight: 600;
            padding: 12px 32px;
            border-radius: 50px;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            background: var(--gold-dark) !important;
            transform: translateY(-3px);
        }

        .btn-secondary {
            background: transparent !important;
            border: 2px solid var(--gold) !important;
            color: var(--gold) !important;
            font-weight: 600;
            padding: 12px 32px;
            border-radius: 50px;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: var(--gold) !important;
            color: var(--navy) !important;
        }

        /* QR Card */
        .qr-card {
            background: white;
            border-radius: 60px 60px 60px 0;
            padding: 40px;
            border: 3px solid var(--gold);
            box-shadow: 20px 20px 0 var(--navy);
            text-align: center;
        }

        .qr-card img {
            max-width: 300px;
            width: 100%;
            border: 3px solid var(--gold);
            border-radius: 20px;
            padding: 10px;
            margin: 20px 0;
        }

        /* Support Box */
        .support-box {
            background: white;
            border-radius: 70px 70px 70px 0;
            padding: 50px;
            border: 3px solid var(--gold);
            box-shadow: 20px 20px 0 var(--navy);
            margin: 40px 0;
        }

        .whatsapp-title .whatsapp-text {
            background: var(--navy);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            display: inline-block;
        }

        .contact-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--navy);
        }

        .verified-badge svg circle {
            fill: var(--gold);
        }

        .contact-link {
            background: var(--gold);
            color: var(--navy);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s;
        }

        .contact-link:hover {
            background: var(--navy);
            color: var(--gold);
        }

        .response-time {
            background: #fef9e7;
            padding: 15px 25px;
            border-radius: 50px;
            margin: 20px 0;
        }

        .highlight {
            background: var(--gold);
            color: var(--navy);
            padding: 5px 15px;
            border-radius: 30px;
            font-weight: 600;
        }

        /* Feature Cards */
        .feature-item {
            background: white;
            border: 3px solid var(--navy);
            border-radius: 30px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s;
            height: 100%;
        }

        .feature-item:hover {
            border-color: var(--gold);
            transform: translateY(-10px);
        }

        .feature-img {
            background: var(--navy);
            border-radius: 30px;
            padding: 20px;
            display: inline-block;
            margin-bottom: 20px;
        }

        .feature-img img {
            width: 120px;
            height: auto;
        }

        .feature-item h4 {
            color: var(--navy);
            font-size: 1.3rem;
            margin: 15px 0;
        }

        .feature-btn {
            background: transparent;
            color: var(--navy);
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 30px;
            border: 2px solid var(--navy);
            text-decoration: none;
            display: inline-block;
            margin: 5px;
            font-size: 13px;
            transition: all 0.3s;
            min-width: 130px;
        }

        .feature-btn:hover {
            background: var(--navy);
            color: white;
        }

        .feature-btn i {
            margin-right: 5px;
        }

        /* Pricing Cards */
        .price-item {
            background: white;
            border: 3px solid var(--navy);
            border-radius: 30px;
            overflow: hidden;
            transition: all 0.3s;
            height: 100%;
            position: relative;
        }

        .price-item:hover {
            border-color: var(--gold);
            transform: translateY(-10px);
        }

        .price-item .border-bottom {
            background: var(--navy);
            border-bottom: 3px solid var(--gold) !important;
        }

        .price-item .display-5 {
            color: white;
        }

        .price-item .display-5 span {
            color: var(--gold);
        }

        .pice-item-offer {
            background: var(--gold);
            color: var(--navy);
            padding: 5px 20px;
            border-radius: 30px;
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 10;
            font-weight: 700;
        }

        .btn-plan {
            background: var(--navy);
            color: white;
            width: 100%;
            padding: 12px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            border: 2px solid var(--navy);
            transition: all 0.3s;
        }

        .btn-plan:hover {
            background: transparent;
            color: var(--navy);
        }

        /* FAQ */
        .accordion-item {
            border: 2px solid var(--navy);
            border-radius: 20px !important;
            margin-bottom: 20px;
            overflow: hidden;
        }

        .accordion-button {
            color: var(--navy);
            font-weight: 600;
            padding: 20px 25px;
        }

        .accordion-button:not(.collapsed) {
            background: var(--navy);
            color: var(--gold);
        }

        /* Features Icons */
        .features-heading {
            color: var(--navy);
            position: relative;
            display: inline-block;
        }

        .features-heading:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--gold);
        }

        /* Footer */
        .footer {
            background: var(--navy);
            color: white;
            padding: 60px 0 20px;
        }

        .footer h4 {
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .footer a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s;
        }

        .footer a:hover {
            color: var(--gold);
            padding-left: 5px;
        }

        .copyright {
            background: var(--navy-dark);
            color: white;
            padding: 20px 0;
            text-align: center;
        }

        .copyright a {
            color: var(--gold);
            text-decoration: none;
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gold);
            color: var(--navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            border: 2px solid var(--navy);
            transition: all 0.3s;
            z-index: 999;
        }

        .back-to-top:hover {
            background: var(--navy);
            color: var(--gold);
            transform: translateY(-5px);
        }

        .whatsapp-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            z-index: 999;
            border-radius: 50%;
            border: 3px solid var(--navy);
            transition: all 0.3s;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
        }

        /* Mobile Responsive */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--navy);
                padding: 15px;
                border-radius: 15px;
                margin-top: 10px;
            }
            
            .navbar-nav {
                flex-direction: column !important;
                width: 100%;
                margin: 0 0 15px 0;
            }
            
            .navbar-nav .nav-item {
                width: 100%;
                margin: 2px 0;
            }
            
            .navbar-nav .nav-link {
                padding: 10px 15px !important;
                width: 100%;
                text-align: left;
            }
            
            .navbar-buttons {
                width: 100%;
                margin-left: 0;
            }
            
            .btn-navbar {
                flex: 1;
            }
            
            .flying-tv {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                width: 100%;
                max-width: 300px;
                margin: 30px auto 0;
                display: block;
            }
            
            .hero-header {
                text-align: center;
            }
        }