/* ============================================================
   HELI TOURS NEPAL — Premium Design System
   Display: Sora | Body: Manrope
   Palette: deep navy ink, sky blue, adventure orange
   ============================================================ */
:root {
  --ink: #0d0f14;
  --navy: #131722;
  --navy-2: #1a1f2e;
  --slate: #222839;
  --line: rgba(196, 186, 170, .14);
  --sky: #7fc4c9;
  --sky-deep: #5da8b3;
  --orange: #d97b29;
  --orange-hot: #e89a4b;
  --gold: #e3b34c;
  --paper: #f6f8fb;
  --white: #ffffff;
  --muted: #94a3b8;
  --muted-2: #64748b;
  --text: #e2e8f0;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-lg: 0 24px 60px -18px rgba(2, 8, 23, .55);
  --shadow-md: 0 12px 32px -12px rgba(2, 8, 23, .35);
  --font-display: 'Fraunces', Georgia, serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --font-body: 'Outfit', system-ui, sans-serif;
  --max: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--sky); text-decoration: none; }
a:hover { color: var(--orange-hot); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -.02em; }

/* ---------- utility ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: var(--sky);
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 34px; height: 2px; background: var(--orange); border-radius: 2px; }
.section-title { font-size: clamp(30px, 4.2vw, 46px); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.section-sub { color: var(--muted); max-width: 640px; font-size: 17px; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }
.center .eyebrow::before { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
  padding: 15px 30px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform 160ms var(--ease-out), box-shadow 200ms var(--ease-out), background 180ms ease, color 180ms ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), #ea580c);
  color: #fff; box-shadow: 0 12px 32px -12px rgba(13, 15, 20, .55);
}
.btn-primary:hover { color: #fff; box-shadow: 0 12px 32px -12px rgba(13, 15, 20, .55); background: linear-gradient(135deg, var(--orange-hot), var(--orange)); }
.btn-ghost {
  background: rgba(255, 255, 255, .06); color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .14); color: #fff; }
.btn-sky { background: linear-gradient(135deg, var(--sky), var(--sky-deep)); color: #06202e; box-shadow: 0 12px 32px -12px rgba(13, 15, 20, .55); }
.btn-sky:hover { color: #06202e; }
.btn-lg { padding: 18px 38px; font-size: 16.5px; }
.btn-block { width: 100%; }

/* ---------- nav (floating pill, content-hugging) ---------- */
.nav {
  position: fixed; top: 20px; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center; padding: 0 20px;
}
.nav-inner {
  position: relative;
  display: flex; align-items: center; gap: 20px;
  height: 64px; padding: 8px 10px 8px 20px;
  border-radius: 999px;
  background: rgba(11, 18, 32, .55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 12px 32px -12px rgba(13, 15, 20, .55);
  transition: background 200ms var(--ease-out), box-shadow 200ms var(--ease-out), border-color 200ms var(--ease-out);
  animation: navIn 400ms var(--ease-out) both;
}
@keyframes navIn {
  from { opacity: 0; transform: translateY(-18px) scale(.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.nav.scrolled .nav-inner {
  background: rgba(11, 18, 32, .86);
  box-shadow: 0 12px 32px -12px rgba(13, 15, 20, .55);
  border-color: rgba(255, 255, 255, .12);
}
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand-logo { height: 44px; width: auto; display: block; flex: none; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 14px; flex: none;
  background: linear-gradient(135deg, var(--sky), var(--sky-deep));
  display: grid; place-items: center; box-shadow: 0 12px 32px -12px rgba(13, 15, 20, .55);
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-text { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -.01em; line-height: 1.1; }
.brand-text small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--sky); }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  color: #cbd5e1; font-weight: 600; font-size: 14.5px; padding: 9px 15px; border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255, 255, 255, .08); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; font-size: 14.5px; }
.nav-phone svg { width: 17px; height: 17px; color: var(--orange-hot); }
.nav .btn { padding: 11px 22px; font-size: 14px; }
/* Book Now — animated gradient border (tryholo.ai "Buy now" style) */
.nav .btn-primary {
  position: relative; z-index: 0;
  background: linear-gradient(135deg, var(--orange), #ea580c);
  background-clip: padding-box;
  border: 2px solid transparent;
  box-shadow: 0 12px 32px -12px rgba(13, 15, 20, .55);
}
.nav .btn-primary::before {
  content: ''; position: absolute; inset: -2px; z-index: -1;
  border-radius: 999px;
  background: conic-gradient(#f59e0b, #f97316, #ef4444, #f59e0b, #f97316, #f59e0b);
  animation: borderSpin 3.5s linear infinite;
}
@keyframes borderSpin { to { transform: rotate(360deg); } }
.nav .btn-primary:hover { filter: brightness(1.06); }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: transform 200ms var(--ease-in-out); }

/* ---------- hero ---------- */
.hero { min-height: 100svh; display: flex; align-items: center; position: relative; isolation: isolate; overflow: hidden; perspective: 1200px; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg video, .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg video { animation: heroZoom 22s ease-out forwards; }
.hero-bg img { animation: heroZoom 18s ease-out forwards; }
.hero-vignette { position: absolute; inset: 0; z-index: -1; background:
  radial-gradient(120% 90% at 20% 10%, rgba(11,18,32,0) 0%, rgba(11,18,32,.35) 55%, rgba(11,18,32,.82) 100%),
  linear-gradient(180deg, rgba(11,18,32,.55) 0%, rgba(11,18,32,.15) 30%, rgba(11,18,32,.9) 100%); }
.hero-grain { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E"); }
.hero-content { padding: 175px 0 140px; max-width: 920px; position: relative; z-index: 2; transform-style: preserve-3d; will-change: transform; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .06em; color: #e2e8f0;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .18);
  padding: 9px 18px; border-radius: 999px; backdrop-filter: blur(10px); margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 12px 32px -12px rgba(13, 15, 20, .55); animation: pulse 2s infinite; }
.hero h1 { font-size: clamp(42px, 6.8vw, 82px); font-weight: 800; color: #fff; margin-bottom: 24px; line-height: 1.05; }
.hero h1 .grad { background: linear-gradient(92deg, var(--sky) 10%, #7dd3fc 50%, var(--orange-hot) 95%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.hero p.lead { font-size: clamp(17px, 2vw, 20px); color: #cbd5e1; max-width: 620px; margin-bottom: 38px; }
.hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 0; flex-wrap: wrap; border-top: 1px solid rgba(255, 255, 255, .16); padding-top: 30px; max-width: 640px; }
.hero-stat { padding-right: 38px; margin-right: 38px; border-right: 1px solid rgba(255, 255, 255, .16); }
.hero-stat:last-child { border: 0; margin: 0; padding-right: 0; }
.hero-stat b { display: block; font-family: var(--font-display); font-size: 27px; font-weight: 700; color: #fff; }
.hero-stat span { font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: .04em; }

/* 3D floating card — sits in the hero, tilts with mouse */
.hero-float {
  position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
  z-index: 2; display: none; transform-style: preserve-3d;
}
@media (min-width: 1100px) { .hero-float { display: block; } }
.hero-float .float-card {
  background: rgba(16, 27, 46, .72); border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(18px); border-radius: 24px; padding: 22px 24px;
  box-shadow: 0 12px 32px -12px rgba(13, 15, 20, .55); width: 250px;
  transform: translateZ(60px) rotateY(-8deg) rotateX(4deg);
  transition: transform .3s ease;
}
.hero-float .float-card b { display: block; font-family: var(--font-display); font-size: 30px; color: #fff; }
.hero-float .float-card span { font-size: 13px; color: var(--muted); line-height: 1.4; }
.hero-float .float-card .fc-row { display: flex; align-items: center; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-float .float-card .fc-row svg { width: 20px; height: 20px; color: var(--orange-hot); flex: none; }
.hero-float .float-card .fc-row small { color: #cbd5e1; font-size: 12.5px; font-weight: 600; }
.hero-float .float-card-2 {
  position: absolute; left: -70px; bottom: -60px; width: 190px;
  background: rgba(16, 27, 46, .6); border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px); border-radius: 14px; padding: 16px 18px;
  box-shadow: 0 12px 32px -12px rgba(13, 15, 20, .55);
  transform: translateZ(30px) rotateY(6deg) rotateX(-3deg);
}
.hero-float .float-card-2 .stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; }
.hero-float .float-card-2 p { font-size: 12.5px; color: #cbd5e1; margin-top: 6px; line-height: 1.45; }
.hero-float .float-card-2 small { color: var(--muted); font-size: 11px; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 18, 32, .72) 0%, rgba(11, 18, 32, .28) 40%, rgba(11, 18, 32, .88) 100%),
    radial-gradient(900px 500px at 18% 30%, rgba(56, 189, 248, .14), transparent 60%);
}
@keyframes pulse { 50% { box-shadow: 0 12px 32px -12px rgba(13, 15, 20, .55); } }
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.55); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint::after { content: ''; width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,.6), transparent); animation: drip 1.8s infinite; }
@keyframes drip { from { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); } to { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- trust bar ---------- */
.trustbar { background: var(--navy); border-block: 1px solid var(--line); padding: 26px 0; }
.trustbar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item svg { width: 30px; height: 30px; color: var(--sky); flex: none; }
.trust-item b { display: block; color: #fff; font-size: 15px; font-family: var(--font-display); }
.trust-item span { font-size: 13px; color: var(--muted); }

/* ---------- tour cards ---------- */
.tours { padding: 110px 0; background: linear-gradient(180deg, var(--ink), var(--navy) 60%, var(--ink)); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 56px; }
.tour-card {
  background: var(--navy-2); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
.tour-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(56, 189, 248, .4); }
.tour-card-media { position: relative; aspect-ratio: 16 / 10.5; overflow: hidden; }
.tour-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms var(--ease-out); }
.tour-card:hover .tour-card-media img { filter: brightness(1.04); }
.chip {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(11, 18, 32, .72); backdrop-filter: blur(8px);
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .06em;
  padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14);
  display: inline-flex; align-items: center; gap: 7px;
}
.chip svg { width: 13px; height: 13px; color: var(--orange-hot); }
.chip-rating { left: auto; right: 14px; color: var(--gold); }
.chip-rating svg { color: var(--gold); }
.tour-card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.tour-card-body h3 { font-size: 20px; color: #fff; margin-bottom: 10px; font-weight: 600; }
.tour-card-body h3 a { color: inherit; }
.tour-card-body h3 a:hover { color: var(--sky); }
.tour-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; font-size: 13px; color: var(--muted); font-weight: 600; }
.tour-meta span { display: inline-flex; align-items: center; gap: 6px; }
.tour-meta svg { width: 15px; height: 15px; color: var(--sky); }
.tour-card-body p { color: var(--muted); font-size: 14.5px; flex: 1; margin-bottom: 20px; }
.tour-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding-top: 18px; }
.price-note { font-size: 12px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.price-note b { display: block; font-family: var(--font-display); font-size: 16px; color: var(--orange-hot); letter-spacing: 0; text-transform: none; }
.tour-link { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--sky); display: inline-flex; align-items: center; gap: 7px; }
.tour-link svg { width: 16px; height: 16px; transition: transform 160ms var(--ease-out); }
.tour-link:hover svg { color: var(--sky-deep); }

/* ---------- why / features ---------- */
.why { padding: 110px 0; background: var(--ink); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.feature-card {
  background: linear-gradient(160deg, var(--navy-2), var(--navy));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
  transition: transform 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
.feature-card:hover { border-color: rgba(249, 115, 22, .45); }
.feature-icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px;
  background: rgba(56, 189, 248, .12); border: 1px solid rgba(56, 189, 248, .3);
}
.feature-icon svg { width: 26px; height: 26px; color: var(--sky); }
.feature-icon.orange { background: rgba(249, 115, 22, .12); border-color: rgba(249, 115, 22, .35); }
.feature-icon.orange svg { color: var(--orange-hot); }
.feature-card h3 { color: #fff; font-size: 18.5px; margin-bottom: 10px; font-weight: 600; }
.feature-card p { color: var(--muted); font-size: 14.5px; }

/* ---------- split section ---------- */
.split { padding: 110px 0; background: var(--navy); }
.split-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.split-media .float-card {
  position: absolute; bottom: -26px; right: -20px;
  background: rgba(16, 27, 46, .9); backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px 24px; box-shadow: var(--shadow-md);
}
.float-card b { font-family: var(--font-display); font-size: 24px; color: var(--orange-hot); display: block; }
.float-card span { font-size: 13px; color: var(--muted); }
.check-list { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; color: #cbd5e1; font-size: 15.5px; }
.check-list svg { width: 21px; height: 21px; color: #4ade80; flex: none; margin-top: 2px; }

/* ---------- video ---------- */
.videos { padding: 110px 0; background: linear-gradient(180deg, var(--ink), #0a1322); }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.video-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--navy-2); transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out); }
.video-card:hover { box-shadow: var(--shadow-lg); }
.video-card figcaption { padding: 18px 20px; font-size: 14px; color: #cbd5e1; font-weight: 600; }
lite-youtube { display: block; aspect-ratio: 16/9; background: #000; position: relative; cursor: pointer; }
lite-youtube::before { content: ''; position: absolute; inset: 0; background: var(--navy); }
lite-youtube iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
lite-youtube .lty-playbtn {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 68px; height: 48px; border-radius: 14px; background: rgba(249, 115, 22, .92);
  display: grid; place-items: center; transition: background 200ms ease, transform 200ms var(--ease-out); z-index: 2;
}
lite-youtube .lty-playbtn::after { content: ''; border-style: solid; border-width: 9px 0 9px 16px; border-color: transparent transparent transparent #fff; margin-left: 3px; }
lite-youtube:hover .lty-playbtn { background: var(--orange); }
lite-youtube.ly-activated::before { display: none; }
lite-youtube.ly-activated .lty-playbtn { display: none; }

/* ---------- testimonials ---------- */
.testimonials { padding: 110px 0; background: var(--navy); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testi-card { background: var(--navy-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; gap: 18px; }
.stars { display: flex; gap: 3px; }
.stars svg { width: 17px; height: 17px; color: var(--gold); }
.testi-card blockquote { color: #cbd5e1; font-size: 15px; flex: 1; }
.testi-who { display: flex; align-items: center; gap: 13px; border-top: 1px solid var(--line); padding-top: 18px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 16px; }
.testi-who b { display: block; color: #fff; font-size: 14.5px; }
.testi-who span { font-size: 12.5px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { padding: 100px 0; background: radial-gradient(1000px 420px at 50% 0%, rgba(56, 189, 248, .16), transparent 65%), var(--ink); }
.cta-box {
  background: linear-gradient(135deg, rgba(56, 189, 248, .14), rgba(249, 115, 22, .12)), var(--navy-2);
  border: 1px solid rgba(56, 189, 248, .3); border-radius: 24px;
  padding: 64px; text-align: center; box-shadow: var(--shadow-lg);
}
.cta-box h2 { font-size: clamp(28px, 3.6vw, 42px); color: #fff; margin-bottom: 14px; }
.cta-box p { color: var(--muted); max-width: 560px; margin: 0 auto 34px; font-size: 16.5px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.footer { background: #080e1a; border-top: 1px solid var(--line); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.footer h4 { color: #fff; font-size: 15px; margin-bottom: 20px; letter-spacing: .04em; }
.footer p, .footer li { color: var(--muted); font-size: 14.5px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { color: var(--muted); }
.footer ul a:hover { color: var(--sky); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--orange-hot); flex: none; margin-top: 4px; }
.footer-contact a { color: #cbd5e1; font-weight: 600; }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a {
  width: 40px; height: 40px; border-radius: 8px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .06); border: 1px solid var(--line); color: #cbd5e1;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms var(--ease-out);
}
.socials a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--line); padding: 24px 0; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--muted-2); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center;
  box-shadow: 0 12px 32px -12px rgba(13, 15, 20, .55);
  transition: transform 200ms var(--ease-out);
}
.wa-float:hover { box-shadow: 0 16px 40px -12px rgba(13, 15, 20, .65); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding: 190px 0 100px; position: relative; isolation: isolate; overflow: hidden; }
/* full-width heroes: content spans the viewport instead of the 1200px column */
.hero .container, .page-hero .container { max-width: none; padding: 0 clamp(24px, 6vw, 96px); }
.hero-stats { max-width: none; }
.page-hero h1 { max-width: 1100px; }
.page-hero .lead { max-width: 880px; }
.page-hero .hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11,18,32,.82), rgba(11,18,32,.94)); }
.crumbs { display: flex; gap: 9px; align-items: center; font-size: 13.5px; color: var(--muted); margin-bottom: 20px; font-weight: 600; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--sky); }
.page-hero h1 { font-size: clamp(32px, 4.6vw, 54px); color: #fff; max-width: 860px; margin-bottom: 18px; }
.page-hero .lead { color: #cbd5e1; max-width: 720px; font-size: 17.5px; }
.hero-chips { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.hero-chips .chip { position: static; }
.price-badge { display: inline-flex; align-items: baseline; gap: 10px; margin-top: 28px; background: rgba(16,27,46,.7); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(10px); border-radius: 14px; padding: 14px 22px; }
.price-badge .from { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.price-badge b { font-family: var(--font-display); font-size: 34px; color: var(--orange-hot); font-weight: 800; }
.price-badge small { font-size: 13px; color: #cbd5e1; }
.side-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.side-price span { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.side-price b { font-family: var(--font-display); font-size: 30px; color: var(--orange-hot); font-weight: 800; }
.side-price small { font-size: 12.5px; color: #cbd5e1; }

/* ---------- tour layout ---------- */
.tour-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; padding: 80px 0; align-items: start; }
.tour-main > section { margin-bottom: 64px; }
.tour-main h2 { font-size: 27px; color: #fff; margin-bottom: 20px; display: flex; align-items: center; gap: 13px; }
.tour-main h2 svg { width: 24px; height: 24px; color: var(--orange-hot); flex: none; }
.prose { color: #b6c2d4; font-size: 16px; }
.prose p { margin-bottom: 16px; }

/* article layout: sticky TOC sidebar + body */
.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding: 48px 0 80px;
}
.article-side { position: sticky; top: 110px; }
.article-body { max-width: 820px; }

/* table of contents */
.toc {
  border: 1px solid var(--line);
  border-left: 3px solid var(--sky);
  border-radius: var(--radius-sm);
  background: var(--navy-2);
  padding: 22px 24px;
  margin: 0;
}
.toc-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 14px;
}
.toc ul { list-style: none; display: grid; gap: 9px; }
.toc a {
  color: #b6c2d4;
  font-size: 14.5px;
  line-height: 1.45;
  text-decoration: none;
  display: inline-block;
  transition: color .2s;
}
.toc a:hover { color: var(--sky); }
.toc li.toc-sub { padding-left: 18px; }
.toc li.toc-sub a { font-size: 13.5px; color: var(--muted); }
.toc li.toc-sub a:hover { color: var(--sky); }
.prose h2, .prose h3 { scroll-margin-top: 110px; }

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; gap: 28px; }
  .article-side { position: static; }
}

/* itinerary accordion */
.acc { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 12px; background: var(--navy-2); }
.acc-head {
  width: 100%; display: flex; align-items: center; gap: 16px; padding: 19px 22px;
  background: none; border: 0; cursor: pointer; text-align: left; color: #fff;
  font-family: var(--font-display); font-size: 15.5px; font-weight: 600;
}
.acc-day { flex: none; width: 52px; height: 34px; border-radius: 8px; display: grid; place-items: center; background: rgba(56,189,248,.14); color: var(--sky); font-size: 12px; font-weight: 800; letter-spacing: .05em; }
.acc-head .chev { margin-left: auto; width: 18px; height: 18px; transition: transform 200ms var(--ease-in-out); color: var(--muted); flex: none; }
.acc.open .acc-head .chev { transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 250ms var(--ease-out); }
.acc-body-inner { padding: 0 22px 22px 90px; color: var(--muted); font-size: 14.5px; }

/* include/exclude */
.ie-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ie-box { border-radius: var(--radius-sm); padding: 28px; border: 1px solid var(--line); background: var(--navy-2); }
.ie-box h3 { font-size: 16px; margin-bottom: 16px; display: flex; gap: 10px; align-items: center; color: #fff; }
.ie-box h3 svg { width: 19px; height: 19px; }
.ie-box.inc h3 svg { color: #4ade80; }
.ie-box.exc h3 svg { color: #f87171; }
.ie-box ul { list-style: none; display: grid; gap: 10px; }
.ie-box li { display: flex; gap: 10px; font-size: 14px; color: #b6c2d4; }
.ie-box li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; margin-top: 8px; flex: none; }
.ie-box.inc li::before { background: #4ade80; }
.ie-box.exc li::before { background: #f87171; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery a { border-radius: var(--radius-sm); overflow: hidden; display: block; position: relative; }
.gallery img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform 450ms var(--ease-out); }
.gallery a:hover img { filter: brightness(1.05); }

/* ---------- sidebar ---------- */
.tour-side { position: sticky; top: 100px; display: grid; gap: 22px; }
.side-card { background: var(--navy-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.side-card h3 { color: #fff; font-size: 18px; margin-bottom: 6px; }
.side-card .sub { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }
.form-row { margin-bottom: 15px; }
.form-row label { display: block; font-size: 12.5px; font-weight: 700; color: #cbd5e1; margin-bottom: 7px; letter-spacing: .04em; text-transform: uppercase; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; background: rgba(11, 18, 32, .6); border: 1px solid var(--line);
  border-radius: 8px; padding: 13px 15px; color: #fff; font-family: var(--font-body);
  font-size: 14.5px; transition: border-color 150ms ease, box-shadow 150ms ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--sky); box-shadow: 0 12px 32px -12px rgba(13, 15, 20, .55);
}
.form-row select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.form-row textarea { resize: vertical; min-height: 88px; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-note { font-size: 12px; color: var(--muted-2); margin-top: 12px; text-align: center; }
.form-status { margin-top: 12px; font-size: 14px; font-weight: 600; display: none; }
.form-status.ok { display: block; color: #4ade80; }
.form-status.err { display: block; color: #f87171; }
.side-contact { display: grid; gap: 13px; margin-top: 4px; }
.side-contact a { display: flex; gap: 12px; align-items: center; color: #cbd5e1; font-weight: 600; font-size: 14.5px; }
.side-contact svg { width: 19px; height: 19px; color: var(--sky); flex: none; }
.side-contact a:hover { color: var(--orange-hot); }

/* ---------- FAQ ---------- */
.faq .acc-head { font-size: 15px; }
.faq .acc-body-inner { padding: 0 22px 20px 22px; }

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; padding: 80px 0; align-items: start; }
.contact-cards { display: grid; gap: 18px; }
.contact-card { display: flex; gap: 18px; background: var(--navy-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px; }
.contact-card .feature-icon { margin: 0; width: 48px; height: 48px; }
.contact-card b { color: #fff; font-family: var(--font-display); font-size: 15.5px; display: block; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 14.5px; }
.contact-card a:hover { color: var(--sky); }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 24px; }
.map-wrap iframe { width: 100%; height: 280px; border: 0; display: block; filter: grayscale(.4) contrast(1.05); }

/* ---------- about ---------- */
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 56px; }
.stat-card { background: var(--navy-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; text-align: center; }
.stat-card b { font-family: var(--font-display); font-size: 36px; font-weight: 800; display: block; background: linear-gradient(92deg, var(--sky), var(--orange-hot)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.stat-card span { color: var(--muted); font-size: 13.5px; font-weight: 600; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg img, .hero-bg video { animation: none; }
  .nav-links.open { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .grid-3, .why-grid, .video-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-layout { grid-template-columns: 1fr; }
  .tour-side { position: static; }
  .split-grid { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trustbar-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-links, .nav-phone { display: none; }
  .nav-cta .btn { display: none; }
  .burger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed; top: 92px; left: 20px; right: 20px;
    background: rgba(11, 18, 32, .97); backdrop-filter: blur(16px); padding: 22px;
    border-radius: 24px; border: 1px solid var(--line); gap: 4px; align-items: stretch;
    animation: menuIn 220ms var(--ease-out);
  }
  @keyframes menuIn { from { opacity: 0; transform: translateY(-8px) scale(.98); } }
  .nav-links.open a { padding: 13px 16px; }
  .grid-3, .grid-2, .why-grid, .video-grid, .testi-grid, .ie-grid, .contact-grid, .form-2col { grid-template-columns: 1fr; }
  .hero-content { padding: 130px 0 90px; }
  /* shorter inner-page heroes on phones so content is visible in the first screen */
  .page-hero { padding: 128px 0 54px; }
  .page-hero h1 { font-size: clamp(28px, 7.6vw, 40px); }
  .page-hero .lead { font-size: 16px; }
  .hero-stat { padding-right: 22px; margin-right: 22px; }
  .hero-stat b { font-size: 21px; }
  .cta-box { padding: 44px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .split-media .float-card { right: 10px; bottom: -20px; }
  .acc-body-inner { padding-left: 22px; }
}

/* ---- blog search bar ---- */
.blog-search { max-width: 640px; margin: 0 auto 34px; text-align: center; }
.blog-search-box {
  display: flex; align-items: center; gap: 12px;
  background: var(--navy-2); border: 1px solid var(--line); border-radius: 999px;
  padding: 14px 22px; box-shadow: var(--shadow-md);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.blog-search-box:focus-within { border-color: rgba(56,189,248,.55); box-shadow: 0 12px 32px -12px rgba(13, 15, 20, .55); }
.blog-search-box svg { width: 20px; height: 20px; flex: none; color: var(--sky); }
.blog-search-box input {
  flex: 1; min-width: 0; background: none; border: none; outline: none;
  color: var(--text); font: 500 16px/1.4 var(--font-body);
}
.blog-search-box input::placeholder { color: var(--muted-2); }
.blog-search-box input::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; cursor: pointer;
  background: var(--muted-2); -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.4" stroke-linecap="round"><line x1="18" y1="6" x2="6" y2="18"/><line x1="6" y1="6" x2="18" y2="18"/></svg>') center/contain no-repeat; mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.4" stroke-linecap="round"><line x1="18" y1="6" x2="6" y2="18"/><line x1="6" y1="6" x2="18" y2="18"/></svg>') center/contain no-repeat; }
.blog-search-count { margin: 12px 0 0; font: 600 13px/1 var(--font-body); color: var(--muted-2); letter-spacing: .04em; text-transform: uppercase; }
.blog-search-empty { text-align: center; color: var(--muted); font: 500 16px/1.6 var(--font-body); padding: 30px 0 10px; }
.blog-search-empty a { color: var(--sky); text-decoration: underline; }
@media (max-width: 600px) {
  .blog-search { margin-bottom: 26px; }
  .blog-search-box { padding: 12px 18px; }
  .blog-search-box input { font-size: 15px; }
}

/* ---- price comparison tables ---- */
.price-table-wrap { overflow-x: auto; margin: 26px 0; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.price-table { width: 100%; border-collapse: collapse; font: 500 14px/1.5 var(--font-body); min-width: 640px; }
.price-table th {
  background: var(--navy); color: var(--sky); text-align: left;
  padding: 13px 16px; font-weight: 700; font-size: 12px;
  letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
}
.price-table td { padding: 13px 16px; border-top: 1px solid var(--line); color: var(--text); vertical-align: top; }
.price-table tbody tr:nth-child(even) { background: rgba(148,163,184,.05); }
.price-table tbody tr:hover { background: rgba(56,189,248,.07); }
.price-table td strong { color: #fff; }

/* ---- generic tables inside article prose ---- */
.prose table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 26px 0; min-width: 560px; }
.prose table th { background: var(--navy); color: var(--sky); text-align: left; padding: 12px 14px; font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.prose table td { padding: 12px 14px; border-top: 1px solid var(--line); color: var(--text); vertical-align: top; }
.prose table tbody tr:nth-child(even) { background: rgba(148,163,184,.05); }
.prose table tbody tr:hover { background: rgba(56,189,248,.07); }
.article-body { overflow-x: auto; }

/* ---- press feedback (every pressable element responds) ---- */
.btn:active { transform: scale(0.97); }
.socials a:active { transform: scale(0.94); }
.wa-float:active { transform: scale(0.92); }
.acc-head:active { transform: scale(0.99); }
.lty-playbtn:active { transform: translate(-50%, -50%) scale(0.96); }

/* ---- hover MOTION only for fine pointers (touch taps fire false hovers) ---- */
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover, .btn-ghost:hover, .btn-sky:hover { transform: translateY(-2px); }
  .nav .btn-primary:hover { transform: translateY(-2px) scale(1.02); }
  .tour-card:hover { transform: translateY(-6px); }
  .tour-card:hover .tour-card-media img { transform: scale(1.07); }
  .tour-link:hover svg { transform: translateX(4px); }
  .feature-card:hover { transform: translateY(-4px); }
  .video-card:hover { transform: translateY(-4px); }
  .lite-youtube:hover .lty-playbtn { transform: translate(-50%, -50%) scale(1.1); }
  .socials a:hover { transform: translateY(-3px); }
  .wa-float:hover { transform: scale(1.08); }
  .gallery a:hover img { transform: scale(1.06); }
}

/* ============================================================
   LIGHT THEME (Apple-style: white, minimalist)
   html[data-theme="light"] — heroes stay dark (video/image),
   the rest flips to white/#f5f5f7 with #1d1d1f text.
   ============================================================ */
html[data-theme="light"] {
  --ink: #f5f5f7;
  --navy: #ffffff;
  --navy-2: #ffffff;
  --slate: #e8e8ed;
  --line: rgba(0, 0, 0, .09);
  --sky: #0e7c86;
  --sky-deep: #0a5f68;
  --orange: #c96a1a;
  --orange-hot: #b85c10;
  --gold: #b8860b;
  --muted: #6e6e73;
  --muted-2: #86868b;
  --text: #1d1d1f;
  --shadow-lg: 0 24px 60px -18px rgba(0, 0, 0, .12);
  --shadow-md: 0 12px 32px -12px rgba(0, 0, 0, .10);
}
html[data-theme="light"] body { background: var(--ink); color: var(--text); }

/* section backgrounds: dark gradients -> white / apple-gray */
html[data-theme="light"] .trustbar { background: var(--navy); }
html[data-theme="light"] .tours { background: linear-gradient(180deg, #f5f5f7, #ffffff 60%, #f5f5f7); }
html[data-theme="light"] .why { background: #ffffff; }
html[data-theme="light"] .split { background: #f5f5f7; }
html[data-theme="light"] .videos { background: #ffffff; }
html[data-theme="light"] .testimonials { background: #f5f5f7; }
html[data-theme="light"] .cta-band { background: radial-gradient(1000px 420px at 50% 0%, rgba(14, 124, 134, .06), transparent 65%), #f5f5f7; }
html[data-theme="light"] .footer { background: #ffffff; }
html[data-theme="light"] .cta-box {
  background: linear-gradient(135deg, rgba(14, 124, 134, .08), rgba(201, 106, 26, .07)), #ffffff;
  border-color: rgba(0, 0, 0, .08);
}

/* headings + body text on white */
html[data-theme="light"] .section-title,
html[data-theme="light"] .trust-item b,
html[data-theme="light"] .tour-card-body h3,
html[data-theme="light"] .feature-card h3,
html[data-theme="light"] .testi-who b,
html[data-theme="light"] .cta-box h2,
html[data-theme="light"] .footer h4,
html[data-theme="light"] .tour-main h2 { color: #1d1d1f; }
html[data-theme="light"] .testi-card blockquote,
html[data-theme="light"] .prose,
html[data-theme="light"] .ie-box li { color: #3a3a3c; }
html[data-theme="light"] .toc a { color: #3a3a3c; }
html[data-theme="light"] .section-sub { color: var(--muted); }

/* nav: frosted white glass when scrolled; over dark hero at top keep white text */
html[data-theme="light"] .nav:not(.scrolled) .nav-links a,
html[data-theme="light"] .nav:not(.scrolled) .nav-phone { color: #fff; }
html[data-theme="light"] .nav:not(.scrolled) .nav-inner { background: rgba(11, 18, 32, .55); }
html[data-theme="light"] .nav:not(.scrolled) .brand { color: #fff; }
html[data-theme="light"] .nav .nav-inner { background: rgba(255, 255, 255, .72); border-color: rgba(0, 0, 0, .08); }
html[data-theme="light"] .nav.scrolled .nav-inner { background: rgba(255, 255, 255, .88); }
html[data-theme="light"] .brand { color: #1d1d1f; }
html[data-theme="light"] .nav-links a { color: #3a3a3c; }
html[data-theme="light"] .nav-links a:hover,
html[data-theme="light"] .nav-links a.active { color: #1d1d1f; background: rgba(0, 0, 0, .05); }
html[data-theme="light"] .nav-phone { color: #1d1d1f; }
html[data-theme="light"] .burger span { background: #1d1d1f; }
html[data-theme="light"] .nav:not(.scrolled) .burger span { background: #fff; }
/* open mobile menu is a white panel even before scroll — links must be dark */
html[data-theme="light"] .nav:not(.scrolled) .nav-links.open a,
html[data-theme="light"] .nav.scrolled .nav-links.open a { color: #1d1d1f; }
html[data-theme="light"] .nav:not(.scrolled) .nav-links.open { background: rgba(255, 255, 255, .97); }

/* cards -> white */
html[data-theme="light"] .tour-card,
html[data-theme="light"] .video-card,
html[data-theme="light"] .testi-card,
html[data-theme="light"] .side-card,
html[data-theme="light"] .stat-card,
html[data-theme="light"] .ie-box,
html[data-theme="light"] .toc,
html[data-theme="light"] .contact-card,
html[data-theme="light"] .review-card { background: #ffffff; }
html[data-theme="light"] .feature-card { background: linear-gradient(160deg, #ffffff, #f5f5f7); }
html[data-theme="light"] .chip { background: rgba(255, 255, 255, .8); color: #1d1d1f; border-color: rgba(0, 0, 0, .1); }
html[data-theme="light"] .rating-badge { background: linear-gradient(160deg, #ffffff, #f5f5f7); color: #1d1d1f; }
html[data-theme="light"] .rating-number { color: #b8860b; }
html[data-theme="light"] .rating-source { color: #1d1d1f; }
html[data-theme="light"] .review-card h3,
html[data-theme="light"] .rev-h2,
html[data-theme="light"] .rev-cta-card h2 { color: #1d1d1f; }
html[data-theme="light"] .review-text,
html[data-theme="light"] .rev-why p { color: #3a3a3c; }
html[data-theme="light"] .rev-cta-card { background: linear-gradient(160deg, #ffffff, #f5f5f7); }
html[data-theme="light"] .split-media .float-card { background: #ffffff; border-color: rgba(0,0,0,.08); }
html[data-theme="light"] .float-card b { color: #1d1d1f; }
html[data-theme="light"] .float-card span { color: var(--muted); }

/* forms */
html[data-theme="light"] .form-row input,
html[data-theme="light"] .form-row select,
html[data-theme="light"] .form-row textarea { background: #f5f5f7; border-color: rgba(0,0,0,.12); color: #1d1d1f; }
html[data-theme="light"] .form-row label { color: #3a3a3c; }
html[data-theme="light"] .blog-search-box { background: #ffffff; }
html[data-theme="light"] .blog-search-box input { color: #1d1d1f; }

/* itinerary accordions + FAQ: white cards need dark text */
html[data-theme="light"] .acc-head { color: #1d1d1f; }
html[data-theme="light"] .acc-day { background: rgba(14, 124, 134, .12); color: #0e7c86; }
html[data-theme="light"] .acc-body-inner { color: #3a3a3c; }
html[data-theme="light"] .ie-box h3 { color: #1d1d1f; }
html[data-theme="light"] .side-card h3 { color: #1d1d1f; }
html[data-theme="light"] .side-card .sub { color: var(--muted); }
html[data-theme="light"] .contact-card b { color: #1d1d1f; }
html[data-theme="light"] .check-list li { color: #3a3a3c; }
html[data-theme="light"] .blog-search-empty { color: var(--muted); }

/* ghost button flips; sky keeps dark text; hero CTAs sit on dark hero so keep white */
html[data-theme="light"] .btn-ghost { background: rgba(0, 0, 0, .04); color: #1d1d1f; border-color: rgba(0, 0, 0, .16); }
html[data-theme="light"] .btn-ghost:hover { background: rgba(0, 0, 0, .08); color: #1d1d1f; }
html[data-theme="light"] .hero .btn-ghost { background: rgba(255, 255, 255, .06); color: #fff; border-color: rgba(255, 255, 255, .22); }
html[data-theme="light"] .hero .btn-ghost:hover { background: rgba(255, 255, 255, .14); color: #fff; }
html[data-theme="light"] .page-hero .btn-ghost,
html[data-theme="light"] .page-hero .btn-ghost:hover { background: rgba(255, 255, 255, .06); color: #fff; border-color: rgba(255, 255, 255, .22); }

/* hero content stays on dark video/image hero */
html[data-theme="light"] .hero h1,
html[data-theme="light"] .page-hero h1 { color: #fff; }
html[data-theme="light"] .hero p.lead,
html[data-theme="light"] .page-hero .lead { color: #cbd5e1; }
html[data-theme="light"] .hero-stat b,
html[data-theme="light"] .hero-float .float-card b { color: #fff; }
html[data-theme="light"] .hero-float .float-card,
html[data-theme="light"] .hero-float .float-card-2 { background: rgba(16, 27, 46, .72); }
html[data-theme="light"] .hero-badge .dot { background: #34c759; }
html[data-theme="light"] .crumbs,
html[data-theme="light"] .crumbs a { color: #cbd5e1; }

/* tables */
html[data-theme="light"] .price-table th { background: #f5f5f7; color: #0e7c86; }
html[data-theme="light"] .prose table th { background: #f5f5f7; color: #0e7c86; }
html[data-theme="light"] .price-table td,
html[data-theme="light"] .prose table td { color: #1d1d1f; }
html[data-theme="light"] .price-table td strong { color: #1d1d1f; }
html[data-theme="light"] .price-table tbody tr:nth-child(even),
html[data-theme="light"] .prose table tbody tr:nth-child(even) { background: rgba(0, 0, 0, .03); }

/* mobile menu: white glass in light */
html[data-theme="light"] .nav-links.open { background: rgba(255, 255, 255, .97); }
html[data-theme="light"] .nav-links.open a { color: #1d1d1f; }

html[data-theme="light"] .wa-float { box-shadow: 0 16px 40px -12px rgba(0, 0, 0, .25); }

/* ---------- theme toggle ---------- */
.fact-val { color: #fff; text-align: right; }
html[data-theme="light"] .fact-val { color: #1d1d1f; }
.theme-toggle {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  display: grid; place-items: center; cursor: pointer;
  background: transparent; border: 0; color: inherit;
  transition: background 200ms ease, transform 160ms var(--ease-out);
}
.theme-toggle:active { transform: scale(0.92); }
.theme-toggle svg { width: 19px; height: 19px; }
html[data-theme="light"] .theme-toggle .ico-moon { display: none; }
html[data-theme="light"] .theme-toggle .ico-sun { display: block; }
html:not([data-theme="light"]) .theme-toggle .ico-sun { display: none; }
html:not([data-theme="light"]) .theme-toggle .ico-moon { display: block; }
html:not([data-theme="light"]) .nav:not(.scrolled) .theme-toggle { color: #fff; }
html[data-theme="light"] .nav:not(.scrolled) .theme-toggle { color: #fff; }
html[data-theme="light"] .nav.scrolled .theme-toggle { color: #1d1d1f; }
html:not([data-theme="light"]) .nav.scrolled .theme-toggle { color: #cbd5e1; }

/* smooth theme swap */
html.theme-anim,
html.theme-anim body,
html.theme-anim .nav-inner,
html.theme-anim .tour-card,
html.theme-anim .feature-card,
html.theme-anim .video-card,
html.theme-anim .testi-card,
html.theme-anim .footer { transition: background-color 300ms ease, color 300ms ease, border-color 300ms ease; }
