/* ============================================================
   Dream Trips Limited — shared styles
   ============================================================ */
:root{
  --navy:#0B2545;
  --navy-2:#13315C;
  --navy-3:#0e2748;
  --gold:#C9A227;
  --gold-2:#E3C567;
  --gold-soft:#f3e6bd;
  --paper:#FBF8F1;
  --white:#ffffff;
  --ink:#0B2545;
  --muted:#5A6472;
  --line:#e8e3d6;
  --shadow:0 18px 50px rgba(11,37,69,.12);
  --shadow-sm:0 8px 24px rgba(11,37,69,.08);
  --maxw:1180px;
  --display:"Fraunces", Georgia, "Times New Roman", serif;
  --body:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{ max-width:100%; overflow-x:hidden }
/* Grid/flex children default to min-width:auto and refuse to shrink below their
   content — one long email/URL then widens the whole page. This stops that. */
.hero-grid > *, .about-grid > *, .cards > *, .contact-grid > *,
.foot-grid > *, .dt-form .grid > *, .dest-grid > *{ min-width:0 }
.cinfo, .cinfo > span{ min-width:0 }
.cinfo .ci-val, .foot-col a, .contact-form a, .fare-table td{ overflow-wrap:anywhere }
body{ margin:0; font-family:var(--body); color:var(--ink); background:var(--paper); line-height:1.6; -webkit-font-smoothing:antialiased; }
img{max-width:100%; display:block}
a{color:inherit}
h1,h2,h3{font-family:var(--display); font-weight:600; line-height:1.1; margin:0}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 22px}
.eyebrow{ font-family:var(--body); font-weight:600; letter-spacing:.22em; text-transform:uppercase; font-size:12px; color:var(--gold); display:inline-flex; align-items:center; gap:10px; }
.eyebrow::before{content:""; width:26px; height:1px; background:var(--gold)}

/* ---------- Buttons ---------- */
.btn{ display:inline-flex; align-items:center; gap:10px; cursor:pointer; font-family:var(--body); font-weight:600; font-size:15px; letter-spacing:.01em; padding:14px 24px; border-radius:999px; text-decoration:none; border:1.5px solid transparent; transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.btn-gold{ background:linear-gradient(180deg,var(--gold-2),var(--gold)); color:var(--navy); box-shadow:0 10px 24px rgba(201,162,39,.28) }
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 16px 30px rgba(201,162,39,.36) }
.btn-ghost{ background:transparent; color:var(--white); border-color:rgba(255,255,255,.4) }
.btn-ghost:hover{ border-color:var(--gold-2); color:var(--gold-2) }
.btn-navy{ background:var(--navy); color:#fff }
.btn-navy:hover{ transform:translateY(-2px); box-shadow:var(--shadow-sm) }

/* ---------- Flight-path divider (signature) ---------- */
.flightpath{ display:block; width:100%; height:44px; margin:0 auto; color:var(--gold) }
.flightpath path{ stroke:currentColor; stroke-width:1.4; fill:none; stroke-dasharray:2 7; stroke-linecap:round }
.flightpath .plane{ fill:var(--gold); stroke:none }
.divider-wrap{ padding:26px 22px }

/* ---------- Header ---------- */
header.site{ position:sticky; top:0; z-index:50; width:100%; background:rgba(11,37,69,.92); backdrop-filter:blur(8px); border-bottom:1px solid rgba(255,255,255,.08); }
.nav{ display:flex; align-items:center; justify-content:space-between; height:76px }
.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; color:#fff }
.brand img{ height:46px; width:auto }
.brand .txt{ display:flex; flex-direction:column; line-height:1.05 }
.brand .txt b{ font-family:var(--display); font-weight:600; font-size:19px; letter-spacing:.02em }
.brand .txt span{ font-size:10.5px; letter-spacing:.24em; text-transform:uppercase; color:var(--gold-2) }
.menu{ display:flex; align-items:center; gap:26px; list-style:none; margin:0; padding:0 }
.menu a{ text-decoration:none; color:rgba(255,255,255,.85); font-weight:500; font-size:15px; position:relative; padding:6px 0 }
.menu a::after{ content:""; position:absolute; left:0; bottom:0; width:0; height:2px; background:var(--gold); transition:width .25s ease }
.menu a:hover{ color:#fff } .menu a:hover::after{ width:100% }
.menu a.active{ color:#fff } .menu a.active::after{ width:100% }
.nav-cta{ display:flex; align-items:center; gap:14px }
.hamburger{ display:none; background:none; border:0; cursor:pointer; padding:8px }
.hamburger span{ display:block; width:24px; height:2px; background:#fff; margin:5px 0; transition:.3s }

/* ---------- Generic hero ---------- */
.hero{ position:relative; color:#fff; overflow:hidden; background: radial-gradient(1200px 600px at 80% -10%, rgba(201,162,39,.18), transparent 60%), linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 55%, var(--navy-3) 100%); }
.hero-grid{ display:grid; grid-template-columns:1.15fr .85fr; gap:40px; align-items:center; padding:74px 22px 90px }
.hero h1{ font-size:clamp(38px,5.4vw,64px); font-weight:600; letter-spacing:-.01em }
.hero h1 em{ font-style:italic; color:var(--gold-2) }
.hero p.lead{ margin:22px 0 0; font-size:clamp(16px,1.7vw,19px); color:rgba(255,255,255,.82); max-width:36em }
.hero .actions{ display:flex; gap:14px; flex-wrap:wrap; margin-top:34px }
.hero .trust{ display:flex; gap:26px; flex-wrap:wrap; margin-top:40px; padding-top:26px; border-top:1px solid rgba(255,255,255,.12) }
.hero .trust div{ display:flex; flex-direction:column }
.hero .trust b{ font-family:var(--display); font-size:24px; color:var(--gold-2); font-weight:600 }
.hero .trust span{ font-size:13px; color:rgba(255,255,255,.7); letter-spacing:.02em }
.hero-art{ position:relative; display:grid; place-items:center }
.hero-stage{ position:relative; width:min(420px,90%); aspect-ratio:1; display:grid; place-items:center }
.hero-art .disc{ width:100%; aspect-ratio:1; border-radius:50%; background:radial-gradient(circle at 35% 30%, rgba(255,255,255,.08), transparent 60%), conic-gradient(from 210deg, rgba(201,162,39,.35), rgba(255,255,255,.06), rgba(201,162,39,.35)); border:1px solid rgba(255,255,255,.15); position:relative; box-shadow: inset 0 0 60px rgba(0,0,0,.35), 0 30px 70px rgba(0,0,0,.35); overflow:hidden; }
.hero-art .disc::after{ content:""; position:absolute; inset:14%; border-radius:50%; border:1px dashed rgba(255,255,255,.28); }
/* Big plane bursting out of the circle */
.hero-art .plane-burst{ position:absolute; width:150%; height:auto; max-width:none; left:-2%; top:-18%; z-index:3; pointer-events:none; filter:drop-shadow(0 22px 34px rgba(0,0,0,.45)); animation:planeFloat 6s ease-in-out infinite; }
@keyframes planeFloat{ 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-12px) } }
@media (prefers-reduced-motion:reduce){ .hero-art .plane-burst{ animation:none } }
.hero-art img.logo-badge{ position:absolute; width:62%; filter:drop-shadow(0 14px 30px rgba(0,0,0,.45)); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero{ position:relative; color:#fff; background: radial-gradient(900px 400px at 85% -20%, rgba(201,162,39,.20), transparent 60%), linear-gradient(180deg, var(--navy-2), var(--navy)); padding:64px 0 54px; text-align:center; }
.page-hero h1{ font-size:clamp(32px,4.6vw,52px); margin-top:14px }
.page-hero p{ color:rgba(255,255,255,.82); font-size:clamp(16px,1.8vw,19px); max-width:60ch; margin:18px auto 0 }
.page-hero .eyebrow{ color:var(--gold-2) } .page-hero .eyebrow::before{ background:var(--gold-2) }
.crumbs{ margin-top:22px; font-size:13px; color:rgba(255,255,255,.6) }
.crumbs a{ text-decoration:none; color:rgba(255,255,255,.75) } .crumbs a:hover{ color:var(--gold-2) }

/* ---------- Sections ---------- */
section{ padding:82px 0 }
.section-head{ text-align:center; max-width:720px; margin:0 auto 48px }
.section-head h2{ font-size:clamp(28px,3.6vw,42px); margin-top:14px }
.section-head p{ color:var(--muted); font-size:17px; margin:16px 0 0 }

/* ---------- Airline scroller ---------- */
.airlines{ background:var(--white); border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:46px 0 }
.airlines .lbl{ text-align:center; color:var(--muted); font-size:13px; letter-spacing:.22em; text-transform:uppercase; margin-bottom:8px }
.offer-scroller{ --gap:60px; --h-desktop:120px; --h-tablet:110px; --h-mobile:150px; --marquee-speed:5s; }
.offer-scroller .viewport{ overflow-x:auto; overflow-y:hidden; -webkit-overflow-scrolling:touch; scrollbar-width:none; touch-action: pan-x; padding:6px 0; }
.offer-scroller .viewport::-webkit-scrollbar{display:none}
.offer-scroller .track{display:flex;align-items:center;gap:var(--gap);will-change:transform}
.offer-scroller .card{ flex:0 0 auto; display:flex; align-items:center; justify-content:center; height:var(--h-desktop); background:transparent; border:0; box-shadow:none; border-radius:0; position:relative; overflow:visible; transition:transform .2s ease; margin:0; }
.offer-scroller .card:hover, .offer-scroller .card:focus-within{ transform:translateY(-2px); }
.offer-scroller .card img{ height:100%; width:auto; object-fit:contain; display:block; transform:none; }
@media (max-width:1100px){ .offer-scroller{ --h-desktop:var(--h-tablet) } }
@media (max-width:700px){  .offer-scroller{ --h-desktop:var(--h-mobile); --gap:34px } .airlines{ padding:30px 0 } }
@media (max-width:700px){
  .offer-scroller .viewport{ overflow:hidden; }
  .offer-scroller.can-animate .track{ animation: marquee var(--marquee-speed) linear infinite; }
  .offer-scroller.is-paused .track{ animation-play-state: paused; }
  @keyframes marquee{ from { transform: translateX(0); } to { transform: translateX(-50%); } }
}
@media (prefers-reduced-motion: reduce){ .offer-scroller .track{ animation:none !important; } }

/* ---------- About ---------- */
.about{ background:var(--paper) }
.about-grid{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center }
.about-copy p{ color:var(--muted); font-size:17px; margin:0 0 18px }
.about-copy .lead{ font-family:var(--display); font-size:clamp(20px,2.4vw,26px); color:var(--ink); font-weight:500; line-height:1.35 }
.about-points{ list-style:none; margin:26px 0 0; padding:0; display:grid; gap:14px }
.about-points li{ display:flex; gap:12px; align-items:flex-start; font-weight:500 }
.about-points svg{ flex:0 0 auto; margin-top:2px }
.about-visual{ position:relative; border-radius:24px; overflow:hidden; min-height:420px; background:linear-gradient(160deg,var(--navy-2),var(--navy)); color:#fff; padding:38px; display:flex; flex-direction:column; justify-content:flex-end; box-shadow:var(--shadow) }
.about-visual .tag{ font-size:13px; letter-spacing:.22em; text-transform:uppercase; color:var(--gold-2) }
.about-visual h3{ font-size:30px; margin:10px 0 8px }
.about-visual p{ color:rgba(255,255,255,.8); margin:0 }
.about-visual .globe{ position:absolute; right:-60px; top:-60px; width:280px; height:280px; border-radius:50%; border:1px dashed rgba(255,255,255,.25); background:radial-gradient(circle at 40% 40%, rgba(201,162,39,.28), transparent 60%) }

/* ---------- Cards (services / features) ---------- */
.cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px }
.card{ background:var(--paper); border:1px solid var(--line); border-radius:20px; padding:30px; transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card.on-paper{ background:#fff }
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow); border-color:var(--gold-soft) }
.card .ico{ width:52px; height:52px; border-radius:14px; display:grid; place-items:center; margin-bottom:18px; background:linear-gradient(180deg,var(--navy-2),var(--navy)); color:var(--gold-2) }
.card h3{ font-size:21px; margin-bottom:8px }
.card p{ color:var(--muted); margin:0; font-size:15.5px }
.services{ background:var(--white) }

/* ---------- Destinations ---------- */
.dest{ background:var(--paper) }
.dest-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px }
.dest-card{ position:relative; border-radius:18px; overflow:hidden; min-height:230px; background:var(--navy); color:#fff; border:1px solid var(--line); display:flex; align-items:flex-end; padding:20px; text-decoration:none; box-shadow:var(--shadow-sm); transition:transform .25s ease; }
.dest-card:hover{ transform:translateY(-5px) }
.dest-card .dest-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; transition:transform .55s ease; }
.dest-card:hover .dest-img{ transform:scale(1.07) }
.dest-card::before{ content:""; position:absolute; inset:0; z-index:1; background:radial-gradient(120% 120% at 80% 0%, rgba(201,162,39,.28), transparent 55%), linear-gradient(180deg, rgba(11,37,69,.05), rgba(11,37,69,.82)); }
.dest-card b{ position:relative; z-index:2; font-family:var(--display); font-size:24px; font-weight:600; text-shadow:0 2px 12px rgba(0,0,0,.5) }
.dest-card span{ position:relative; z-index:2; margin-left:auto; color:var(--gold-2); text-shadow:0 2px 12px rgba(0,0,0,.5) }

/* ---------- Fare table (flights page) ---------- */
.fares{ background:var(--white) }
.fare-table{ width:100%; border-collapse:collapse; background:#fff; border:1px solid var(--line); border-radius:16px; overflow:hidden; box-shadow:var(--shadow-sm) }
.fare-table thead th{ background:var(--navy); color:#fff; text-align:left; font-family:var(--body); font-weight:600; font-size:14px; letter-spacing:.02em; padding:16px 20px }
.fare-table tbody td{ padding:16px 20px; border-top:1px solid var(--line); font-size:16px }
.fare-table tbody tr:hover{ background:var(--paper) }
.fare-table .city{ font-weight:700; font-family:var(--display); font-size:19px }
.fare-table .code{ color:var(--muted); font-size:13px; letter-spacing:.08em }
.fare-table .price{ font-weight:800; color:var(--navy); font-size:19px }
.fare-table .price small{ color:var(--muted); font-weight:600; font-size:12px }
.fare-note{ color:var(--muted); font-size:13px; margin-top:14px; text-align:center }

/* ---------- Flight / quote form ---------- */
.form-section{ background:var(--paper) }
.form-shell{ background:#fff; border:1px solid var(--line); border-radius:24px; box-shadow:var(--shadow); padding:34px; max-width:960px; margin:0 auto }
.form-shell.on-navy{ background:#fff }
.form-shell h3{ font-size:26px; margin-bottom:4px }
.form-shell .sub{ color:var(--muted); font-size:15px; margin:0 0 24px }
.dt-form .grid{ display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; align-items:end }
.dt-form .f{ display:flex; flex-direction:column }
.dt-form .f > .lbl{ font-size:12px; font-weight:600; color:var(--navy); margin-bottom:6px; letter-spacing:.02em }
.dt-form input, .dt-form select, .dt-form textarea{ height:46px; border:1.5px solid var(--line); border-radius:12px; padding:10px 13px; background:var(--paper); color:var(--ink); font-family:var(--body); font-size:15px; outline:none; transition:border-color .2s ease, background .2s ease, box-shadow .2s ease; width:100% }
.dt-form textarea{ height:auto; min-height:96px; resize:vertical }
.dt-form input:focus, .dt-form select:focus, .dt-form textarea:focus{ border-color:var(--gold); background:#fff; box-shadow:0 0 0 3px rgba(201,162,39,.16) }
.dt-form input:disabled, .dt-form select:disabled{ opacity:.5; cursor:not-allowed }
.phone-row{ display:flex; gap:8px }
.phone-row select{ width:96px; flex:0 0 auto }
.phone-row input{ flex:1 }
.choice-row{ grid-column:1 / -1; display:flex; flex-wrap:wrap; justify-content:space-between; gap:14px; padding:14px 16px; border:1.5px solid var(--line); border-radius:14px; background:var(--paper) }
.choice-group{ display:flex; flex-wrap:wrap; align-items:center; gap:12px }
.choice-group > strong{ font-size:13px; color:var(--navy); margin-right:2px }
.choice-group label{ display:inline-flex; align-items:center; gap:7px; font-size:14px; cursor:pointer; padding:4px 2px }
.choice-group input[type=radio]{ height:auto; width:auto; accent-color:var(--gold) }
.form-actions{ grid-column:1 / -1; display:flex; gap:12px; justify-content:flex-end; flex-wrap:wrap; margin-top:6px }
.btn-wa{ background:#16a34a; color:#fff; border:0 }
.btn-wa:hover{ background:#12833c; transform:translateY(-2px) }
.form-msg{ grid-column:1 / -1; font-weight:600; font-size:15px; margin:6px 0 0; display:none }
.form-msg.ok{ display:block; color:#1a7f37 } .form-msg.err{ display:block; color:#b3261e }
.vh{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden }
.hp{ position:absolute !important; left:-9999px; height:0; width:0; opacity:0 }
@media (max-width:1000px){ .dt-form .grid{ grid-template-columns:repeat(3,1fr) } }
@media (max-width:760px){ .dt-form .grid{ grid-template-columns:repeat(2,1fr) } .choice-row{ flex-direction:column } }
@media (max-width:520px){ .dt-form .grid{ grid-template-columns:1fr } .form-actions{ justify-content:stretch } .form-actions .btn{ flex:1; justify-content:center } }

/* ---------- Simple contact enquiry ---------- */
.contact{ background:var(--navy); color:#fff }
.contact .section-head h2{ color:#fff }
.contact .section-head p{ color:rgba(255,255,255,.75) }
.contact-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:44px; align-items:stretch }
.contact-info{ display:grid; gap:16px; align-content:start }
.cinfo{ display:flex; gap:16px; align-items:flex-start; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:16px; padding:20px 22px; text-decoration:none; color:#fff; transition:background .2s ease, border-color .2s ease; }
.cinfo:hover{ background:rgba(255,255,255,.09); border-color:var(--gold) }
.cinfo .ci-ico{ width:44px; height:44px; border-radius:12px; flex:0 0 auto; display:grid; place-items:center; background:linear-gradient(180deg,var(--gold-2),var(--gold)); color:var(--navy) }
.cinfo .ci-lbl{ font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-2) }
.cinfo .ci-val{ font-size:18px; font-weight:600; margin-top:2px }
.contact-form{ background:#fff; color:var(--ink); border-radius:22px; padding:34px; box-shadow:var(--shadow) }
.contact-form h3{ font-size:24px; margin-bottom:4px }
.contact-form .sub{ color:var(--muted); font-size:15px; margin-bottom:22px }
.field{ margin-bottom:16px }
.field label{ display:block; font-size:13px; font-weight:600; margin-bottom:6px; color:var(--navy) }
.field input, .field textarea{ width:100%; padding:13px 15px; border:1.5px solid var(--line); border-radius:12px; font-family:var(--body); font-size:15px; background:var(--paper); color:var(--ink); transition:border-color .2s ease, background .2s ease; }
.field input:focus, .field textarea:focus{ outline:none; border-color:var(--gold); background:#fff }
.field textarea{ resize:vertical; min-height:110px }
.form-note{ font-size:13px; color:var(--muted); margin-top:12px }

/* ---------- Google reviews ---------- */
.reviews{ background:var(--white) }
.reviews .badge-wrap{ display:flex; justify-content:center; margin-bottom:6px }
.avi-g-badge{ display:inline-flex; flex-direction:column; gap:10px; padding:18px 22px; border-radius:20px; background:transparent; border:1px solid rgba(0,0,0,.07); max-width:340px; width:100%; text-decoration:none; color:#111; font-family: var(--body); align-items:center; text-align:center; justify-content:center; }
.avi-gb-title{ font-weight:800; font-size:clamp(22px,3.2vw,34px); letter-spacing:.3px; }
.avi-gb-stars{ display:flex; gap:8px; line-height:1; justify-content:center; }
.avi-gb-count{ font-size:clamp(14px,2.3vw,18px); color:#333; }
.avi-gb-count strong{ font-weight:800; }
.avi-gb-wordmark img{ display:block; max-width:180px; height:auto; margin:4px auto 0; }
.avi-gb-powered{ margin-top:4px; display:flex; align-items:center; gap:8px; font-size:12px; color:#666; justify-content:center; }
.avi-gb-powered img{ max-width:88px; height:auto; display:block; }
.avi-g-badge:hover{ box-shadow:0 8px 30px rgba(0,0,0,.08); transform:translateY(-1px); transition:all .25s; }
.avi-rev{ --card-w: clamp(290px, 30vw, 460px); --gap: 22px; --radius: 26px; --revink:#1f1f1f; --revmuted:#757575; --star:#FFC107; --card:#ffffff; --border:#f1f1f1; --revshadow: 0 10px 28px rgba(0,0,0,.08); position:relative; width:100%; background:transparent; padding: 10px 0; }
.avi-track{ display:grid; grid-auto-flow:column; grid-auto-columns:var(--card-w); gap:var(--gap); overflow-x:auto; scroll-snap-type:x mandatory; padding: 12px 64px; -webkit-overflow-scrolling:touch; }
.avi-track::-webkit-scrollbar{height:8px}
.avi-track::-webkit-scrollbar-thumb{background:#e1e1e1; border-radius:10px}
.avi-card{ scroll-snap-align:start; background:var(--card); color:var(--revink);
  border:1px solid var(--border); border-radius:var(--radius); box-shadow:var(--revshadow);
  padding:22px; display:flex; flex-direction:column; gap:12px;
  aspect-ratio:auto;          /* was forcing 16/10 — that's what caused overflow */
  min-height:220px; }
.avi-top{display:flex; align-items:center; justify-content:space-between; gap:12px}
.avi-id{display:flex; align-items:center; gap:14px}
.avi-ava{ width:54px; height:54px; border-radius:50%; color:#fff; display:grid; place-items:center; font-weight:800; font-size:22px; }
.avi-who{display:flex; flex-direction:column; gap:2px}
.avi-name{font-weight:800; font-size:22px}
.avi-when{font-size:14px; color:var(--revmuted)}
.avi-g{flex:0 0 auto; margin-left:12px}
.avi-row{display:flex; align-items:center; gap:10px}
.avi-stars{color:var(--star); font-size:22px; letter-spacing:2px}
.avi-verify{display:inline-grid; place-items:center; width:20px; height:20px; border-radius:50%; background:#1a73e8; color:#fff; font-size:14px}
.avi-text{font-size:16px;             /* was 20px — too big for the space */
  line-height:1.45;
  display:-webkit-box;
  -webkit-line-clamp:4;       /* show max 4 lines, cut the rest */
  -webkit-box-orient:vertical;
  overflow:hidden;}
.avi-foot{margin-top:auto}
.avi-link{color:#1a73e8; font-weight:600; text-decoration:none}
.avi-link:hover{text-decoration:underline}
.avi-arrow{ position:absolute; top:50%; transform:translateY(-50%); width:48px; height:48px; border-radius:50%; background:#fff; border:1px solid #eee; box-shadow:0 8px 24px rgba(0,0,0,.15); display:grid; place-items:center; cursor:pointer; z-index:3; }
.avi-left{left:14px} .avi-right{right:14px}
.avi-arrow:hover{background:#fafafa}
@media (max-width:900px){ .avi-track{padding:12px 54px} .avi-name{font-size:18px} .avi-text{font-size:16px} }

/* ---------- FAQ ---------- */
.faq{ background:var(--paper) }
.faq-list{ max-width:820px; margin:0 auto; display:grid; gap:12px }
.faq-item{ background:#fff; border:1px solid var(--line); border-radius:14px; overflow:hidden }
.faq-item summary{ cursor:pointer; list-style:none; padding:20px 22px; font-weight:600; font-size:17px; display:flex; justify-content:space-between; align-items:center; gap:14px }
.faq-item summary::-webkit-details-marker{ display:none }
.faq-item summary::after{ content:"+"; color:var(--gold); font-size:24px; font-weight:400; line-height:1; transition:transform .2s ease }
.faq-item[open] summary::after{ transform:rotate(45deg) }
.faq-item .a{ padding:0 22px 20px; color:var(--muted); font-size:15.5px }

/* ---------- Info disclaimer ---------- */
.disclaimer{ background:var(--paper); border:1px dashed var(--line); border-radius:14px; padding:18px 22px; color:var(--muted); font-size:13.5px; max-width:960px; margin:0 auto }

/* ---------- Footer ---------- */
footer.site{ background:var(--navy-3); color:rgba(255,255,255,.75); padding:54px 0 26px }
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:36px; padding-bottom:34px; border-bottom:1px solid rgba(255,255,255,.1) }
.foot-brand img{ height:80px; margin-bottom:16px }
.foot-brand p{ margin:0; font-size:14.5px; max-width:32ch }
.foot-col h4{ color:#fff; font-family:var(--body); font-size:13px; letter-spacing:.16em; text-transform:uppercase; margin:0 0 16px }
.foot-col a{ display:block; text-decoration:none; color:rgba(255,255,255,.72); margin-bottom:10px; font-size:15px }
.foot-col a:hover{ color:var(--gold-2) }
.foot-bottom{ display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; padding-top:22px; font-size:13.5px; color:rgba(255,255,255,.55) }

/* ---------- Responsive ---------- */
@media (max-width:960px){
  .hero-grid{ display:flex; flex-direction:column; padding:56px 22px 70px }
  .hero-copy{ order:1 }
  .hero-art{ order:2; margin-top:30px }
  .about-grid{ grid-template-columns:1fr; gap:34px }
  .cards{ grid-template-columns:1fr 1fr }
  .contact-grid{ grid-template-columns:1fr }
  .foot-grid{ grid-template-columns:1fr 1fr }
}
@media (max-width:820px){
  .menu, .nav-cta .btn{ display:none }
  .hamburger{ display:block }
  .menu.open{ display:flex; position:absolute; top:76px; left:0; right:0; flex-direction:column; background:var(--navy); padding:18px 22px 26px; gap:6px; border-bottom:1px solid rgba(255,255,255,.1); }
  .menu.open a{ padding:12px 0; border-bottom:1px solid rgba(255,255,255,.07); width:100% }
}
@media (max-width:700px){
  .cards, .dest-grid{ grid-template-columns:1fr }
  .foot-grid{ grid-template-columns:1fr }
  section{ padding:60px 0 }
  .fare-table thead{ display:none }
  .fare-table, .fare-table tbody, .fare-table tr, .fare-table td{ display:block; width:100% }
  .fare-table tr{ border-top:1px solid var(--line); padding:8px 0 }
  .fare-table tbody td{ border:0; padding:6px 20px }
}
@media (prefers-reduced-motion:reduce){ *{scroll-behavior:auto} }

/* ---------- Mobile optimisation ---------- */
@media (max-width:700px){
  /* Nothing may push the page sideways */
  .hero, .page-hero, section, .airlines, footer.site{ overflow:hidden }
  .hero-stage{ width:min(320px,80%) }
  /* Keep the plane dramatic but inside the screen */
  .hero-art .plane-burst{ width:150%; height:auto; left:-25%; top:-8%; }

  /* Forms: single column, comfortable targets, no iOS zoom */
  .form-shell{ padding:22px 18px; border-radius:18px }
  .dt-form .grid{ grid-template-columns:1fr !important; gap:12px }
  .dt-form .f{ grid-column:1 / -1 !important }
  .dt-form input, .dt-form select, .dt-form textarea,
  .field input, .field textarea{ font-size:16px; height:50px; border-radius:12px }
  .dt-form textarea, .field textarea{ height:auto; min-height:110px }
  .phone-row select{ width:88px }
  .choice-row{ padding:14px; gap:12px }
  .choice-group{ gap:10px }
  .choice-group label{ font-size:15px; padding:6px 2px }
  .form-actions{ flex-direction:column-reverse; gap:10px }
  .form-actions .btn{ width:100%; justify-content:center; padding:15px 20px }
  .contact-form{ padding:24px 20px }

  /* Reviews: arrows were overlapping the card text */
  .avi-track{ padding:8px 40px }
  .avi-arrow{ width:34px; height:34px }
  .avi-card{
      aspect-ratio:auto;
      min-height:0;
      max-height:300px;      /* ← the actual cap */
      overflow:hidden;        /* clip anything that doesn't fit */
      padding:16px;
      gap:8px;
    }
  .avi-top{ gap:8px }
  .avi-ava{ width:40px; height:40px; font-size:16px }   /* was 54px */
  .avi-name{ font-size:15px }                            /* was 18–22px */
  .avi-when{ font-size:12px }
  .avi-stars{ font-size:16px }                           /* was 22px */
  .avi-text{
      -webkit-line-clamp:2;   /* 2 lines instead of 3 */
      font-size:13.5px;
      line-height:1.35;
    }
  .avi-link{ font-size:13px }
  .avi-rev{ --card-w: min(78vw, 300px)  }

  /* Footer logo shouldn't dominate a small screen */
  .foot-brand img{ height:64px }

  /* Hero CTAs stack full width instead of squeezing */
  .hero .actions{ flex-direction:column; align-items:stretch }
  .hero .actions .btn{ width:100%; justify-content:center }
  .hero .trust{ gap:18px }
  .hero .trust div{ flex:1 1 30% }

  /* Contact rows: let long emails wrap instead of pushing the page wide */
  .cinfo{ padding:16px 16px; gap:12px }
  .cinfo .ci-val{ font-size:16px; word-break:break-word }
}

