 :root {
            --primary-gold: #C9A227;
            --primary-dark: #1A1A2E;
            --accent-emerald: #00A86B;
            --text-light: #F8F9FA;
            --surface-dark: #16213E;
        }
        
        * {
            font-family: 'Poppins', sans-serif;
        }
        
        html, body {
            height: 100%;
            margin: 0;
            overflow-x: hidden;
        }
        
        .main-wrapper {
            width: 100%;
            min-height: 100%;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--surface-dark) 50%, #0F0F23 100%);
            overflow-y: auto;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.9)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(201,162,39,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            min-height: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(ellipse, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        
        /* Logo */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-gold), #E8C547);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 32px rgba(201, 162, 39, 0.3);
        }
        
        .logo-icon svg {
            width: 36px;
            height: 36px;
        }
        
        .logo-text {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-light);
            line-height: 1.2;
        }
        
        .logo-text span {
            display: block;
            font-size: 0.75rem;
            font-weight: 400;
            color: var(--primary-gold);
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        /* Navigation */
        .navbar-custom {
            background: rgba(26, 26, 46, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(201, 162, 39, 0.2);
            padding: 15px 0;
        }
        
        .nav-link-custom {
            color: var(--text-light) !important;
            font-weight: 500;
            padding: 8px 20px !important;
            transition: all 0.3s ease;
            border-radius: 8px;
        }
        
        .nav-link-custom:hover {
            color: var(--primary-gold) !important;
            background: rgba(201, 162, 39, 0.1);
        }
        
        /* Hero Content */
        .hero-content {
            padding: 80px 0 60px;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 168, 107, 0.15);
            border: 1px solid rgba(0, 168, 107, 0.3);
            color: var(--accent-emerald);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 25px;
        }
        
        .hero-title {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--text-light);
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .hero-title .highlight {
            background: linear-gradient(135deg, var(--primary-gold), #E8C547);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
            color: rgba(248, 249, 250, 0.7);
            line-height: 1.8;
            margin-bottom: 35px;
            max-width: 550px;
        }
        
        .btn-gold {
            background: linear-gradient(135deg, var(--primary-gold), #E8C547);
            color: var(--primary-dark);
            font-weight: 600;
            padding: 16px 40px;
            border-radius: 12px;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 32px rgba(201, 162, 39, 0.3);
        }
        
        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(201, 162, 39, 0.4);
            color: var(--primary-dark);
        }
        
        .btn-outline-light-custom {
            border: 2px solid rgba(248, 249, 250, 0.3);
            color: var(--text-light);
            padding: 14px 35px;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-outline-light-custom:hover {
            background: rgba(248, 249, 250, 0.1);
            border-color: var(--primary-gold);
            color: var(--primary-gold);
        }
        
        /* Stats */
        .stats-row {
            display: flex;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-gold);
            line-height: 1;
        }
        
        .stat-label {
            font-size: 0.85rem;
            color: rgba(248, 249, 250, 0.6);
            margin-top: 5px;
        }
        
        /* Section Styling */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 15px;
        }
        
        .section-subtitle {
            color: rgba(248, 249, 250, 0.6);
            font-size: 1rem;
            margin-bottom: 50px;
        }
        
        /* Routes Grid */
        .routes-section {
            background: linear-gradient(180deg, transparent, rgba(22, 33, 62, 0.5));
        }
        
        .route-link {
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            height: 100%;
        }
        
        .route-card {
            background: rgba(26, 26, 46, 0.6);
            border: 1px solid rgba(201, 162, 39, 0.15);
            border-radius: 16px;
            padding: 20px 25px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 15px;
            height: 100%;
            cursor: pointer;
        }
        
        .route-link:hover .route-card {
            background: rgba(201, 162, 39, 0.1);
            border-color: var(--primary-gold);
            transform: translateY(-5px);
        }
        
        .route-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-gold), #E8C547);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .route-icon i {
            color: var(--primary-dark);
            font-size: 1.2rem;
        }
        
        .route-info h6 {
            color: var(--text-light);
            font-weight: 600;
            margin-bottom: 3px;
            font-size: 0.95rem;
        }
        
        .route-info span {
            color: var(--accent-emerald);
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        /* Features */
        .feature-card {
            background: rgba(26, 26, 46, 0.6);
            border: 1px solid rgba(201, 162, 39, 0.15);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-card:hover {
            border-color: var(--primary-gold);
            transform: translateY(-8px);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.05));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }
        
        .feature-icon i {
            font-size: 2rem;
            color: var(--primary-gold);
        }
        
        .feature-card h5 {
            color: var(--text-light);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .feature-card p {
            color: rgba(248, 249, 250, 0.6);
            font-size: 0.9rem;
            line-height: 1.7;
        }
        
        /* Contact Section */
        .contact-section {
            background: linear-gradient(180deg, rgba(22, 33, 62, 0.5), rgba(26, 26, 46, 0.8));
        }
        
        .contact-card {
            background: rgba(26, 26, 46, 0.8);
            border: 1px solid rgba(201, 162, 39, 0.2);
            border-radius: 20px;
            padding: 40px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid rgba(248, 249, 250, 0.1);
        }
        
        .contact-item:last-child {
            border-bottom: none;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-gold), #E8C547);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-icon i {
            font-size: 1.5rem;
            color: var(--primary-dark);
        }
        
        .contact-info h6 {
            color: rgba(248, 249, 250, 0.6);
            font-size: 0.85rem;
            font-weight: 400;
            margin-bottom: 5px;
        }
        
        .contact-info a, .contact-info p {
            color: var(--text-light);
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            margin: 0;
            transition: color 0.3s ease;
        }
        
        .contact-info a:hover {
            color: var(--primary-gold);
        }
        
        /* Footer */
        .footer {
            background: rgba(15, 15, 35, 0.95);
            border-top: 1px solid rgba(201, 162, 39, 0.2);
            padding: 40px 0 30px;
        }
        
        .footer-text {
            color: rgba(248, 249, 250, 0.6);
            font-size: 0.9rem;
        }
        
        .footer-text a {
            color: var(--primary-gold);
            text-decoration: none;
        }
        
        /* Floating Buttons */
        .floating-btn {
            position: fixed;
            bottom: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        
        .floating-btn:hover {
            transform: scale(1.1);
        }
        
        .floating-btn i {
            font-size: 1.8rem;
            color: white;
        }
        
        .call-btn {
            left: 30px;
            background: linear-gradient(135deg, #0066CC, #0088FF);
        }
        
        .whatsapp-btn {
            right: 30px;
            background: linear-gradient(135deg, #25D366, #128C7E);
        }
        
        .floating-btn::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        
        .call-btn::after {
            background: rgba(0, 102, 204, 0.4);
        }
        
        .whatsapp-btn::after {
            background: rgba(37, 211, 102, 0.4);
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.7;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }
        
        /* Map placeholder */
        .map-container {
            background: rgba(26, 26, 46, 0.6);
            border: 1px solid rgba(201, 162, 39, 0.15);
            border-radius: 20px;
            height: 100%;
            min-height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 20px;
        }
        
        .map-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.05));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .map-icon i {
            font-size: 3rem;
            color: var(--primary-gold);
        }
        
        .map-text {
            color: rgba(248, 249, 250, 0.7);
            font-size: 1rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content {
                padding: 60px 0 40px;
                text-align: center;
            }
            
            .hero-subtitle {
                margin-left: auto;
                margin-right: auto;
            }
            
            .stats-row {
                justify-content: center;
            }
            
            .floating-btn {
                width: 55px;
                height: 55px;
                bottom: 20px;
            }
            
            .call-btn {
                left: 20px;
            }
            
            .whatsapp-btn {
                right: 20px;
            }
            
            .contact-card {
                padding: 25px;
            }
            
            .section-padding {
                padding: 60px 0;
            }
        }