/* ===========================================================================
   Grays Travels — Stylesheet (v2, premium redesign)
   Deep midnight navy + electric yellow, glass surfaces, soft depth.
   =========================================================================== */

:root {
  --navy-900: #071429;
  --navy-800: #0b1e3b;
  --navy-700: #12294d;
  --navy-600: #1b3a63;
  --yellow:      #ffc422;
  --yellow-600:  #f2a900;
  --sky:         #35c2f0;
  --ink:      #10233c;
  --muted:    #5d708b;
  --muted-2:  #8496ad;
  --line:     #e7edf5;
  --bg:       #ffffff;
  --bg-soft:  #f4f8fd;
  --white:    #ffffff;

  --sh-sm: 0 2px 10px rgba(11, 30, 59, .06);
  --sh-md: 0 14px 38px rgba(11, 30, 59, .12);
  --sh-lg: 0 30px 70px rgba(11, 30, 59, .20);
  --sh-glow: 0 16px 40px rgba(255, 196, 34, .40);

  --r:    18px;
  --r-sm: 12px;
  --r-lg: 26px;
  --max:  1160px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: "Sora", sans-serif; color: var(--navy-800); line-height: 1.14; margin: 0; letter-spacing: -.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Pure-CSS entrance for dynamically-rendered cards. Default state is fully
   visible; the animation only adds a gentle intro, so content can never get
   stuck hidden (no dependency on IntersectionObserver / requestAnimationFrame). */
@keyframes popIn { from { transform: translateY(14px); } to { transform: none; } }
.pop-in { animation: popIn .5s var(--ease) both; }
.pop-in:nth-child(2) { animation-delay: .06s; }
.pop-in:nth-child(3) { animation-delay: .12s; }
.pop-in:nth-child(4) { animation-delay: .18s; }
.pop-in:nth-child(5) { animation-delay: .24s; }
.pop-in:nth-child(6) { animation-delay: .30s; }
@media (prefers-reduced-motion: reduce) { .pop-in { animation: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: "Sora", sans-serif; font-weight: 600; font-size: .95rem;
  padding: .82rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 1rem 1.9rem; font-size: 1rem; }
.btn-primary { background: var(--yellow); color: var(--navy-900); box-shadow: var(--sh-glow); }
.btn-primary:hover { background: var(--yellow-600); }
.btn-glass { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-glass:hover { background: rgba(255,255,255,.22); }
.btn-outline { background: #fff; color: var(--navy-800); border-color: var(--navy-800); }
.btn-outline:hover { background: var(--navy-800); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: #fff; color: var(--navy-800); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1eb85a; }
.btn-ghost { background: var(--bg-soft); color: var(--muted); }
.btn-ghost:hover { background: var(--line); color: var(--ink); }
.btn-block { width: 100%; }
.btn-sm { padding: .5rem 1.05rem; font-size: .84rem; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.site-header.scrolled { background: rgba(255,255,255,.9); backdrop-filter: blur(14px); box-shadow: var(--sh-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: .6rem; font-family: "Sora"; font-weight: 800; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--yellow), var(--yellow-600)); color: var(--navy-900);
  font-size: 1.35rem; font-weight: 800; box-shadow: var(--sh-sm);
}
.brand-text { font-size: 1.28rem; color: #fff; transition: color .3s; }
.brand-text span { color: var(--yellow); }
.scrolled .brand-text { color: var(--navy-800); }
.nav-menu { display: flex; align-items: center; gap: 1.7rem; }
.nav-menu > a, .nav-drop-toggle { font-weight: 500; color: rgba(255,255,255,.92); font-size: .95rem; transition: color .2s; }
.scrolled .nav-menu > a, .solid .nav-menu > a,
.scrolled .nav-drop-toggle, .solid .nav-drop-toggle { color: var(--ink); }
.nav-menu > a:hover, .nav-drop-toggle:hover { color: var(--yellow); }
.scrolled .nav-menu > a:hover, .solid .nav-menu > a:hover,
.scrolled .nav-drop-toggle:hover, .solid .nav-drop-toggle:hover { color: var(--yellow-600); }
.nav-cta { display: inline-flex; align-items: center; gap: .45rem; background: var(--yellow); color: var(--navy-900) !important; padding: .58rem 1.15rem; border-radius: 999px; font-weight: 600; box-shadow: var(--sh-sm); }
.nav-cta:hover { background: var(--yellow-600); transform: translateY(-1px); }
.wa-dot { width: 8px; height: 8px; border-radius: 50%; background: #1a9c47; box-shadow: 0 0 0 0 rgba(26,156,71,.6); animation: ping 1.8s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(26,156,71,.55); } 70% { box-shadow: 0 0 0 7px rgba(26,156,71,0); } 100% { box-shadow: 0 0 0 0 rgba(26,156,71,0); } }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: background .3s; }
.scrolled .nav-toggle span { background: var(--navy-800); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: #fff; overflow: hidden; padding: 120px 0 170px; }
.hero-bg { position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(115deg, rgba(7,20,41,.94) 0%, rgba(7,20,41,.78) 42%, rgba(7,20,41,.45) 100%),
    url("../assets/img/hero-photo.jpg");
  background-size: cover; background-position: center; transform: scale(1.04); animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.14); } }
.hero-glow { position: absolute; z-index: 1; right: -180px; top: -120px; width: 620px; height: 620px; pointer-events: none;
  background: radial-gradient(circle at center, rgba(255,196,34,.55), rgba(255,196,34,0) 62%); filter: blur(6px); }
.hero-inner { position: relative; z-index: 2; }
.hero-copy { max-width: 680px; }
.pill { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(6px);
  padding: .45rem 1rem; border-radius: 999px; font-size: .82rem; font-weight: 500; color: #eaf1fb; margin-bottom: 1.4rem; }
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 10px var(--yellow); }
.hero h1 { color: #fff; font-size: clamp(2.4rem, 5.6vw, 4.15rem); font-weight: 800; letter-spacing: -.02em; }
.hero h1 .hl { position: relative; color: var(--yellow); white-space: nowrap; }
.hero h1 .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .12em; background: rgba(255,196,34,.4); border-radius: 4px; }
.hero .lede { color: #d5e0f0; font-size: clamp(1.02rem, 1.6vw, 1.22rem); margin: 1.3rem 0 2.2rem; max-width: 560px; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.4rem; margin-top: 2.8rem; flex-wrap: wrap; }
.hstat { display: flex; flex-direction: column; }
.hstat strong { font-family: "Sora"; font-size: 1.7rem; font-weight: 700; color: #fff; }
.hstat span { font-size: .85rem; color: #9fb2cc; }
.hero-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 160px; z-index: 1; background: linear-gradient(to bottom, rgba(244,248,253,0), var(--bg-soft)); }

/* ---------- search ---------- */
.search-section { position: relative; margin-top: -130px; z-index: 5; padding-bottom: 30px; }
.search-card { background: rgba(255,255,255,.85); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.6); border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: 28px; }
.search-card-head h2 { font-size: 1.55rem; }
.search-card-head p { color: var(--muted); margin: .35rem 0 1.3rem; }

.segmented { display: inline-flex; background: var(--bg-soft); border-radius: 999px; padding: 5px; margin-bottom: 1.3rem; }
.seg { position: relative; cursor: pointer; }
.seg input { position: absolute; opacity: 0; }
.seg span { display: inline-block; padding: .5rem 1.2rem; border-radius: 999px; font-weight: 600; font-size: .9rem; color: var(--muted); transition: all .2s var(--ease); }
.seg input:checked + span { background: var(--navy-800); color: #fff; box-shadow: var(--sh-sm); }

.form-grid { display: grid; grid-template-columns: 1.4fr auto 1.4fr 1fr 1fr .8fr .9fr; gap: 12px; align-items: end; }
.field { position: relative; display: flex; flex-direction: column; }
.field label { font-size: .78rem; font-weight: 600; color: var(--navy-700); margin-bottom: .38rem; letter-spacing: .01em; }
.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap input, .input-wrap select {
  width: 100%; padding: .82rem .9rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-size: .95rem; font-family: inherit; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.input-wrap input:focus, .input-wrap select:focus { outline: none; border-color: var(--yellow-600); box-shadow: 0 0 0 3px rgba(255,196,34,.22); }
.ac-field .input-wrap input { padding-left: 2.3rem; }
.input-wrap i { position: absolute; left: .8rem; width: 16px; height: 16px; opacity: .5; }
.i-plane-up, .i-plane-down { background: no-repeat center/contain; }
.i-plane-up   { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2.5 19h19v2h-19zM22 9.5a1.5 1.5 0 0 0-1.9-1.05L14 10 6 3.5 4 4l5 7-5 1.5L2.5 11 1 11.5 3 16l17.5-4.6A1.5 1.5 0 0 0 22 9.5z'/%3E%3C/svg%3E") center/contain no-repeat; background: var(--navy-700); }
.i-plane-down { -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2.5 19h19v2h-19zM1 8.9 2.5 8.4 6 12l8 2.4 6.1 1.6A1.5 1.5 0 0 0 22 14.5a1.5 1.5 0 0 0-1.1-1.45L14 11 12 3l-2 .5v7L5 9 4.5 6 3 6.5z'/%3E%3C/svg%3E") center/contain no-repeat; background: var(--navy-700); }
.field.disabled { opacity: .45; pointer-events: none; }

.swap-btn { align-self: end; margin-bottom: 3px; width: 40px; height: 44px; border-radius: var(--r-sm); border: 1.5px solid var(--line); background: #fff; color: var(--navy-700); font-size: 1.1rem; cursor: pointer; transition: background .2s, color .2s, transform .4s var(--ease); }
.swap-btn:hover { background: var(--navy-800); color: #fff; }
.swap-btn.spin { transform: rotate(180deg); }

.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 1.2rem; flex-wrap: wrap; }
.btn-search { padding: .95rem 2.4rem; }
.search-error { color: #d1443a; font-weight: 500; font-size: .9rem; margin: 0; display: none; }
.search-error.show { display: block; }

/* ---------- autocomplete ---------- */
.ac-list { position: absolute; top: calc(100% + 8px); left: 0; right: 0; min-width: 290px; z-index: 40; list-style: none; margin: 0; padding: 8px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--sh-lg); max-height: 340px; overflow: auto; display: none; }
.ac-list.open { display: block; animation: acIn .16s var(--ease); }
@keyframes acIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.ac-head { font-family: "Sora"; font-weight: 700; font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted-2); padding: 4px 10px 8px; }
.ac-empty { padding: 14px 12px; color: var(--muted); font-size: .9rem; }
.ac-item { display: flex; align-items: center; gap: 11px; padding: .55rem .6rem; border-radius: 12px; cursor: pointer; }
.ac-item:hover, .ac-item.active { background: var(--bg-soft); }
.ac-flag { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.ac-code { font-family: "Sora"; font-weight: 700; color: var(--navy-800); background: #eef3fa; border-radius: 7px; padding: .3rem .5rem; font-size: .76rem; letter-spacing: .03em; flex-shrink: 0; }
.ac-item:hover .ac-code, .ac-item.active .ac-code { background: var(--yellow); color: var(--navy-900); }
.ac-text { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; flex: 1; }
.ac-city { font-weight: 600; font-size: .94rem; color: var(--ink); }
.ac-name { font-size: .78rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ac-item mark { background: rgba(255,196,34,.4); color: inherit; border-radius: 3px; padding: 0 1px; }
.ac-enter { font-size: .95rem; color: var(--muted-2); opacity: 0; transition: opacity .15s; flex-shrink: 0; }
.ac-item:hover .ac-enter, .ac-item.active .ac-enter { opacity: 1; }

/* ---------- custom searchable select (cabin) ---------- */
.cselect { position: relative; }
.cs-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .82rem .9rem; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: #fff; font-family: inherit; font-size: .95rem; color: var(--ink); cursor: pointer; transition: border-color .15s, box-shadow .15s; text-align: left; }
.cs-btn:hover { border-color: #cfd9e6; }
.cselect.open .cs-btn { border-color: var(--yellow-600); box-shadow: 0 0 0 3px rgba(255,196,34,.22); }
.cs-val { font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cs-caret { width: 16px; height: 16px; color: var(--muted); flex-shrink: 0; transition: transform .22s var(--ease); }
.cselect.open .cs-caret { transform: rotate(180deg); color: var(--yellow-600); }
.cs-panel { position: absolute; top: calc(100% + 8px); left: auto; right: 0; min-width: 240px; z-index: 45; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--sh-lg); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s var(--ease), transform .18s var(--ease); }
.cselect.open .cs-panel { opacity: 1; visibility: visible; transform: none; }
.cs-search { padding: 2px 2px 8px; }
.cs-search input { width: 100%; padding: .6rem .8rem; border: 1.5px solid var(--line); border-radius: 10px; font-family: inherit; font-size: .9rem; }
.cs-search input:focus { outline: none; border-color: var(--yellow-600); box-shadow: 0 0 0 3px rgba(255,196,34,.2); }
.cs-list { list-style: none; margin: 0; padding: 0; max-height: 260px; overflow: auto; }
.cs-opt { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: .6rem .7rem; border-radius: 11px; cursor: pointer; }
.cs-opt:hover, .cs-opt.active { background: var(--bg-soft); }
.cs-opt-main { display: flex; flex-direction: column; line-height: 1.25; }
.cs-opt-main small { color: var(--muted); font-size: .76rem; font-weight: 400; }
.cs-opt.sel { color: var(--navy-800); font-weight: 600; }
.cs-check { color: var(--yellow-600); opacity: 0; flex-shrink: 0; }
.cs-check svg { width: 17px; height: 17px; }
.cs-opt.sel .cs-check { opacity: 1; }
.cs-none { padding: 12px; color: var(--muted); font-size: .88rem; text-align: center; }

/* ---------- skyscanner compare card ---------- */
/* travelpayouts widget */
.tp-widget-wrap { min-height: 80px; margin-top: 8px; }

/* static action cards */
.sa-static { margin-top: 36px; }
.sa-heading { font-family: var(--ff-head); font-size: 1.15rem; font-weight: 700; color: var(--navy-900); text-align: center; margin-bottom: 18px; }

.skyscanner-box { margin-top: 36px; background: linear-gradient(135deg, #f0f6ff, var(--bg-soft)); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 32px; }
.sky-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.sky-left { display: flex; align-items: center; gap: 18px; flex: 1; min-width: 0; }
.sky-icon { color: var(--yellow-600); flex-shrink: 0; }
.sky-title { font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--navy-800); margin: 0 0 .25rem; }
.sky-sub { color: var(--muted); font-size: .88rem; margin: 0; max-width: 440px; }
.sky-inner .btn { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 640px) {
  .sky-inner { flex-direction: column; align-items: flex-start; }
  .sky-inner .btn { width: 100%; }
}

/* ---------- results ---------- */
.results { margin-top: 26px; }
.loading { text-align: center; padding: 54px 0; color: var(--muted); }
.plane-spin { font-size: 2.6rem; animation: fly 1.1s ease-in-out infinite; }
@keyframes fly { 0%,100% { transform: translateX(-12px) rotate(0); } 50% { transform: translateX(12px) rotate(12deg); } }

.results-head { margin-bottom: 6px; }
.results-head h3 { font-size: 1.6rem; }
.results-head .arrow { color: var(--yellow-600); }
.results-sub { color: var(--muted); font-weight: 500; margin: .3rem 0 0; }
.results-note { color: var(--muted); font-size: .88rem; margin: .6rem 0 0; background: #fff8e6; padding: .55rem .85rem; border-radius: 10px; border-left: 3px solid var(--yellow); }

.results-section { margin-top: 24px; }
.leg-title { font-size: 1.08rem; color: var(--navy-800); margin-bottom: 14px; display: flex; align-items: baseline; gap: .5rem; }
.leg-title span { color: var(--muted); font-weight: 500; font-family: "Inter"; font-size: .9rem; }

.flight-list { display: flex; flex-direction: column; gap: 14px; }
.flight-card {
  position: relative; display: grid; grid-template-columns: 1.5fr 2.6fr 1.2fr; gap: 20px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px 22px;
  box-shadow: var(--sh-sm); transition: box-shadow .25s var(--ease), transform .2s var(--ease), border-color .25s;
}
.flight-card:hover { box-shadow: var(--sh-md); border-color: #d4e0f0; transform: translateY(-3px); }
.flight-card.is-best { border-color: var(--yellow); box-shadow: 0 10px 30px rgba(255,196,34,.18); }
.fc-ribbon { position: absolute; top: -11px; left: 22px; background: var(--yellow); color: var(--navy-900); font-family: "Sora"; font-weight: 700; font-size: .72rem; padding: .25rem .7rem; border-radius: 999px; box-shadow: var(--sh-sm); }

.fc-left { display: flex; align-items: center; gap: .85rem; }
.fc-logo-img { width: 50px; height: 50px; border-radius: 13px; object-fit: contain; background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-sm); flex-shrink: 0; }
.fc-logo, .fc-logo-fallback { width: 50px; height: 50px; border-radius: 13px; background: linear-gradient(145deg, var(--navy-800), var(--navy-600)); color: var(--yellow); display: grid; place-items: center; font-weight: 800; font-family: "Sora"; font-size: 1.05rem; box-shadow: var(--sh-sm); flex-shrink: 0; }
.fc-name { font-weight: 700; font-family: "Sora"; color: var(--navy-800); font-size: 1rem; }
.fc-flightno { font-size: .8rem; color: var(--muted); }

.fc-route { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; }
.fc-endpoint { text-align: center; }
.fc-time { display: block; font-weight: 700; font-size: 1.42rem; color: var(--ink); font-family: "Sora"; line-height: 1; }
.fc-code { display: block; font-size: .82rem; color: var(--navy-700); font-weight: 600; letter-spacing: .06em; margin-top: 3px; }
.fc-city { display: block; font-size: .74rem; color: var(--muted-2); }
.dayplus { color: var(--yellow-600); font-size: .7rem; font-weight: 700; }
.fc-path { text-align: center; }
.fc-dur { display: block; font-size: .8rem; color: var(--muted); margin-bottom: 5px; font-weight: 500; }
.fc-line { position: relative; height: 14px; display: flex; align-items: center; }
.fc-line::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 11px); }
.fc-dot { position: relative; z-index: 1; width: 8px; height: 8px; border-radius: 50%; background: var(--navy-700); }
.fc-dot:last-child { margin-left: auto; }
.fc-plane { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 2; color: var(--yellow-600); background: #fff; padding: 0 6px; font-size: .95rem; }
.fc-stops { display: inline-block; margin-top: 6px; font-size: .72rem; font-weight: 600; padding: .18rem .6rem; border-radius: 999px; }
.fc-stops.ns { background: #e4f7ec; color: #16924f; }
.fc-stops.st { background: #fff1de; color: #b5751a; }

.fc-price { text-align: right; }
.fc-amount { font-family: "Sora"; font-weight: 800; font-size: 1.65rem; color: var(--navy-800); line-height: 1; }
.fc-per { font-size: .76rem; color: var(--muted); margin: .3rem 0 .6rem; }
.btn-inquire { background: var(--navy-800); color: #fff; padding: .58rem 1.25rem; font-size: .88rem; border-radius: 999px; border: 0; font-family: "Sora"; font-weight: 600; cursor: pointer; transition: background .2s, transform .18s var(--ease); }
.btn-inquire:hover { background: var(--yellow); color: var(--navy-900); transform: translateY(-2px); }

.notice { padding: 16px; border-radius: 12px; background: var(--bg-soft); }
.notice.error { background: #fdeceb; color: #c0392b; }
.notice.api-notice { background: #fff8e6; border: 1px solid #ffe6a0; padding: 28px; border-radius: var(--r); text-align: center; }
.notice.api-notice h4 { font-size: 1.15rem; margin-bottom: .5rem; }
.notice.api-notice p { color: var(--muted); margin: .4rem 0; }
.notice.api-notice code { background: #eef3fa; padding: .15rem .4rem; border-radius: 5px; font-size: .88rem; }
.notice.api-notice .btn { margin-top: .8rem; }

/* search action cards */
.search-actions { padding: 32px 0; }
.search-actions h3 { font-family: var(--ff-head); font-size: 1.35rem; font-weight: 700; color: var(--navy-900); }
.sa-sub { color: var(--muted); font-size: .95rem; margin: 4px 0 20px; }
.sa-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sa-card { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 28px 18px; border-radius: var(--r); text-decoration: none; text-align: center; transition: transform .2s, box-shadow .2s; }
.sa-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.sa-icon { font-size: 1.6rem; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.sa-title { font-family: var(--ff-head); font-weight: 700; font-size: 1rem; }
.sa-desc { font-size: .85rem; line-height: 1.4; }
.sa-sky  { background: linear-gradient(135deg, #e8f4fd, #f0f9ff); border: 1px solid #c4e2f5; }
.sa-sky .sa-icon  { background: #0770e3; color: #fff; }
.sa-sky .sa-title { color: #0770e3; }
.sa-sky .sa-desc  { color: #456; }
.sa-wa   { background: linear-gradient(135deg, #e6fbe9, #f2fdf4); border: 1px solid #b8e6c0; }
.sa-wa .sa-icon   { background: #25d366; color: #fff; }
.sa-wa .sa-title  { color: #128c46; }
.sa-wa .sa-desc   { color: #456; }
.sa-email { background: linear-gradient(135deg, #fff5e6, #fffbf0); border: 1px solid #ffd9a0; }
.sa-email .sa-icon  { background: #fff3d6; color: #e89a1c; }
.sa-email .sa-title { color: var(--navy-900); }
.sa-email .sa-desc  { color: #456; }
.sa-tip { margin-top: 20px; padding: 14px 20px; background: #f8f9fb; border-radius: 10px; font-size: .9rem; color: var(--muted); text-align: center; }
@media (max-width: 700px) {
  .sa-cards { grid-template-columns: 1fr; }
}

/* ---------- generic sections ---------- */
.section { padding: 92px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: linear-gradient(160deg, var(--navy-900), var(--navy-700)); color: #fff; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 700; color: var(--yellow-600); margin-bottom: .7rem; }
.eyebrow.light { color: var(--yellow); }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section-dark .section-head h2 { color: #fff; }
.section-sub { color: var(--muted); margin-top: .7rem; font-size: 1.02rem; }

/* ---------- packages slider ---------- */
.pkg-slider { position: relative; display: flex; align-items: center; gap: 12px; width: 100%; }
.pkg-track-wrap { overflow: hidden; flex: 1; min-width: 0; width: 100%; border-radius: var(--r); }
.pkg-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; padding: 8px 0; }
.pkg-track::-webkit-scrollbar { display: none; }
.pkg-track .pkg-card { flex: 0 0 calc(33.333% - 16px); scroll-snap-align: start; min-width: 280px; }
.pkg-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; box-shadow: var(--sh-sm); transition: all .2s; }
.pkg-arrow:hover { background: var(--yellow-600); color: #fff; border-color: var(--yellow-600); }
.pkg-arrow svg { width: 20px; height: 20px; }
.pkg-arrow.hidden { opacity: .3; pointer-events: none; }
@media (max-width: 900px) { .pkg-track .pkg-card { flex: 0 0 calc(50% - 12px); } }
@media (max-width: 600px) { .pkg-track .pkg-card { flex: 0 0 85%; } .pkg-arrow { display: none; } }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pkg-card { position: relative; border-radius: var(--r); overflow: hidden; min-height: 380px; box-shadow: var(--sh-md); color: #fff; display: flex; align-items: flex-end; }
.pkg-card::before { content: ""; position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s var(--ease); z-index: 0; }
.pkg-card:hover::before { transform: scale(1.09); }
.pkg-overlay { position: relative; z-index: 1; width: 100%; padding: 24px; background: linear-gradient(to top, rgba(6,15,30,.95) 14%, rgba(6,15,30,.5) 56%, rgba(6,15,30,0) 100%); }
.pkg-overlay h3 { color: #fff; font-size: 1.4rem; }
.pkg-days { display: inline-block; background: var(--yellow); color: var(--navy-900); font-weight: 700; font-size: .72rem; padding: .22rem .65rem; border-radius: 999px; margin-bottom: .55rem; }
.pkg-place { color: #ffd766; font-weight: 500; margin: .25rem 0 .45rem; font-size: .9rem; }
.pkg-blurb { color: #d5deea; font-size: .86rem; margin: 0 0 1rem; }
.pkg-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.pkg-from { font-size: .85rem; color: #cdd8e8; }
.pkg-from strong { color: #fff; font-size: 1.1rem; font-family: "Sora"; }
/* (package images are now local <img> elements — see packageCard in common.js) */

/* ---------- services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 28px; transition: transform .2s var(--ease), background .25s, border-color .25s; }
.service-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.09); border-color: rgba(255,196,34,.4); }
.svc-ico { width: 56px; height: 56px; border-radius: 15px; background: rgba(255,196,34,.14); display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 1.1rem; }
.service-card h3 { font-size: 1.16rem; margin-bottom: .4rem; color: #fff; }
.service-card p { color: #adbdd4; font-size: .92rem; margin: 0; }

/* ---------- steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 34px 28px; text-align: center; box-shadow: var(--sh-sm); transition: transform .2s var(--ease), box-shadow .25s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.step-no { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(145deg, var(--yellow), var(--yellow-600)); color: var(--navy-900); font-family: "Sora"; font-weight: 800; font-size: 1.25rem; margin-bottom: 1.1rem; box-shadow: var(--sh-glow); }
.step h3 { font-size: 1.18rem; margin-bottom: .45rem; }
.step p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px; box-shadow: var(--sh-sm); margin: 0; }
.stars { color: var(--yellow-600); letter-spacing: .12em; font-size: .95rem; margin-bottom: .7rem; }
.testi blockquote { margin: 0 0 1.1rem; color: var(--ink); font-size: .98rem; line-height: 1.65; }
.testi figcaption { display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: var(--muted); font-weight: 500; }
.av { width: 34px; height: 34px; border-radius: 50%; background: var(--navy-800); color: var(--yellow); display: grid; place-items: center; font-family: "Sora"; font-weight: 700; font-size: .9rem; }

/* ---------- contact ---------- */
.section-cta { background: linear-gradient(150deg, var(--navy-900), var(--navy-700)); color: #fff; }
.contact-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 44px; align-items: center; }
.contact-copy h2 { color: #fff; }
.contact-copy > p { color: #b9c6da; }
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.contact-list li { display: flex; gap: 12px; padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .95rem; color: #dbe4f0; }
.contact-list li span { min-width: 92px; font-weight: 600; color: #fff; }
.contact-list a { color: var(--yellow); font-weight: 600; }
.contact-cta-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(8px); border-radius: var(--r); padding: 32px; }
.contact-cta-card h3 { color: #fff; }
.contact-cta-card p { color: #b9c6da; margin: .4rem 0 1.4rem; }
.contact-cta-card .btn { margin-bottom: .7rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-900); color: #98a9c2; padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 36px; }
.foot-brand .brand-text { color: #fff; }
.foot-brand p { margin: .9rem 0 1.2rem; font-size: .9rem; max-width: 260px; line-height: 1.65; }
.foot-socials { display: flex; gap: 10px; }
.foot-social { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); display: grid; place-items: center; color: #98a9c2; transition: all .25s var(--ease); }
.foot-social:hover { background: var(--yellow); color: var(--navy-900); border-color: var(--yellow); transform: translateY(-2px); }
.foot-social svg { width: 18px; height: 18px; }
.foot-social.wa { background: rgba(37,211,102,.12); border-color: rgba(37,211,102,.2); color: #25d366; }
.foot-social.wa:hover { background: #25d366; color: #fff; border-color: #25d366; }
.foot-col h4 { color: #fff; font-size: .95rem; margin-bottom: .9rem; }
.foot-col { display: flex; flex-direction: column; gap: .55rem; font-size: .9rem; }
.foot-col a { display: flex; align-items: center; gap: .5rem; transition: color .2s, transform .15s; }
.foot-col a:hover { color: var(--yellow); transform: translateX(3px); }
.foot-col a svg { width: 16px; height: 16px; flex-shrink: 0; opacity: .6; }
.foot-reach a { gap: .6rem; }
.foot-reach .foot-ic { width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; flex-shrink: 0; transition: background .2s; }
.foot-reach a:hover .foot-ic { background: rgba(255,196,34,.15); }
.foot-reach .foot-ic svg { width: 16px; height: 16px; opacity: .7; }
.foot-reach .foot-ic.wa-ic { background: rgba(37,211,102,.12); }
.foot-reach a:hover .foot-ic.wa-ic { background: rgba(37,211,102,.22); }
.foot-bottom { margin-top: 36px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.08); font-size: .82rem; color: #5d708b; background: rgba(0,0,0,.15); }
.foot-bottom .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot-bottom-links { display: flex; gap: 1.2rem; }
.foot-bottom-links a { color: #5d708b; transition: color .2s; }
.foot-bottom-links a:hover { color: var(--yellow); }

/* ---------- floating whatsapp ---------- */
.fab-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px rgba(37,211,102,.5); transition: transform .18s var(--ease); }
.fab-whatsapp::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: ping 2s infinite; }
.fab-whatsapp:hover { transform: scale(1.09); }

/* ---------- modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(7,20,41,.6); backdrop-filter: blur(4px); }
.modal-card { position: relative; z-index: 1; background: #fff; border-radius: var(--r); padding: 32px; width: 100%; max-width: 450px; box-shadow: var(--sh-lg); animation: pop .22s var(--ease); }
@keyframes pop { from { transform: scale(.93) translateY(8px); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-close { position: absolute; top: 12px; right: 14px; background: none; border: 0; font-size: 1.9rem; line-height: 1; color: var(--muted); cursor: pointer; }
.modal-card h3 { font-size: 1.4rem; }
.modal-sub { color: var(--muted); margin: .4rem 0 1.2rem; font-size: .92rem; }
.inquiry-summary { background: var(--bg-soft); border-radius: var(--r-sm); padding: 15px 17px; margin-bottom: 18px; }
.sum-row { padding: .2rem 0; font-size: .92rem; }
.modal-actions .btn { margin-bottom: .6rem; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-menu { position: absolute; top: 76px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 22px 18px; box-shadow: var(--sh-md); display: none; }
  .nav-menu.open { display: flex; }
  .nav-menu > a { padding: .85rem 0; border-bottom: 1px solid var(--line); color: var(--ink); }
  .nav-cta { margin-top: 12px; justify-content: center; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .swap-btn { display: none; }
  .package-grid, .service-grid, .steps-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .foot-bottom .container { flex-direction: column; text-align: center; }
}
@media (max-width: 720px) {
  .flight-card { grid-template-columns: 1fr; gap: 16px; }
  .fc-price { text-align: left; display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
  .fc-amount { margin: 0; }
  .fc-per { margin: 0; }
  .btn-inquire { margin-left: auto; }
  .form-foot { justify-content: stretch; }
  .btn-search { width: 100%; }
}
@media (max-width: 560px) {
  .hero { min-height: auto; padding: 110px 0 150px; }
  .hero-stats { gap: 1.6rem; }
  .form-grid { grid-template-columns: 1fr; }
  .package-grid, .service-grid, .steps-grid, .testi-grid { grid-template-columns: 1fr; }
}

/* ===========================================================================
   v3 — real logo, photo services, packages pages, booking form
   =========================================================================== */

/* ---- logo (light variant over hero, dark when header solid) ---- */
.brand { min-height: 44px; }
.logo { height: 40px; width: auto; display: block; }
.logo-dark { display: none; }
.site-header.scrolled .logo-light,
.site-header.solid .logo-light { display: none; }
.site-header.scrolled .logo-dark,
.site-header.solid .logo-dark { display: block; }
.site-header.solid { position: sticky; background: #fff; box-shadow: var(--sh-sm); }
.foot-logo { height: 42px; width: auto; margin-bottom: .3rem; }

.ic { display: inline-flex; align-items: center; justify-content: center; }
.ic svg { width: 1em; height: 1em; }

/* ---- section cta row / page hero ---- */
.section-cta-row { text-align: center; margin-top: 42px; }
.page-hero { position: relative; background: linear-gradient(150deg, var(--navy-900) 0%, var(--navy-800) 40%, var(--navy-700) 100%); color: #fff; padding: 140px 0 80px; text-align: center; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30z' fill='rgba(255,255,255,.015)'/%3E%3C/svg%3E") repeat; pointer-events: none; }
.page-hero-glow { position: absolute; top: -80px; right: -120px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(255,196,34,.18) 0%, rgba(255,196,34,0) 65%); filter: blur(8px); pointer-events: none; }
.page-hero-glow-2 { position: absolute; bottom: -100px; left: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(53,194,240,.12) 0%, rgba(53,194,240,0) 65%); filter: blur(10px); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero-breadcrumb { display: inline-flex; align-items: center; gap: .5rem; font-size: .85rem; color: #8ea1bb; margin-bottom: 1.2rem; }
.page-hero-breadcrumb a { color: #8ea1bb; transition: color .2s; }
.page-hero-breadcrumb a:hover { color: var(--yellow); }
.page-hero-breadcrumb svg { width: 14px; height: 14px; opacity: .5; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); margin-top: .5rem; }
.page-hero h1 .hl { color: var(--yellow); }
.page-hero p { color: #c3d0e4; max-width: 620px; margin: 1rem auto 0; font-size: 1.05rem; line-height: 1.7; }
.page-hero-stats { display: flex; justify-content: center; gap: 2.4rem; margin-top: 2rem; flex-wrap: wrap; }
.ph-stat { display: flex; flex-direction: column; align-items: center; }
.ph-stat strong { font-family: "Sora"; font-size: 1.5rem; font-weight: 700; color: var(--yellow); }
.ph-stat span { font-size: .82rem; color: #8ea1bb; }
.page-hero-divider { display: block; width: 60px; height: 3px; background: linear-gradient(90deg, var(--yellow), var(--yellow-600)); border-radius: 3px; margin: 1.2rem auto 0; }

/* ---- services as photo cards (override old dark style) ---- */
.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 0; overflow: hidden; box-shadow: var(--sh-sm); transition: transform .2s var(--ease), box-shadow .25s, border-color .25s; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: #d4e0f0; background: #fff; }
.svc-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.service-card:hover .svc-media img { transform: scale(1.07); }
.svc-ic { position: relative; z-index: 2; width: 52px; height: 52px; border-radius: 14px; background: var(--yellow); color: var(--navy-900); display: grid; place-items: center; box-shadow: var(--sh-md); margin: -26px 0 0 16px; }
.svc-ic svg { width: 26px; height: 26px; }
.svc-body { padding: 8px 22px 24px; }
.svc-body h3 { font-size: 1.16rem; margin-bottom: .4rem; color: var(--navy-800); }
.svc-body p { color: var(--muted); font-size: .92rem; margin: 0; }

/* ---- package cards (override old ::before background style) ---- */
.pkg-card { position: static; display: flex; flex-direction: column; min-height: 0; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-sm); align-items: stretch; transition: transform .2s var(--ease), box-shadow .25s; }
.pkg-card::before { content: none; }
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.pkg-media { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; }
.pkg-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.pkg-card:hover .pkg-media img { transform: scale(1.08); }
.pkg-days { position: absolute; top: 12px; left: 12px; background: var(--yellow); color: var(--navy-900); font-weight: 700; font-size: .74rem; padding: .25rem .65rem; border-radius: 999px; box-shadow: var(--sh-sm); }
.pkg-rate { position: absolute; top: 12px; right: 12px; display: inline-flex; align-items: center; gap: .25rem; background: rgba(7,20,41,.72); color: var(--yellow); font-weight: 700; font-size: .76rem; padding: .25rem .6rem; border-radius: 999px; backdrop-filter: blur(4px); }
.pkg-rate svg { width: .8em; height: .8em; }
.pkg-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.pkg-place { display: inline-flex; align-items: center; gap: .35rem; color: var(--yellow-600); font-weight: 600; font-size: .82rem; }
.pkg-place svg { width: .95em; height: .95em; }
.pkg-body h3 { font-size: 1.28rem; }
.pkg-body h3 a { color: var(--navy-800); }
.pkg-body h3 a:hover { color: var(--yellow-600); }
.pkg-blurb { color: var(--muted); font-size: .9rem; margin: 0; flex: 1; }
.pkg-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: .4rem; }
.pkg-from { font-size: .85rem; color: var(--muted); }
.pkg-from strong { color: var(--navy-800); font-size: 1.15rem; font-family: "Sora"; }
.pkg-foot .btn-sm { gap: .35rem; }
.pkg-foot .btn-sm svg { width: 1em; height: 1em; }

/* ---- booking enquiry form ---- */
.book-inner { display: grid; grid-template-columns: 1fr 1.25fr; gap: 44px; align-items: start; }
.book-intro h2 { color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.book-intro > p { color: #b9c6da; margin-top: .8rem; }
.book-points { list-style: none; padding: 0; margin: 1.6rem 0 0; display: flex; flex-direction: column; gap: .7rem; }
.book-points li { display: flex; align-items: center; gap: .6rem; color: #dbe4f0; font-size: .95rem; }
.book-points .tick { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,196,34,.18); color: var(--yellow); display: grid; place-items: center; font-size: .8rem; font-weight: 700; }
.booking-form { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(8px); border-radius: var(--r-lg); padding: 26px; }
.bk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-form .field { display: flex; flex-direction: column; }
.booking-form label { font-size: .78rem; font-weight: 600; color: #cdd9ea; margin-bottom: .35rem; }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%; padding: .7rem .8rem; border: 1.5px solid rgba(255,255,255,.16); border-radius: var(--r-sm);
  background: rgba(255,255,255,.06); color: #fff; font-family: inherit; font-size: .92rem; transition: border-color .15s, background .15s;
}
.booking-form input::placeholder, .booking-form textarea::placeholder { color: #8ea1bb; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { outline: none; border-color: var(--yellow); background: rgba(255,255,255,.1); }
.booking-form select option { color: #10233c; }
.booking-form textarea { resize: vertical; }
.field-full { grid-column: 1 / -1; }
.bk-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.booking-form .search-error { margin: 0 0 4px; color: #ffb4ad; }

/* ===================== PACKAGE DETAIL PAGE ===================== */
.pkg-detail { min-height: 60vh; }
.pkg-hero { position: relative; background-size: cover; background-position: center; color: #fff; padding: 150px 0 54px; }
.pkg-hero-inner { position: relative; }
.pkg-back { display: inline-flex; align-items: center; gap: .4rem; color: #dbe4f0; font-weight: 600; font-size: .9rem; margin-bottom: 1.2rem; }
.pkg-back svg { width: 1.1em; height: 1.1em; transform: rotate(180deg); }
.pkg-back:hover { color: var(--yellow); }
.pkg-hero-meta { display: flex; gap: .6rem; margin-bottom: .7rem; }
.pkg-rate.big, .pkg-days.big { position: static; font-size: .82rem; }
.pkg-days.big { background: var(--yellow); color: var(--navy-900); }
.pkg-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); }
.pkg-hero-place { display: inline-flex; align-items: center; gap: .4rem; color: #ffd766; font-weight: 500; margin-top: .5rem; }
.pkg-hero-place svg { width: 1em; height: 1em; }

.pkg-detail-body { display: grid; grid-template-columns: 1fr 360px; gap: 40px; padding: 54px 22px; }
.pkg-block { margin-bottom: 38px; }
.pkg-block h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.pkg-summary { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.pkg-highlights { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 1.4rem; }
.pkg-highlights li { display: flex; align-items: flex-start; gap: .6rem; font-size: .95rem; color: var(--ink); }
.pkg-highlights svg { width: 18px; height: 18px; color: #16924f; flex-shrink: 0; margin-top: 2px; }

.pkg-timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.pkg-timeline::before { content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.pkg-timeline li { position: relative; padding-left: 34px; padding-bottom: 22px; }
.pkg-timeline li::before { content: ""; position: absolute; left: 2px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--yellow); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--yellow); }
.tl-day { display: inline-block; font-family: "Sora"; font-weight: 700; color: var(--yellow-600); font-size: .82rem; margin-bottom: .2rem; }
.tl-body h4 { font-size: 1.05rem; margin-bottom: .2rem; }
.tl-body p { color: var(--muted); font-size: .92rem; margin: 0; }

.pkg-includes { display: flex; flex-wrap: wrap; gap: .6rem; }
.inc-chip { display: inline-flex; align-items: center; gap: .4rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: .4rem .9rem; font-size: .86rem; font-weight: 500; color: var(--navy-700); }
.inc-chip svg { width: 15px; height: 15px; color: #16924f; }

.pkg-side { position: sticky; top: 96px; }
.pkg-book-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-md); padding: 26px; }
.pbc-price { display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.pbc-price span { color: var(--muted); font-size: .85rem; }
.pbc-price strong { font-family: "Sora"; font-size: 2.1rem; color: var(--navy-800); }
.pbc-price small { color: var(--muted); width: 100%; font-size: .8rem; }
.pbc-rows { padding: 16px 0; display: flex; flex-direction: column; gap: .7rem; }
.pbc-row { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--muted); }
.pbc-row svg { width: 18px; height: 18px; color: var(--yellow-600); }
.pbc-row b { margin-left: auto; color: var(--navy-800); font-weight: 600; }
.pkg-book-card .btn { margin-bottom: .6rem; }
.pbc-note { font-size: .78rem; color: var(--muted-2); margin: .6rem 0 0; text-align: center; }
.pkg-more { padding: 0 22px 80px; }
.pkg-more h2 { font-size: 1.6rem; margin-bottom: 24px; }

@media (max-width: 900px) {
  .book-inner { grid-template-columns: 1fr; gap: 28px; }
  .pkg-detail-body { grid-template-columns: 1fr; }
  .pkg-side { position: static; }
  .pkg-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .bk-grid { grid-template-columns: 1fr; }
  .bk-actions { grid-template-columns: 1fr; }
}

/* ===========================================================================
   v4 — nav dropdown, stepper wizard, steps flow, contact + map, polish
   =========================================================================== */

/* ---- typography & button polish ---- */
body { font-size: 16px; line-height: 1.66; }
h1, h2, h3 { letter-spacing: -.022em; }
.btn { font-weight: 600; letter-spacing: .003em; }
.btn svg { width: 1.05em; height: 1.05em; }
.btn-lg { font-weight: 700; }
.btn-outline { border-width: 2px; }
.btn-outline.btn-lg { background: #fff; }
.btn-outline.btn-lg:hover { background: var(--navy-800); color: #fff; box-shadow: var(--sh-md); }
.section-sub { font-size: 1.04rem; }

/* ---- packages nav dropdown ---- */
.nav-item.has-dropdown { position: relative; }
.nav-drop-toggle { display: inline-flex; align-items: center; gap: .3rem; cursor: pointer; }
.caret { width: 13px; height: 13px; transition: transform .25s var(--ease); }
.has-dropdown:hover .caret { transform: rotate(180deg); }
.has-dropdown::before { content: ""; position: absolute; top: 100%; left: -20px; right: -20px; height: 16px; }
.dropdown-menu { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px); width: 380px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--sh-lg); padding: 10px; opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), transform .22s var(--ease); z-index: 60; }
.dropdown-menu::before { content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 14px; height: 14px; background: #fff; border-left: 1px solid var(--line); border-top: 1px solid var(--line); border-radius: 3px 0 0 0; }
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dd-head { font-family: "Sora"; font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); padding: 6px 10px 8px; }
.dd-item { display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 12px; transition: background .15s, box-shadow .15s; position: relative; }
.dd-item:hover { background: var(--bg-soft); }
.dd-item img { width: 62px; height: 48px; object-fit: cover; border-radius: 10px; flex-shrink: 0; box-shadow: var(--sh-sm); }
.dd-text { display: flex; flex-direction: column; line-height: 1.3; flex: 1; min-width: 0; }
.dd-text b { color: var(--navy-800); font-size: .95rem; font-family: "Sora"; font-weight: 600; }
.dd-text small { color: var(--muted); font-size: .78rem; }
.dd-price { font-family: "Sora"; font-weight: 700; font-size: .9rem; color: var(--yellow-600); flex-shrink: 0; }
.dd-all { display: flex; align-items: center; justify-content: center; gap: .45rem; margin-top: 6px; padding: 12px; border-radius: 12px; background: var(--navy-800); color: #fff !important; font-family: "Sora"; font-weight: 600; font-size: .9rem; transition: background .2s, gap .2s; }
.dd-all:hover { background: var(--yellow); color: var(--navy-900) !important; gap: .7rem; }
.dd-all svg { width: 1.05em; height: 1.05em; }

/* image fit defaults so nothing important is cropped out */
.svc-media img, .pkg-media img { object-position: center; }

/* ---- booking form custom selects (dark theme) ---- */
.booking-form .cselect { position: relative; }
.booking-form .cs-btn { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #fff; }
.booking-form .cs-btn:hover { border-color: rgba(255,255,255,.3); }
.booking-form .cselect.open .cs-btn { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,196,34,.18); }
.booking-form .cs-panel { background: var(--navy-700); border-color: rgba(255,255,255,.12); box-shadow: 0 14px 40px rgba(0,0,0,.4); }
.booking-form .cs-search input { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: #fff; }
.booking-form .cs-search input::placeholder { color: #8ea1bb; }
.booking-form .cs-search input:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,196,34,.18); }
.booking-form .cs-opt { color: #d5e0f0; }
.booking-form .cs-opt:hover, .booking-form .cs-opt.active { background: rgba(255,255,255,.08); }
.booking-form .cs-opt.sel { color: var(--yellow); }
.booking-form .cs-opt-main small { color: #8ea1bb; }
.booking-form .cs-check { color: var(--yellow); }
.booking-form .cs-none { color: #8ea1bb; }
.booking-form .cs-val { color: #fff; }
.booking-form .cs-caret { color: #8ea1bb; }
.booking-form .cselect.open .cs-caret { color: var(--yellow); }

/* ---- booking stepper wizard ---- */
.stepper { display: flex; align-items: center; margin-bottom: 24px; }
.step-dot { display: inline-flex; align-items: center; gap: .5rem; cursor: pointer; color: #92a6c0; user-select: none; }
.step-dot .sd-num { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.1); color: #cdd9ea; font-weight: 700; font-family: "Sora"; font-size: .9rem; border: 2px solid transparent; transition: all .25s var(--ease); }
.step-dot .sd-label { font-size: .86rem; font-weight: 600; }
.step-dot.active { color: #fff; }
.step-dot.active .sd-num { background: var(--yellow); color: var(--navy-900); box-shadow: 0 6px 16px rgba(255,196,34,.4); }
.step-dot.done .sd-num { background: rgba(255,196,34,.22); color: var(--yellow); border-color: var(--yellow); }
.step-bar { flex: 1; height: 2px; background: rgba(255,255,255,.16); margin: 0 12px; border-radius: 2px; }
.step-dot.done + .step-bar { background: var(--yellow); }

.bk-step { animation: bkIn .3s var(--ease); }
@keyframes bkIn { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: none; } }
.bk-nav { display: flex; align-items: center; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
#bkNext { margin-left: auto; }
.bk-actions { margin-left: auto; display: flex; gap: 12px; }
.bk-nav .btn { min-width: 140px; }
.bk-actions .btn { min-width: 170px; }

/* ---- steps flow ---- */
.steps-section { background: linear-gradient(180deg, #fff, var(--bg-soft)); }
.steps-flow { display: flex; align-items: stretch; justify-content: center; gap: 10px; }
.step-card { flex: 1; max-width: 330px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 34px 26px 30px; text-align: center; box-shadow: var(--sh-sm); transition: transform .2s var(--ease), box-shadow .25s; }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.step-top { display: inline-flex; position: relative; margin-bottom: 1.2rem; }
.step-ic { width: 70px; height: 70px; border-radius: 20px; background: linear-gradient(145deg, #fff6dd, #ffe6a0); color: var(--yellow-600); display: grid; place-items: center; box-shadow: 0 8px 20px rgba(255,196,34,.28); }
.step-ic svg { width: 30px; height: 30px; }
.step-no { position: absolute; top: -8px; right: -10px; width: 28px; height: 28px; border-radius: 50%; background: var(--navy-800); color: #fff; display: grid; place-items: center; font-family: "Sora"; font-weight: 700; font-size: .82rem; border: 3px solid #fff; }
.step-card h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.step-card p { color: var(--muted); font-size: .93rem; margin: 0; }
.step-arrow { display: flex; align-items: center; }
.step-arrow svg { width: 30px; height: 30px; color: #ccd7e6; }

/* ---- contact v2 ---- */
.contact-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.contact-top-left { max-width: 560px; }
.contact-top-left h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.contact-top-left .hl { color: var(--yellow); }
.contact-top-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.contact-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 28px; }
.cg-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 22px 20px; display: flex; flex-direction: column; gap: 2px; transition: border-color .2s, background .2s, transform .2s var(--ease); }
.cg-card:hover { border-color: rgba(255,196,34,.4); background: rgba(255,255,255,.09); transform: translateY(-3px); }
.cg-ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,196,34,.16); color: var(--yellow); display: grid; place-items: center; margin-bottom: 10px; }
.cg-ic svg { width: 22px; height: 22px; }
.cg-ic.wa { background: rgba(37,211,102,.18); color: #25d366; }
.cg-card small { color: #7f95b0; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; }
.cg-card a { color: #fff; font-weight: 700; font-size: 1rem; font-family: "Sora", sans-serif; }
.cg-card a:hover { color: var(--yellow); }
.cg-addr { color: #d5e0f0; font-weight: 500; font-size: .9rem; line-height: 1.5; }
.cg-wa { border-color: rgba(37,211,102,.25); }
.cg-wa:hover { border-color: rgba(37,211,102,.5); }

.contact-map-v2 { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid rgba(255,255,255,.12); box-shadow: var(--sh-md); height: 280px; background: var(--navy-700); }
.contact-map-v2 iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-open { position: absolute; left: 14px; bottom: 14px; z-index: 2; display: inline-flex; align-items: center; gap: .4rem; background: #fff; color: var(--navy-800); font-weight: 600; font-size: .85rem; padding: .5rem .9rem; border-radius: 999px; box-shadow: var(--sh-md); }
.map-open:hover { background: var(--yellow); color: var(--navy-900); }
.map-open svg { width: 15px; height: 15px; }

@media (max-width: 960px) {
  .nav-item.has-dropdown { display: block; }
  .nav-drop-toggle { justify-content: space-between; padding: .85rem 0; border-bottom: 1px solid var(--line); color: var(--ink); }
  .dropdown-menu { position: static; transform: none; width: auto; opacity: 1; visibility: visible; box-shadow: none; border: 0; padding: 4px 0 8px 8px; display: none; }
  .dropdown-menu::before { display: none; }
  .dd-head { display: none; }
  .dd-all { margin-top: 8px; }
  .has-dropdown.open .dropdown-menu { display: block; }
  .has-dropdown.open .caret { transform: rotate(180deg); }
}
@media (max-width: 900px) {
  .contact-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .contact-top { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 820px) {
  .steps-flow { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 4px 0; }
  .step-card { max-width: 440px; width: 100%; }
}
@media (max-width: 560px) {
  .contact-grid-v2 { grid-template-columns: 1fr; }
  .contact-top-btns { flex-direction: column; width: 100%; }
  .contact-top-btns .btn { width: 100%; }
  .bk-nav { flex-wrap: wrap; }
  .bk-actions { flex-direction: column; width: 100%; margin-left: 0; }
  .bk-actions .btn { width: 100%; min-width: 0; }
}

/* ===========================================================================
   v5 — inquiry-type tabs + motion polish
   =========================================================================== */

/* ---- inquiry type tabs (flight / hotel / car / package) ---- */
.bk-tabs { position: relative; display: flex; gap: 4px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; padding: 5px; margin-bottom: 22px; }
.bk-tab { position: relative; z-index: 1; flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .45rem; padding: .62rem .5rem; border: 0; background: none; border-radius: 999px; color: #b9c6da; font-family: "Sora", sans-serif; font-weight: 600; font-size: .88rem; cursor: pointer; transition: color .25s var(--ease); }
.bk-tab svg { width: 17px; height: 17px; }
.bk-tab:hover { color: #fff; }
.bk-tab.active { color: var(--navy-900); }
.bk-tab-glider { position: absolute; top: 5px; bottom: 5px; left: 5px; width: 0; border-radius: 999px; background: linear-gradient(140deg, var(--yellow), var(--yellow-600)); box-shadow: 0 6px 18px rgba(255,196,34,.35); transition: left .35s var(--ease), width .35s var(--ease); }
@media (max-width: 560px) {
  .bk-tab { font-size: .78rem; gap: .3rem; padding: .55rem .3rem; }
  .bk-tab svg { width: 14px; height: 14px; }
}

/* hidden per-type fields (beat the .field display rule) */
.booking-form .field[hidden] { display: none; }

/* replay of the step entrance when switching tabs */
.bk-anim { animation: bkIn .35s var(--ease); }

/* ---- hero heading shimmer ---- */
.hero h1 .hl {
  background: linear-gradient(100deg, var(--yellow) 20%, #ffe9ad 40%, var(--yellow) 60%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
}
@keyframes shine { to { background-position: -200% center; } }

/* ---- card hover motion ---- */
.service-card { transition: transform .25s var(--ease), box-shadow .3s var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.svc-media { overflow: hidden; }
.svc-media img { transition: transform .55s var(--ease); }
.service-card:hover .svc-media img { transform: scale(1.07); }

.pkg-card { transition: transform .25s var(--ease), box-shadow .3s var(--ease); }
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.pkg-media { overflow: hidden; }
.pkg-media img { transition: transform .55s var(--ease); }
.pkg-card:hover .pkg-media img { transform: scale(1.07); }

.testi { transition: transform .25s var(--ease), box-shadow .3s var(--ease); }
.testi:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

/* ---- primary button shine sweep ---- */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg); transition: left .55s var(--ease); pointer-events: none;
}
.btn-primary:hover::after { left: 135%; }

/* ---- floating whatsapp pulse ---- */
.fab-whatsapp { animation: fabPulse 2.4s var(--ease) infinite; }
@keyframes fabPulse {
  0%   { box-shadow: 0 10px 26px rgba(0,0,0,.25), 0 0 0 0 rgba(37,211,102,.5); }
  60%  { box-shadow: 0 10px 26px rgba(0,0,0,.25), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 26px rgba(0,0,0,.25), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---- staggered reveals in grids ---- */
.service-grid .reveal:nth-child(2), .testi-grid .reveal:nth-child(2) { transition-delay: .08s; }
.service-grid .reveal:nth-child(3), .testi-grid .reveal:nth-child(3) { transition-delay: .16s; }
.service-grid .reveal:nth-child(4) { transition-delay: .24s; }
.service-grid .reveal:nth-child(5) { transition-delay: .32s; }
.service-grid .reveal:nth-child(6) { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  .bk-tab-glider, .bk-anim, .hero h1 .hl, .fab-whatsapp,
  .service-card, .svc-media img, .pkg-card, .pkg-media img, .testi, .btn-primary::after {
    animation: none; transition: none;
  }
}

/* ---- redesigned "let us find the best deal" action cards ---- */
.sa-static { margin-top: 46px; }
.sa-heading { display: flex; align-items: center; justify-content: center; gap: 20px; font-size: 1.2rem; color: var(--navy-800); margin-bottom: 22px; }
.sa-heading::before, .sa-heading::after { content: ""; flex: 1; max-width: 170px; height: 1px; }
.sa-heading::before { background: linear-gradient(to right, transparent, var(--line) 70%); }
.sa-heading::after  { background: linear-gradient(to left,  transparent, var(--line) 70%); }

.sa-cards { gap: 18px; }
.sa-sky   { --sa: #0770e3;          --sa-soft: #e8f3fe; }
.sa-wa    { --sa: #1eb85a;          --sa-soft: #e7f9ee; }
.sa-email { --sa: var(--yellow-600); --sa-soft: #fff6dd; }

.sa-card, .sa-sky, .sa-wa, .sa-email {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 22px 24px; box-shadow: var(--sh-sm); overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease);
}
.sa-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--sa);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.sa-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.sa-card:hover::before { transform: scaleX(1); }

.sa-icon, .sa-sky .sa-icon, .sa-wa .sa-icon, .sa-email .sa-icon {
  width: 58px; height: 58px; border-radius: 18px; background: var(--sa-soft); color: var(--sa);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.sa-icon svg { width: 26px; height: 26px; }
.sa-card:hover .sa-icon { background: var(--sa); color: #fff; transform: scale(1.08) rotate(-4deg); }

.sa-title, .sa-sky .sa-title, .sa-wa .sa-title, .sa-email .sa-title { color: var(--navy-800); font-size: 1.05rem; margin-top: 4px; }
.sa-desc,  .sa-sky .sa-desc,  .sa-wa .sa-desc,  .sa-email .sa-desc  { color: var(--muted); }

.sa-go { display: inline-flex; align-items: center; gap: .4rem; margin-top: 12px; font-family: "Sora", sans-serif; font-weight: 600; font-size: .84rem; color: var(--sa); }
.sa-go svg { width: 1em; height: 1em; transition: transform .25s var(--ease); }
.sa-card:hover .sa-go svg { transform: translateX(4px); }

.sa-tip {
  display: flex; align-items: center; justify-content: center; gap: .6rem; margin-top: 22px;
  padding: 14px 20px; background: #fff8e6; border: 1px solid #ffe6a0; border-radius: 12px;
  color: #7c6414; font-weight: 500;
}
.sa-tip::before { content: "💡"; }

@media (prefers-reduced-motion: reduce) {
  .sa-card, .sa-card::before, .sa-icon, .sa-go svg { transition: none; }
}

/* ---- Travelpayouts search card upgrade ---- */
/* overflow must stay visible so the widget's date-picker calendar isn't clipped;
   z-index keeps that overflow above the lead card below. */
.search-card { position: relative; overflow: visible; z-index: 10; padding: 34px 32px 24px; }
/* Accent inset by the corner radius so it sits on the card's straight top edge
   and never overhangs the rounded corners (the card can't clip — see above). */
.search-card::before {
  content: ""; position: absolute; top: 0; left: var(--r-lg); right: var(--r-lg); height: 4px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--yellow), var(--sky), var(--yellow));
  background-size: 200% auto; animation: tpFlow 7s linear infinite;
}
@keyframes tpFlow { to { background-position: -200% center; } }
.search-card-head .eyebrow { margin-bottom: .35rem; }
.search-card-head h2 { font-size: 1.7rem; }
.search-card-head p { margin: .35rem 0 1.5rem; }

/* loading skeleton shown until the widget renders */
.tp-widget-wrap { position: relative; min-height: 110px; margin-top: 8px; }
.tp-loading { display: grid; grid-template-columns: 1.3fr 1.3fr 1fr 1fr .9fr; gap: 12px; align-items: center; padding-top: 6px; }
.tp-skel {
  height: 54px; border-radius: 27px; border: 1px solid var(--line);
  background: linear-gradient(100deg, #eef3fa 40%, #f8fbfe 50%, #eef3fa 60%);
  background-size: 200% 100%; animation: skel 1.3s linear infinite;
}
.tp-skel-btn { background: linear-gradient(100deg, #ffedb8 40%, #fff7dd 50%, #ffedb8 60%); background-size: 200% 100%; border-color: #ffe6a0; }
@keyframes skel { to { background-position: -200% 0; } }
.tp-widget-wrap.tp-ready .tp-loading { display: none; }
@media (max-width: 700px) {
  .tp-loading { grid-template-columns: 1fr; gap: 9px; }
  .tp-skel { height: 46px; }
}

/* fallback if the widget can't load (ad-blockers etc.) */
.tp-fallback { display: none; margin: 4px 0 10px; padding: 14px 18px; background: #fff8e6; border: 1px solid #ffe6a0; border-radius: 12px; color: #7c6414; font-size: .95rem; }
.tp-fallback a { color: var(--navy-800); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.tp-fallback a:hover { color: var(--yellow-600); }
.tp-widget-wrap.tp-failed .tp-fallback { display: block; }

/* trust chips under the widget */
.tp-trust { list-style: none; display: flex; flex-wrap: wrap; gap: .55rem 1.7rem; margin: 16px 0 0; padding: 14px 0 0; border-top: 1px dashed var(--line); color: var(--muted); font-size: .85rem; font-weight: 500; }
.tp-trust li { display: inline-flex; align-items: center; gap: .45rem; }
.tp-trust svg { width: 15px; height: 15px; color: #16924f; flex-shrink: 0; }

@media (prefers-reduced-motion: reduce) {
  .search-card::before, .tp-skel { animation: none; }
}

/* ===========================================================================
   v6 — scroll progress, back-to-top, hero entrance, heading underlines
   =========================================================================== */

/* thin brand progress bar along the top */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 90;
  background: linear-gradient(90deg, var(--yellow), var(--sky));
  transform: scaleX(0); transform-origin: 0 0; pointer-events: none;
}

/* back-to-top, stacked above the WhatsApp bubble */
.to-top {
  position: fixed; right: 29px; bottom: 96px; z-index: 60;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--navy-800); color: #fff; display: grid; place-items: center;
  box-shadow: var(--sh-md); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background .2s, color .2s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--yellow); color: var(--navy-900); }
.to-top:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }
.to-top svg { width: 20px; height: 20px; }

/* hero entrance — pill, headline, lede, buttons, stats fade up in turn */
.hero-copy > * { opacity: 0; transform: translateY(18px); animation: heroIn .7s var(--ease) forwards; }
.hero-copy > *:nth-child(1) { animation-delay: .05s; }
.hero-copy > *:nth-child(2) { animation-delay: .16s; }
.hero-copy > *:nth-child(3) { animation-delay: .27s; }
.hero-copy > *:nth-child(4) { animation-delay: .38s; }
.hero-copy > *:nth-child(5) { animation-delay: .49s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* section headings grow a small brand underline when revealed */
.section-head h2::after {
  content: ""; display: block; width: 64px; height: 4px; border-radius: 2px;
  margin: 14px auto 0; background: linear-gradient(90deg, var(--yellow), var(--sky));
  transform: scaleX(0); transition: transform .6s var(--ease) .25s;
}
.section-head.reveal.in h2::after { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
  .to-top { transition: none; }
  .hero-copy > * { animation: none; opacity: 1; transform: none; }
  .section-head h2::after { transform: none; transition: none; }
}

/* ===========================================================================
   v7 — call card + Google reviews slider
   =========================================================================== */

/* "Call our experts" action card (replaces the old compare card) */
.sa-call { --sa: #0b1e3b; --sa-soft: #e9eff8; }

/* ---- reviews section ---- */
.reviews-wrap { display: grid; grid-template-columns: 250px 1fr; gap: 30px; align-items: start; }

/* Google rating summary */
.gr-summary {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-sm);
  padding: 26px 22px; text-align: center; position: sticky; top: 96px;
}
.gr-glogo svg { width: 38px; height: 38px; }
.gr-score { font-family: "Sora", sans-serif; font-weight: 800; font-size: 3rem; line-height: 1; color: var(--navy-800); margin-top: 6px; }
.gr-stars { color: #fbbc05; font-size: 1.15rem; letter-spacing: 2px; margin-top: 4px; }
.gr-count { color: var(--muted); font-size: .88rem; margin: .5rem 0 1.1rem; }
.gr-count strong { color: var(--navy-800); }
.gr-all { width: 100%; }

/* slider frame */
.gr-slider { position: relative; min-width: 0; }
.gr-viewport { overflow: hidden; touch-action: pan-y; cursor: grab; }
.gr-viewport:active { cursor: grabbing; }
.gr-track { display: flex; gap: 18px; transition: transform .5s var(--ease); will-change: transform; }

.gr-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--navy-800); display: grid; place-items: center; cursor: pointer;
  box-shadow: var(--sh-md); transition: background .2s, color .2s, opacity .2s;
}
.gr-arrow svg { width: 20px; height: 20px; }
.gr-arrow:hover { background: var(--navy-800); color: #fff; }
.gr-prev { left: -14px; }
.gr-next { right: -14px; }
.gr-arrow.disabled { opacity: 0; pointer-events: none; }

/* review card */
.gr-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-sm);
  padding: 22px; display: flex; flex-direction: column; gap: 12px; min-height: 100%;
}
.gr-card-head { display: flex; align-items: center; gap: 12px; }
.gr-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; color: #fff;
  display: grid; place-items: center; font-family: "Sora", sans-serif; font-weight: 700; font-size: 1.15rem;
}
.gr-who { display: flex; flex-direction: column; line-height: 1.3; flex: 1; min-width: 0; }
.gr-who b { color: var(--navy-800); font-size: .96rem; font-family: "Sora", sans-serif; }
.gr-who small { color: var(--muted-2); font-size: .78rem; }
.gr-gmark { width: 22px; height: 22px; flex-shrink: 0; }
.gr-cardstars { color: #fbbc05; letter-spacing: 1px; font-size: 1rem; }
.gr-stardim { color: #e2e7ee; }
.gr-text { color: var(--ink); font-size: .93rem; line-height: 1.6; margin: 0; }

/* dots */
.gr-dots { display: flex; justify-content: center; gap: 7px; margin-top: 20px; }
.gr-dot { width: 8px; height: 8px; border-radius: 999px; border: 0; background: #cdd7e6; cursor: pointer; padding: 0; transition: width .25s var(--ease), background .25s; }
.gr-dot.on { width: 22px; background: var(--yellow); }

@media (max-width: 960px) {
  .reviews-wrap { grid-template-columns: 1fr; }
  .gr-summary { position: static; display: grid; grid-template-columns: auto auto 1fr auto; align-items: center; gap: 6px 18px; text-align: left; padding: 18px 22px; }
  .gr-glogo { grid-row: span 2; }
  .gr-score { font-size: 2.2rem; margin: 0; }
  .gr-count { margin: 0; grid-column: 3; }
  .gr-stars { grid-column: 3; grid-row: 1; }
  .gr-all { width: auto; grid-column: 4; grid-row: span 2; }
}
@media (max-width: 560px) {
  .gr-summary { grid-template-columns: auto 1fr; }
  .gr-all { grid-column: 1 / -1; grid-row: auto; margin-top: 6px; }
  .gr-prev { left: -6px; }
  .gr-next { right: -6px; }
}

@media (prefers-reduced-motion: reduce) {
  .gr-track { transition: none; }
}

/* ===========================================================================
   v8 — custom flight search form + results/inquiry panel
   =========================================================================== */

.fs-form { margin-top: 6px; }
.fs-row { display: flex; gap: 14px; align-items: flex-end; }
.fs-row + .fs-row { margin-top: 14px; }
.fs-row-route .fs-field, .fs-row-detail .fs-field { flex: 1; min-width: 0; }

.fs-field { display: flex; flex-direction: column; }
.fs-field label { font-size: .78rem; font-weight: 600; color: var(--navy-700); margin-bottom: .35rem; }
.fs-opt { color: var(--muted-2); font-weight: 500; }
.fs-field input {
  width: 100%; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: inherit; font-size: .95rem; background: #fff; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.fs-field input::placeholder { color: var(--muted-2); }
.fs-field input:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,196,34,.18); }

/* custom-select styling inside the light search card */
.fs-field .cselect { width: 100%; }
.fs-field .cs-btn {
  width: 100%; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: #fff; color: var(--ink); font-size: .95rem; display: flex; align-items: center; justify-content: space-between;
}
.fs-field .cs-btn:hover { border-color: var(--muted-2); }
.fs-field .cselect.open .cs-btn { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,196,34,.18); }

.fs-swap {
  align-self: flex-end; margin-bottom: 3px; flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--line); background: #fff; color: var(--navy-800); cursor: pointer;
  display: grid; place-items: center; transition: background .2s, color .2s, transform .35s var(--ease);
}
.fs-swap:hover { background: var(--navy-800); color: #fff; transform: rotate(180deg); }
.fs-swap svg { width: 18px; height: 18px; }

.fs-submit { flex-shrink: 0; align-self: flex-end; }
.fs-error { color: #c0392b; font-size: .88rem; margin: 12px 0 0; display: none; }
.fs-error.show { display: block; }

@media (max-width: 760px) {
  .fs-row-detail { flex-wrap: wrap; }
  .fs-row-detail .fs-field { flex: 1 1 46%; }
  .fs-submit { flex: 1 1 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .fs-row-route { flex-wrap: wrap; }
  .fs-row-route .fs-field { flex: 1 1 100%; }
  .fs-swap { display: none; }
  .fs-row-detail .fs-field { flex: 1 1 100%; }
}

/* ---- results / inquiry panel ---- */
.flight-results { margin-top: 22px; }
.fr-inner {
  background: linear-gradient(160deg, #fff, var(--bg-soft));
  border: 1px solid var(--line); border-left: 4px solid var(--yellow);
  border-radius: var(--r); box-shadow: var(--sh-md); padding: 26px 28px;
}
.fr-badge {
  display: inline-flex; align-items: center; gap: .35rem; background: #e4f7ec; color: #16924f;
  font-family: "Sora", sans-serif; font-weight: 700; font-size: .74rem; padding: .3rem .7rem; border-radius: 999px;
}
.fr-badge svg { width: 14px; height: 14px; }
.fr-head h3 { font-size: 1.5rem; margin: .6rem 0 .2rem; }
.fr-arrow { color: var(--yellow-600); }
.fr-sub { color: var(--muted); font-weight: 500; margin: 0; }
.fr-lead { color: var(--ink); font-size: .98rem; line-height: 1.65; margin: 1rem 0 1.3rem; max-width: 640px; }
.fr-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.fr-actions .btn svg { width: 1.15em; height: 1.15em; }
.fr-note { color: var(--muted-2); font-size: .82rem; margin: 1rem 0 0; }

@media (max-width: 560px) {
  .fr-actions .btn { width: 100%; }
}

/* ===========================================================================
   v9 — lead capture card (name + email/phone → admin)
   =========================================================================== */

.lead-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center;
  margin-top: 22px; padding: 30px 32px; border-radius: var(--r);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700)); color: #fff;
  box-shadow: var(--sh-md); position: relative; overflow: hidden;
  transition: box-shadow .3s var(--ease);
}
.lead-card::before {
  content: ""; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,196,34,.28), transparent 70%); pointer-events: none;
}
.lead-card.lead-active { box-shadow: 0 0 0 2px var(--yellow), var(--sh-lg); }

.lead-copy { position: relative; }
.lead-copy .eyebrow { color: var(--yellow); }
.lead-title { color: #fff; font-size: 1.5rem; margin: .3rem 0 .6rem; }
.lead-sub { color: #cdd9ea; font-size: .95rem; line-height: 1.6; margin: 0; }
.lead-points { list-style: none; padding: 0; margin: 1.1rem 0 0; display: flex; flex-direction: column; gap: .5rem; }
.lead-points li { display: flex; align-items: center; gap: .55rem; color: #dbe4f0; font-size: .9rem; }
.lp-tick { width: 20px; height: 20px; flex-shrink: 0; border-radius: 50%; background: rgba(255,196,34,.2); color: var(--yellow); display: grid; place-items: center; font-size: .7rem; font-weight: 700; }

.lead-form { position: relative; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.lead-form .fs-field label { color: #cdd9ea; }
.lead-form .fs-field input {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #fff;
}
.lead-form .fs-field input::placeholder { color: #8ea1bb; }
.lead-form .fs-field input:focus { border-color: var(--yellow); background: rgba(255,255,255,.12); box-shadow: 0 0 0 3px rgba(255,196,34,.18); }
.lf-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-consent { color: #9fb2cc; font-size: .76rem; text-align: center; margin: 0; }
.lead-msg { display: none; margin: 0; font-size: .85rem; }
.lead-msg.show { display: block; }
.lead-msg.error { color: #ffb4ad; }

.lead-done { text-align: center; padding: 12px 6px; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.lead-done-ic { width: 52px; height: 52px; border-radius: 50%; background: rgba(37,211,102,.18); color: #25d366; display: grid; place-items: center; }
.lead-done-ic svg { width: 26px; height: 26px; }
.lead-done h4 { color: #fff; font-size: 1.25rem; }
.lead-done p { color: #cdd9ea; font-size: .92rem; margin: 0 0 .4rem; }

@media (max-width: 820px) {
  .lead-card { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 460px) {
  .lf-two { grid-template-columns: 1fr; }
}

/* ===========================================================================
   v10 — legal / privacy page
   =========================================================================== */
.legal { max-width: 760px; margin: 0 auto; color: var(--ink); }
.legal-updated { color: var(--muted-2); font-size: .85rem; margin: 0 0 1.6rem; }
.legal h2 { font-size: 1.3rem; margin: 2rem 0 .6rem; }
.legal p { color: var(--muted); line-height: 1.75; margin: 0 0 1rem; }
.legal ul { margin: 0 0 1.2rem; padding-left: 1.2rem; display: flex; flex-direction: column; gap: .5rem; }
.legal li { color: var(--muted); line-height: 1.65; }
.legal strong { color: var(--navy-800); }
.legal a { color: var(--yellow-600); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--navy-800); }
.legal-cta { margin-top: 2rem; padding: 16px 20px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; }

/* ===========================================================================
   v11 — mobile booking form fit (was causing ~13px horizontal overflow)
   =========================================================================== */
.book-inner > * { min-width: 0; }   /* let the form grid item shrink to its cell */

@media (max-width: 560px) {
  .booking-form { padding: 20px; }
  /* the 3 step labels (Trip / Travellers / Contact) forced the form too wide;
     keep the numbered circles + progress bar, drop the text on small screens */
  .step-dot .sd-label { display: none; }
  .step-bar { margin: 0 8px; }
  .bk-tab { padding: .5rem .25rem; font-size: .72rem; gap: .25rem; }
  .bk-tab svg { width: 13px; height: 13px; }
}

/* ===========================================================================
   v12 — White Label flight results (rendered full-width below the search card)
   =========================================================================== */
.tpwl-results { scroll-margin-top: 96px; }        /* clear the fixed header on scroll */
.tpwl-results.has-results { margin-top: 26px; }   /* breathing room once results show */
