:root {
    --gold: #d4ae6d;
    --gold-light: #e6c58c;
    --gold-dark: #b68b49;
    --gold-gradient: linear-gradient(135deg, #b68b49 0%, #d4ae6d 50%, #b68b49 100%);
    --bg-overlay: rgba(14, 18, 22, 0.7);
    --glass-bg: rgba(12, 22, 40, 0.65); /* Blue-ish glass */
    --glass-border: rgba(255, 255, 255, 0.08);
    --input-bg: rgba(6, 12, 24, 0.5); /* Blue-ish input */
    --text-white: #ffffff;
    --text-gray: #a8b2c1; /* slightly cooler grey */
    --font-sans: 'Montserrat', 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

.yellow-separator {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px 0;
}
@media (max-width: 900px) {
    .yellow-separator {
        margin: 20px auto !important;
    }
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-white);
    background-color: #070e1a; /* Deep blueish-black */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Background */
.bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 20, 38, 0.95) 0%, rgba(12, 26, 48, 0.65) 45%, rgba(0,0,0,0.1) 100%);
}
.bg-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(5, 12, 22, 0.95) 100%);
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 6%;
    position: relative;
    z-index: 10;
    /* Added deep blue stripe */
    background: linear-gradient(90deg, rgba(20, 32, 48, 0.98) 0%, rgba(26, 42, 62, 0.95) 50%, rgba(18, 28, 42, 0.98) 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 26px;
}

.wing-icon {
    width: auto;
    height: 40px;
}

.logo-text {
    font-family: var(--font-sans);
}

.gold-text {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin-right: auto;
    margin-left: 60px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: color 0.3s;
    opacity: 0.9;
}

.nav-links a:hover {
    color: var(--gold);
    opacity: 1;
}

/* Hamburger Menu Icon */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 20;
}
.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

@media (max-width: 900px) {
    .hamburger-menu { display: flex; }
}

.btn-login {
    background: linear-gradient(90deg, #b68b49, #a87e41);
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-login span {
    font-size: 16px;
    line-height: 1;
}

/* Autocomplete Styles */
.autocomplete-wrapper {
    position: relative;
    width: 100%;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(7, 14, 26, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 174, 109, 0.3);
    border-radius: 6px;
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
    margin-top: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: none;
}

.autocomplete-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: 0.2s;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: rgba(212, 174, 109, 0.1);
}

.autocomplete-item .loc-name {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.autocomplete-item .loc-type {
    display: block;
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Main Hero */
.hero-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 40px 6% 0;
    position: relative;
    z-index: 2;
}

.hero-text-block {
    max-width: 650px;
    margin-bottom: 60px;
}

.title {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}

.gold-text-playfair {
    color: var(--gold);
    font-style: italic;
    font-weight: 500;
}

.subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #e0e0e0;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* Booking Section */
.booking-section {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.tabs-wrapper {
    display: flex;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    margin-bottom: 24px;
    /* subtle gold glow behind */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(212, 174, 109, 0.05);
}

.tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 20px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.tab:hover {
    background: rgba(255,255,255,0.03);
}

.active-glow::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    box-shadow: 0 0 15px 1px var(--gold);
}

.tab-divider {
    width: 1px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
}

.tab-icon {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.tab-text h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 4px;
}

.tab-text span {
    font-size: 9px;
    color: var(--text-gray);
    letter-spacing: 1.5px;
    font-weight: 500;
}

.form-caption-extended {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-caption {
    text-align: center;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.form-caption-extended {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
@media (max-width: 900px) {
    .form-caption-extended {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }
}

.form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.inputs-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.input-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-col label {
    font-size: 11px;
    color: var(--text-gray);
    margin-bottom: 8px;
    letter-spacing: 1px;
    font-weight: 500;
}

.input-col input {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--glass-border);
    padding: 18px 20px;
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.input-col input::placeholder {
    color: rgba(255,255,255,0.3);
}

.input-col input:focus {
    border-color: var(--gold);
    background: rgba(0,0,0,0.6);
}

.input-with-icon {
    position: relative;
}

.select-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: rgba(255,255,255,0.4);
    pointer-events: none;
}

.submit-btn {
    width: 100%;
    background: var(--gold-gradient);
    color: #fff;
    border: none;
    padding: 20px;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.submit-btn:hover {
    filter: brightness(1.1);
}

.features-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 24px;
}

.features-row span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #ccc;
    font-weight: 300;
}

.check-icon {
    width: 18px;
    height: 18px;
}

/* Sections General */
.section {
    padding: 80px 5%;
    max-width: 100%; /* Removing hard constraints, relying on percentage padding for side margins */
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.section-tag {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-serif);
    font-size: 36px;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 400;
}
.section-desc {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
}

/* Routes Grid */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.route-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 24px;
    transition: 0.3s;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}
.route-card:hover {
    border-color: rgba(212, 174, 109, 0.4);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transform: translateY(-5px);
}
.rc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 12px;
}
.rc-date {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
}
.rc-company {
    font-size: 11px;
    color: var(--text-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}
.rc-destinations {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
    flex-grow: 1;
}
.rc-point {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    flex: 1;
}
.rc-arrow {
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,0.2);
    flex-shrink: 0;
}
.rc-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}
.rc-price small {
    font-size: 10px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}
.rc-price strong {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}
.rc-seat {
    font-size: 11px;
    color: var(--text-gray);
}
.btn-book {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.3s;
}
.btn-book:hover {
    background: var(--gold);
    color: #000;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 30px;
    transition: 0.3s;
}
.service-card:hover {
    border-color: rgba(212, 174, 109, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.service-icon {
    width: 35px;
    height: 35px;
    color: var(--gold);
    margin-bottom: 20px;
}
.service-title {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 500;
}
.service-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}
.service-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.service-link:hover {
    color: var(--gold-light);
}

/* Steps */
.steps-row {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}
.step-item {
    flex: 1;
    position: relative;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}
.step-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
}
.step-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Ecosystem */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 992px) {
    .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .ecosystem-grid { grid-template-columns: 1fr; }
}
.eco-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}
.eco-title {
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 500;
}

/* CTA & Footer */
.cta-section {
    text-align: center;
    padding: 60px 6%;
    background: linear-gradient(180deg, transparent 0%, rgba(14, 25, 42, 0.8) 100%);
    position: relative;
    z-index: 2;
}
.cta-title {
    font-family: var(--font-serif);
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 400;
}
.btn-gold {
    background: var(--gold-gradient);
    color: #fff;
    padding: 18px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}
.btn-gold:hover {
    filter: brightness(1.1);
}

.main-footer {
    border-top: 1px solid var(--glass-border);
    padding: 50px 6%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: #040811;
    position: relative;
    z-index: 2;
}
.footer-text {
    color: var(--text-gray);
    font-size: 13px;
    max-width: 450px;
    line-height: 1.6;
}

/* Contact Form Textarea */
.contact-textarea {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--glass-border);
    padding: 18px 20px;
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 15px;
    outline: none;
    transition: 0.3s;
    resize: vertical;
}
.contact-textarea:focus {
    border-color: var(--gold);
    background: rgba(0,0,0,0.6);
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 9, 20, 0.9);
    backdrop-filter: blur(15px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.modal-overlay:target {
    display: flex;
    animation: fadeInModal 0.3s ease;
}
@keyframes fadeInModal { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.login-modal {
    background: var(--glass-bg);
    border: 1px solid var(--gold);
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: 300;
}
.login-modal .login-btn {
    display: block;
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    font-weight: 500;
    letter-spacing: 1px;
}
.login-modal .login-btn:hover {
    background: var(--gold-gradient);
    color: #000;
    border-color: transparent;
}
.admin-login {
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    display: block;
    text-align: center;
    margin-top: 25px;
    text-decoration: none;
    letter-spacing: 1px;
}

/* Responsive Content */
@media (max-width: 1200px) {
    .routes-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .nav-links { display: none; }
    .title { font-size: 42px; }
    .hero-text-block { text-align: center; margin: 0 auto 40px; }
    .booking-section { max-width: 100%; }
    .tab { flex-direction: column; text-align: center; gap: 8px; padding: 15px; }
    .tab-icon { margin-bottom: 5px; }
    .inputs-row { flex-direction: column; }
    .features-row { flex-direction: column; gap: 12px; align-items: center; }
    .tabs-wrapper { flex-direction: column; }
    .ecosystem-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-row { flex-direction: column; gap: 20px; }
    .main-footer { flex-direction: column; align-items: flex-start; gap: 40px; }
}
@media (max-width: 600px) {
    .title { font-size: 34px; }
    .wing-icon { width: auto; height: 32px; }
    .logo-text { font-size: 18px; letter-spacing: 2px; }
    .ecosystem-grid { grid-template-columns: 1fr; }
    .routes-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .steps-row { flex-direction: column; }
    .section { padding: 50px 5%; }
    .section-title, .section-tag, .section-desc { text-align: center; margin-left: auto; margin-right: auto; }
    
    /* form-caption-extended already handled above 900px */
    
    .services-grid, .grid-3, .ecosystem-grid {
        display: flex !important;
        overflow-x: auto !important;
        gap: 20px !important;
        padding-bottom: 20px !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        margin-left: -5% !important;
        margin-right: -5% !important;
        padding-left: 5% !important;
        padding-right: 5% !important;
    }
    .form-caption-extended {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
    }
    .form-caption-extended i, .form-caption-extended svg {
        display: none !important;
    }

    .service-card, .benefit-card, .pillar-card, .eco-item, .premium-card {
        min-width: 85% !important;
        scroll-snap-align: center !important;
    }
}
