/* ============================================================
   BEN VOYAGES INTER — Design System (multi-page)
   Aesthetic: premium travel booking (Booking × Airbnb × Royal Air Maroc)
   Type: Playfair Display (editorial display) + Inter (UI/body)
   ============================================================ */

:root {
  /* Brand */
  --navy-900: #04122e;
  --navy-800: #071f4d;
  --navy-700: #0b2d6f;
  --navy-600: #0e3a8c;
  --navy-500: #1256c4;
  --navy-400: #2f74e6;
  --navy-300: #7ea7f2;
  --gold-500: #ffc20e;
  --gold-400: #ffd24d;
  --gold-600: #e0a000;
  --red-500: #e4032e;
  --red-600: #c30227;
  --teal-500: #12a4a4;

  /* Warm editorial neutrals */
  --cream: #fbf7ef;
  --sand: #f3ece0;
  --ink: #0d1b30;
  --ink-2: #38455f;
  --muted: #6b7794;
  --line: #e7ddcb;
  --line-cool: #e5ebf6;
  --surface: #ffffff;

  --primary: var(--navy-600);
  --accent: var(--red-500);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 3px rgba(11,45,111,.08);
  --shadow-sm: 0 4px 16px -6px rgba(11,45,111,.16);
  --shadow: 0 20px 44px -20px rgba(11,45,111,.30);
  --shadow-lg: 0 44px 90px -34px rgba(7,31,77,.5);
  --ring: 0 0 0 4px rgba(47,116,230,.30);

  --container: 1220px;
  --nav-h: 80px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior:auto; } }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink); background: var(--surface);
  line-height: 1.65; font-size: 16.5px;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg,video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
input,textarea,select { font: inherit; color: inherit; }

h1,h2,h3,h4 { font-family: "Playfair Display", Georgia, serif; line-height: 1.08; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 8px; }
::selection { background: var(--gold-500); color: var(--navy-900); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.container--wide { max-width: 1380px; }
.section { padding: clamp(60px, 8vw, 108px) 0; position: relative; }
.section--cream { background: var(--cream); }
.section--navy { background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); color: #fff; }
.section--navy h1,.section--navy h2,.section--navy h3 { color: #fff; }
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: "Inter", sans-serif; font-weight: 600; font-size: .74rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--navy-500);
}
.kicker::before { content:""; width: 22px; height: 2px; background: var(--gold-500); border-radius: 2px; }
.section--navy .kicker { color: var(--gold-400); }
.head { max-width: 660px; margin-bottom: 46px; }
.head.center { margin-inline: auto; text-align: center; }
.head.center .kicker::before { display: none; }
.h-title { font-size: clamp(2rem, 4.4vw, 3.3rem); margin: 16px 0 14px; }
.h-sub { color: var(--muted); font-size: 1.08rem; max-width: 62ch; }
.head.center .h-sub { margin-inline: auto; }
.section--navy .h-sub { color: rgba(255,255,255,.8); }
.text-gold { color: var(--gold-600); }
.text-navy { color: var(--navy-500); }
.serif-i { font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--navy-600); --_fg:#fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; min-height: 52px;
  font-weight: 600; font-size: .98rem; color: var(--_fg); background: var(--_bg);
  border-radius: var(--radius-pill); white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s, background .25s;
  box-shadow: var(--shadow-xs);
}
.btn svg { width: 19px; height: 19px; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }
.btn--primary { --_bg: linear-gradient(135deg, var(--navy-500), var(--navy-700)); box-shadow: 0 14px 30px -12px rgba(18,86,196,.7); }
.btn--accent { --_bg: linear-gradient(135deg, var(--red-500), var(--red-600)); box-shadow: 0 14px 30px -12px rgba(228,3,46,.6); }
.btn--gold { --_bg: linear-gradient(135deg, var(--gold-400), var(--gold-600)); --_fg: var(--navy-900); box-shadow: 0 14px 30px -12px rgba(224,160,0,.7); }
.btn--wa { --_bg: linear-gradient(135deg,#25d366,#12a453); }
.btn--ghost { --_bg: transparent; --_fg:#fff; border:1.5px solid rgba(255,255,255,.45); box-shadow:none; }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--outline { --_bg:#fff; --_fg: var(--navy-700); border:1.5px solid var(--line-cool); }
.btn--outline:hover { border-color: var(--navy-400); }
.btn--lg { padding: 17px 34px; min-height: 60px; font-size: 1.05rem; }
.btn--sm { padding: 10px 18px; min-height: 42px; font-size: .9rem; }
.btn--block { width: 100%; }
.arrow { display:inline-flex; align-items:center; gap:7px; font-weight:600; color: var(--navy-600); }
.arrow svg { width:18px; height:18px; transition: transform .25s var(--ease); }
.arrow:hover svg { transform: translateX(5px); }

/* ---------- Top bar (contact strip) ---------- */
.topbar { background: var(--navy-900); color: rgba(255,255,255,.82); font-size: .82rem; }
.topbar__inner { display:flex; align-items:center; justify-content:space-between; gap:14px; padding: 8px 0; }
.topbar__left { display:flex; gap:20px; flex-wrap:wrap; }
.topbar__left a,.topbar__left span { display:inline-flex; align-items:center; gap:7px; }
.topbar__left svg { width:15px; height:15px; color: var(--gold-400); }
.topbar__right { display:flex; align-items:center; gap:14px; }
.topbar__right .iata-mini { display:inline-flex; align-items:center; gap:7px; font-weight:600; color:#fff; }
.topbar__right .iata-mini svg { width:16px; height:16px; color: var(--gold-400); }
.topbar__socials { display:flex; gap:8px; }
.topbar__socials a { opacity:.8; transition: opacity .2s, transform .2s; }
.topbar__socials a:hover { opacity:1; transform: translateY(-1px); }
.topbar__socials svg { width:16px; height:16px; }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.86); backdrop-filter: blur(16px) saturate(160%); border-bottom: 1px solid var(--line-cool); }
.nav__inner { display:flex; align-items:center; justify-content:space-between; gap:18px; height: var(--nav-h); }
.brand { display:flex; align-items:center; gap:12px; }
.brand__mark { width:48px; height:48px; flex:none; }
.brand__text { display:flex; flex-direction:column; line-height:1; }
.brand__name { font-family:"Playfair Display",serif; font-weight:800; font-size:1.24rem; color: var(--navy-800); letter-spacing:-.01em; }
.brand__name b { color: var(--gold-600); font-style: italic; font-weight:700; }
.brand__sub { font-size:.6rem; letter-spacing:.36em; text-transform:uppercase; color: var(--muted); font-weight:600; margin-top:4px; }
.nav__links { display:flex; align-items:center; gap:2px; }
.nav__links > a,.nav__links > .has-mega > a { padding: 11px 15px; border-radius: var(--radius-pill); font-weight:500; font-size:.96rem; color: var(--ink-2); transition: background .2s, color .2s; display:inline-flex; align-items:center; gap:6px; }
.nav__links a:hover { background: var(--sand); color: var(--navy-700); }
.nav__links a.active { color: var(--navy-700); font-weight:600; }
.nav__links a.active::after { content:""; }
.nav__actions { display:flex; align-items:center; gap:12px; }
.nav__toggle { display:none; width:46px; height:46px; border-radius:12px; align-items:center; justify-content:center; color: var(--ink); }
.nav__toggle svg { width:26px; height:26px; }

/* mega dropdown */
.has-mega { position: relative; }
.mega { position:absolute; top:calc(100% + 10px); left:50%; transform: translateX(-50%) translateY(8px); width: min(560px, 90vw); background:#fff; border:1px solid var(--line-cool); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 18px; opacity:0; visibility:hidden; transition: opacity .22s var(--ease), transform .22s var(--ease); z-index: 120; }
.has-mega:hover .mega,.has-mega:focus-within .mega { opacity:1; visibility:visible; transform: translateX(-50%) translateY(0); }
.mega__grid { display:grid; grid-template-columns:1fr 1fr; gap:6px; }
.mega__item { display:flex; gap:12px; padding:12px; border-radius: var(--radius); transition: background .2s; }
.mega__item:hover { background: var(--sand); }
.mega__item svg { width:22px; height:22px; color: var(--navy-500); flex:none; margin-top:2px; }
.mega__item b { font-weight:600; display:block; font-size:.95rem; }
.mega__item span { font-size:.82rem; color: var(--muted); }

/* Mobile menu */
.mmenu { position: fixed; inset:0; z-index:200; display:none; flex-direction:column; background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); color:#fff; padding: 24px 24px calc(24px + env(safe-area-inset-bottom)); }
.mmenu.open { display:flex; animation: fadeIn .28s var(--ease-out); }
.mmenu__top { display:flex; align-items:center; justify-content:space-between; margin-bottom:26px; }
.mmenu__top .brand__name { color:#fff; }
.mmenu__close { width:46px; height:46px; color:#fff; }
.mmenu__close svg { width:28px; height:28px; }
.mmenu nav { display:flex; flex-direction:column; gap:2px; }
.mmenu nav a { padding:15px 6px; font-family:"Playfair Display",serif; font-size:1.4rem; font-weight:600; border-bottom:1px solid rgba(255,255,255,.1); }
.mmenu__foot { margin-top:auto; display:grid; gap:12px; }
@keyframes fadeIn { from{opacity:0; transform: translateY(-8px);} to{opacity:1; transform:none;} }

/* ---------- HERO + PLANE ANIMATION ---------- */
.hero { position: relative; overflow: hidden; color:#fff; isolation:isolate; padding: clamp(48px, 8vw, 90px) 0 clamp(120px, 12vw, 150px); }
.hero__bg { position:absolute; inset:0; z-index:-4; background: linear-gradient(165deg, var(--navy-600) 0%, var(--navy-800) 55%, var(--navy-900) 100%); }

/* ===== HERO v2 — cinematic full-bleed ===== */
.hero2 { position:relative; min-height: min(92svh, 860px); display:flex; flex-direction:column; justify-content:flex-end;
  color:#fff; overflow:hidden; isolation:isolate; padding: calc(var(--nav-h) + 26px) 0 0; }
.hero2__photo { position:absolute; inset:0; z-index:-5; }
.hero2__photo img { width:100%; height:100%; object-fit:cover; object-position:center 42%; }

/* --- Hero slideshow (crossfade + slow Ken Burns) --- */
.hero2__slides { position:absolute; inset:0; z-index:-5; overflow:hidden; background: var(--navy-900); }
.hero2__slide { position:absolute; inset:0; opacity:0; transition: opacity 1.5s var(--ease); will-change: opacity; }
.hero2__slide.is-active { opacity:1; }
.hero2__slide img { width:100%; height:100%; object-fit:cover; object-position:center 45%; transform: scale(1.06); }
.hero2__slide.is-active img { animation: kenburns 9s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1.15); } }

/* slide caption chip */
.hero2__place { display:inline-flex; align-items:center; gap:8px; margin-bottom:14px;
  font-size:.8rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  color: var(--gold-400); opacity:0; transform: translateY(6px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.hero2__place.show { opacity:1; transform:none; }
.hero2__place svg { width:15px; height:15px; }

/* dots */
.hero2__dots { display:flex; gap:9px; margin-top: 30px; }
.hero2__dot { width:34px; height:4px; border-radius:99px; background: rgba(255,255,255,.32); position:relative; overflow:hidden;
  transition: background .3s; cursor:pointer; padding:0; }
.hero2__dot::after { content:""; position:absolute; inset:0; width:0; background: var(--gold-500); transition: width .3s linear; }
.hero2__dot[aria-current="true"] { background: rgba(255,255,255,.5); }
.hero2__dot[aria-current="true"]::after { width:100%; transition: width 6s linear; }
.hero2__dot:hover { background: rgba(255,255,255,.6); }
/* bigger tap target without changing the visual bar */
.hero2__dot::before { content:""; position:absolute; inset:-16px -6px; }

@media (prefers-reduced-motion: reduce){
  .hero2__slide.is-active img { animation:none; transform:scale(1); }
  .hero2__slide { transition:none; }
  .hero2__dot::after { transition:none; }
}
.hero2__scrim { position:absolute; inset:0; z-index:-4;
  background:
    linear-gradient(180deg, rgba(4,18,46,.82) 0%, rgba(4,18,46,.34) 34%, rgba(4,18,46,.72) 74%, var(--navy-900) 100%),
    linear-gradient(96deg, rgba(4,18,46,.86) 8%, rgba(4,18,46,.34) 52%, rgba(11,45,111,.24) 100%);
}
.hero2__tint { position:absolute; inset:-10%; z-index:-3;
  background: radial-gradient(42% 46% at 84% 16%, rgba(255,194,14,.22), transparent 62%),
              radial-gradient(46% 48% at 8% 74%, rgba(18,86,196,.34), transparent 64%); }
.hero2 .sky { z-index:-2; }

.hero2__inner { position:relative; padding-bottom: clamp(30px, 5vw, 58px); }
.hero2__eyebrow { display:inline-flex; align-items:center; gap:11px; padding:8px 18px 8px 8px;
  background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.24); border-radius: var(--radius-pill);
  font-size:.85rem; font-weight:500; backdrop-filter: blur(10px); letter-spacing:.01em; }
.hero2__eyebrow b { background: var(--gold-500); color: var(--navy-900); font-weight:800; padding:5px 12px;
  border-radius: var(--radius-pill); font-size:.72rem; letter-spacing:.08em; }
.hero2 h1 { color:#fff; font-size: clamp(2.7rem, 7vw, 5.6rem); line-height:.98; letter-spacing:-.03em; margin: 22px 0 0; max-width: 15ch;
  text-shadow: 0 4px 30px rgba(0,0,0,.32); }
.hero2 h1 em { font-style: italic; color: var(--gold-400); display:block; }
.hero2__lead { font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: rgba(255,255,255,.9); max-width: 50ch; margin-top: 20px; }
.hero2__row { display:flex; align-items:center; gap: 26px; flex-wrap:wrap; margin-top: 26px; }
.hero2__cta { display:flex; gap:12px; flex-wrap:wrap; }
.hero2__proof { display:flex; align-items:center; gap:12px; }
.hero2__stars { display:flex; gap:2px; color: var(--gold-400); }
.hero2__stars svg { width:17px; height:17px; }
.hero2__proof p { font-size:.9rem; color: rgba(255,255,255,.82); line-height:1.3; }
.hero2__proof b { color:#fff; }

/* ticker of destinations at hero bottom */
.hero2__ticker { position:relative; z-index:2; border-top:1px solid rgba(255,255,255,.16);
  background: rgba(4,18,46,.42); backdrop-filter: blur(10px); overflow:hidden; }
.hero2__track { display:flex; gap:42px; width:max-content; padding: 13px 0; animation: tickerRun 38s linear infinite; }
.hero2__ticker:hover .hero2__track { animation-play-state: paused; }
.hero2__track span { display:inline-flex; align-items:center; gap:10px; font-size:.9rem; font-weight:600; color: rgba(255,255,255,.86); white-space:nowrap; }
.hero2__track span svg { width:15px; height:15px; color: var(--gold-400); }
.hero2__track b { color: var(--gold-400); font-weight:700; }
@keyframes tickerRun { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .hero2__track { animation:none; } }

@media (max-width: 860px){
  .hero2 { min-height: auto; padding-top: calc(var(--nav-h) + 12px); }
  .hero2__inner { padding-bottom: 32px; }
  .hero2 h1 { max-width: 100%; }
  .hero2__row { gap:18px; }
  .hero2__cta .btn { flex:1 1 auto; }
}
.hero__glow { position:absolute; inset:-20%; z-index:-3;
  background:
    radial-gradient(38% 40% at 82% 12%, rgba(255,194,14,.28), transparent 60%),
    radial-gradient(40% 45% at 12% 30%, rgba(47,116,230,.5), transparent 62%),
    radial-gradient(45% 50% at 70% 90%, rgba(228,3,46,.16), transparent 60%);
}
/* Sky = plane layer. Dashed trail is a SEPARATE static layer so the plane never erases it. */
.sky { position:absolute; inset:0; z-index:-2; pointer-events:none; overflow:hidden; }
.sky__trail { position:absolute; inset:0; width:100%; height:100%; opacity:.55; }
.sky__trail path { fill:none; stroke: rgba(255,255,255,.32); stroke-width:2; stroke-dasharray: 3 11; stroke-linecap: round; }
.sky__trail .trail-2 { stroke: rgba(255,210,77,.34); stroke-dasharray: 2 13; }
.sky__plane { position:absolute; top:0; left:0; width:66px; height:66px; color: var(--gold-400); filter: drop-shadow(0 8px 16px rgba(0,0,0,.35)); will-change: transform; animation: fly 34s cubic-bezier(.5,0,.5,1) infinite; }
.sky__plane--2 { width:40px; color: rgba(255,255,255,.85); animation: fly2 44s cubic-bezier(.5,0,.5,1) infinite; opacity:.7; }
@keyframes fly {
  0%   { transform: translate(-14vw, 30vh) rotate(-8deg) scaleX(1); }
  20%  { transform: translate(20vw, 16vh) rotate(-14deg) scaleX(1); }
  44%  { transform: translate(112vw, 8vh) rotate(-6deg) scaleX(1); }
  49%  { transform: translate(112vw, 8vh) rotate(0deg) scaleX(1); }
  50%  { transform: translate(112vw, 12vh) rotate(0deg) scaleX(-1); }
  72%  { transform: translate(30vw, 26vh) rotate(6deg) scaleX(-1); }
  95%  { transform: translate(-14vw, 34vh) rotate(2deg) scaleX(-1); }
  100% { transform: translate(-14vw, 30vh) rotate(-8deg) scaleX(1); }
}
@keyframes fly2 {
  0%   { transform: translate(115vw, 62vh) rotate(6deg) scaleX(-1); }
  48%  { transform: translate(-16vw, 48vh) rotate(2deg) scaleX(-1); }
  50%  { transform: translate(-16vw, 52vh) rotate(-6deg) scaleX(1); }
  100% { transform: translate(115vw, 66vh) rotate(-4deg) scaleX(1); }
}
@media (prefers-reduced-motion: reduce){ .sky__plane { animation: none; transform: translate(60vw, 16vh) rotate(-6deg); } .sky__plane--2 { display:none; } }

.hero__inner { position: relative; display:grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items:center; }
.hero__badge { display:inline-flex; align-items:center; gap:10px; padding:8px 16px 8px 8px; background: rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18); border-radius: var(--radius-pill); font-size:.86rem; backdrop-filter: blur(6px); }
.hero__badge b { background: var(--gold-500); color: var(--navy-900); font-weight:700; padding:4px 11px; border-radius: var(--radius-pill); font-size:.74rem; }
.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.4rem); color:#fff; margin: 20px 0 18px; line-height:1.04; }
.hero h1 .grad { color: var(--gold-400); font-style: italic; }
.hero__lead { font-size: 1.16rem; color: rgba(255,255,255,.85); max-width: 46ch; }
.hero__points { display:flex; gap:22px; margin-top:22px; flex-wrap:wrap; }
.hero__points li { display:flex; align-items:center; gap:8px; font-size:.92rem; color: rgba(255,255,255,.82); }
.hero__points svg { width:18px; height:18px; color: var(--gold-400); }

/* Hero visual (aspirational photo) */
.hero__media { position: relative; }
.hero__media > img { width:100%; border-radius: var(--radius-xl); aspect-ratio: 4/4.4; object-fit: cover; box-shadow: var(--shadow-lg); }
.hero__media .float-card { position:absolute; background:#fff; color: var(--ink); border-radius: var(--radius); padding: 14px 16px; box-shadow: var(--shadow); display:flex; align-items:center; gap:12px; }
.float-card svg { width:34px; height:34px; }
.float-card b { font-family:"Playfair Display",serif; font-size:1.05rem; display:block; line-height:1.1; }
.float-card span { font-size:.8rem; color: var(--muted); }
.hero__media .fc-1 { top:20px; left:-18px; }
.hero__media .fc-1 svg { color: var(--teal-500); }
.hero__media .fc-2 { bottom:24px; right:-16px; }
.hero__media .fc-2 svg { color: var(--gold-600); }

/* ---------- Search widget (Booking-style) ---------- */
.searchw { position: relative; z-index: 5; margin-top: -76px; }
/* v2: sits in normal flow under the cinematic hero (no overlap on the ticker) */
.searchw--flow { margin-top: clamp(38px, 5vw, 62px); scroll-margin-top: 100px; }
.searchw__head { text-align:center; margin-bottom: 20px; }
.searchw__head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom:6px; }
.searchw__head p { color: var(--muted); font-size:1rem; }
.searchw__card { background:#fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border:1px solid var(--line-cool); padding: 10px; }
.searchw__tabs { display:flex; gap:4px; padding: 6px 6px 12px; }
.searchw__tab { display:inline-flex; align-items:center; gap:8px; padding:9px 16px; border-radius: var(--radius-pill); font-weight:600; font-size:.92rem; color: var(--muted); }
.searchw__tab svg { width:18px; height:18px; }
.searchw__tab.active { background: var(--navy-700); color:#fff; }
.searchw__form { display:grid; grid-template-columns: 1.2fr 1.2fr 1fr .9fr auto; gap:8px; align-items:end; }
.sf { position: relative; padding: 12px 14px; border-radius: var(--radius); background: var(--cream); border:1.5px solid transparent; transition: border-color .2s, background .2s; }
.sf:focus-within { border-color: var(--navy-400); background:#fff; }
.sf label { display:block; font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color: var(--muted); margin-bottom:4px; }
.sf input,.sf select { width:100%; border:0; background:transparent; font-weight:600; font-size:.98rem; padding:0; }
.sf input:focus,.sf select:focus { outline:none; }
.searchw__submit { height: 100%; }
.searchw__submit .btn { height:100%; min-height:64px; width:100%; }
.searchw__pop { display:flex; gap:8px; flex-wrap:wrap; padding: 6px 10px 8px; }
.searchw__pop span { font-size:.82rem; color: var(--muted); }
.searchw__pop a { font-size:.82rem; font-weight:600; color: var(--navy-600); background: var(--sand); padding:4px 11px; border-radius: var(--radius-pill); transition: background .2s; }
.searchw__pop a:hover { background: var(--gold-500); color: var(--navy-900); }

/* ---------- Trust logos strip ---------- */
.trust { padding: 30px 0; border-bottom:1px solid var(--line-cool); }
.trust__row { display:flex; align-items:center; justify-content:center; gap: clamp(24px,5vw,64px); flex-wrap:wrap; }
.trust__item { display:flex; align-items:center; gap:10px; color: var(--muted); font-weight:600; font-size:.92rem; }
.trust__item svg { width:26px; height:26px; color: var(--navy-400); }

/* ---------- Category pills ---------- */
.cats { display:flex; gap:12px; overflow-x:auto; padding: 4px 2px 10px; scrollbar-width:none; }
.cats::-webkit-scrollbar { display:none; }
.cat { flex:none; display:flex; flex-direction:column; align-items:center; gap:10px; width: 108px; padding: 16px 10px; border-radius: var(--radius); border:1px solid var(--line-cool); background:#fff; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--gold-500); }
.cat__ic { width:48px; height:48px; border-radius:14px; display:grid; place-items:center; background: var(--cream); color: var(--navy-600); }
.cat__ic svg { width:26px; height:26px; }
.cat span { font-weight:600; font-size:.88rem; }

/* ---------- Deal cards (Booking-style) ---------- */
.deals { display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.deal { background:#fff; border:1px solid var(--line-cool); border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-xs); display:flex; flex-direction:column; transition: transform .3s var(--ease), box-shadow .3s; }
.deal:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.deal__media { position:relative; aspect-ratio: 16/11; overflow:hidden; background: var(--sand); }
.deal__media img { width:100%; height:100%; object-fit:cover; object-position:center; transition: transform .6s var(--ease); }
.deal:hover .deal__media img { transform: scale(1.07); }
/* soft bottom fade so the white body blends into the photo */
.deal__shade { position:absolute; inset:auto 0 0 0; height:46%; pointer-events:none;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.16) 55%, rgba(255,255,255,.5)); }
.deal__flag { position:absolute; z-index:2; top:12px; left:12px; background: var(--red-500); color:#fff; font-weight:700; font-size:.72rem; letter-spacing:.03em; padding:6px 12px; border-radius: var(--radius-pill); box-shadow: 0 6px 16px -6px rgba(0,0,0,.4); }
.deal__flag.gold { background: var(--gold-500); color: var(--navy-900); }
.deal__body { padding: 18px; display:flex; flex-direction:column; flex:1; }
.deal__route { display:flex; align-items:center; gap:8px; font-size:.82rem; color: var(--muted); font-weight:600; }
.deal__route svg { width:15px; height:15px; color: var(--navy-400); }
.deal h3 { font-size: 1.24rem; margin: 6px 0 4px; }
.deal__desc { font-size:.9rem; color: var(--muted); flex:1; }
.deal__meta { display:flex; gap:12px; margin: 12px 0; font-size:.82rem; color: var(--ink-2); flex-wrap:wrap; }
.deal__meta span { display:inline-flex; align-items:center; gap:6px; }
.deal__meta svg { width:15px; height:15px; color: var(--navy-400); }
.deal__foot { display:flex; align-items:flex-end; justify-content:space-between; gap:10px; padding-top: 12px; border-top:1px solid var(--line-cool); }
.deal__price span { font-size:.74rem; color: var(--muted); display:block; }
.deal__price b { font-family:"Playfair Display",serif; font-size:1.4rem; color: var(--navy-700); }
.deal__price b small { font-size:.7rem; color: var(--muted); font-family:"Inter"; font-weight:600; }
/* rating is a badge on the photo — informational, never the CTA */
.deal__rating { position:absolute; z-index:2; top:12px; right:12px; display:inline-flex; align-items:center; gap:5px;
  background: rgba(4,18,46,.82); backdrop-filter: blur(6px); color:#fff; font-weight:700; font-size:.8rem;
  padding:6px 10px; border-radius: var(--radius-pill); }
.deal__rating svg { width:13px; height:13px; color: var(--gold-400); }

/* Action row: WhatsApp (primary) + quote form (secondary) */
.deal__actions { display:grid; grid-template-columns: 1.5fr 1fr; gap:9px; margin-top:14px; }
.deal__actions .btn { width:100%; min-height:46px; padding-inline:14px; }
.deal__actions .btn svg { width:17px; height:17px; }
@media (max-width: 400px){ .deal__actions { grid-template-columns:1fr; } }

/* horizontal scroller variant */
.scroller { display:flex; gap:18px; overflow-x:auto; padding: 6px 2px 18px; scroll-snap-type:x mandatory; scrollbar-width:none; }
.scroller::-webkit-scrollbar { display:none; }
.scroller > * { scroll-snap-align:start; flex: 0 0 300px; }

/* ---------- Destination editorial cards ---------- */
.dest-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:18px; }
.dcard { position:relative; border-radius: var(--radius-lg); overflow:hidden; aspect-ratio: 3/4; display:block; box-shadow: var(--shadow-xs); }
.dcard img { width:100%; height:100%; object-fit:cover; transition: transform .7s var(--ease); }
.dcard:hover img { transform: scale(1.08); }
.dcard__grad { position:absolute; inset:0; background: linear-gradient(0deg, rgba(4,18,46,.9), rgba(4,18,46,.1) 55%, transparent); }
.dcard__body { position:absolute; inset:auto 0 0 0; padding:18px; color:#fff; z-index:2; }
.dcard__body h3 { color:#fff; font-size:1.3rem; }
.dcard__body p { font-size:.84rem; color: rgba(255,255,255,.82); display:flex; align-items:center; gap:6px; }
.dcard__body p svg { width:14px; height:14px; color: var(--gold-400); }
.dcard__price { position:absolute; top:12px; left:12px; background: rgba(255,255,255,.92); color: var(--navy-800); font-weight:700; font-size:.78rem; padding:6px 11px; border-radius: var(--radius-pill); z-index:2; }
.dcard--tall { grid-row: span 2; aspect-ratio: 3/6.3; }
.dcard--wide { grid-column: span 2; aspect-ratio: 3/2; }

/* ---------- Experience storytelling ---------- */
.exp { display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center; }
.exp:nth-of-type(even) .exp__media { order: 2; }
.exp__media { position:relative; border-radius: var(--radius-xl); overflow:hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/4; }
.exp__media img { width:100%; height:100%; object-fit:cover; }
.exp__n { font-family:"Playfair Display",serif; font-size: 3.2rem; font-weight:800; color: var(--gold-500); line-height:1; }
.exp h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); margin: 6px 0 14px; }
.exp p { color: var(--muted); font-size:1.05rem; }
.exp__list { display:grid; gap:10px; margin-top:18px; }
.exp__list li { display:flex; gap:11px; align-items:flex-start; color: var(--ink-2); }
.exp__list svg { width:20px; height:20px; color: var(--teal-500); flex:none; margin-top:2px; }

/* ---------- Stats ---------- */
.stats { display:grid; grid-template-columns: repeat(4,1fr); gap:20px; }
.stat { text-align:center; }
.stat b { font-family:"Playfair Display",serif; font-size: clamp(2.2rem,4.6vw,3.2rem); font-weight:800; display:block; letter-spacing:-.02em; }
.stat .u { color: var(--gold-400); }
.stat span { color: rgba(255,255,255,.78); font-weight:500; }
.section--cream .stat span { color: var(--muted); }
.section--cream .stat b { color: var(--navy-700); }

/* ---------- IATA official logo ---------- */
.iata-logo { height:auto; max-width:100%; display:block; }
.iata-band { display:inline-flex; align-items:center; gap:22px; padding: 20px 26px; background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); flex-wrap:wrap; }
.iata-band .iata-logo { flex:none; }
/* Showcase block: official logo on a clean card, as brand guidelines expect */
.iata-showcase { display:inline-flex; flex-direction:column; align-items:center; gap:16px; padding: clamp(28px,4vw,44px) clamp(30px,5vw,56px);
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.iata-showcase .iata-logo { max-width: min(300px, 60vw); }
.iata-showcase small { font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; color: var(--muted); font-weight:600; }
.footer__badges .iata-logo { opacity:.95; }
.iata-band h4 { font-size:1.1rem; margin-bottom:2px; }
.iata-band p { font-size:.9rem; color: var(--muted); }

/* ---------- Testimonials ---------- */
.tst-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:20px; }
.tst { background:#fff; border:1px solid var(--line-cool); border-radius: var(--radius-lg); padding:26px; box-shadow: var(--shadow-xs); display:flex; flex-direction:column; }
.tst__stars { color: var(--gold-500); display:flex; gap:2px; margin-bottom:12px; }
.tst__stars svg { width:18px; height:18px; }
.tst p { color: var(--ink-2); font-size:1.02rem; flex:1; font-style: italic; }
.tst__who { display:flex; align-items:center; gap:12px; margin-top:18px; }
.tst__av { width:46px; height:46px; border-radius:50%; background: linear-gradient(135deg, var(--navy-500), var(--navy-800)); color:#fff; display:grid; place-items:center; font-family:"Playfair Display"; font-weight:700; flex:none; }
.tst__who b { display:block; font-size:.98rem; }
.tst__who span { color: var(--muted); font-size:.84rem; }

/* ---------- FAQ (accordion) ---------- */
.faq { max-width: 820px; margin-inline:auto; display:grid; gap:12px; }
.faq__item { background:#fff; border:1px solid var(--line-cool); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-xs); transition: box-shadow .25s, border-color .25s; }
.faq__item[open] { box-shadow: var(--shadow-sm); border-color: var(--navy-300); }
.faq__q { display:flex; align-items:center; justify-content:space-between; gap:16px; padding: 19px 22px;
  font-family:"Playfair Display",serif; font-size:1.12rem; font-weight:700; cursor:pointer; list-style:none; color: var(--ink); }
.faq__q::-webkit-details-marker { display:none; }
.faq__q:hover { color: var(--navy-600); }
.faq__ic { flex:none; width:30px; height:30px; border-radius:50%; display:grid; place-items:center;
  background: var(--cream); color: var(--navy-600); transition: transform .3s var(--ease), background .25s; }
.faq__ic svg { width:16px; height:16px; }
.faq__item[open] .faq__ic { transform: rotate(45deg); background: var(--navy-600); color:#fff; }
.faq__a { padding: 0 22px 20px; color: var(--muted); font-size:1rem; }
.faq__a a { color: var(--navy-600); font-weight:600; text-decoration: underline; text-underline-offset:3px; }

/* ---------- CTA band ---------- */
.ctaband { position:relative; border-radius: var(--radius-xl); overflow:hidden; padding: clamp(40px,6vw,72px); color:#fff; isolation:isolate; }
.ctaband__bg { position:absolute; inset:0; z-index:-1; background: linear-gradient(135deg, var(--navy-600), var(--navy-900)); }
.ctaband__bg::after { content:""; position:absolute; inset:0; background: radial-gradient(50% 80% at 88% 8%, rgba(255,194,14,.32), transparent), radial-gradient(50% 80% at 4% 100%, rgba(228,3,46,.24), transparent); }
.ctaband__inner { position:relative; display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.ctaband h2 { color:#fff; font-size: clamp(1.8rem,3.6vw,2.6rem); max-width:16ch; }
.ctaband p { color: rgba(255,255,255,.84); margin-top:10px; max-width:46ch; }
.ctaband__actions { display:flex; gap:14px; flex-wrap:wrap; }

/* ---------- Page hero (inner pages) ---------- */
.phero { position:relative; overflow:hidden; color:#fff; padding: clamp(50px,8vw,84px) 0; isolation:isolate; }
.phero__bg { position:absolute; inset:0; z-index:-2; }
.phero__bg img { width:100%; height:100%; object-fit:cover; }
.phero__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(4,18,46,.92) 30%, rgba(7,31,77,.6)); }
.phero__crumb { font-size:.86rem; color: rgba(255,255,255,.7); display:flex; gap:8px; align-items:center; }
.phero__crumb a:hover { color: var(--gold-400); }
.phero h1 { color:#fff; font-size: clamp(2.1rem,4.6vw,3.4rem); margin:14px 0 10px; }
.phero p { color: rgba(255,255,255,.85); max-width:56ch; font-size:1.08rem; }

/* ---------- Filters bar ---------- */
.filters { display:flex; gap:10px; flex-wrap:wrap; align-items:center; padding:16px; background:#fff; border:1px solid var(--line-cool); border-radius: var(--radius-lg); box-shadow: var(--shadow-xs); }
.filters select,.filters input { padding:11px 14px; border:1.5px solid var(--line-cool); border-radius: var(--radius); background: var(--cream); font-weight:500; }
.filters .fchip { padding:9px 15px; border-radius: var(--radius-pill); border:1.5px solid var(--line-cool); font-weight:600; font-size:.9rem; color: var(--ink-2); transition: all .2s; }
.filters .fchip.active,.filters .fchip:hover { background: var(--navy-700); color:#fff; border-color: var(--navy-700); }

/* ---------- Forms ---------- */
.form { background:#fff; border:1px solid var(--line-cool); border-radius: var(--radius-lg); padding: clamp(24px,4vw,36px); box-shadow: var(--shadow); }
.form__row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field { margin-bottom:16px; }
.field label { display:block; font-weight:600; font-size:.9rem; margin-bottom:7px; }
.field label .req { color: var(--red-500); }
.field input,.field select,.field textarea { width:100%; padding:14px 16px; border:1.5px solid var(--line-cool); border-radius: var(--radius-sm); background: var(--cream); transition: border-color .2s, box-shadow .2s, background .2s; }
.field input:focus,.field select:focus,.field textarea:focus { border-color: var(--navy-400); background:#fff; box-shadow: 0 0 0 4px rgba(47,116,230,.14); outline:none; }
.field textarea { resize:vertical; min-height:120px; }
.field .err { display:none; color: var(--red-600); font-size:.82rem; margin-top:6px; }
.field.invalid input,.field.invalid select,.field.invalid textarea { border-color: var(--red-500); background:#fff5f6; }
.field.invalid .err { display:block; }
.form__note { font-size:.84rem; color: var(--muted); margin-top:6px; display:flex; gap:8px; }
.form__note svg { width:16px; height:16px; color: var(--navy-500); flex:none; margin-top:2px; }
.form__prefill { display:flex; align-items:center; gap:9px; padding:12px 15px; margin-bottom:18px;
  background: var(--cream); border:1px solid var(--gold-500); border-radius: var(--radius-sm);
  font-size:.9rem; color: var(--ink-2); }
.form__prefill svg { width:18px; height:18px; color: var(--gold-600); flex:none; }
.form__prefill strong { color: var(--navy-700); }
.form__success { display:none; text-align:center; padding:20px 0; }
.form__success.show { display:block; animation: fadeIn .4s var(--ease-out); }
.form__success svg { width:60px; height:60px; color:#17a34a; margin:0 auto 14px; }

/* ---------- Info cards ---------- */
.info-card { display:flex; gap:16px; padding:20px; background:#fff; border:1px solid var(--line-cool); border-radius: var(--radius); box-shadow: var(--shadow-xs); transition: transform .25s, box-shadow .25s; }
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.info-card__ic { width:50px; height:50px; flex:none; border-radius:14px; display:grid; place-items:center; background: var(--cream); color: var(--navy-600); }
.info-card__ic svg { width:24px; height:24px; }
.info-card span { font-size:.78rem; color: var(--muted); text-transform:uppercase; letter-spacing:.06em; font-weight:600; }
.info-card b { font-family:"Playfair Display",serif; font-size:1.06rem; display:block; margin-top:2px; word-break:break-word; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,.72); padding: 62px 0 24px; }
.footer__grid { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap:40px; }
.footer .brand__name { color:#fff; }
.footer__about { font-size:.95rem; max-width:36ch; margin:16px 0; }
.footer__badges { display:flex; gap:12px; align-items:center; }
.footer h4 { color:#fff; font-size:.92rem; letter-spacing:.05em; text-transform:uppercase; margin-bottom:16px; }
.footer__links { display:grid; gap:10px; }
.footer__links a { font-size:.95rem; transition: color .2s, padding .2s; }
.footer__links a:hover { color: var(--gold-400); padding-left:4px; }
.footer__contact li { display:flex; gap:11px; margin-bottom:12px; font-size:.95rem; }
.footer__contact svg { width:19px; height:19px; color: var(--gold-400); flex:none; margin-top:2px; }
.footer__bottom { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-top:44px; padding-top:22px; border-top:1px solid rgba(255,255,255,.1); font-size:.86rem; }
.footer__socials { display:flex; gap:10px; }
.footer__socials a { width:40px; height:40px; border-radius:10px; display:grid; place-items:center; background: rgba(255,255,255,.08); color:#fff; transition: background .25s, transform .25s; }
.footer__socials a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-3px); }
.footer__socials svg { width:20px; height:20px; }

/* ---------- FAB ---------- */
.fab { position: fixed; right:20px; bottom:20px; z-index:90; display:flex; flex-direction:column; gap:12px; align-items:flex-end; }
.fab a,.fab button { width:56px; height:56px; border-radius:50%; display:grid; place-items:center; color:#fff; box-shadow: var(--shadow); transition: transform .25s; position:relative; }
.fab a:hover,.fab button:hover { transform: scale(1.08); }
.fab__wa { background: linear-gradient(135deg,#25d366,#12a453); }
.fab__wa::after { content:""; position:absolute; inset:0; border-radius:50%; box-shadow:0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.4s infinite; }
.fab__top { background: var(--navy-700); opacity:0; pointer-events:none; transform: translateY(10px); transition:.3s; }
.fab__top.show { opacity:1; pointer-events:auto; transform:none; }
.fab svg { width:27px; height:27px; }
@keyframes pulse { to { box-shadow: 0 0 0 18px rgba(37,211,102,0); } }
@media (prefers-reduced-motion: reduce){ .fab__wa::after { animation:none; } }

/* ---------- Reveal ---------- */
[data-reveal] { opacity:0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
[data-reveal].in { opacity:1; transform:none; }
[data-reveal-delay="1"]{transition-delay:.07s} [data-reveal-delay="2"]{transition-delay:.14s}
[data-reveal-delay="3"]{transition-delay:.21s} [data-reveal-delay="4"]{transition-delay:.28s}
@media (prefers-reduced-motion: reduce){ [data-reveal]{opacity:1;transform:none;transition:none} }

/* ---------- Admin ---------- */
.admin-shell { min-height:100dvh; background: var(--sand); }
.admin-top { background: var(--navy-900); color:#fff; padding:14px 0; position:sticky; top:0; z-index:50; }
.admin-top__inner { display:flex; align-items:center; justify-content:space-between; gap:14px; }
.admin-top .brand__name { color:#fff; font-size:1.1rem; }
.admin-badge { font-size:.72rem; background: var(--gold-500); color: var(--navy-900); font-weight:700; padding:4px 10px; border-radius: var(--radius-pill); }
.admin-wrap { max-width: 1180px; margin-inline:auto; padding: 26px 22px; }
.admin-bar { display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap; margin-bottom:20px; }
.admin-table { width:100%; background:#fff; border:1px solid var(--line-cool); border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-xs); border-collapse:collapse; }
.admin-table th,.admin-table td { text-align:left; padding:14px 16px; border-bottom:1px solid var(--line-cool); font-size:.92rem; vertical-align:middle; }
.admin-table th { background: var(--cream); font-weight:700; font-size:.78rem; text-transform:uppercase; letter-spacing:.05em; color: var(--muted); }
.admin-table tr:last-child td { border-bottom:0; }
.admin-table img { width:64px; height:44px; object-fit:cover; border-radius:8px; }
.admin-table .tag { font-size:.72rem; font-weight:700; padding:4px 9px; border-radius: var(--radius-pill); background: var(--sand); color: var(--navy-700); }
.icon-btn { width:38px; height:38px; border-radius:10px; display:inline-grid; place-items:center; border:1px solid var(--line-cool); background:#fff; transition: background .2s, color .2s; }
.icon-btn svg { width:18px; height:18px; }
.icon-btn:hover { background: var(--sand); }
.icon-btn.danger:hover { background: #fff5f6; color: var(--red-600); border-color: var(--red-500); }
.modal-backdrop { position:fixed; inset:0; background: rgba(4,18,46,.55); backdrop-filter: blur(4px); z-index:300; display:none; align-items:flex-start; justify-content:center; padding: 40px 16px; overflow:auto; }
.modal-backdrop.open { display:flex; }
.modal { background:#fff; border-radius: var(--radius-lg); width:min(680px,100%); box-shadow: var(--shadow-lg); overflow:hidden; }
.modal__head { display:flex; align-items:center; justify-content:space-between; padding:18px 22px; border-bottom:1px solid var(--line-cool); }
.modal__head h3 { font-size:1.2rem; }
.modal__body { padding:22px; }
.modal__foot { display:flex; justify-content:flex-end; gap:10px; padding:16px 22px; border-top:1px solid var(--line-cool); background: var(--cream); }
.login-box { max-width:400px; margin: 12vh auto; background:#fff; border-radius: var(--radius-lg); padding:32px; box-shadow: var(--shadow-lg); text-align:center; }
.login-box .brand__mark { margin:0 auto 14px; }
.stat-cards { display:grid; grid-template-columns: repeat(4,1fr); gap:16px; margin-bottom:22px; }
.stat-card { background:#fff; border:1px solid var(--line-cool); border-radius: var(--radius); padding:18px; box-shadow: var(--shadow-xs); }
.stat-card b { font-family:"Playfair Display"; font-size:1.8rem; color: var(--navy-700); display:block; }
.stat-card span { font-size:.84rem; color: var(--muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px){
  .hero__inner { grid-template-columns:1fr; gap:34px; }
  .hero__media { max-width:460px; }
  .searchw__form { grid-template-columns:1fr 1fr; }
  .searchw__submit { grid-column: span 2; }
  .deals { grid-template-columns: repeat(2,1fr); }
  .dest-grid { grid-template-columns: repeat(2,1fr); }
  .dcard--wide,.dcard--tall { grid-column: span 1; grid-row: span 1; aspect-ratio:3/4; }
  .exp { grid-template-columns:1fr; gap:28px; }
  .exp:nth-of-type(even) .exp__media { order:-1; }
  .footer__grid { grid-template-columns:1fr 1fr; }
  .stat-cards { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px){
  .nav__links { display:none; }
  .nav__toggle { display:flex; }
  .topbar__left { gap:14px; }
  .topbar .hide-sm { display:none; }
  .tst-grid { grid-template-columns:1fr; }
}
@media (max-width: 620px){
  body { font-size:16px; }
  .searchw { margin-top: -60px; }
  .searchw__form { grid-template-columns:1fr; }
  .searchw__submit { grid-column: span 1; }
  .deals,.stats,.form__row,.stat-cards,.dest-grid { grid-template-columns:1fr; }
  .hero__points { gap:14px; }
  .ctaband__inner { flex-direction:column; align-items:flex-start; }
  .footer__grid { grid-template-columns:1fr; }
  .footer__bottom { flex-direction:column; align-items:flex-start; }
  .admin-table { display:block; overflow-x:auto; white-space:nowrap; }
}
