
        :root {
            --navy-900: #0a1628;
            --navy-800: #111d35;
            --navy-700: #1a2d4a;
            --navy-600: #243b5e;
            --amber-500: #f59e0b;
            --amber-400: #fbbf24;
            --amber-300: #fcd34d;
            --amber-600: #d97706;
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --white: #ffffff;
            --green-500: #22c55e;
            --green-100: #dcfce7;
            --blue-500: #3b82f6;
            --blue-100: #dbeafe;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--white);
            min-height: 100vh;
            color: var(--navy-800);
            line-height: 1.7;
        }

        /* Animated Background Pattern */
        .bg-pattern {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(245, 158, 11, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(10, 22, 40, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 0;
        }

       

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
            padding: 80px 24px 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 60%);
            animation: heroFloat 12s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
            animation: heroFloat 15s ease-in-out infinite reverse;
        }

        @keyframes heroFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(20px, -20px) scale(1.05); }
        }

        /* Airplane decoration */
        .airplane-deco {
            position: absolute;
            top: 20%;
            right: 10%;
            width: 120px;
            opacity: 0.1;
            animation: flyAcross 20s linear infinite;
        }

        @keyframes flyAcross {
            0% { transform: translateX(-100px) translateY(0); }
            50% { transform: translateX(50px) translateY(-30px); }
            100% { transform: translateX(-100px) translateY(0); }
        }

        .hero-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text {
            animation: fadeInUp 0.8s ease;
        }

        .airport-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(245, 158, 11, 0.15);
            border: 1px solid rgba(245, 158, 11, 0.3);
            padding: 10px 20px;
            border-radius: 50px;
            margin-bottom: 24px;
        }

        .airport-badge svg {
            width: 20px;
            height: 20px;
            color: var(--amber-400);
        }

        .airport-badge span {
            color: var(--amber-300);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .hero h1 {
            font-size: clamp(32px, 4.5vw, 52px);
            font-weight: 900;
            color: var(--white);
            margin-bottom: 20px;
            letter-spacing: -1.5px;
            line-height: 1.15;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber-300) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 18px;
            color: var(--gray-300);
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .hero-stats {
            display: flex;
            gap: 32px;
            margin-top: 40px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-value {
            font-size: 32px;
            font-weight: 800;
            color: var(--amber-400);
            display: block;
        }

        .stat-label {
            font-size: 13px;
            color: var(--gray-400);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Search Box in Hero */
        .hero-search-card {
            background: var(--white);
            border-radius: 24px;
            padding: 32px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 0.8s ease 0.2s backwards;
        }

        .search-card-header {
            text-align: center;
            margin-bottom: 24px;
        }

        .search-card-header h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--navy-900);
            margin-bottom: 6px;
        }

        .search-card-header p {
            font-size: 14px;
            color: var(--gray-500);
        }

        .search-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-group label {
            font-size: 12px;
            font-weight: 600;
            color: var(--navy-700);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .form-group input {
            padding: 14px 16px;
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            font-size: 15px;
            color: var(--navy-800);
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--amber-400);
            box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
        }

        .search-btn {
            background: linear-gradient(135deg, var(--amber-500) 0%, var(--amber-600) 100%);
            color: var(--white);
            border: none;
            padding: 16px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 8px;
        }

        .search-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
        }

        .search-btn svg {
            width: 20px;
            height: 20px;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Trust Bar */
        .trust-bar {
            background: var(--gray-50);
            padding: 24px;
            border-top: 1px solid var(--gray-100);
        }

        .trust-bar-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--gray-600);
            font-size: 14px;
            font-weight: 500;
        }

        .trust-item svg {
            width: 22px;
            height: 22px;
            color: var(--green-500);
        }

        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 24px;
            position: relative;
            z-index: 1;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: clamp(28px, 3.5vw, 40px);
            font-weight: 800;
            color: var(--navy-900);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .section-title p {
            font-size: 18px;
            color: var(--gray-500);
            max-width: 600px;
            margin: 0 auto;
        }

        .section-title .underline {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--amber-400), var(--amber-500));
            border-radius: 2px;
            margin: 20px auto 0;
        }

        /* Why Pre-Book Section */
        .why-prebook {
            background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
            border-radius: 32px;
            padding: 60px;
            margin-bottom: 80px;
            position: relative;
            overflow: hidden;
        }

        .why-prebook::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
        }

        .why-prebook .section-title h2 {
            color: var(--white);
        }

        .why-prebook .section-title p {
            color: var(--gray-400);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 28px;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .benefit-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            border-color: rgba(245, 158, 11, 0.3);
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--amber-500) 0%, var(--amber-400) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
        }

        .benefit-icon svg {
            width: 28px;
            height: 28px;
            color: var(--navy-900);
        }

        .benefit-card h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 10px;
        }

        .benefit-card p {
            font-size: 14px;
            color: var(--gray-400);
            line-height: 1.6;
        }

        /* Parking Options */
        .parking-options {
            margin-bottom: 80px;
        }

        .options-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .option-card {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
            border: 1px solid var(--gray-100);
            transition: all 0.4s ease;
            position: relative;
        }

        .option-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
        }

        .option-card.featured {
            border: 2px solid var(--amber-400);
        }

        .option-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: 20px;
            right: -35px;
            background: linear-gradient(135deg, var(--amber-500), var(--amber-400));
            color: var(--navy-900);
            padding: 6px 40px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1px;
            transform: rotate(45deg);
            z-index: 10;
        }

        .option-header {
            padding: 32px 28px 24px;
            text-align: center;
            border-bottom: 1px solid var(--gray-100);
        }

        .option-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            position: relative;
        }

        .option-card:hover .option-icon {
            background: linear-gradient(135deg, var(--amber-500), var(--amber-400));
        }

        .option-icon svg {
            width: 36px;
            height: 36px;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .option-card:hover .option-icon svg {
            color: var(--navy-900);
        }

        .option-header h3 {
            font-size: 22px;
            font-weight: 800;
            color: var(--navy-900);
            margin-bottom: 8px;
        }

        .option-header .price-from {
            font-size: 14px;
            color: var(--gray-500);
        }

        .option-header .price-from strong {
            font-size: 24px;
            color: var(--amber-500);
            font-weight: 800;
        }

        .option-body {
            padding: 28px;
        }

        .option-desc {
            font-size: 15px;
            color: var(--gray-600);
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .how-it-works {
            margin-bottom: 24px;
        }

        .how-it-works h4 {
            font-size: 13px;
            font-weight: 700;
            color: var(--navy-700);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        .step-list {
            list-style: none;
        }

        .step-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 10px 0;
            font-size: 14px;
            color: var(--gray-600);
        }

        .step-number {
            width: 24px;
            height: 24px;
            background: var(--gray-100);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            color: var(--navy-700);
            flex-shrink: 0;
        }

        .option-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--gray-100);
        }

        .feature-tag {
            background: var(--green-100);
            color: var(--green-500);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .feature-tag svg {
            width: 14px;
            height: 14px;
        }

        /* Terminals Section */
        .terminals-section {
            background: var(--gray-50);
            border-radius: 32px;
            padding: 60px;
            margin-bottom: 80px;
        }

        .terminals-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .terminal-card {
            background: var(--white);
            border-radius: 20px;
            padding: 32px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(10, 22, 40, 0.05);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .terminal-card:hover {
            border-color: var(--amber-400);
            transform: translateY(-4px);
        }

        .terminal-number {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            font-weight: 900;
            color: var(--white);
        }

        .terminal-card:hover .terminal-number {
            background: linear-gradient(135deg, var(--amber-500), var(--amber-400));
            color: var(--navy-900);
        }

        .terminal-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--navy-900);
            margin-bottom: 10px;
        }

        .terminal-card p {
            font-size: 14px;
            color: var(--gray-500);
        }

        /* Security Section */
        .security-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            margin-bottom: 80px;
        }

        .security-content h2 {
            font-size: 36px;
            font-weight: 800;
            color: var(--navy-900);
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .security-content p {
            font-size: 16px;
            color: var(--gray-600);
            margin-bottom: 32px;
            line-height: 1.8;
        }

        .security-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .security-feature {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px 20px;
            background: var(--gray-50);
            border-radius: 14px;
            transition: all 0.3s ease;
        }

        .security-feature:hover {
            background: var(--white);
            box-shadow: 0 4px 15px rgba(10, 22, 40, 0.08);
        }

        .security-feature svg {
            width: 24px;
            height: 24px;
            color: var(--green-500);
            flex-shrink: 0;
        }

        .security-feature span {
            font-size: 14px;
            font-weight: 600;
            color: var(--navy-800);
        }

        .security-image {
            position: relative;
        }

        .security-image-wrapper {
            background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
            border-radius: 32px;
            padding: 48px;
            position: relative;
            overflow: hidden;
        }

        .security-image-wrapper::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 60%);
        }

        .security-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .security-stat {
            text-align: center;
            padding: 24px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .security-stat .value {
            font-size: 36px;
            font-weight: 900;
            color: var(--amber-400);
            display: block;
            margin-bottom: 6px;
        }

        .security-stat .label {
            font-size: 13px;
            color: var(--gray-400);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Expert Tips */
        .tips-section {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.03) 100%);
            border: 1px solid rgba(245, 158, 11, 0.2);
            border-radius: 32px;
            padding: 60px;
            margin-bottom: 80px;
        }

        .tips-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .tip-card {
            display: flex;
            gap: 20px;
            padding: 24px;
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(10, 22, 40, 0.05);
            transition: all 0.3s ease;
        }

        .tip-card:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 25px rgba(10, 22, 40, 0.1);
        }

        .tip-number {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--amber-500), var(--amber-400));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 900;
            color: var(--navy-900);
            flex-shrink: 0;
        }

        .tip-content h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--navy-900);
            margin-bottom: 6px;
        }

        .tip-content p {
            font-size: 14px;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
            border-radius: 32px;
            padding: 80px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: clamp(28px, 3.5vw, 42px);
            font-weight: 900;
            color: var(--white);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .cta-section p {
            font-size: 18px;
            color: var(--gray-400);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 18px 40px;
            border-radius: 14px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .cta-btn-primary {
            background: linear-gradient(135deg, var(--amber-500), var(--amber-400));
            color: var(--navy-900);
            box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
        }

        .cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(245, 158, 11, 0.5);
        }

        .cta-btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .cta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .cta-btn svg {
            width: 20px;
            height: 20px;
        }


        /* Responsive */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .options-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .security-section {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero {
                padding: 60px 24px 80px;
            }

            .hero-stats {
                justify-content: center;
            }

            .why-prebook,
            .terminals-section,
            .tips-section,
            .cta-section {
                padding: 40px 24px;
            }

            .benefits-grid,
            .terminals-grid {
                grid-template-columns: 1fr;
            }

            .tips-grid {
                grid-template-columns: 1fr;
            }

            .security-features {
                grid-template-columns: 1fr;
            }

            .security-stats {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .trust-bar-inner {
                flex-direction: column;
                gap: 16px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .cta-buttons {
                flex-direction: column;
            }
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }
        
        .hero-cta-panel {
    background: var(--white);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.cta-panel-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 6px;
}

.cta-panel-header p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.cta-panel-features {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.cta-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-800);
}

.cta-feature span {
    color: var(--green-500);
    font-weight: 900;
}

.cta-panel-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.cta-panel-trust {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 12px;
    color: var(--gray-500);
    flex-wrap: wrap;
}

