/* =============================================
   AzraJet - GraySky-inspired Design v2
   Font: Outfit (headings) + IBM Plex Mono (labels)
   Colors: Dark navy + bordo/maroon accent
   ============================================= */

:root {
    --dark: #182730;
    --dark-deep: #0f1a21;
    --light: #f5f3f0;
    --white: #ffffff;
    --bordo: #5C1A1B;
    --bordo-light: #7a2829;
    --text-dark: #182730;
    --text-light: #f5f3f0;
    --text-muted: #8a9299;
    --font-heading: 'Outfit', Arial, sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;
    --ease: cubic-bezier(0.25, 0, 0.05, 1);
    --transition: 0.4s var(--ease);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
}
html::-webkit-scrollbar { width: 0; }

body {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-dark);
    background: var(--dark-deep);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: var(--font-mono); }

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 64px);
}

/* ============================================
   FILM GRAIN / NOISE OVERLAY
   ============================================ */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    mix-blend-mode: overlay;
}

/* ---- Bracket motif ---- */
.bracket {
    font-family: var(--font-mono);
    opacity: 0.4;
    margin: 0 4px;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ---- Airplane Cursor + Trail ---- */
.plane-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%) rotate(-45deg);
    opacity: 0;
    transition: opacity 0.6s ease;
    will-change: transform;
}
body:hover .plane-cursor { opacity: 1; }
.cursor-trail {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
}

@media (max-width: 768px) {
    .plane-cursor { display: none; }
    .cursor-trail { display: none; }
}

/* ============================================
   NAVBAR (GraySky style - inside hero)
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 32px 0;
    transition: background var(--transition), padding var(--transition);
}
.navbar.scrolled {
    background: rgba(15, 26, 33, 0.92);
    backdrop-filter: blur(16px);
    padding: 16px 0;
}
.nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(24px, 4vw, 64px);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.nav-logo img {
    height: 60px;
    width: auto;
}
.nav-right {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}
.nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
}
.nav-links a {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--text-light);
    position: relative;
    padding: 4px 0;
    transition: opacity var(--transition);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-light);
    transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { opacity: 0.7; }

.nav-cta {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-light);
    border: 1px solid rgba(245, 243, 240, 0.3);
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bordo);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
    z-index: -1;
}
.nav-cta:hover::before { transform: scaleX(1); }
.nav-cta:hover { border-color: var(--bordo); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    z-index: 101;
}
.hamburger span {
    width: 28px;
    height: 1.5px;
    background: var(--text-light);
    transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:first-child { transform: rotate(45deg) translate(3px, 3px); }
.hamburger.active span:last-child { transform: rotate(-45deg) translate(3px, -3px); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--dark-deep);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.mobile-menu-links a {
    font-family: var(--font-heading);
    font-size: clamp(20px, 4vw, 32px);
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 2px;
    transition: color var(--transition);
}
.mobile-menu-links a:hover { color: var(--bordo-light); }
.mobile-menu-divider {
    width: 40px;
    height: 1px;
    background: rgba(245, 243, 240, 0.2);
    margin: 10px 0;
}
.mobile-menu-links .mobile-sub {
    font-family: var(--font-mono);
    font-size: 13px;
    opacity: 0.5;
}

/* ============================================
   HERO WRAPPER (video extends through values)
   ============================================ */
.hero-wrapper {
    position: relative;
    overflow: hidden;
}
.hero-wrapper .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-wrapper .hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-wrapper .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(15,26,33,0.4) 0%, rgba(15,26,33,0.5) 40%, rgba(15,26,33,0.75) 70%, rgba(15,26,33,0.9) 100%);
}
.hero-wrapper .navbar,
.hero-wrapper .mobile-menu {
    z-index: 10;
}
.hero-wrapper .hero,
.hero-wrapper .values {
    position: relative;
    z-index: 2;
}
.hero-wrapper .values {
    color: var(--text-light);
}
.hero-wrapper .values .section-label {
    color: var(--text-light);
    font-size: 14px;
    letter-spacing: 3px;
}
.hero-wrapper .values .value-number {
    color: var(--text-light);
    font-size: 15px;
}
.hero-wrapper .values .value-item p {
    color: rgba(245, 243, 240, 0.85);
    font-size: 16px;
}
.hero-wrapper .values .values-grid {
    border-color: rgba(245, 243, 240, 0.12);
}
.hero-wrapper .values .value-item {
    border-color: rgba(245, 243, 240, 0.12);
}

.hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(24px, 4vw, 64px);
    padding-bottom: 40px;
}
.hero-content {
    max-width: 900px;
    margin-bottom: 40px;
}
.hero-tag {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(36px, 7vw, 80px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--text-light);
    text-transform: uppercase;
}

/* Mission block inside hero */
.hero-mission {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
    max-width: 800px;
}
.hero-mission .mission-tag {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    padding-top: 4px;
    flex-shrink: 0;
}
.hero-mission .mission-text {
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245, 243, 240, 0.7);
}

.hero-bottom {
    display: flex;
    justify-content: flex-end;
}
.hero-scroll {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.6; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(4px); }
}

/* Corner decorations */
.hero-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: rgba(245, 243, 240, 0.2);
    border-style: solid;
    z-index: 2;
}
.hero-corner-tl { top: 16px; left: 16px; border-width: 1px 0 0 1px; }
.hero-corner-tr { top: 16px; right: 16px; border-width: 1px 1px 0 0; }
.hero-corner-bl { bottom: 16px; left: 16px; border-width: 0 0 1px 1px; }
.hero-corner-br { bottom: 16px; right: 16px; border-width: 0 1px 1px 0; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: clamp(80px, 10vw, 160px) 0;
}
.section-dark {
    background: var(--dark);
    color: var(--text-light);
}
.section-light {
    background: var(--white);
    color: var(--text-dark);
}

/* ============================================
   VALUES
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 60px;
    border-top: 1px solid rgba(245, 243, 240, 0.1);
}
.value-item {
    padding: 40px 40px 40px 0;
    border-bottom: 1px solid rgba(245, 243, 240, 0.1);
    transition: background var(--transition);
}
.value-item:nth-child(odd) {
    border-right: 1px solid rgba(245, 243, 240, 0.1);
    padding-right: 40px;
}
.value-item:nth-child(even) { padding-left: 40px; }
.value-item:hover { background: rgba(92, 26, 27, 0.1); }
.value-number {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.value-item p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
    font-weight: 300;
}

/* ============================================
   SERVICES
   ============================================ */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}
.services-heading {
    font-size: clamp(24px, 4vw, 44px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.5px;
    max-width: 700px;
}
.services-list {
    border-top: 1px solid rgba(24, 39, 48, 0.15);
}
.service-row {
    display: grid;
    grid-template-columns: 80px 60px 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid rgba(24, 39, 48, 0.15);
    transition: background var(--transition), padding-left var(--transition);
    text-decoration: none;
    color: inherit;
}
.service-row:hover {
    background: rgba(92, 26, 27, 0.04);
    padding-left: 16px;
}
.service-num {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.service-icon { display: flex; align-items: center; justify-content: center; }
.service-icon svg { opacity: 0.6; transition: opacity var(--transition); }
.service-row:hover .service-icon svg { opacity: 1; }
.service-info h3 {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.service-info p { font-size: 14px; opacity: 0.6; font-weight: 300; }
.service-arrow {
    opacity: 0;
    transform: translate(-8px, 8px);
    transition: all var(--transition);
}
.service-row:hover .service-arrow { opacity: 1; transform: translate(0, 0); }

/* ---- CTA Button ---- */
.cta-button {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid currentColor;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bordo);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
    z-index: -1;
}
.cta-button:hover::before { transform: scaleX(1); }
.cta-button:hover { color: var(--text-light); border-color: var(--bordo); }

.cta-button-light {
    color: var(--text-light);
    border-color: rgba(245, 243, 240, 0.3);
}
.cta-button-light:hover { border-color: var(--bordo); }

/* ============================================
   DESTINATIONS MARQUEE
   ============================================ */
.destinations {
    position: relative;
    overflow: hidden;
    color: var(--text-light);
    padding: clamp(50px, 6vw, 80px) 0;
}
.dest-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.dest-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dest-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(10, 20, 35, 0.85) 0%, rgba(10, 25, 50, 0.8) 50%, rgba(10, 20, 35, 0.9) 100%);
}
.destinations .container,
.destinations .dest-marquee {
    position: relative;
    z-index: 2;
}
.contact-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.dest-header {
    margin-bottom: 48px;
}
.dest-heading {
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-top: 16px;
    color: var(--text-light);
}
.dest-sub {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.5;
    margin-top: 16px;
    max-width: 600px;
}
.dest-marquee {
    overflow: hidden;
    width: 100%;
    padding: 12px 0;
}
.dest-marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
}
.dest-marquee-left {
    animation: marqueeLeft 40s linear infinite;
}
.dest-marquee-right {
    animation: marqueeRight 45s linear infinite;
}
@keyframes marqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.dest-marquee:hover .dest-marquee-track {
    animation-play-state: paused;
}
.dest-marquee-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 0 clamp(20px, 3vw, 48px);
    white-space: nowrap;
    border-right: 1px solid rgba(245, 243, 240, 0.08);
}
.dest-m-city {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 500;
    letter-spacing: -1px;
    color: var(--text-light);
    transition: color 0.3s ease;
}
.dest-marquee-item:hover .dest-m-city {
    color: var(--bordo-light);
}
.dest-m-code {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(245, 243, 240, 0.3);
}

/* ============================================
   BOOKING FORM (Light card design)
   ============================================ */
.booking-section {
    background: var(--light);
    color: var(--text-dark);
}
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.booking-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-top: 16px;
}
.booking-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.6;
    margin-top: 16px;
}
/* Flying Airplane Scene */
.flight-scene {
    position: relative;
    width: 100%;
    height: 280px;
    margin-top: 32px;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(180deg, #e8e4df 0%, #d4cfc8 40%, #c8c2ba 100%);
}
.scene-airplane {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    animation: planeFloat 4s ease-in-out infinite;
    z-index: 3;
    filter: drop-shadow(0 4px 12px rgba(92, 26, 27, 0.3));
}
@keyframes planeFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-8px); }
}
.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    z-index: 2;
}
.cloud::before, .cloud::after {
    content: '';
    position: absolute;
    background: inherit;
    border-radius: 50%;
}
.cloud-1 {
    width: 80px; height: 28px; top: 20%; right: -80px;
    animation: cloudMove 12s linear infinite;
}
.cloud-1::before { width: 40px; height: 20px; top: -10px; left: 20px; }
.cloud-1::after { width: 50px; height: 22px; top: -8px; left: 35px; }
.cloud-2 {
    width: 60px; height: 22px; top: 50%; right: -60px;
    animation: cloudMove 18s linear infinite 3s;
    opacity: 0.4;
}
.cloud-2::before { width: 35px; height: 16px; top: -8px; left: 15px; }
.cloud-3 {
    width: 100px; height: 32px; top: 30%; right: -100px;
    animation: cloudMove 15s linear infinite 7s;
    opacity: 0.3;
}
.cloud-3::before { width: 50px; height: 24px; top: -12px; left: 25px; }
.cloud-3::after { width: 60px; height: 20px; top: -6px; left: 45px; }
.cloud-4 {
    width: 50px; height: 18px; top: 65%; right: -50px;
    animation: cloudMove 20s linear infinite 10s;
    opacity: 0.25;
}
@keyframes cloudMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100vw - 200px)); }
}
.contrail {
    position: absolute;
    top: 38%;
    right: 55%;
    width: 200px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    z-index: 1;
    animation: contrailFade 4s ease-in-out infinite;
}
.contrail-2 {
    top: 40%;
    width: 160px;
    right: 56%;
    animation-delay: 0.3s;
}
@keyframes contrailFade {
    0%, 100% { opacity: 0.3; width: 200px; }
    50% { opacity: 0.6; width: 240px; }
}
.route-arc {
    position: absolute;
    bottom: 20px;
    left: 10%;
    width: 80%;
    height: 100px;
    z-index: 2;
}
.route-labels {
    position: absolute;
    bottom: 16px;
    left: 10%;
    right: 10%;
    display: flex;
    justify-content: space-between;
    z-index: 3;
}
.route-point {
    display: flex;
    align-items: center;
    gap: 6px;
}
.route-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bordo);
}
.route-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--text-dark);
    opacity: 0.4;
}

/* Booking Card */
.booking-card {
    background: var(--white);
    border-radius: 16px;
    padding: clamp(24px, 3vw, 40px);
    box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}

/* Form Tabs (pill style) */
.form-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    justify-content: center;
}
.form-tab {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--text-dark);
    padding: 10px 24px;
    border-radius: 40px;
    border: 1px solid rgba(24, 39, 48, 0.15);
    transition: all var(--transition);
    cursor: pointer;
    background: transparent;
}
.form-tab:hover { border-color: var(--bordo); }
.form-tab.active {
    background: var(--bordo);
    color: var(--white);
    border-color: var(--bordo);
}

/* Form Fields (light card) */
.booking-form label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--bordo);
    display: block;
    margin-bottom: 6px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    background: var(--light);
    border: 1px solid rgba(24, 39, 48, 0.1);
    border-radius: 8px;
    color: var(--text-dark);
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 10px 12px;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.booking-form textarea {
    width: 100%;
    background: var(--light);
    border: 1px solid rgba(24, 39, 48, 0.1);
    border-radius: 8px;
    color: var(--text-dark);
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 10px 12px;
    outline: none;
    resize: vertical;
    min-height: 60px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.booking-form textarea:focus {
    border-color: var(--bordo);
    box-shadow: 0 0 0 3px rgba(92, 26, 27, 0.08);
}
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: rgba(24, 39, 48, 0.3); }
.booking-form input:focus,
.booking-form select:focus {
    border-color: var(--bordo);
    box-shadow: 0 0 0 3px rgba(92, 26, 27, 0.08);
}
.booking-form select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23182730' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

/* Flex row */
.form-row-flex {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.form-group { position: relative; margin-bottom: 4px; }
.fg-grow { flex: 1; min-width: 120px; }
.fg-sm { flex: 0 0 110px; min-width: 90px; }
.fg-pax { flex: 0 0 110px; }

/* PAX Counter */
.pax-counter {
    display: flex;
    align-items: center;
    border: 1px solid rgba(24, 39, 48, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: var(--light);
}
.pax-btn {
    width: 36px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
    border: none;
    background: none;
    transition: background 0.2s;
}
.pax-btn:hover { background: rgba(92, 26, 27, 0.08); }
.pax-counter input {
    width: 36px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    border-radius: 0;
}
.pax-counter input:focus { box-shadow: none; }

/* Flight Leg card (multi-leg) */
.flight-leg {
    border: 1px solid rgba(24, 39, 48, 0.08);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 12px;
    position: relative;
    background: rgba(245, 243, 240, 0.5);
}
.flight-leg .leg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.flight-leg .leg-title {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--bordo);
}
.flight-leg .leg-remove {
    color: var(--bordo);
    font-size: 18px;
    cursor: pointer;
    border: none;
    background: none;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.flight-leg .leg-remove:hover { opacity: 1; }

/* Add leg button */
.add-leg-btn {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--bordo);
    border: 1px solid var(--bordo);
    border-radius: 40px;
    padding: 8px 20px;
    cursor: pointer;
    background: transparent;
    margin: 8px 0 16px;
    transition: background var(--transition), color var(--transition);
}
.add-leg-btn:hover { background: var(--bordo); color: var(--white); }

/* Submit button */
.form-submit-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 16px 28px;
    background: var(--bordo);
    color: var(--white);
    border: none;
    border-radius: 40px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background var(--transition), transform 0.2s;
}
.form-submit-btn:hover { background: var(--bordo-light); transform: scale(1.01); }

.form-success {
    display: none;
    margin-top: 16px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: #16a34a;
    align-items: center;
    gap: 8px;
    justify-content: center;
}
.form-success.show { display: flex; }
.form-error {
    display: none;
    margin-top: 10px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: #dc2626;
    text-align: center;
}
.form-error.show { display: block; }

/* Validation */
.booking-form input.invalid,
.booking-form select.invalid {
    border-color: #dc2626;
}

/* Airport Autocomplete Dropdown */
.airport-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid rgba(24, 39, 48, 0.12);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    max-height: 200px;
    overflow-y: auto;
    z-index: 50;
    display: none;
}
.airport-dropdown.show { display: block; }
.airport-option {
    padding: 8px 12px;
    font-family: var(--font-mono);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.15s;
}
.airport-option:hover { background: rgba(92, 26, 27, 0.06); }
.airport-option .ao-icao {
    font-weight: 600;
    color: var(--bordo);
}
.airport-option .ao-name {
    opacity: 0.6;
    font-size: 11px;
    text-align: right;
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    position: relative;
    background: var(--dark);
    color: var(--text-light);
    padding: clamp(60px, 8vw, 120px) 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.stats-bordo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(92, 26, 27, 0.35) 0%, rgba(92, 26, 27, 0.1) 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}
.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 26, 33, 0.75);
    z-index: 0;
}
.stats-section .container { position: relative; z-index: 1; }
.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.stat-item {
    padding: 40px 20px;
    border: 1px solid rgba(245, 243, 240, 0.08);
    transition: border-color var(--transition), background var(--transition);
}
.stat-item:hover {
    border-color: rgba(92, 26, 27, 0.4);
    background: rgba(92, 26, 27, 0.06);
}
.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}
.stat-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.4;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-header {
    margin-bottom: 60px;
}
.contact-title {
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-top: 16px;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.contact-card {
    padding: 32px;
    border: 1px solid rgba(245, 243, 240, 0.08);
    transition: border-color var(--transition), background var(--transition);
}
.contact-card:hover {
    border-color: rgba(92, 26, 27, 0.4);
    background: rgba(92, 26, 27, 0.06);
}
.contact-card-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    opacity: 0.4;
    display: block;
    margin-bottom: 12px;
}
.contact-card-value {
    font-size: 16px;
    font-weight: 300;
    display: block;
    transition: color var(--transition);
}
a.contact-card-value:hover { color: var(--bordo-light); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--light);
    padding: 80px 0 40px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(24, 39, 48, 0.1);
}
.footer-logo {
    height: 55px;
    width: auto;
}
.footer-nav {
    display: flex;
    gap: 80px;
}
.footer-nav-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-nav-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.footer-nav-group a {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.6;
    transition: opacity var(--transition);
}
.footer-nav-group a:hover { opacity: 1; }

.footer-big-text {
    font-family: var(--font-heading);
    font-size: clamp(48px, 12vw, 180px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -3px;
    color: var(--text-dark);
    padding: 60px 0 30px;
    opacity: 0.08;
    user-select: none;
}

/* Social Media Icons */
.footer-socials {
    display: flex;
    gap: 20px;
    padding-bottom: 24px;
}
.footer-socials a {
    color: var(--text-dark);
    opacity: 0.4;
    transition: opacity var(--transition), color var(--transition);
}
.footer-socials a:hover {
    opacity: 1;
    color: var(--bordo);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    opacity: 0.5;
    padding-top: 24px;
    border-top: 1px solid rgba(24, 39, 48, 0.1);
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    transition: opacity var(--transition);
    cursor: pointer;
}
.footer-legal a:hover { opacity: 0.8; }

/* ============================================
   LEGAL MODALS
   ============================================ */
.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.legal-modal.active {
    opacity: 1;
    pointer-events: all;
}
.legal-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}
.legal-modal-content {
    position: relative;
    background: var(--white);
    color: var(--text-dark);
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 48px;
    scrollbar-width: thin;
    scrollbar-color: var(--bordo) transparent;
}
.legal-modal-content::-webkit-scrollbar { width: 4px; }
.legal-modal-content::-webkit-scrollbar-thumb { background: var(--bordo); }
.legal-modal-content h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}
.legal-modal-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
}
.legal-modal-content p {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 8px;
    opacity: 0.8;
}
.legal-modal-content a {
    color: var(--bordo);
    text-decoration: underline;
}
.legal-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    color: var(--text-dark);
    cursor: pointer;
    opacity: 0.5;
    transition: opacity var(--transition);
    background: none;
    border: none;
    line-height: 1;
}
.legal-modal-close:hover { opacity: 1; }

/* ============================================
   REVEAL ANIMATION
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SUBPAGE STYLES
   ============================================ */
.subpage-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding: clamp(24px, 4vw, 64px);
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.subpage-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.subpage-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.subpage-hero .hero-overlay { z-index: -1; }
.subpage-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(10, 20, 40, 0.7) 0%, rgba(10, 25, 50, 0.65) 50%, rgba(15, 25, 35, 0.85) 100%);
}
.subpage-hero-content {
    max-width: 700px;
    margin-bottom: 40px;
}
.subpage-hero-content h1 {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 500;
    letter-spacing: -1px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-top: 12px;
}
.subpage-section { padding: clamp(60px, 8vw, 120px) 0; }
.subpage-content { max-width: 800px; }
.subpage-content h2 {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.subpage-content p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 16px;
    opacity: 0.8;
}
.subpage-content ul { list-style: none; margin: 24px 0; }
.subpage-content ul li {
    font-size: 15px;
    font-weight: 300;
    padding: 12px 0;
    border-bottom: 1px solid rgba(24, 39, 48, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}
.subpage-content ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--bordo);
    border-radius: 50%;
    flex-shrink: 0;
}
.subpage-cta {
    background: var(--dark);
    color: var(--text-light);
    padding: clamp(60px, 8vw, 120px) 0;
    text-align: center;
}
.subpage-cta h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    margin-bottom: 24px;
}
.subpage-cta p {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.7;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .nav-right { display: none; }
    .hamburger { display: flex; }

    .values-grid { grid-template-columns: 1fr; }
    .value-item { border-right: none !important; padding-left: 0 !important; padding-right: 0 !important; }

    .service-row { grid-template-columns: 60px 1fr auto; }
    .service-icon { display: none; }

    .services-header { flex-direction: column; align-items: flex-start; }

    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid-3 { grid-template-columns: repeat(3, 1fr); }

    .footer-top { flex-direction: column; gap: 40px; }
    .footer-nav { flex-wrap: wrap; gap: 40px; }

    .hero-mission { flex-direction: column; gap: 16px; }

    .booking-layout { grid-template-columns: 1fr; }
    .booking-map { display: none; }

    .form-row-flex { flex-wrap: wrap; }
    .fg-grow { min-width: 100px; }
    .fg-sm { flex: 1; min-width: 80px; }
    .fg-pax { flex: 0 0 100px; }
}

@media (max-width: 768px) {
    .nav-logo img { height: 45px; }

    .hero { padding-bottom: 30px; }
    .hero-heading { font-size: clamp(28px, 8vw, 48px); }
    .hero-mission .mission-text { font-size: 14px; }

    .form-tabs { flex-wrap: wrap; justify-content: center; }
    .form-tab { padding: 8px 18px; font-size: 12px; }

    .booking-title { font-size: clamp(24px, 6vw, 40px); }
    .contact-title { font-size: clamp(24px, 6vw, 40px); }

    .form-row-flex { gap: 10px; }
    .fg-grow { flex: 1 1 100%; min-width: 0; }
    .fg-sm { flex: 1 1 100%; min-width: 0; }
    .fg-pax { flex: 1 1 100%; min-width: 0; }
    .booking-form input,
    .booking-form select { font-size: 12px; }
    .booking-form label { font-size: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .footer-legal { justify-content: center; }
    .footer-socials { justify-content: center; }
    .footer-big-text { font-size: clamp(32px, 12vw, 80px); padding: 40px 0 20px; }

    .dest-m-city { font-size: clamp(22px, 5vw, 36px); }
}

@media (max-width: 640px) {
    .stats-inner { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-big-text { font-size: clamp(36px, 14vw, 100px); }
    .legal-modal-content { padding: 32px 24px; }
}
