/* ============================================================================
   TD AVIATION & CATERING — design system
   Premium midnight-navy + gold + sky palette. One stylesheet, every page.
   ========================================================================== */
:root {
  --navy-900: #061230;
  --navy-850: #0a1b3f;
  --navy-800: #0d2350;
  --navy-700: #16356f;
  --navy-600: #1f4a93;
  --sky-500: #2aa6e6;
  --sky-400: #46b8f0;
  --sky-300: #8bd3f7;
  --gold-600: #c69434;
  --gold-500: #e6b84b;
  --gold: #e6b84b;
  --gold-soft: #f3d588;
  --ink: #0c1729;
  --slate-700: #33415c;
  --slate-500: #5b6b88;
  --slate-400: #8493ad;
  --line: #e4eaf3;
  --paper: #f5f8fd;
  --paper-2: #eef3fb;
  --white: #ffffff;
  --on-dark: #eaf1ff;
  --on-dark-muted: #9fb2d6;
  --radius: 16px;
  --radius-sm: 11px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(9, 25, 60, .07);
  --shadow: 0 14px 38px rgba(9, 25, 60, .12);
  --shadow-lg: 0 30px 70px rgba(7, 18, 48, .22);
  --gold-grad: linear-gradient(135deg, #f3d588 0%, #e6b84b 45%, #c69434 100%);
  --sky-grad: linear-gradient(135deg, #46b8f0 0%, #2aa6e6 55%, #0e7fc0 100%);
  --navy-grad: linear-gradient(160deg, #0a1b3f 0%, #061230 70%);
  --container: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --display: 'Sora', 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.12; letter-spacing: -.02em; color: var(--ink); }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }

/* ===================== buttons ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font: 600 .95rem/1 var(--font); padding: .82rem 1.4rem; border-radius: 50px;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary { background: var(--gold-grad); color: #2a1d04; box-shadow: 0 10px 26px rgba(198, 148, 52, .35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(198, 148, 52, .45); }
.btn-sky { background: var(--sky-grad); color: #fff; box-shadow: 0 10px 26px rgba(42, 166, 230, .35); }
.btn-sky:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(42, 166, 230, .45); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy-800); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--navy-800); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-600); }
.btn-ghost-light { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); color: #fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); }
.btn-lg { padding: 1.02rem 1.9rem; font-size: 1.02rem; }
.btn-sm { padding: .58rem 1rem; font-size: .85rem; }
.btn-block { width: 100%; }

/* ===================== topbar ===================== */
.topbar {
  background: var(--navy-900); color: var(--on-dark-muted);
  font-size: .8rem; border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: .5rem; padding-bottom: .5rem; }
.topbar .tb-left { display: flex; align-items: center; gap: .5rem; }
.topbar .tb-left svg { width: 15px; height: 15px; color: var(--gold); }
.topbar .tb-links { display: flex; gap: 1.3rem; }
.topbar a { color: var(--on-dark-muted); transition: color .2s; }
.topbar a:hover { color: var(--gold-soft); }
@media (max-width: 720px) { .topbar .tb-left span { display: none; } }

/* ===================== header ===================== */
.header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--line); transition: box-shadow .25s; }
.header .nav { display: flex; align-items: center; gap: 1.4rem; height: 74px; }
.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand img { height: 44px; width: auto; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand-txt strong { font: 800 1.02rem/1 var(--display); color: var(--navy-800); letter-spacing: -.01em; }
.brand-txt small { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-600); }
.nav-links { display: flex; align-items: center; gap: .3rem; }
.nav-links a { padding: .55rem .85rem; border-radius: 9px; font-weight: 600; font-size: .94rem; color: var(--slate-700); transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--navy-800); background: var(--paper); }
.nav-links a.active { color: var(--gold-600); }
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.trip-btn { position: relative; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 11px; background: var(--paper); color: var(--navy-800); border: 1px solid var(--line); transition: .2s; }
.trip-btn:hover { border-color: var(--gold); color: var(--gold-600); }
.trip-btn svg { width: 21px; height: 21px; }
.trip-count { position: absolute; top: -6px; right: -6px; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 50px; background: var(--gold-grad); color: #2a1d04; font-size: .68rem; font-weight: 800; display: grid; place-items: center; }
.hamburger { display: none; flex-direction: column; gap: 4px; width: 44px; height: 44px; border-radius: 11px; background: var(--paper); border: 1px solid var(--line); cursor: pointer; align-items: center; justify-content: center; }
.hamburger span { width: 20px; height: 2px; background: var(--navy-800); border-radius: 2px; transition: .25s; }
.mobile-menu { display: none; flex-direction: column; padding: .5rem clamp(1rem,4vw,2rem) 1rem; gap: .15rem; border-bottom: 1px solid var(--line); background: #fff; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: .8rem .6rem; border-radius: 9px; font-weight: 600; color: var(--slate-700); }
.mobile-menu a:hover { background: var(--paper); }
@media (max-width: 980px) { .nav-links, .nav-actions .btn { display: none; } .hamburger { display: flex; } }

/* ===================== hero ===================== */
.hero { position: relative; min-height: clamp(560px, 86vh, 820px); display: flex; align-items: center; overflow: hidden; background: var(--navy-900); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .55s var(--ease); }
.hero-slide.active { opacity: 1; }
.hero-slide .bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); }
.hero-slide.active .bg { animation: kenburns 3s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero::after { /* readability scrim */
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(6,18,48,.92) 0%, rgba(6,18,48,.7) 38%, rgba(6,18,48,.28) 70%, rgba(6,18,48,.55) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-top: 2.5rem; padding-bottom: 2.5rem; }
.hero-kicker { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem .9rem; border-radius: 50px; background: rgba(230,184,75,.16); border: 1px solid rgba(230,184,75,.4); color: var(--gold-soft); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 6vw, 4.3rem); font-weight: 800; margin: 1rem 0; max-width: 16ch; white-space: pre-line; }
.hero h1 .accent { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { color: var(--on-dark); font-size: clamp(1.02rem, 1.6vw, 1.2rem); max-width: 52ch; opacity: .95; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero-dots { position: absolute; left: 50%; bottom: 1.5rem; transform: translateX(-50%); z-index: 3; display: flex; gap: .5rem; }
.hero-dots button { width: 10px; height: 10px; border-radius: 50px; border: 0; background: rgba(255,255,255,.4); cursor: pointer; transition: .3s; }
.hero-dots button.active { width: 30px; background: var(--gold); }

/* ===================== booking search widget ===================== */
.search-wrap { position: relative; z-index: 20; margin-top: -64px; }
.search-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 1.1rem; border: 1px solid var(--line); }
.search-tabs { display: flex; gap: .35rem; margin-bottom: 1rem; flex-wrap: wrap; }
.search-tabs button { display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1.15rem; border-radius: 12px; border: 1.5px solid var(--line); background: #fff; font: 700 .92rem var(--font); color: var(--slate-700); cursor: pointer; transition: .2s; }
.search-tabs button svg { width: 18px; height: 18px; }
.search-tabs button:hover { border-color: var(--sky-400); color: var(--navy-800); }
.search-tabs button.active { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.search-panel { display: none; }
.search-panel.active { display: block; animation: fadeUp .4s var(--ease); }
.search-grid { display: grid; gap: .7rem; grid-template-columns: repeat(5, 1fr); align-items: end; }
.search-grid.hotels-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr auto; }
.search-grid.catering-grid { grid-template-columns: 1.4fr 1fr 1fr auto; }
.field { display: flex; flex-direction: column; gap: .32rem; min-width: 0; }
.field label { font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--slate-500); padding-left: .2rem; }
.field .control { display: flex; align-items: center; gap: .5rem; padding: .7rem .85rem; border: 1.5px solid var(--line); border-radius: 12px; background: var(--paper); transition: .2s; }
.field .control:focus-within { border-color: var(--sky-500); background: #fff; box-shadow: 0 0 0 4px rgba(42,166,230,.12); }
.field .control svg { width: 17px; height: 17px; color: var(--sky-500); flex: 0 0 auto; }
.field input, .field select { border: 0; background: transparent; font: 600 .92rem var(--font); color: var(--ink); width: 100%; outline: none; min-width: 0; }
.field select { cursor: pointer; }
.search-submit { grid-column: 1 / -1; }
.search-grid .search-submit-cell { display: flex; }
.search-grid .search-submit-cell .btn { width: 100%; height: 48px; }
.trip-toggle { display: inline-flex; gap: .2rem; background: var(--paper); border: 1.5px solid var(--line); border-radius: 50px; padding: .25rem; margin-bottom: .9rem; }
.trip-toggle button { border: 0; background: transparent; padding: .4rem .9rem; border-radius: 50px; font: 700 .82rem var(--font); color: var(--slate-500); cursor: pointer; }
.trip-toggle button.active { background: #fff; color: var(--navy-800); box-shadow: var(--shadow-sm); }
@media (max-width: 900px) {
  .search-grid, .search-grid.hotels-grid, .search-grid.catering-grid { grid-template-columns: 1fr 1fr; }
  .search-grid .search-submit-cell { grid-column: 1 / -1; }
}
@media (max-width: 540px) { .search-grid, .search-grid.hotels-grid, .search-grid.catering-grid { grid-template-columns: 1fr; } }

/* ===================== sections ===================== */
.section { padding: clamp(3.2rem, 7vw, 6rem) 0; }
.section-alt { background: var(--paper); }
.section-dark { background: var(--navy-grad); color: var(--on-dark); position: relative; overflow: hidden; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { max-width: 640px; margin-bottom: 2.6rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-600); margin-bottom: .8rem; }
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--gold-grad); border-radius: 2px; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.75rem); font-weight: 800; }
.section-head p { color: var(--slate-500); font-size: 1.06rem; margin-top: .8rem; }
.section-dark .section-head p { color: var(--on-dark-muted); }
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.head-row .section-head { margin-bottom: 0; }

/* ===================== services trio ===================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 380px; display: flex; align-items: flex-end; color: #fff; box-shadow: var(--shadow); isolation: isolate; }
.svc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s var(--ease); }
.svc-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(6,18,48,.93) 8%, rgba(6,18,48,.55) 45%, rgba(6,18,48,.15) 100%); }
.svc-card:hover img { transform: scale(1.07); }
.svc-body { padding: 1.7rem; }
.svc-ic { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,.16); backdrop-filter: blur(4px); display: grid; place-items: center; margin-bottom: 1rem; }
.svc-ic svg { width: 26px; height: 26px; color: var(--gold-soft); }
.svc-body h3 { color: #fff; font-size: 1.5rem; }
.svc-body p { color: rgba(255,255,255,.86); margin: .5rem 0 1rem; font-size: .96rem; }
.svc-link { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--gold-soft); }
.svc-link svg { width: 1.05em; transition: transform .25s; }
.svc-card:hover .svc-link svg { transform: translateX(5px); }
@media (max-width: 880px) { .svc-grid { grid-template-columns: 1fr; } .svc-card { min-height: 300px; } }

/* ===================== stat band ===================== */
.stat-band { background: var(--navy-grad); position: relative; overflow: hidden; }
.stat-band::before { content: ''; position: absolute; right: -60px; top: -60px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(42,166,230,.25), transparent 70%); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; z-index: 1; }
.stat { text-align: center; }
.stat .num { font: 800 clamp(2.2rem, 5vw, 3.4rem)/1 var(--display); background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .lab { color: var(--on-dark-muted); font-weight: 600; margin-top: .4rem; font-size: .95rem; }
@media (max-width: 720px) { .stat-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; } }

/* ===================== card grids (flights/hotels/catering) ===================== */
.grid { display: grid; gap: 1.4rem; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 980px) { .grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; } }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .28s var(--ease), box-shadow .28s var(--ease); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--paper-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-media .ph { width: 100%; height: 100%; }
.chip-tag { position: absolute; top: .8rem; left: .8rem; display: flex; gap: .4rem; flex-wrap: wrap; }
.chip-tag span { background: rgba(6,18,48,.78); color: #fff; font-size: .7rem; font-weight: 700; padding: .28rem .6rem; border-radius: 50px; backdrop-filter: blur(3px); }
.chip-tag span.hot { background: var(--gold-grad); color: #2a1d04; }
.fav { position: absolute; top: .7rem; right: .7rem; width: 36px; height: 36px; border-radius: 50px; background: rgba(255,255,255,.9); border: 0; display: grid; place-items: center; cursor: pointer; color: var(--slate-500); transition: .2s; }
.fav:hover { color: #e0526b; transform: scale(1.08); }
.fav svg { width: 18px; height: 18px; }
.card-body { padding: 1.15rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.card-body h3 { font-size: 1.12rem; font-weight: 700; }
.muted { color: var(--slate-500); font-size: .9rem; }
.card-foot { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: .6rem; padding-top: .5rem; }
.price { display: flex; flex-direction: column; line-height: 1.1; }
.price small { font-size: .72rem; color: var(--slate-400); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.price b { font: 800 1.4rem/1 var(--display); color: var(--navy-800); }
.price .per { font-size: .76rem; color: var(--slate-400); font-weight: 600; }

/* flight route line */
.route { display: flex; align-items: center; gap: .6rem; }
.route .ap { text-align: center; }
.route .ap .code { font: 800 1.3rem/1 var(--display); color: var(--navy-800); }
.route .ap .city { font-size: .76rem; color: var(--slate-500); }
.route .path { flex: 1; position: relative; height: 24px; display: flex; align-items: center; }
.route .path::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 11px); }
.route .path svg { width: 20px; height: 20px; color: var(--sky-500); margin: 0 auto; background: #fff; padding: 0 2px; position: relative; }
.meta-row { display: flex; flex-wrap: wrap; gap: .4rem .9rem; font-size: .82rem; color: var(--slate-500); }
.meta-row span { display: inline-flex; align-items: center; gap: .35rem; }
.meta-row svg { width: 14px; height: 14px; color: var(--sky-500); }
.airline-line { display: flex; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 600; color: var(--slate-700); }
.airline-line .dot { width: 8px; height: 8px; border-radius: 50px; background: var(--gold); }

/* stars */
.stars { display: inline-flex; gap: 1px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; }
.rating-pill { display: inline-flex; align-items: center; gap: .35rem; background: var(--navy-800); color: #fff; font-weight: 700; font-size: .82rem; padding: .25rem .55rem; border-radius: 8px; }
.amen { display: flex; flex-wrap: wrap; gap: .35rem; }
.amen span { font-size: .76rem; color: var(--slate-600); background: var(--paper); border: 1px solid var(--line); padding: .22rem .55rem; border-radius: 50px; }

/* catering includes list */
.incl { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.incl li { display: flex; gap: .55rem; font-size: .88rem; color: var(--slate-700); }
.incl li svg { width: 16px; height: 16px; color: #22a06b; flex: 0 0 auto; margin-top: .15rem; }

/* ===================== filter bar ===================== */
.page-head { background: var(--navy-grad); color: #fff; padding: clamp(2.4rem, 5vw, 3.6rem) 0 clamp(2rem,4vw,3rem); position: relative; overflow: hidden; }
.page-head::before { content: ''; position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .22; }
.page-head .container { position: relative; z-index: 1; }
.page-head .crumb { font-size: .85rem; color: var(--on-dark-muted); margin-bottom: .7rem; }
.page-head .crumb a { color: var(--sky-300); }
.page-head h1 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 800; }
.page-head p { color: var(--on-dark-muted); margin-top: .6rem; max-width: 60ch; }
.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.filters { display: flex; gap: .5rem; flex-wrap: wrap; }
.filters button { padding: .5rem 1rem; border-radius: 50px; border: 1.5px solid var(--line); background: #fff; font: 600 .85rem var(--font); color: var(--slate-600); cursor: pointer; transition: .2s; }
.filters button:hover { border-color: var(--sky-400); }
.filters button.active { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.result-count { color: var(--slate-500); font-size: .9rem; font-weight: 600; }
.sortbar { display: flex; align-items: center; gap: .5rem; }
.sortbar select { padding: .55rem .8rem; border-radius: 10px; border: 1.5px solid var(--line); font: 600 .85rem var(--font); color: var(--ink); background: #fff; cursor: pointer; }

/* ===================== steps ===================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding: 1.6rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.section-dark .step { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.step .n { width: 44px; height: 44px; border-radius: 12px; background: var(--gold-grad); color: #2a1d04; font: 800 1.2rem var(--display); display: grid; place-items: center; margin-bottom: 1rem; }
.step h3 { font-size: 1.12rem; }
.step p { color: var(--slate-500); font-size: .92rem; margin-top: .4rem; }
.section-dark .step p { color: var(--on-dark-muted); }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ===================== features ===================== */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.feat { padding: 1.6rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: .25s; }
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.feat .fic { width: 50px; height: 50px; border-radius: 13px; background: linear-gradient(135deg, rgba(42,166,230,.14), rgba(230,184,75,.16)); display: grid; place-items: center; margin-bottom: 1rem; }
.feat .fic svg { width: 24px; height: 24px; color: var(--navy-700); }
.feat h3 { font-size: 1.12rem; }
.feat p { color: var(--slate-500); font-size: .92rem; margin-top: .4rem; }
@media (max-width: 880px) { .feat-grid { grid-template-columns: 1fr; } }

/* ===================== testimonials ===================== */
.tst-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.tst { padding: 1.7rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.tst .quote-mark { font: 800 3rem/1 var(--display); color: var(--gold); opacity: .35; }
.tst p { color: var(--slate-700); font-size: 1.02rem; margin: -.6rem 0 1.2rem; }
.tst-foot { display: flex; align-items: center; gap: .8rem; }
.avatar { width: 46px; height: 46px; border-radius: 50px; background: var(--navy-grad); color: #fff; display: grid; place-items: center; font-weight: 800; font-family: var(--display); }
.tst-foot .who strong { display: block; font-weight: 700; color: var(--ink); }
.tst-foot .who span { font-size: .85rem; color: var(--slate-500); }
.tst .stars { margin-bottom: .6rem; }
@media (max-width: 760px) { .tst-grid { grid-template-columns: 1fr; } }

/* ===================== partners marquee ===================== */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 3.2rem; width: max-content; animation: scrollx 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img { height: 34px; width: auto; opacity: .92; transition: .25s; }
.marquee-track img:hover { opacity: 1; transform: translateY(-3px); }
.marquee-track .brand-word { font: 800 1.05rem var(--display); color: var(--slate-400); white-space: nowrap; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ===================== FAQ ===================== */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: .7rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; overflow: hidden; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.3rem; background: none; border: 0; cursor: pointer; font: 700 1.02rem var(--display); color: var(--ink); text-align: left; }
.faq-q .pm { width: 26px; height: 26px; flex: 0 0 auto; border-radius: 8px; background: var(--paper); display: grid; place-items: center; transition: .25s; }
.faq-q .pm svg { width: 15px; height: 15px; color: var(--navy-700); transition: transform .25s; }
.faq-item.open .pm { background: var(--gold-grad); }
.faq-item.open .pm svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a p { padding: 0 1.3rem 1.2rem; color: var(--slate-500); }

/* ===================== CTA band ===================== */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--navy-grad); color: #fff; padding: clamp(2.4rem, 5vw, 3.6rem); text-align: center; box-shadow: var(--shadow-lg); }
.cta-band::before { content: ''; position: absolute; left: -80px; bottom: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(230,184,75,.3), transparent 70%); }
.cta-band::after { content: ''; position: absolute; right: -60px; top: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(42,166,230,.3), transparent 70%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.cta-band p { color: var(--on-dark-muted); max-width: 56ch; margin: .9rem auto 0; }
.cta-band .hero-cta { justify-content: center; }

/* ===================== forms ===================== */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
.fg { display: flex; flex-direction: column; gap: .35rem; }
.fg label { font-size: .82rem; font-weight: 700; color: var(--slate-700); }
.fg input, .fg select, .fg textarea { padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: 11px; font: 500 .94rem var(--font); color: var(--ink); background: var(--paper); transition: .2s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--sky-500); background: #fff; box-shadow: 0 0 0 4px rgba(42,166,230,.12); }
.fg textarea { resize: vertical; min-height: 120px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.success-box { display: none; text-align: center; padding: 2rem; }
.success-box .ok-ic { width: 64px; height: 64px; border-radius: 50px; background: linear-gradient(135deg, #34d399, #059669); display: grid; place-items: center; margin: 0 auto 1rem; color: #fff; }
.success-box .ok-ic svg { width: 32px; height: 32px; }

/* ===================== trip / booking page ===================== */
.trip-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 1.6rem; align-items: start; }
@media (max-width: 920px) { .trip-layout { grid-template-columns: 1fr; } }
.trip-item { display: grid; grid-template-columns: 96px 1fr auto; gap: 1rem; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; margin-bottom: .9rem; }
.trip-item .ti-img { width: 96px; height: 72px; border-radius: 10px; overflow: hidden; background: var(--paper-2); }
.trip-item .ti-img img { width: 100%; height: 100%; object-fit: cover; }
.trip-item h4 { font-size: 1.02rem; font-family: var(--display); }
.trip-item .ti-meta { font-size: .85rem; color: var(--slate-500); }
.trip-item .ti-kind { font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-600); }
.trip-item .ti-price { text-align: right; font: 800 1.05rem var(--display); color: var(--navy-800); white-space: nowrap; }
.ti-remove { background: none; border: 0; color: var(--slate-400); font-size: .82rem; cursor: pointer; font-weight: 600; }
.ti-remove:hover { color: #e0526b; }
.summary { position: sticky; top: 90px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm); }
.summary h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.summary .row { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; font-size: .92rem; color: var(--slate-600); border-bottom: 1px dashed var(--line); }
.summary .row.total { border-bottom: 0; border-top: 2px solid var(--line); margin-top: .4rem; padding-top: .8rem; font-weight: 800; color: var(--ink); font-size: 1.05rem; }
.empty { text-align: center; padding: 3rem 1rem; color: var(--slate-500); }

/* ===================== about page bits ===================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 760px) { .vm-grid { grid-template-columns: 1fr; } }
.vm { padding: 1.7rem; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
.vm .fic { width: 50px; height: 50px; border-radius: 13px; background: var(--navy-grad); display: grid; place-items: center; margin-bottom: 1rem; }
.vm .fic svg { width: 24px; height: 24px; color: var(--gold-soft); }
.tick-list { list-style: none; display: flex; flex-direction: column; gap: .7rem; margin-top: 1rem; }
.tick-list li { display: flex; gap: .6rem; color: var(--slate-700); }
.tick-list li svg { width: 20px; height: 20px; color: #22a06b; flex: 0 0 auto; margin-top: .15rem; }

/* contact info cards */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 1.6rem; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { display: flex; flex-direction: column; gap: 1rem; }
.info-row { display: flex; gap: 1rem; padding: 1.1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.info-row .ic { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(135deg, rgba(42,166,230,.14), rgba(230,184,75,.16)); display: grid; place-items: center; flex: 0 0 auto; }
.info-row .ic svg { width: 22px; height: 22px; color: var(--navy-700); }
.info-row strong { display: block; font-family: var(--display); }
.info-row a, .info-row span { color: var(--slate-600); font-size: .94rem; }

/* ===================== footer ===================== */
.footer { background: var(--navy-900); color: var(--on-dark-muted); padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer-brand img { height: 46px; margin-bottom: 1rem; }
.footer-brand p { font-size: .92rem; max-width: 38ch; }
.footer-badges { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }
.footer-badges span { font-size: .72rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); padding: .3rem .6rem; border-radius: 50px; color: var(--on-dark-muted); }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer ul a { font-size: .92rem; transition: color .2s; }
.footer ul a:hover { color: var(--gold-soft); }
.footer .ct { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .8rem; font-size: .9rem; }
.footer .ct svg { width: 17px; height: 17px; color: var(--gold); flex: 0 0 auto; margin-top: .15rem; }
.footer-social { margin-top: 1.2rem; }
.fs-label { display: block; color: #fff; font-weight: 700; font-size: .85rem; margin-bottom: .6rem; }
.social-row { display: flex; gap: .55rem; }
.social-row a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); display: grid; place-items: center; color: var(--on-dark-muted); transition: .2s; }
.social-row a:hover { background: var(--gold-grad); color: #2a1d04; border-color: transparent; transform: translateY(-2px); }
.social-row svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.3rem; padding-bottom: 1.3rem; font-size: .85rem; }
.footer-legal { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--gold-soft); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===================== WhatsApp float + toast ===================== */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 80; width: 56px; height: 56px; border-radius: 50px; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.45); animation: pulse 2.6s infinite; }
.wa-float svg { width: 30px; height: 30px; }
@keyframes pulse { 0%,100% { box-shadow: 0 12px 30px rgba(37,211,102,.45); } 50% { box-shadow: 0 12px 30px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,0); } }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 120%); z-index: 90; display: flex; align-items: center; gap: .6rem; background: var(--navy-800); color: #fff; padding: .85rem 1.3rem; border-radius: 50px; box-shadow: var(--shadow-lg); font-weight: 600; font-size: .92rem; transition: transform .35s var(--ease); }
.toast.show { transform: translate(-50%, 0); }
.toast svg { width: 20px; height: 20px; color: #34d399; }

/* ===================== scroll reveal ===================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide.active .bg { animation: none; }
  .marquee-track { animation: none; }
  .wa-float { animation: none; }
  .pl-plane, .pl-trail, .pl-text { animation: none !important; }
}

/* ===================== flight search results ===================== */
.results-section { background: var(--paper); border-bottom: 1px solid var(--line); padding: clamp(2.2rem, 5vw, 3.6rem) 0; }
.results-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.results-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); display: flex; align-items: center; gap: .6rem; }
.r-arrow svg { width: 24px; height: 24px; color: var(--sky-500); }
.results-list { display: flex; flex-direction: column; gap: .8rem; }
.fr { display: grid; grid-template-columns: 1.1fr 2fr .8fr 1.3fr; align-items: center; gap: 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; transition: box-shadow .2s, border-color .2s, transform .2s; }
.fr:hover { box-shadow: var(--shadow); border-color: transparent; transform: translateY(-2px); }
.fr-airline { display: flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--slate-700); font-size: .92rem; }
.fr-airline .dot { width: 8px; height: 8px; border-radius: 50px; background: var(--gold); }
.fr-route { display: flex; align-items: center; gap: .8rem; }
.fr-time { text-align: center; }
.fr-time b { font: 800 1.15rem/1 var(--display); color: var(--navy-800); display: block; }
.fr-time span { font-size: .74rem; color: var(--slate-500); }
.fr-mid { flex: 1; text-align: center; font-size: .72rem; color: var(--slate-400); }
.fr-line { position: relative; height: 18px; display: flex; align-items: center; }
.fr-line::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1.5px; background: repeating-linear-gradient(90deg, var(--line) 0 5px, transparent 5px 9px); }
.fr-line svg { width: 16px; height: 16px; color: var(--sky-500); margin: 0 auto; background: #fff; position: relative; }
.fr-stops { color: #22a06b; font-weight: 600; }
.fr-cabin { font-size: .82rem; font-weight: 600; color: var(--slate-600); text-align: center; }
.fr-buy { display: flex; align-items: center; justify-content: flex-end; gap: .9rem; }
.results-cta { margin-top: 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap; background: linear-gradient(135deg, rgba(42,166,230,.1), rgba(230,184,75,.12)); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.4rem; }
.results-cta strong { display: block; font-family: var(--display); color: var(--navy-800); font-size: 1.05rem; }
.results-cta span { color: var(--slate-600); font-size: .9rem; }
.results-cta .btn { flex: 0 0 auto; }
@media (max-width: 820px) {
  .fr { grid-template-columns: 1fr 1fr; row-gap: .9rem; }
  .fr-route { grid-column: 1 / -1; order: 3; }
  .fr-cabin { text-align: left; order: 2; }
  .fr-buy { grid-column: 1 / -1; order: 4; justify-content: space-between; }
}

/* ===================== booking modal ===================== */
.modal-overlay { position: fixed; inset: 0; z-index: 120; background: rgba(6,18,48,.62); backdrop-filter: blur(5px); display: flex; align-items: flex-start; justify-content: center; padding: 5vh 1rem 2rem; overflow-y: auto; animation: fadeUp .25s var(--ease); }
.modal-overlay[hidden] { display: none; }
.modal { background: #fff; width: 100%; max-width: 640px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); position: relative; padding: clamp(1.3rem, 3vw, 2rem); animation: fadeUp .3s var(--ease); }
.modal-close { position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px; border: 0; border-radius: 10px; background: var(--paper); font-size: 1.5rem; line-height: 1; cursor: pointer; color: var(--slate-600); transition: .2s; }
.modal-close:hover { background: #f0e2c4; color: var(--navy-800); }
.bk-progress { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.4rem; padding-right: 2rem; }
.bk-step { display: flex; align-items: center; gap: .45rem; font: 700 .82rem var(--font); color: var(--slate-400); white-space: nowrap; }
.bk-step .bk-num { width: 24px; height: 24px; border-radius: 50px; background: var(--paper); display: grid; place-items: center; font-size: .76rem; border: 1.5px solid var(--line); }
.bk-step.active { color: var(--navy-800); } .bk-step.active .bk-num { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }
.bk-step.done { color: var(--gold-600); } .bk-step.done .bk-num { background: var(--gold-grad); color: #2a1d04; border-color: transparent; }
.bk-sep { flex: 1; height: 2px; background: var(--line); border-radius: 2px; }
.bk-title { font-size: 1.3rem; margin-bottom: 1rem; }
.bk-flight { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.1rem; margin-bottom: 1.2rem; }
.bk-flight-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: .7rem; gap: .5rem; flex-wrap: wrap; }
.bk-trip { font-size: .78rem; font-weight: 700; color: var(--slate-500); }
.bk-form .form-grid { margin-bottom: 0; }
.bk-actions { display: flex; justify-content: flex-end; gap: .6rem; margin-top: 1.3rem; flex-wrap: wrap; }
.bk-actions.center { justify-content: center; }
.bk-review { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.bk-review .row { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 1rem; font-size: .92rem; }
.bk-review .row:nth-child(odd) { background: var(--paper); }
.bk-review .row span:first-child { color: var(--slate-500); }
.bk-review .row span:last-child { font-weight: 600; text-align: right; }
.bk-review .row.total { background: var(--navy-800); color: #fff; font-weight: 800; }
.bk-review .row.total span:first-child { color: rgba(255,255,255,.8); }
.bk-note { font-size: .82rem; margin: .8rem 0 0; }
.bk-success { text-align: center; padding: 1rem 0; }
.bk-success .ok-ic { width: 64px; height: 64px; border-radius: 50px; background: linear-gradient(135deg, #34d399, #059669); display: grid; place-items: center; margin: 0 auto 1rem; color: #fff; }
.bk-success .ok-ic svg { width: 32px; height: 32px; }
.bk-success p { max-width: 44ch; margin: 0 auto .6rem; }

/* ===================== ISO certificates ===================== */
.certs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 820px) { .certs-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.cert { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow-sm); text-align: center; transition: transform .25s, box-shadow .25s; }
.cert:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.cert img { width: 100%; height: auto; border-radius: 10px; border: 1px solid var(--line); }
.cert figcaption { margin-top: .9rem; }
.cert figcaption strong { display: block; font-family: var(--display); color: var(--navy-800); }
.cert figcaption span { font-size: .85rem; color: var(--slate-500); }

/* ===================== page loader (plane fly-in) ===================== */
.page-loader { position: fixed; inset: 0; z-index: 9999; background: var(--navy-grad); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; transition: opacity .6s ease, visibility .6s ease; }
.page-loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.pl-scene { position: relative; width: min(72vw, 340px); height: 56px; }
.pl-plane { position: absolute; top: 50%; left: 0; transform: translateY(-50%); color: var(--gold-soft); animation: plFly 1.9s var(--ease) infinite; }
.pl-plane svg { width: 44px; height: 44px; filter: drop-shadow(0 8px 16px rgba(0,0,0,.45)); }
.pl-trail { position: absolute; top: 50%; left: 0; height: 2px; width: 0; transform: translateY(-50%); border-radius: 2px; background: linear-gradient(90deg, transparent, var(--gold)); animation: plTrail 1.9s var(--ease) infinite; }
.pl-text { color: #fff; font: 800 1.1rem var(--display); letter-spacing: .04em; animation: plPulse 1.6s ease-in-out infinite; }
@keyframes plFly { 0% { left: -16%; } 72% { left: 86%; } 100% { left: 116%; opacity: .15; } }
@keyframes plTrail { 0% { width: 0; opacity: 0; } 30% { opacity: .8; } 72% { width: 84%; opacity: .5; } 100% { width: 100%; opacity: 0; } }
@keyframes plPulse { 0%, 100% { opacity: .5; } 50% { opacity: 1; } }
