/* ============================================================
   SKYWARD AIRLINES — DESIGN SYSTEM
   Palette: deep navy + sky blue + warm savanna amber accent.
   Type: Plus Jakarta Sans (display) / Inter (body).
   ============================================================ */

:root {
  --navy: #450B10;
  --navy-dark: #33070B;
  --navy-soft: #5F161C;
  --sky: #CC3E4A;
  --sky-light: #FBEAEB;
  --amber: #E23B49;
  --amber-dark: #C72633;
  --red: #DF1A21;
  --red-dark: #B4141A;
  --white: #FFFFFF;
  --bg: #F5F7FA;
  --bg-alt: #EFF3F7;
  --charcoal: #1B2733;
  --muted: #5B6B7A;
  --border: #DFE5EC;
  --success: #2E8B57;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(69,11,16,0.06), 0 1px 1px rgba(69,11,16,0.04);
  --shadow: 0 4px 16px rgba(69,11,16,0.08);
  --shadow-lg: 0 12px 32px rgba(69,11,16,0.14);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .display {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-alt { background: var(--bg); }
.section-navy { background: var(--navy); color: white; }
.section-navy h2, .section-navy h3 { color: white; }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amber-dark); margin-bottom: 10px; display: block; }
.section-navy .eyebrow { color: var(--amber); }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); }
.section-head p { color: var(--muted); font-size: 17px; margin-top: 12px; }
.section-navy .section-head p { color: #E8C7CA; }

/* -------- Buttons -------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 26px; border-radius: var(--radius-sm); font-weight: 700; font-size: 14.5px; letter-spacing: 0.01em; border: 2px solid transparent; transition: all .18s ease; white-space: nowrap; }
.btn-primary { background: var(--red); color: #FFFFFF; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: white; }
.btn-navy:hover { background: var(--navy-soft); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: currentColor; color: var(--red); }
.btn-outline:hover { background: var(--red); color: white; border-color: var(--red); }
.btn-white { background: white; color: var(--navy); }
.btn-white:hover { background: var(--sky-light); }
.btn-ghost { background: transparent; color: var(--sky); padding: 8px 4px; font-weight: 700; }
.btn-ghost:hover { text-decoration: underline; }
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none !important; }

/* -------- Header -------- */
.site-header { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,0.97); backdrop-filter: blur(6px); border-bottom: 1px solid var(--border); transition: background .25s ease, box-shadow .2s, border-color .25s ease; }
.site-header.scrolled { box-shadow: var(--shadow); }

/* Homepage hero-overlay header: floats transparently over the hero carousel
   until the visitor scrolls, then becomes a normal solid header. */
.site-header.header-overlay { position: absolute; top: 0; left: 0; right: 0; background: transparent; backdrop-filter: none; border-bottom: 1px solid transparent; }
.site-header.header-overlay.scrolled { position: sticky; background: rgba(255,255,255,0.97); backdrop-filter: blur(6px); border-bottom: 1px solid var(--border); }
.site-header.header-overlay .logo-solid,
.site-header.header-overlay .nav-link,
.site-header.header-overlay .hamburger span { display: none; }
.site-header.header-overlay .logo-overlay { display: flex; }
.site-header.header-overlay .hamburger span.bar-overlay { display: block; background: #FFFFFF; }
.site-header.header-overlay.scrolled .logo-solid { display: flex; }
.site-header.header-overlay.scrolled .logo-overlay { display: none; }
.site-header.header-overlay.scrolled .nav-link { display: flex; }
.site-header.header-overlay.scrolled .hamburger span.bar-overlay { display: none; }
.site-header.header-overlay.scrolled .hamburger span { display: block; background: var(--navy); }

.header-inner { max-width: var(--container); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 20px; color: var(--navy); }
.logo-mark { height: 26px; width: auto; display: block; }
.logo-stack { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; }
.logo-mark-stack { height: 26px; width: auto; display: block; }
.logo-text-stack { font-weight: 800; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }
.logo-stack.navy .logo-text-stack { color: var(--navy); }
.logo-stack.white .logo-text-stack { color: #FFFFFF; }
.logo-overlay { display: none; }
.desktop-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 5px; padding: 10px 14px; font-size: 14px; font-weight: 700; color: var(--navy-dark); border-radius: var(--radius-sm); letter-spacing: 0.01em; }
.nav-link:hover, .nav-item.open .nav-link { background: var(--sky-light); color: var(--sky); }
.caret { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; transition: transform .15s; }
.nav-item.open .caret { transform: rotate(-135deg); margin-top: 3px; }
.dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: white; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 10px; min-width: 240px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .16s ease; }
.nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown.wide { min-width: 620px; column-count: 2; column-gap: 4px; }
.dropdown a { display: block; padding: 9px 12px; border-radius: var(--radius-sm); font-size: 14px; color: var(--charcoal); break-inside: avoid; }
.dropdown a:hover { background: var(--sky-light); color: var(--sky); }
.dropdown a small { display: block; color: var(--muted); font-size: 12px; margin-top: 1px; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; background: none; border: none; padding: 8px; flex-direction: column; gap: 5px; }
.hamburger span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; }
.hamburger span.bar-overlay { display: none; }

/* -------- Mobile nav -------- */
.mobile-nav-panel { position: fixed; inset: 0; background: white; z-index: 300; transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; }
.mobile-nav-panel.open { transform: translateX(0); }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.mobile-nav-body { padding: 8px 12px 100px; }
.mobile-acc { border-bottom: 1px solid var(--border); }
.mobile-acc-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 16px 8px; background: none; border: none; font-weight: 700; font-size: 16px; color: var(--navy-dark); text-align: left; }
.mobile-acc-panel { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.mobile-acc.open .mobile-acc-panel { max-height: 900px; }
.mobile-acc-panel a { display: block; padding: 11px 8px 11px 20px; color: var(--muted); font-size: 15px; }
.mobile-nav-cta { position: sticky; bottom: 0; background: white; padding: 14px 20px; border-top: 1px solid var(--border); }
.close-x { background: none; border: none; font-size: 26px; line-height: 1; color: var(--navy); padding: 4px 8px; }

/* -------- Hero -------- */
.hero { position: relative; min-height: 78vh; display: flex; align-items: flex-end; color: white; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg svg { width: 100%; height: 100%; }
.hero-carousel { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.6s ease; }
.hero-slide.active { opacity: 1; }
.hero-dots { position: absolute; z-index: 2; left: 50%; transform: translateX(-50%); bottom: 18px; display: flex; gap: 8px; }
.hero-dots button { width: 8px; height: 8px; border-radius: 999px; border: none; background: rgba(255,255,255,0.45); padding: 0; cursor: pointer; transition: background .2s, width .2s; }
.hero-dots button.active { background: #fff; width: 22px; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,26,51,0.35) 0%, rgba(7,26,51,0.55) 55%, rgba(7,26,51,0.92) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 40px 24px 48px; width: 100%; }
.hero-content h1 { font-size: clamp(32px, 5.4vw, 58px); color: white; max-width: 760px; }
.hero-content p.lead { font-size: clamp(16px, 2vw, 19px); color: #F6E4E5; max-width: 560px; margin-top: 16px; }
.hero-actions { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }

/* -------- Booking search widget -------- */
.search-widget { position: relative; z-index: 3; max-width: var(--container); margin: -56px auto 0; padding: 0 24px; }
.search-card { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 22px; }
.trip-tabs { display: flex; gap: 4px; margin-bottom: 18px; background: var(--bg); padding: 4px; border-radius: 999px; width: fit-content; }
.trip-tab { padding: 9px 20px; border-radius: 999px; border: none; background: transparent; font-weight: 700; font-size: 13.5px; color: var(--muted); }
.trip-tab.active { background: var(--red); color: white; }
.search-fields { display: grid; grid-template-columns: 1.3fr 1.3fr 1fr 1fr 1fr auto; gap: 12px; align-items: end; }
.field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.field label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.field select, .field input { width: 100%; padding: 12px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14.5px; font-family: inherit; background: white; color: var(--charcoal); }
.field select:focus, .field input:focus { border-color: var(--sky); }
.swap-btn { position: absolute; right: -22px; top: 30px; width: 34px; height: 34px; border-radius: 50%; background: var(--sky-light); border: 1px solid var(--border); display: none; align-items: center; justify-content: center; font-size: 15px; color: var(--sky); z-index: 2; }
.pax-selector { position: relative; }
.pax-summary { padding: 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14.5px; background: white; text-align: left; }
.pax-panel { position: absolute; top: calc(100% + 6px); right: 0; background: white; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 16px; width: 260px; z-index: 20; }
.pax-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; }
.pax-row div span { display: block; }
.pax-row .pax-label { font-weight: 700; font-size: 14px; }
.pax-row .pax-sub { font-size: 12px; color: var(--muted); }
.stepper { display: flex; align-items: center; gap: 10px; }
.stepper button { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--border); background: white; font-weight: 700; font-size: 16px; color: var(--navy); }
.stepper button:disabled { opacity: .35; }
.search-submit-row { display: flex; justify-content: flex-end; margin-top: 16px; }

/* -------- Promo strip -------- */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.promo-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; transition: box-shadow .15s, transform .15s; }
.promo-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.tag { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.06em; padding: 4px 10px; border-radius: 999px; background: var(--sky-light); color: var(--sky); margin-bottom: 10px; }
.promo-card h4 { font-size: 17px; margin-bottom: 6px; }
.promo-card p { color: var(--muted); font-size: 14px; margin: 0 0 12px; }

/* -------- Cards: offers / destinations / services / news -------- */
.card-grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.photo-block { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; position: relative; background-size: cover; background-position: center; }
img.photo-block { display: block; width: 100%; height: 100%; object-fit: cover; }
.grad-navy { background: linear-gradient(135deg, #450B10, #9B1D27); }
.grad-sky { background: linear-gradient(135deg, #9B1D27, #E06F78); }
.grad-amber { background: linear-gradient(135deg, #C72633, #EF727C); }
.grad-terracotta { background: linear-gradient(135deg, #8C2F37, #D9545F); }

.offer-card, .dest-card, .service-card, .news-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .18s, transform .18s; display: flex; flex-direction: column; }
.offer-card:hover, .dest-card:hover, .service-card:hover, .news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-media { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.card-media .photo-block { border-radius: 0; height: 100%; }
.card-media .card-label { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,0.92); color: var(--navy); font-size: 11px; font-weight: 800; letter-spacing: 0.05em; padding: 4px 10px; border-radius: 999px; }
.card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.card-body h4 { font-size: 17px; margin-bottom: 4px; }
.card-body .route-line { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.card-body p { font-size: 13.5px; color: var(--muted); margin: 0 0 14px; flex: 1; }
.fare-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.fare-from { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.fare-price { font-size: 20px; font-weight: 800; color: var(--navy); }

/* -------- Newsletter -------- */
.newsletter { background: var(--navy); color: white; border-radius: var(--radius-lg); padding: 52px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.newsletter h2 { color: var(--red); font-size: clamp(22px, 3vw, 30px); max-width: 460px; }
.newsletter-form { display: flex; gap: 10px; flex: 1; min-width: 280px; max-width: 440px; }
.newsletter-form input { flex: 1; padding: 13px 16px; border-radius: var(--radius-sm); border: none; font-size: 14.5px; }
.newsletter-success { color: #8FE0B0; font-weight: 700; }

/* -------- Footer -------- */
.site-footer { background: var(--navy-dark); color: #E8C7CA; padding-top: 56px; }
.footer-top { display: flex; justify-content: space-between; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap; }
.footer-brand { max-width: 320px; }
.footer-brand .logo { color: white; }
.footer-brand p { color: #BA9396; font-size: 14px; margin-top: 12px; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 13px; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; flex: 1; }
.footer-col h5 { color: white; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; padding: 6px 0; font-size: 14px; color: #CEA9AC; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0; font-size: 13px; color: #A67C7F; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: #CEA9AC; margin-right: 18px; }

/* -------- Generic page bits -------- */
.page-hero { background: var(--navy); color: white; padding: 64px 0 56px; }
.page-hero.photo { position: relative; padding: 0; height: 40vh; min-height: 300px; display: flex; align-items: flex-end; }
.page-hero.photo .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,26,51,0.15), rgba(7,26,51,0.85)); }
.page-hero.photo .container { position: relative; padding-bottom: 32px; }
.breadcrumb { font-size: 13px; color: #DDB9BC; margin-bottom: 10px; }
.breadcrumb a { color: #DDB9BC; }
.breadcrumb a:hover { color: white; }
.two-col { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.stat-strip { display: flex; gap: 40px; margin-top: 20px; flex-wrap: wrap; }
.stat-strip div strong { display: block; font-size: 26px; color: var(--navy); }
.stat-strip div span { font-size: 13px; color: var(--muted); }

.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 18px 4px; background: none; border: none; text-align: left; font-weight: 700; font-size: 15.5px; color: var(--navy-dark); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.accordion-item.open .accordion-panel { max-height: 500px; }
.accordion-panel p, .accordion-panel ul { padding: 0 4px 18px; color: var(--muted); font-size: 14.5px; }
.accordion-plus { font-size: 22px; color: var(--sky); transition: transform .2s; }
.accordion-item.open .accordion-plus { transform: rotate(45deg); }

.callout { background: var(--sky-light); border-left: 4px solid var(--sky); border-radius: var(--radius-sm); padding: 16px 18px; font-size: 14.5px; color: var(--navy-dark); margin: 18px 0; }
.callout.amber { background: #FBDFE1; border-color: var(--amber); }
table.policy-table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14.5px; }
table.policy-table th, table.policy-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border); }
table.policy-table th { background: var(--bg); color: var(--navy-dark); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.04em; }

.tab-strip { display: flex; gap: 6px; border-bottom: 2px solid var(--border); margin-bottom: 28px; flex-wrap: wrap; }
.tab-strip button { padding: 12px 18px; background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -2px; font-weight: 700; color: var(--muted); font-size: 14px; }
.tab-strip button.active { color: var(--navy); border-color: var(--amber); }

.pill { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; background: var(--bg); font-size: 12.5px; font-weight: 700; color: var(--navy-dark); border: 1px solid var(--border); }

/* -------- Booking flow -------- */
.progress-rail { display: flex; align-items: center; gap: 0; margin-bottom: 36px; overflow-x: auto; }
.progress-step { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.progress-dot { width: 28px; height: 28px; border-radius: 50%; background: var(--border); color: var(--muted); display: flex; align-items: center; justify-content: center; font-size: 12.5px; font-weight: 800; flex-shrink: 0; }
.progress-step.done .progress-dot { background: var(--success); color: white; }
.progress-step.active .progress-dot { background: var(--navy); color: white; }
.progress-label { font-size: 13px; font-weight: 700; color: var(--muted); white-space: nowrap; }
.progress-step.active .progress-label, .progress-step.done .progress-label { color: var(--navy-dark); }
.progress-line { width: 34px; height: 2px; background: var(--border); margin: 0 8px; flex-shrink: 0; }

.flight-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: flex; align-items: center; gap: 24px; margin-bottom: 14px; background: white; flex-wrap: wrap; }
.flight-card:hover { box-shadow: var(--shadow); }
.flight-endpoints { display: flex; align-items: center; gap: 18px; flex: 1; min-width: 280px; }
.fe-time { font-size: 22px; font-weight: 800; color: var(--navy); }
.fe-code { font-size: 12.5px; color: var(--muted); font-weight: 700; }
.fe-mid { flex: 1; text-align: center; color: var(--muted); font-size: 12.5px; position: relative; }
.fe-mid .line { height: 1px; background: var(--border); margin: 6px 0; position: relative; }
.fe-mid .line::after { content: "✈"; position: absolute; right: 0; top: -9px; background: white; color: var(--sky); font-size: 13px; }
.flight-meta { display: flex; gap: 22px; font-size: 13px; color: var(--muted); }
.flight-meta strong { display: block; color: var(--charcoal); font-size: 14px; }
.flight-price-col { text-align: right; min-width: 150px; }

.filter-panel { border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.filter-group { margin-bottom: 22px; }
.filter-group h5 { font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--navy-dark); margin-bottom: 10px; }
.filter-group label { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); padding: 5px 0; }

.seat-map { display: flex; justify-content: center; }
.cabin { display: inline-flex; flex-direction: column; gap: 8px; background: var(--bg); padding: 24px 30px; border-radius: var(--radius-lg); }
.seat-row { display: flex; gap: 8px; align-items: center; justify-content: center; }
.seat-row .row-num { width: 20px; font-size: 11px; color: var(--muted); text-align: center; }
.seat { width: 34px; height: 34px; border-radius: 7px; border: none; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.seat.available { background: white; border: 1.5px solid var(--border); color: var(--muted); }
.seat.selected { background: var(--navy); color: white; }
.seat.occupied { background: #EDE4E5; color: #C5B0B2; cursor: not-allowed; }
.seat.extra { background: var(--sky-light); border: 1.5px solid var(--sky); color: var(--sky); }
.seat.premium { background: #FBDFE1; border: 1.5px solid var(--amber); color: var(--amber-dark); }
.aisle-gap { width: 18px; }
.seat-legend { display: flex; gap: 22px; margin-top: 22px; flex-wrap: wrap; justify-content: center; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.legend-item .swatch { width: 18px; height: 18px; border-radius: 5px; }

.passenger-form { border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; margin-bottom: 20px; }
.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 12.5px; font-weight: 700; color: var(--muted); }
.form-field input, .form-field select, .form-field textarea { padding: 11px 12px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14.5px; font-family: inherit; }
.form-field.error input, .form-field.error select { border-color: #C0392B; }
.form-field .err-msg { font-size: 12px; color: #C0392B; display: none; }
.form-field.error .err-msg { display: block; }

.extra-row { display: flex; align-items: center; justify-content: space-between; padding: 18px; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; gap: 16px; flex-wrap: wrap; }
.extra-row-left { display: flex; gap: 14px; align-items: center; }
.extra-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--sky-light); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.extra-title { font-weight: 700; font-size: 15px; color: var(--navy-dark); }
.extra-desc { font-size: 13px; color: var(--muted); }
.qty-control { display: flex; align-items: center; gap: 10px; }
.qty-control button { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--border); background: white; font-weight: 700; }

.summary-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.summary-head { background: var(--bg); padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.summary-head h4 { font-size: 15px; }
.summary-body { padding: 18px 20px; }
.summary-line { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--muted); }
.summary-line strong { color: var(--charcoal); }
.summary-total { display: flex; justify-content: space-between; padding: 16px 20px; background: var(--navy); color: white; font-weight: 800; font-size: 17px; }

.contact-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.contact-tile { border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; }
.contact-tile .ci { font-size: 26px; margin-bottom: 10px; }

.map-block { aspect-ratio: 16/7; border-radius: var(--radius); overflow: hidden; }

/* -------- Utility -------- */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.hidden { display: none !important; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; }
.muted { color: var(--muted); }
.mb-8{margin-bottom:8px;} .mb-16{margin-bottom:16px;} .mb-24{margin-bottom:24px;} .mb-32{margin-bottom:32px;}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .search-fields { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .desktop-nav, .header-actions .btn-outline { display: none; }
  .hamburger { display: flex; }
  .footer-top { flex-direction: column; }
  .contact-tiles { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .newsletter { flex-direction: column; align-items: flex-start; padding: 32px 22px; }
  .newsletter-form { max-width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .flight-card { flex-direction: column; align-items: stretch; }
  .flight-price-col { text-align: left; }
  .hero { min-height: 86vh; }
  .search-widget { margin-top: -40px; }
  .search-card { padding: 16px; }
}
