/**
 * CARLSBAD TO AIRPORT - STYLES
 * Modern, clean design with beach-inspired colors
 */

/* Google Maps Autocomplete Styles */
.pac-container{background-color:#fff;position:absolute!important;z-index:1000;border-radius:2px;border-top:1px solid #d9d9d9;font-family:Arial,sans-serif;-webkit-box-shadow:0 2px 6px rgba(0,0,0,.3);box-shadow:0 2px 6px rgba(0,0,0,.3);-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden}.pac-logo:after{content:"";padding:1px 1px 1px 0;height:18px;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:right;display:block;background-image:url(https://maps.gstatic.com/mapfiles/api-3/images/powered-by-google-on-white3.png);background-position:right;background-repeat:no-repeat;-webkit-background-size:120px 14px;background-size:120px 14px}.hdpi.pac-logo:after{background-image:url(https://maps.gstatic.com/mapfiles/api-3/images/powered-by-google-on-white3_hdpi.png)}.pac-item{cursor:default;padding:0 4px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;line-height:30px;text-align:left;border-top:1px solid #e6e6e6;font-size:11px;color:#515151}.pac-item:hover{background-color:#fafafa}.pac-item-selected,.pac-item-selected:hover{background-color:#ebf2fe}.pac-matched{font-weight:700}.pac-item-query{font-size:13px;padding-right:3px;color:#000}.pac-icon{width:15px;height:20px;margin-right:7px;margin-top:6px;display:inline-block;vertical-align:top;background-image:url(https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons.png);-webkit-background-size:34px 34px;background-size:34px}.hdpi .pac-icon{background-image:url(https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons_hdpi.png)}.pac-icon-search{background-position:-1px -1px}.pac-item-selected .pac-icon-search{background-position:-18px -1px}.pac-icon-marker{background-position:-1px -161px}.pac-item-selected .pac-icon-marker{background-position:-18px -161px}.pac-placeholder{color:gray}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #FFD700;
            --secondary-color: #C0C0C0;
            --accent-color: #FF6B35;
            --bg-dark: #0a0a0a;
            --bg-darker: #000000;
            --bg-card: #1a1a1a;
            --bg-card-hover: #252525;
            --text-light: #e0e0e0;
            --text-lighter: #ffffff;
            --text-muted: #888888;
            --border-color: #333333;
            --border-gold: #FFD700;
        }

        html, body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-darker);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            max-width: 100%;
            position: relative;
        }

        /* Header */
        .site-header {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 20px 0;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
        }

        .site-logo {
            display: flex;
            align-items: center;
        }

        .site-logo img {
            height: 50px;
            width: auto;
            object-fit: contain;
        }

        .site-logo h1 {
            color: var(--primary-color);
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
            display: none;
        }

        .site-logo p {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-top: 2px;
            display: none;
        }

        .header-contact a {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--primary-color);
            color: var(--bg-darker);
            padding: 12px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }

        .header-contact a:hover {
            background: #ffed4e;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
        }

        .header-contact svg {
            width: 20px;
            height: 20px;
        }

        /* Navigation Menu */
        .main-nav {
            display: flex;
            align-items: center;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .main-nav li {
            margin: 0;
        }

        .main-nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            padding: 8px 0;
            position: relative;
        }

        .hero-section.compact-hero {
            min-height: auto;
            padding: 20px;
            background-attachment: scroll;
        }

        .hero-section.compact-hero .hero-content {
            max-width: 720px;
            margin: 0 auto;
        }

        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .main-nav a:hover {
            color: var(--primary-color);
        }

        .main-nav a.active {
            color: var(--primary-color);
        }

        .nav-booking {
            background: var(--primary-color);
            color: var(--bg-darker) !important;
            padding: 8px 20px !important;
            border-radius: 25px;
            font-weight: 600 !important;
        }

        .nav-booking::after {
            display: none;
        }

        .nav-booking:hover {
            background: #ffed4e;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
        }

        .mobile-book-btn {
            display: none;
        }

        /* Mobile Menu Toggle Button */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 30px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
            position: relative;
        }

        .mobile-menu-toggle span {
            width: 100%;
            height: 3px;
            background: var(--primary-color);
            border-radius: 3px;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Mobile Navigation Menu */
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(10, 10, 10, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            z-index: 1000;
        }

        .mobile-nav.active {
            max-height: 500px;
        }

        .mobile-nav ul {
            list-style: none;
            padding: 20px;
            margin: 0;
        }

        .mobile-nav li {
            margin-bottom: 10px;
        }

        .mobile-nav-link {
            display: block;
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 15px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            text-align: center;
        }

        .mobile-nav-link:hover {
            background: rgba(255, 215, 0, 0.1);
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .mobile-nav-booking {
            background: var(--primary-color);
            color: var(--bg-darker) !important;
            font-weight: 700 !important;
            margin-top: 10px;
        }

        .mobile-nav-booking:hover {
            background: #ffed4e;
            transform: translateX(0) scale(1.05);
        }

        /* Prevent body scroll when menu is open */
        body.menu-open {
            overflow: hidden;
        }

        /* About Page */
        .about-hero {
            background-image: url('../images/hero-luxury-suv.png');
            min-height: 520px;
        }

        .about-intro .about-grid,
        .compliance-section .compliance-grid,
        .fleet-section .fleet-grid {
            display: grid;
            gap: 24px;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            margin-top: 40px;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        .about-card,
        .compliance-item,
        .fleet-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 18px;
            padding: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.25);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .about-card:hover,
        .compliance-item:hover,
        .fleet-card:hover {
            transform: translateY(-4px);
            border-color: var(--border-gold);
        }

        .story-content {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 255, 255, 0.02));
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        }

        .story-content ul {
            margin-top: 20px;
            padding-left: 20px;
            color: var(--text-muted);
        }

        .cta-panel {
            text-align: center;
            background: linear-gradient(120deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
            border-radius: 24px;
            border: 1px solid rgba(255,215,0,0.3);
        }

        .cta-panel-content {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
        }

        /* Contact Page */
        .contact-hero {
            background-image: url('../images/hero-luxury-suv.png');
            min-height: 480px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .contact-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 18px;
            padding: 24px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.35);
        }

        .contact-card ul {
            margin: 12px 0 0 18px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .contact-form-section .contact-form-wrapper {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        @media (max-width: 900px) {
            .contact-form-section .contact-form-wrapper {
                grid-template-columns: 1fr;
            }
        }

        .contact-form {
            background: var(--bg-card);
            border-radius: 22px;
            border: 1px solid rgba(255,215,0,0.3);
            padding: 30px;
            box-shadow: 0 15px 45px rgba(0,0,0,0.45);
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 18px;
        }

        .form-group label {
            font-weight: 600;
            color: var(--text-lighter);
        }

        .form-group input,
        .form-group textarea {
            background: var(--bg-dark);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 12px 14px;
            color: var(--text-light);
            font-family: 'Inter', sans-serif;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 140px;
        }

        .form-notice {
            font-size: 0.9rem;
            color: var(--text-muted);
            background: rgba(255,215,0,0.1);
            border: 1px solid rgba(255,215,0,0.2);
            border-radius: 12px;
            padding: 14px;
            margin-bottom: 16px;
        }

        .form-submit-btn {
            width: 100%;
            text-align: center;
        }

        .contact-form-status {
            margin-top: 12px;
            min-height: 24px;
            font-size: 0.95rem;
        }

        .contact-support-card {
            background: linear-gradient(140deg, rgba(255,215,0,0.18), rgba(0,0,0,0.4));
            border-radius: 22px;
            padding: 28px;
            border: 1px solid rgba(255,215,0,0.3);
            display: flex;
            flex-direction: column;
            gap: 14px;
            box-shadow: 0 18px 45px rgba(0,0,0,0.5);
        }

        .support-call-link {
            color: var(--bg-darker);
            background: var(--primary-color);
            padding: 12px 18px;
            border-radius: 999px;
            font-weight: 700;
            text-align: center;
            text-decoration: none;
        }

        /* Hero Section */
        .hero-section {
            background-image: url('../images/hero-luxury-suv.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            padding: 100px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            max-width: 100vw;
            width: 100%;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Light dark overlay for text readability */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.35);
            pointer-events: none;
            z-index: 0;
        }

        /* Subtle gradient overlay for better text readability */
        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(0, 0, 0, 0.2) 0%,
                rgba(0, 0, 0, 0.3) 50%,
                rgba(0, 0, 0, 0.2) 100%
            );
            pointer-events: none;
            z-index: 0;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            color: var(--text-lighter);
            letter-spacing: -1px;
            line-height: 1.2;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.4);
        }

        .hero-title span {
            color: var(--primary-color);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            font-weight: 400;
            color: var(--text-lighter);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        }

        .hero-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 40px;
            max-width: 100%;
            padding: 0 10px;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.3);
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 500;
            color: var(--text-lighter);
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            max-width: 100%;
            white-space: nowrap;
        }

        .hero-feature svg {
            width: 24px;
            height: 24px;
            color: var(--primary-color);
        }

        .cta-button {
            display: inline-block;
            background: var(--primary-color);
            color: var(--bg-darker);
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5), 0 8px 30px rgba(0, 0, 0, 0.4);
            position: relative;
            z-index: 2;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
            background: #ffed4e;
        }

        /* Content Sections */
        .content-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 20px;
            color: var(--text-lighter);
            letter-spacing: -0.5px;
        }

        .section-title span {
            color: var(--primary-color);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Why Choose Us */
        .why-choose-section {
            background: var(--bg-dark);
        }

        /* Promo Box Section */
        .promo-box-section {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
            border-top: 2px solid var(--border-gold);
            border-bottom: 2px solid var(--border-gold);
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        .promo-box-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            pointer-events: none;
            animation: pulseGlow 3s ease-in-out infinite;
        }

        .promo-box-section::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent 30%,
                rgba(255, 215, 0, 0.1) 50%,
                transparent 70%
            );
            animation: shimmer 4s infinite;
            pointer-events: none;
        }

        @keyframes pulseGlow {
            0%, 100% {
                opacity: 0.5;
                transform: scale(1);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.05);
            }
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        .promo-box {
            max-width: 1200px;
            margin: 0 auto;
            background: var(--bg-card);
            border-radius: 24px;
            padding: 50px 40px;
            border: 2px solid var(--border-gold);
            box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
            position: relative;
            z-index: 1;
            animation: boxGlow 3s ease-in-out infinite;
            overflow: hidden;
        }

        .promo-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 215, 0, 0.2),
                transparent
            );
            animation: borderShine 3s infinite;
        }

        @keyframes boxGlow {
            0%, 100% {
                box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2), 0 0 20px rgba(255, 215, 0, 0.1);
                border-color: var(--border-gold);
            }
            50% {
                box-shadow: 0 10px 50px rgba(255, 215, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.3);
                border-color: #ffed4e;
            }
        }

        @keyframes borderShine {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

        .promo-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .promo-badge {
            display: inline-block;
            background: var(--primary-color);
            color: var(--bg-darker);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
            animation: badgePulse 2s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        .promo-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent
            );
            animation: badgeShine 2s infinite;
        }

        @keyframes badgePulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
            }
        }

        @keyframes badgeShine {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

        .promo-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-lighter);
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }

        .promo-title span {
            color: var(--primary-color);
        }

        .promo-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .promo-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .promo-feature {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background: var(--bg-dark);
            border-radius: 16px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .promo-feature:hover {
            border-color: var(--border-gold);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.15);
        }

        .promo-feature-icon {
            width: 60px;
            height: 60px;
            min-width: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 215, 0, 0.15);
            border-radius: 12px;
            color: var(--primary-color);
            animation: iconGlow 2s ease-in-out infinite;
            position: relative;
        }

        .promo-feature-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 12px;
            background: rgba(255, 215, 0, 0.2);
            animation: iconPulse 2s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes iconGlow {
            0%, 100% {
                box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
            }
            50% {
                box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
            }
        }

        @keyframes iconPulse {
            0%, 100% {
                opacity: 0.5;
                transform: scale(1);
            }
            50% {
                opacity: 0.8;
                transform: scale(1.1);
            }
        }

        .promo-feature-icon svg {
            width: 32px;
            height: 32px;
        }

        .promo-feature-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-lighter);
            margin-bottom: 10px;
        }

        .promo-feature-content p {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-card {
            background: var(--bg-card);
            padding: 40px 30px;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--border-gold);
            box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
            background: var(--bg-card-hover);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            opacity: 0.9;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            opacity: 1;
            transform: scale(1.1);
            color: var(--primary-color);
        }

        .feature-icon svg {
            width: 100%;
            height: 100%;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-lighter);
        }

        .feature-card p {
            color: var(--text-muted);
            line-height: 1.8;
        }

        /* Airports Section */
        .airports-section {
            background: var(--bg-dark);
        }

        .airports-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .airport-card {
            background: var(--bg-card);
            border-radius: 20px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            text-align: center;
            overflow: hidden;
        }

        .airport-card:hover {
            transform: translateY(-5px);
            border-color: var(--border-gold);
            box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
            background: var(--bg-card-hover);
        }

        .airport-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
            margin-bottom: 20px;
        }

        .airport-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .airport-card:hover .airport-image img {
            transform: scale(1.1);
        }

        .airport-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 100%);
            pointer-events: none;
        }

        .airport-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-lighter);
            padding: 0 20px;
        }

        .airport-code {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .airport-details {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 15px;
            font-weight: 500;
        }

        .airport-description {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
            padding: 0 20px 30px;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        @media (min-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .service-card {
            background: var(--bg-card);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-color: var(--border-gold);
            box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
        }

        .service-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
            border-bottom: 1px solid var(--border-color);
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
            pointer-events: none;
        }

        .service-content {
            padding: 30px;
        }

        .service-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-lighter);
        }

        .service-content p {
            color: var(--text-muted);
            line-height: 1.8;
        }

        /* About Section */
        .about-section {
            background: var(--bg-dark);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-top: 50px;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-muted);
        }

        .about-text h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-lighter);
        }

        .about-text p {
            margin-bottom: 20px;
        }

        .about-image {
            background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
            border-radius: 20px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            border: 1px solid var(--border-color);
        }

        .highlight-box {
            background: var(--bg-card);
            padding: 30px;
            border-radius: 15px;
            margin-top: 30px;
            border-left: 5px solid var(--primary-color);
        }

        .highlight-box h4 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        /* Booking Widget Section */
        .booking-section {
            background: var(--bg-dark);
            padding: 0;
            position: relative;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-height 0.6s ease, opacity 0.5s ease, padding 0.6s ease;
        }

        .booking-section.visible {
            padding: 80px 20px;
            max-height: 5000px;
            opacity: 1;
        }

        .booking-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        /* Wizard Container - Full Height, No Scroll */
        .wizard-container {
            background: var(--bg-card);
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
            overflow: hidden;
            border: 1px solid var(--border-color);
            position: relative;
            animation: slideUp 0.6s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .wizard-header {
            background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
            color: var(--text-lighter);
            padding: 20px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom: 2px solid var(--border-gold);
        }

        .wizard-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .wizard-header h1 {
            font-size: 1.5rem;
            margin-bottom: 8px;
            font-weight: 700;
            letter-spacing: -0.5px;
            position: relative;
            z-index: 1;
            color: var(--text-lighter);
        }

        .wizard-header p {
            opacity: 0.9;
            font-size: 0.9rem;
            font-weight: 400;
            position: relative;
            z-index: 1;
            color: var(--text-muted);
            margin: 0;
        }

        .progress-bar {
            height: 4px;
            background: var(--bg-dark);
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            margin-top: 10px;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary-color) 0%, #ffed4e 100%);
            transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .step-indicator {
            display: flex;
            justify-content: space-between;
            padding: 16px 20px;
            background: var(--bg-dark);
            border-bottom: 1px solid var(--border-color);
        }

        .step-dot {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 2px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .step-dot svg {
            width: 18px;
            height: 18px;
            stroke: var(--text-muted);
            transition: all 0.3s ease;
        }

        .step-dot:hover {
            transform: scale(1.05);
            border-color: var(--primary-color);
        }

        .step-dot.active {
            background: var(--primary-color);
            border-color: var(--primary-color);
            transform: scale(1.2);
            box-shadow: 0 6px 24px rgba(255, 215, 0, 0.5);
        }

        .step-dot.active svg {
            stroke: var(--bg-darker);
        }

        .step-dot.completed {
            background: #2d5016;
            border-color: #4CAF50;
        }

        .step-dot.completed svg {
            stroke: #4CAF50;
        }

        .wizard-content {
            padding: 48px 36px;
            background: var(--bg-card);
            min-height: 400px;
        }

        .step {
            display: none;
            animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .step.active {
            display: block;
        }

        @keyframes fadeIn {
            from { 
                opacity: 0; 
                transform: translateY(20px) scale(0.98); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0) scale(1); 
            }
        }

        .step-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-lighter);
            letter-spacing: -0.5px;
        }

        .step-subtitle {
            color: var(--text-muted);
            margin-bottom: 32px;
            font-size: 1rem;
            font-weight: 400;
        }

        .form-group {
            margin-bottom: 20px;
            max-width: 100%;
            overflow: hidden;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-lighter);
        }

        .form-group input,
        .form-group select {
            width: 100%;
            max-width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: var(--bg-dark);
            color: var(--text-lighter);
            font-weight: 500;
            box-sizing: border-box;
            position: relative;
            z-index: 1;
        }

        /* Fix date picker */
        .form-group input[type="date"],
        .form-group input[type="time"],
        .form-group input[type="datetime-local"] {
            position: relative;
            z-index: 10;
            cursor: pointer;
            width: 100%;
            max-width: 100%;
            min-width: 0;
        }

        .form-group input[type="date"]::-webkit-calendar-picker-indicator {
            cursor: pointer;
            filter: invert(1);
            opacity: 0.8;
        }

        .form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
            opacity: 1;
        }

        /* Time Selector */
        .time-selector {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .time-selector select {
            flex: 1;
            padding: 14px 18px;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: var(--bg-dark);
            color: var(--text-lighter);
            font-weight: 500;
            box-sizing: border-box;
            cursor: pointer;
        }

        .time-selector select:hover {
            border-color: var(--primary-color);
        }

        .time-selector select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1), 0 4px 12px rgba(255, 215, 0, 0.15);
            transform: translateY(-1px);
        }

        .time-separator {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-lighter);
            padding: 0 5px;
        }

        .time-selector input[type="hidden"] {
            display: none;
        }

        .form-group input:hover,
        .form-group select:hover {
            border-color: var(--primary-color);
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1), 0 4px 12px rgba(255, 215, 0, 0.15);
            transform: translateY(-1px);
        }

        .ride-type-selector {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }

        .ride-type-card {
            border: 2px solid var(--border-color);
            border-radius: 16px;
            padding: 24px 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: var(--bg-dark);
            position: relative;
            overflow: hidden;
        }

        .ride-type-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
        }

        .ride-type-card.selected {
            border-color: var(--primary-color);
            background: rgba(255, 215, 0, 0.1);
            box-shadow: 0 4px 16px rgba(255, 215, 0, 0.25);
            transform: translateY(-2px);
        }

        .ride-type-card .icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .ride-type-card h3 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--text-lighter);
        }

        .ride-type-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .vehicle-grid {
            display: grid;
            gap: 15px;
        }

        .vehicle-card {
            border: 2px solid var(--border-color);
            border-radius: 16px;
            padding: 22px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            align-items: center;
            gap: 18px;
            background: var(--bg-dark);
            position: relative;
            overflow: hidden;
        }

        .vehicle-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: var(--primary-color);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .vehicle-card:hover {
            border-color: var(--primary-color);
            transform: translateX(8px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.15);
        }

        .vehicle-card:hover::before {
            transform: scaleY(1);
        }

        .vehicle-card.selected {
            border-color: var(--primary-color);
            background: rgba(255, 215, 0, 0.1);
            box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2);
            transform: translateX(4px);
        }

        .vehicle-card.selected::before {
            transform: scaleY(1);
        }

        .vehicle-card.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background: var(--bg-card);
            border-color: var(--border-color);
        }

        .vehicle-card.disabled:hover {
            border-color: var(--border-color);
            transform: none;
        }

        .vehicle-image {
            width: 120px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border-radius: 12px;
            overflow: hidden;
            background: transparent;
            transition: all 0.3s ease;
        }

        .vehicle-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.3s ease;
            filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
        }

        .vehicle-card:hover .vehicle-img {
            transform: scale(1.05);
            filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.5));
        }

        .vehicle-info {
            flex: 1;
        }

        .vehicle-info h3 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--text-lighter);
        }

        .vehicle-info p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        .vehicle-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .services-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .service-card {
            background: var(--bg-dark);
            border: 2px solid var(--border-color);
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .service-card:hover {
            border-color: var(--primary-color);
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.15);
        }

        .service-card.active {
            border-color: var(--primary-color);
            background: rgba(255, 215, 0, 0.1);
        }

        .service-header {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .service-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }

        .service-info {
            flex-grow: 1;
        }

        .service-info h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-lighter);
            margin-bottom: 5px;
        }

        .service-description {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0;
        }

        .service-toggle {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-checkbox {
            width: 24px;
            height: 24px;
            cursor: pointer;
            accent-color: var(--primary-color);
        }

        .service-price {
            font-weight: 600;
            color: var(--primary-color);
            font-size: 1rem;
        }

        .service-counter {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-counter button {
            width: 36px;
            height: 36px;
            min-width: 36px;
            min-height: 36px;
            aspect-ratio: 1;
            border-radius: 50%;
            border: 2px solid var(--primary-color);
            background: var(--bg-dark);
            color: var(--primary-color);
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            flex-shrink: 0;
        }

        .service-counter button:hover {
            background: var(--primary-color);
            color: var(--bg-darker);
        }

        .service-counter .count {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-lighter);
            min-width: 30px;
            text-align: center;
        }

        .summary-box {
            background: var(--bg-dark);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 24px;
            border: 1px solid var(--border-color);
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .summary-item:last-child {
            border-bottom: none;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--primary-color);
        }

        .tip-selection-container {
            background: var(--bg-dark);
            border-radius: 15px;
            padding: 20px;
            border: 1px solid var(--border-color);
        }

        .tip-option-btn {
            flex: 1;
            min-width: 80px;
            padding: 12px 20px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            background: var(--bg-card);
            color: var(--text-lighter);
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            text-align: center;
        }

        .tip-option-btn:hover {
            border-color: var(--primary-color);
            background: rgba(255, 215, 0, 0.1);
        }

        .tip-option-btn.selected {
            border-color: var(--primary-color);
            background: var(--primary-color);
            color: var(--bg-darker);
        }

        .tip-option-btn.no-tip {
            border-color: var(--border-color);
            color: var(--text-muted);
        }

        .tip-option-btn.no-tip.selected {
            border-color: var(--border-color);
            background: var(--bg-card);
            color: var(--text-lighter);
        }

        .wizard-actions {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }

        .btn {
            flex: 1;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-secondary {
            background: var(--bg-dark);
            color: var(--text-lighter);
            border: 2px solid var(--border-color);
        }

        .btn-secondary:hover {
            background: var(--bg-card);
            border-color: var(--primary-color);
        }

        .btn-primary {
            background: var(--primary-color);
            color: var(--bg-darker);
            font-weight: 700;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(255, 215, 0, 0.4);
            background: #ffed4e;
        }

        .btn-primary:active {
            transform: translateY(-1px);
        }

        .btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .success-animation {
            text-align: center;
            padding: 40px 0;
        }

        .success-animation .checkmark {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: #4CAF50;
            color: white;
            font-size: 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            animation: scaleIn 0.5s ease;
        }

        @keyframes scaleIn {
            from { transform: scale(0); }
            to { transform: scale(1); }
        }

        .error-message {
            background: rgba(220, 53, 69, 0.2);
            border: 1px solid #dc3545;
            color: #ff6b6b;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        #payment-element {
            background: var(--bg-dark);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 15px;
            min-height: 200px;
        }

        #finalPrice {
            color: var(--primary-color);
            font-size: 1.8em;
        }

        .airline-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-top: none;
            border-radius: 0 0 8px 8px;
            max-height: 250px;
            overflow-y: auto;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        }

        .airline-suggestion-item {
            padding: 12px;
            cursor: pointer;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: var(--text-lighter);
        }

        .airline-suggestion-item:hover {
            background: var(--bg-dark);
        }

        .airline-suggestion-item:last-child {
            border-bottom: none;
        }

        .airline-name {
            font-weight: 500;
            color: var(--text-lighter);
        }

        .airline-code {
            display: inline-block;
            background: rgba(255, 215, 0, 0.2);
            color: var(--primary-color);
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            margin-left: 8px;
        }

        .btn-add-stop {
            background: var(--primary-color);
            color: var(--bg-darker);
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-add-stop:hover {
            background: #ffed4e;
            transform: translateY(-1px);
        }

        .stop-item {
            display: flex;
            gap: 10px;
            align-items: center;
            margin-bottom: 15px;
            padding: 15px;
            background: var(--bg-dark);
            border-radius: 8px;
            border: 2px solid var(--border-color);
        }

        .stop-item input {
            flex: 1;
            background: var(--bg-card);
            color: var(--text-lighter);
            border: 1px solid var(--border-color);
        }

        .btn-remove-stop {
            background: #dc3545;
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
        }

        .btn-remove-stop:hover {
            background: #c82333;
        }

        .stop-number {
            background: var(--primary-color);
            color: var(--bg-darker);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
            flex-shrink: 0;
        }

        .text-gray-600 {
            color: var(--text-muted);
            font-size: 13px;
        }

        .route-indicator {
            position: relative;
            padding-left: 30px;
            padding-bottom: 0;
        }

        .route-indicator::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 35px;
            bottom: 6px;
            width: 3px;
            background: linear-gradient(to bottom, var(--primary-color) 0%, rgba(255, 215, 0, 0.5) 100%);
            border-radius: 2px;
        }
        
        .route-point.destination {
            margin-bottom: 0;
        }

        .route-point {
            position: relative;
            margin-bottom: 20px;
        }

        .route-point::before {
            content: '';
            position: absolute;
            left: -24px;
            top: 15px;
            width: 12px;
            height: 12px;
            background: var(--primary-color);
            border: 3px solid var(--bg-card);
            border-radius: 50%;
            box-shadow: 0 0 0 2px var(--primary-color);
            z-index: 1;
        }

        .route-point.destination::before {
            background: var(--primary-color);
            box-shadow: 0 0 0 2px var(--primary-color);
            top: auto;
            bottom: 0;
        }

        .info-box {
            background: rgba(255, 215, 0, 0.1);
            border-left: 4px solid var(--primary-color);
            padding: 15px;
            border-radius: 8px;
        }

        .info-box p {
            margin: 0;
            color: var(--text-lighter);
            font-size: 0.9rem;
        }

        /* Pricing Section */
        .pricing-section {
            background: var(--bg-dark);
        }

        .pricing-highlight {
            background: var(--bg-card);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid var(--border-color);
            margin-top: 50px;
        }

        .pricing-highlight h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .pricing-highlight p {
            font-size: 1.2rem;
            color: var(--text-muted);
            line-height: 1.8;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 80px 20px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: var(--bg-card);
            padding: 30px;
            border-radius: 20px;
            border: 1px solid var(--border-color);
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--text-lighter);
        }

        /* Footer */
        .site-footer {
            background: var(--bg-darker);
            color: var(--text-light);
            padding: 60px 20px 30px;
            border-top: 1px solid var(--border-color);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 50px;
            width: auto;
            object-fit: contain;
        }

        .footer-section p,
        .footer-section a {
            color: var(--text-muted);
            text-decoration: none;
            line-height: 2;
            display: block;
        }

        .footer-section a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
            text-align: center;
            color: var(--text-muted);
        }

        .footer-bottom a {
            color: var(--text-muted);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            color: var(--primary-color);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section {
                background-attachment: scroll;
                min-height: 500px;
                padding: 60px 20px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .airports-grid {
                grid-template-columns: 1fr;
            }

            .promo-box {
                padding: 30px 20px;
            }

            .promo-title {
                font-size: 1.8rem;
            }

            .promo-subtitle {
                font-size: 1rem;
            }

            .promo-features {
                grid-template-columns: 1fr;
            }

            /* Header Mobile */
            .site-header {
                padding: 10px 0;
            }

            .site-logo img {
                height: 40px;
            }

            .header-contact a {
                padding: 8px 16px;
                font-size: 0.9rem;
            }

            .header-contact svg {
                width: 16px;
                height: 16px;
            }

            .header-content {
                flex-wrap: nowrap;
                justify-content: space-between;
                align-items: center;
                gap: 10px;
            }

            .site-logo {
                order: 0;
                flex-shrink: 0;
            }

            .main-nav {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
                order: 1;
                flex-shrink: 0;
            }

            .mobile-book-btn {
                display: inline-block;
                order: 2;
                background: var(--primary-color);
                color: var(--bg-darker);
                padding: 10px 16px;
                border-radius: 25px;
                text-decoration: none;
                font-weight: 700;
                font-size: 0.85rem;
                transition: all 0.3s ease;
                white-space: nowrap;
                flex-shrink: 0;
            }

            .mobile-book-btn:hover {
                background: #ffed4e;
                transform: translateY(-2px);
            }

            .mobile-nav {
                display: block;
            }

            .header-contact {
                order: 3;
                flex-shrink: 0;
            }

            .header-contact a {
                padding: 8px 14px;
                font-size: 0.8rem;
            }

            .header-contact span {
                display: none;
            }

            /* Wizard Mobile */
            .wizard-header {
                padding: 15px 20px;
            }

            .wizard-header h1 {
                font-size: 1.2rem;
                margin-bottom: 5px;
            }

            .wizard-header p {
                font-size: 0.8rem;
            }

            .step-indicator {
                padding: 12px 15px;
            }

            .step-dot {
                width: 36px;
                height: 36px;
            }

            .step-dot svg {
                width: 16px;
                height: 16px;
            }

            .wizard-content {
                padding: 30px 20px;
            }

            .form-group input[type="date"],
            .form-group input[type="time"],
            .form-group input[type="datetime-local"] {
                width: 100%;
                max-width: 100%;
                box-sizing: border-box;
                position: relative;
                z-index: 10;
            }

            .wizard-container {
                max-width: 100%;
                margin: 0 auto;
                overflow-x: hidden;
            }

            /* Fix service counter button aspect ratio on mobile */
            .service-counter button {
                width: 36px !important;
                height: 36px !important;
                min-width: 36px !important;
                min-height: 36px !important;
                aspect-ratio: 1 !important;
                flex-shrink: 0 !important;
            }

            /* Fix mobile horizontal scroll */
            .hero-title {
                font-size: 2rem;
                padding: 0 10px;
            }

            .hero-subtitle {
                font-size: 1.1rem;
                padding: 0 10px;
            }

            .hero-features {
                gap: 10px;
                padding: 0 15px;
            }

            .hero-feature {
                padding: 10px 16px;
                font-size: 0.85rem;
            }

            .content-section {
                padding: 60px 15px;
            }

            .section-title {
                font-size: 1.8rem;
                padding: 0 10px;
            }

            * {
                max-width: 100%;
            }

            img {
                max-width: 100%;
                height: auto;
            }
        }
