:root {
            --primary-purple: #5c068c;
            --primary-purple-hover: #4a0372;
            --secondary-violet: #8e24aa;
            --accent-magenta: #e040fb;
            --accent-light: #f3e5f5;
            --dark-bg: #1a0826;
            --dark-card: #250e35;
            --text-dark: #1e1e24;
            --text-muted: #6c757d;
            --light-gray: #f8f9fa;
            --border-color: #e9ecef;
            --white: #ffffff;
            --shadow-sm: 0 2px 8px rgba(92, 6, 140, 0.08);
            --shadow-md: 0 6px 20px rgba(92, 6, 140, 0.12);
            --shadow-lg: 0 12px 32px rgba(92, 6, 140, 0.18);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: #fdfbfd;
            color: var(--text-dark);
            line-height: 1.5;
        }

        /* Top Bar */
        .top-bar {
            background: var(--dark-bg);
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.825rem;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .top-bar-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .badge-authorized {
            background: linear-gradient(135deg, var(--secondary-violet), var(--accent-magenta));
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.75rem;
            letter-spacing: 0.5px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        /* Navbar */
        .navbar {
            background: var(--white);
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 14px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-box {
            background: linear-gradient(135deg, var(--primary-purple), var(--secondary-violet));
            color: white;
            font-weight: 800;
            font-size: 1.3rem;
            padding: 6px 14px;
            border-radius: 8px;
            letter-spacing: -0.5px;
        }

        .logo-text {
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--primary-purple);
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            gap: 24px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.925rem;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--primary-purple);
        }

        .btn-sales-wa {
            background: #25D366;
            color: white !important;
            padding: 8px 18px;
            border-radius: 24px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-sales-wa:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
            padding: 6px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background-color: var(--primary-purple);
            border-radius: 3px;
            transition: all 0.3s;
        }

        /* Floating WhatsApp Button */
        .floating-wa {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: #25D366;
            color: white;
            border-radius: 50px;
            padding: 12px 20px 12px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
            text-decoration: none;
            z-index: 9999;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .floating-wa:hover {
            transform: scale(1.05) translateY(-4px);
            box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
        }

        .floating-wa-text {
            font-weight: 700;
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .floating-wa-pulse {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: #25D366;
            border-radius: 50px;
            z-index: -1;
            animation: wa-pulse 2s infinite;
        }

        @keyframes wa-pulse {
            0% { transform: scale(1); opacity: 0.6; }
            100% { transform: scale(1.2, 1.35); opacity: 0; }
        }

        /* Hero Slider Section */
        .hero-slider-section {
            position: relative;
            background: var(--dark-bg);
            overflow: hidden;
            color: white;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 420px;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
            display: flex;
            align-items: center;
            padding: 0 20px;
            background-size: cover;
            background-position: center;
        }

        .slide.active {
            opacity: 1;
            z-index: 1;
        }

        .slide-1 {
            background: linear-gradient(135deg, rgba(26, 8, 38, 0.9) 30%, rgba(92, 6, 140, 0.7)), radial-gradient(circle at right, #e040fb 0%, transparent 60%);
        }

        .slide-2 {
            background: linear-gradient(135deg, rgba(26, 8, 38, 0.92) 30%, rgba(142, 36, 170, 0.75)), radial-gradient(circle at bottom right, #00d2ff 0%, transparent 60%);
        }

        .slide-3 {
            background: linear-gradient(135deg, rgba(26, 8, 38, 0.95) 30%, rgba(74, 3, 114, 0.8)), radial-gradient(circle at top right, #ff007f 0%, transparent 60%);
        }

        .slide-content {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            align-items: center;
        }

        .slide-tag {
            background: var(--accent-magenta);
            color: white;
            font-size: 0.8rem;
            font-weight: 800;
            padding: 4px 12px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 12px;
        }

        .slide-title {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 12px;
        }

        .slide-desc {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 24px;
        }

        .slide-price {
            font-size: 2rem;
            font-weight: 800;
            color: #ffeb3b;
            margin-bottom: 20px;
            display: flex;
            align-items: baseline;
            gap: 8px;
        }

        .slide-price span {
            font-size: 1rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
        }

        .btn-primary-gradient {
            background: linear-gradient(135deg, #e040fb, #7b1fa2);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 6px 20px rgba(224, 64, 251, 0.4);
            border: none;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .btn-primary-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(224, 64, 251, 0.6);
        }

        /* Slider Controls */
        .slider-controls {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: var(--accent-magenta);
            width: 32px;
            border-radius: 12px;
        }

        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            color: white;
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: background 0.2s;
        }

        .slider-arrow:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .prev-arrow { left: 20px; }
        .next-arrow { right: 20px; }

        /* Quick Coverage Search Widget */
        .coverage-widget {
            max-width: 1000px;
            margin: -40px auto 40px;
            background: var(--white);
            border-radius: 16px;
            padding: 24px 32px;
            box-shadow: var(--shadow-lg);
            position: relative;
            z-index: 20;
            border: 1px solid rgba(92, 6, 140, 0.1);
        }

        .coverage-widget h3 {
            font-size: 1.1rem;
            color: var(--primary-purple);
            font-weight: 700;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .coverage-form {
            display: grid;
            grid-template-columns: 1fr 1fr 160px;
            gap: 12px;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid var(--border-color);
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.95rem;
            outline: none;
            transition: border-color 0.2s;
        }

        .form-control:focus {
            border-color: var(--primary-purple);
        }

        .btn-check-coverage {
            background: var(--primary-purple);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background 0.2s;
        }

        .btn-check-coverage:hover {
            background: var(--primary-purple-hover);
        }

        /* Container & Section Styling */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 60px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .section-subtitle {
            color: var(--secondary-violet);
            font-weight: 700;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 8px;
            display: block;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text-dark);
            letter-spacing: -0.5px;
        }

        /* Why Choose Us Section */
        .why-us-section {
            background: linear-gradient(180deg, #f8f4fb 0%, #ffffff 100%);
            padding: 60px 0;
            border-radius: 24px;
            margin-bottom: 60px;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            padding: 0 20px;
        }

        .why-card {
            background: var(--white);
            padding: 28px 24px;
            border-radius: 16px;
            border: 1px solid rgba(92, 6, 140, 0.08);
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: left;
        }

        .why-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: var(--accent-magenta);
        }

        .why-icon-box {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: var(--accent-light);
            color: var(--primary-purple);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .why-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-purple);
            margin-bottom: 10px;
        }

        .why-card p {
            color: var(--text-muted);
            font-size: 0.925rem;
            line-height: 1.6;
        }

        /* Package Filter Tabs */
        .package-tabs {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 36px;
            flex-wrap: wrap;
        }

        .tab-btn {
            background: var(--white);
            border: 1.5px solid var(--border-color);
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-dark);
            cursor: pointer;
            transition: all 0.2s;
        }

        .tab-btn.active, .tab-btn:hover {
            background: var(--primary-purple);
            color: white;
            border-color: var(--primary-purple);
            box-shadow: 0 4px 12px rgba(92, 6, 140, 0.2);
        }

        /* Package Grid & Cards */
        .package-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
        }

        .package-card {
            background: var(--white);
            border-radius: 20px;
            border: 1.5px solid var(--border-color);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .package-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--secondary-violet);
        }

        .package-card.popular {
            border: 2px solid var(--accent-magenta);
        }

        .popular-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--accent-magenta);
            color: white;
            font-size: 0.75rem;
            font-weight: 800;
            padding: 4px 12px;
            border-radius: 12px;
            text-transform: uppercase;
        }

        .card-header {
            padding: 28px 24px 20px;
            background: linear-gradient(180deg, #faf6fc 0%, #ffffff 100%);
            border-bottom: 1px solid var(--border-color);
        }

        .speed-badge {
            display: inline-block;
            background: var(--accent-light);
            color: var(--primary-purple);
            font-weight: 800;
            font-size: 1.1rem;
            padding: 4px 14px;
            border-radius: 8px;
            margin-bottom: 12px;
        }

        .package-name {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 6px;
        }

        .package-desc {
            font-size: 0.875rem;
            color: var(--text-muted);
        }

        .card-body {
            padding: 24px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .price-box {
            margin-bottom: 20px;
        }

        .price-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            font-weight: 700;
        }

        .price-amount {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-purple);
        }

        .price-unit {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 28px;
        }

        .feature-list li {
            font-size: 0.925rem;
            color: var(--text-dark);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .check-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #e8f5e9;
            color: #2e7d32;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 800;
            flex-shrink: 0;
        }

        .btn-order {
            width: 100%;
            padding: 12px;
            background: var(--primary-purple);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            text-decoration: none;
            text-align: center;
            display: block;
            transition: background 0.2s;
        }

        .btn-order:hover {
            background: var(--primary-purple-hover);
        }

        /* Order Form Modal / Section */
        .order-section {
            background: var(--dark-bg);
            color: white;
            border-radius: 24px;
            padding: 48px;
            margin-top: 60px;
            box-shadow: var(--shadow-lg);
            background-image: radial-gradient(circle at top right, rgba(224, 64, 251, 0.25), transparent 50%);
        }

        .order-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .order-info h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .order-info p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            margin-bottom: 24px;
        }

        .order-form-box {
            background: var(--white);
            color: var(--text-dark);
            padding: 32px;
            border-radius: 16px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            font-weight: 700;
            font-size: 0.875rem;
            margin-bottom: 6px;
        }

        .form-select {
            width: 100%;
            padding: 12px;
            border: 1.5px solid var(--border-color);
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.95rem;
        }

        /* Footer */
        .footer {
            background: var(--dark-bg);
            color: rgba(255, 255, 255, 0.7);
            padding: 40px 0 20px;
            font-size: 0.875rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin-left: 20px;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--accent-magenta);
        }

        /* Media Queries for Responsive Mobile View */
        @media (max-width: 768px) {
            .top-bar-inner {
                flex-direction: column;
                gap: 4px;
                text-align: center;
                font-size: 0.75rem;
            }

            .mobile-toggle {
                display: flex;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                gap: 16px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                display: none;
                border-top: 1px solid var(--border-color);
            }

            .nav-links.show {
                display: flex;
            }

            .nav-links a {
                width: 100%;
                text-align: center;
                padding: 8px 0;
            }

            .btn-sales-wa {
                justify-content: center;
            }

            .slide-content, .order-grid, .coverage-form {
                grid-template-columns: 1fr;
            }

            .slider-container { height: 480px; }
            .slide-title { font-size: 1.75rem; }
            .slide-desc { font-size: 0.95rem; }
            .slide-price { font-size: 1.5rem; }
            .coverage-widget { margin-top: -20px; padding: 20px; }
            .order-section { padding: 24px; }
        }

        @media (max-width: 600px) {
            .floating-wa-text { display: none; }
            .floating-wa { padding: 14px; border-radius: 50%; }
        }