/* ═══════════════════════════════════════════════════════════════════════════
   GoTravelista · Theme 2026 — sitewide design system
   Palette: deep navy (#0A1628 → #1A3A5C) · antique gold (#C9A84C) ·
            amber CTA (#B8860B) · warm cream (#FAF7F2)
   Type:    Playfair Display (display serif) + DM Sans (body sans)
   Scope:   shared shell — header, footer, bottom nav, fixed CTA bar,
            lead wizard, form components, prose. Page sections keep their
            own scoped styles and inherit these tokens.
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --gt-navy:        #0A1628;
  --gt-navy-2:      #0F2044;
  --gt-navy-brand:  #1A3A5C;
  --gt-amber:       #B8860B;
  --gt-amber-d:     #8F6508;
  --gt-gold:        #C9A84C;
  --gt-gold-2:      #E8C96A;
  --gt-cream:       #FAF7F2;
  --gt-cream-2:     #F0EBE3;
  --gt-ink:         #1A1614;
  --gt-ink-2:       #4A4640;
  --gt-gray:        #9A958F;
  --gt-green:       #25D366;
  --gt-radius:      16px;
  --gt-shadow-s:    0 2px 12px rgba(10,22,40,.07);
  --gt-shadow-m:    0 8px 32px rgba(10,22,40,.12);
  --gt-shadow-l:    0 20px 56px rgba(10,22,40,.2);
}

/* overflow-x: clip (not hidden) — hidden creates a scroll container and
   breaks position:sticky on the header; clip just crops without side effects */
html { overflow-x: hidden; overflow-x: clip; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gt-ink);
  background: var(--gt-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}
.font-serif { font-family: 'Playfair Display', serif; }

/* ── Clearance for the fixed bottom UI lives INSIDE the navy footer, so the
      page ends flush with no white strip under the copyright line. ───────── */
body { padding-bottom: 0 !important; }
/* Mobile: bottom nav (64px) + CTA bar (~56px) */
@media (max-width: 1023px) { .gt-footer { padding-bottom: 140px !important; } }
/* Desktop: floating CTA pill only (~54px) */
@media (min-width: 1024px) { .gt-footer { padding-bottom: 88px !important; } }

/* ── Buttons (Tailwind @apply replacements — plain CSS) ──────────────────── */
.nav-link {
  color: var(--gt-navy-brand);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s;
  position: relative;
}
.nav-link:hover { color: var(--gt-amber); }
.btn-primary {
  background: linear-gradient(135deg, var(--gt-amber), var(--gt-amber-d));
  color: #fff; font-weight: 700; padding: 12px 24px; border-radius: 50px;
  transition: all .3s; box-shadow: 0 4px 16px rgba(184,134,11,.3);
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,134,11,.45); }
.btn-secondary {
  background: var(--gt-navy-brand); color: #fff; font-weight: 700;
  padding: 12px 24px; border-radius: 50px; transition: all .3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { background: var(--gt-navy-2); }
.btn-whatsapp {
  background: var(--gt-green); color: #fff; font-weight: 700;
  padding: 12px 24px; border-radius: 50px; transition: all .3s;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.btn-whatsapp:hover { background: #1da851; }
.card-hover { transition: all .3s; }
.card-hover:hover { box-shadow: var(--gt-shadow-l); transform: translateY(-4px); }
.gradient-overlay { background: linear-gradient(to bottom, transparent 0%, rgba(10,22,40,.75) 100%); }
.hero-text-shadow { text-shadow: 2px 2px 8px rgba(0,0,0,.8); }
.swiper-pagination-bullet-active { background: var(--gt-amber) !important; }
.section-title {
  font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700;
  color: var(--gt-navy-brand); margin-bottom: .75rem;
}
@media (min-width: 768px) { .section-title { font-size: 2.3rem; } }
.section-subtitle { color: var(--gt-gray); font-size: 1.05rem; margin-bottom: 2.5rem; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate-fadeInUp { animation: fadeInUp .6s ease forwards; }

/* ── Header ──────────────────────────────────────────────────────────────── */
.gt-header {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gt-cream-2);
  box-shadow: 0 1px 16px rgba(10,22,40,.06);
}
.gt-header .nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  border-radius: 2px; background: var(--gt-gold); transition: width .25s;
}
.gt-header .nav-link:hover::after { width: 100%; }
.gt-hdr-call {
  display: none; align-items: center; gap: 8px;
  border: 1.5px solid var(--gt-navy-brand); color: var(--gt-navy-brand);
  font-weight: 700; font-size: .82rem; padding: 8px 18px; border-radius: 50px;
  text-decoration: none; transition: all .2s; white-space: nowrap;
}
.gt-hdr-call:hover { background: var(--gt-navy-brand); color: #fff; }
@media (min-width: 768px) { .gt-hdr-call { display: inline-flex; } }
.gt-hdr-wa {
  display: none; align-items: center; gap: 8px;
  background: var(--gt-green); color: #fff; font-weight: 700; font-size: .82rem;
  padding: 9px 18px; border-radius: 50px; text-decoration: none; transition: all .2s;
  white-space: nowrap;
}
.gt-hdr-wa:hover { background: #1da851; transform: translateY(-1px); }
@media (min-width: 768px) { .gt-hdr-wa { display: inline-flex; } }
.gt-hdr-call-m {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--gt-amber), var(--gt-amber-d));
  color: #fff; font-weight: 700; font-size: .8rem; padding: 8px 16px;
  border-radius: 50px; text-decoration: none; box-shadow: 0 3px 12px rgba(184,134,11,.35);
  white-space: nowrap;
}
@media (min-width: 1024px) { .gt-hdr-call-m { display: none; } }
.gt-hdr-drop {
  position: absolute; top: 100%; left: 0; width: 230px;
  background: #fff; border: 1px solid var(--gt-cream-2); border-radius: 14px;
  box-shadow: var(--gt-shadow-m); overflow: hidden; padding: 6px;
}
.gt-hdr-drop a {
  display: block; padding: 11px 14px; border-radius: 9px; color: var(--gt-ink-2);
  font-size: .87rem; font-weight: 600; text-decoration: none; transition: all .15s;
}
.gt-hdr-drop a:hover { background: var(--gt-cream); color: var(--gt-amber); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.gt-footer { background: var(--gt-navy); color: rgba(255,255,255,.75); position: relative; overflow: hidden; }
.gt-footer::before {
  content: ''; position: absolute; top: -100px; right: -100px; width: 380px; height: 380px;
  border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,.08), transparent 70%);
  pointer-events: none;
}
.gt-footer h3 {
  font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700;
  color: var(--gt-gold-2); margin-bottom: 1.1rem;
}
.gt-footer a { transition: color .2s; }
.gt-footer a:hover { color: var(--gt-gold-2); }
.gt-footer .gt-foot-chev { color: var(--gt-gold); }
.gt-footer-rule { border-top: 1px solid rgba(255,255,255,.1); }

/* ── Bottom navigation — visible on ALL viewports ────────────────────────── */
.mobile-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: rgba(255,255,255,.98); backdrop-filter: blur(14px);
  border-top: 1px solid var(--gt-cream-2);
  box-shadow: 0 -4px 24px rgba(10,22,40,.08);
}
.mobile-bottom-nav a { color: var(--gt-gray); transition: color .2s, transform .2s; }
.mobile-bottom-nav a:hover { color: var(--gt-navy-brand); }
.mobile-bottom-nav a.gt-bn-active { color: var(--gt-amber); }
/* Desktop: bottom navigation hidden — mobile/tablet only */
@media (min-width: 1024px) {
  .mobile-bottom-nav { display: none !important; }
}

/* ── Fixed quote CTA bar ─────────────────────────────────────────────────── */
.fixed-quote-bar {
  position: fixed; bottom: 64px; left: 0; right: 0; z-index: 997;
  display: flex; align-items: stretch;
  background: #fff; box-shadow: 0 -4px 24px rgba(10,22,40,.14);
  border-top: 1px solid var(--gt-cream-2);
}
.fixed-quote-bar .cta-side {
  flex: 0 0 72px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 7px 4px;
  font-size: 10px; font-weight: 700; gap: 3px; text-decoration: none;
  letter-spacing: .02em;
}
.fixed-quote-bar .cta-wa   { background: var(--gt-green); color: #fff; }
.fixed-quote-bar .cta-call { background: var(--gt-navy-brand); color: #fff; }
.fixed-quote-bar .cta-main {
  flex: 1; background: linear-gradient(135deg, var(--gt-amber) 0%, var(--gt-amber-d) 100%);
  color: #fff; text-align: center; padding: 14px 10px;
  font-size: 15px; font-weight: 800; letter-spacing: .04em;
  text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: filter .2s;
}
.fixed-quote-bar .cta-main:hover { filter: brightness(1.08); }
@media (min-width: 1024px) {
  /* Desktop: floating centered pill at the bottom of the viewport */
  .fixed-quote-bar {
    bottom: 14px; max-width: 480px; left: 50%; right: auto;
    transform: translateX(-50%); border-radius: 999px; overflow: hidden;
    border: 1px solid var(--gt-cream-2); box-shadow: var(--gt-shadow-l);
  }
  .fixed-quote-bar .cta-main { padding: 12px 10px; font-size: 14px; }
  .fixed-quote-bar .cta-side { flex-basis: 84px; }
}

/* ── Discount badge / misc ───────────────────────────────────────────────── */
.discount-badge {
  background: linear-gradient(135deg, var(--gt-amber), var(--gt-amber-d));
  color: #fff; font-size: 11px; font-weight: 800;
  padding: 3px 8px; border-radius: 20px; display: inline-block;
}
.price-original { color: #999; font-size: 12px; text-decoration: line-through; font-weight: 600; }
.hero-cta-wrapper {
  background: rgba(10,22,40,.35); backdrop-filter: blur(6px);
  border-radius: 20px; padding: 22px 28px; display: inline-block;
}
.hero-btn-quote {
  background: linear-gradient(135deg, var(--gt-amber), var(--gt-amber-d));
  color: #fff; font-weight: 800; font-size: 17px;
  padding: 14px 32px; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 24px rgba(184,134,11,.5);
  transition: all .3s; text-decoration: none;
}
.hero-btn-quote:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(184,134,11,.65); }
.hero-btn-wa {
  background: var(--gt-green); color: #fff; font-weight: 800; font-size: 15px;
  padding: 14px 24px; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  transition: all .3s; text-decoration: none;
}
.hero-btn-wa:hover { background: #1da851; transform: translateY(-2px); }

/* ── Form components — inline field system ───────────────────────────────── */
.gt-input, .gt-select, .gt-textarea {
  width: 100%; box-sizing: border-box;
  border: 1.5px solid #E2DCD2; border-radius: 11px;
  padding: 11px 14px; font-size: .88rem; font-family: 'DM Sans', sans-serif;
  color: var(--gt-ink); background: #fff; outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.gt-input:focus, .gt-select:focus, .gt-textarea:focus {
  border-color: var(--gt-navy-brand); box-shadow: 0 0 0 3px rgba(26,58,92,.08);
}
.gt-input::placeholder, .gt-textarea::placeholder { color: #B4AEA6; }
.gt-textarea { resize: none; line-height: 1.6; }
.gt-label {
  font-size: .68rem; font-weight: 800; color: var(--gt-navy-brand);
  text-transform: uppercase; letter-spacing: .07em;
}
/* Inline field: label + input on one line (desktop), label shrinks above on tiny screens */
.gt-field-inline {
  display: flex; align-items: center; gap: 12px;
}
.gt-field-inline > .gt-label { flex: 0 0 108px; }
.gt-field-inline > .gt-input, .gt-field-inline > .gt-select,
.gt-field-inline > .gt-textarea, .gt-field-inline > .gt-phone-row { flex: 1; min-width: 0; }
@media (max-width: 420px) {
  .gt-field-inline { flex-direction: column; align-items: stretch; gap: 5px; }
  .gt-field-inline > .gt-label { flex: none; }
}
/* Compact side-by-side field pairs */
.gt-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 380px) { .gt-field-row { grid-template-columns: 1fr; } }
/* Phone with country-code prefix */
.gt-phone-row {
  display: flex; align-items: stretch; border: 1.5px solid #E2DCD2;
  border-radius: 11px; background: #fff; overflow: hidden;
  transition: border-color .18s, box-shadow .18s;
}
.gt-phone-row:focus-within { border-color: var(--gt-navy-brand); box-shadow: 0 0 0 3px rgba(26,58,92,.08); }
.gt-phone-row select {
  border: none; outline: none; background: var(--gt-cream);
  padding: 0 6px 0 10px; font-size: .8rem; font-weight: 700; color: var(--gt-navy-brand);
  cursor: pointer; flex-shrink: 0; font-family: 'DM Sans', sans-serif;
  border-right: 1px solid var(--gt-cream-2);
}
.gt-phone-row input {
  flex: 1; min-width: 0; border: none; outline: none; padding: 11px 12px;
  font-size: .88rem; font-family: 'DM Sans', sans-serif; color: var(--gt-ink);
}
.gt-btn-submit {
  width: 100%; height: 50px;
  background: linear-gradient(135deg, var(--gt-amber) 0%, var(--gt-amber-d) 100%);
  color: #fff; font-weight: 800; font-size: .95rem; letter-spacing: .03em;
  border: none; border-radius: 12px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all .2s;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.gt-btn-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(184,134,11,.4); }
.gt-btn-submit:disabled { opacity: .6; cursor: wait; transform: none; box-shadow: none; }

/* ── Lead wizard modal ───────────────────────────────────────────────────── */
#lead-popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(6,12,24,.72); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 16px;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
#lead-popup-overlay.active { opacity: 1; pointer-events: all; }
#lead-popup-box {
  background: #fff; border-radius: 22px; overflow: hidden;
  width: 100%; max-width: 470px; max-height: 92vh; overflow-y: auto;
  box-shadow: 0 25px 70px rgba(0,0,0,.4);
  transform: translateY(36px) scale(.97); transition: transform .32s cubic-bezier(.34,1.4,.64,1);
}
#lead-popup-overlay.active #lead-popup-box { transform: translateY(0) scale(1); }
.gtw-head {
  background: linear-gradient(145deg, var(--gt-navy) 0%, var(--gt-navy-brand) 100%);
  padding: 22px 24px 18px; color: #fff; position: relative; overflow: hidden;
}
.gtw-head::before {
  content: ''; position: absolute; top: -50px; right: -50px; width: 190px; height: 190px;
  border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,.22), transparent 70%);
  pointer-events: none;
}
.gtw-eyebrow {
  font-size: .6rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gt-gold-2); margin-bottom: 5px;
}
.gtw-title {
  font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700;
  line-height: 1.2; margin-bottom: 4px;
}
.gtw-sub { font-size: .78rem; color: rgba(255,255,255,.65); }
.gtw-close {
  position: absolute; top: 13px; right: 14px; z-index: 2;
  background: rgba(255,255,255,.16); border: none; color: #fff;
  width: 30px; height: 30px; border-radius: 50%; font-size: 15px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.gtw-close:hover { background: rgba(255,255,255,.32); }
/* Progress */
.gtw-progress { display: flex; align-items: center; gap: 0; margin-top: 16px; position: relative; z-index: 1; }
.gtw-pstep { display: flex; align-items: center; gap: 7px; flex: 1; }
.gtw-pdot {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,.14); border: 1.5px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.75); font-size: .66rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; transition: all .25s;
}
.gtw-plbl { font-size: .62rem; font-weight: 700; color: rgba(255,255,255,.5); transition: color .25s; white-space: nowrap; }
.gtw-pline { flex: 1; height: 1.5px; background: rgba(255,255,255,.2); margin: 0 8px; border-radius: 2px; overflow: hidden; }
.gtw-pline i { display: block; height: 100%; width: 0; background: var(--gt-gold-2); transition: width .3s; }
.gtw-pstep.done .gtw-pdot, .gtw-pstep.active .gtw-pdot {
  background: var(--gt-gold); border-color: var(--gt-gold); color: #1a0e00;
}
.gtw-pstep.active .gtw-plbl, .gtw-pstep.done .gtw-plbl { color: #fff; }
/* Step panels */
.gtw-body { padding: 20px 22px 18px; }
.gtw-step { display: none; }
.gtw-step.active { display: block; animation: gtwIn .3s ease; }
@keyframes gtwIn { from { opacity: 0; transform: translateX(22px); } to { opacity: 1; transform: none; } }
.gtw-step.back-anim { animation: gtwInBack .3s ease; }
@keyframes gtwInBack { from { opacity: 0; transform: translateX(-22px); } to { opacity: 1; transform: none; } }
.gtw-q { font-weight: 700; font-size: .92rem; color: var(--gt-navy-brand); margin-bottom: 10px; }
.gtw-q small { display: block; font-weight: 500; font-size: .72rem; color: var(--gt-gray); margin-top: 2px; }
.gtw-block { margin-bottom: 18px; }
.gtw-block:last-child { margin-bottom: 4px; }
/* Pills */
.gtw-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.gtw-pill {
  border: 1.5px solid #E2DCD2; background: #fff; color: var(--gt-ink-2);
  font-size: .82rem; font-weight: 700; font-family: 'DM Sans', sans-serif;
  padding: 9px 18px; border-radius: 50px; cursor: pointer; transition: all .18s;
}
.gtw-pill:hover { border-color: var(--gt-gold); }
.gtw-pill.sel {
  background: var(--gt-navy-brand); border-color: var(--gt-navy-brand); color: #fff;
  box-shadow: 0 3px 12px rgba(26,58,92,.25);
}
/* Steppers */
.gtw-stepper-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--gt-cream-2);
}
.gtw-stepper-row:last-child { border-bottom: none; }
.gtw-stp-info b { display: block; font-size: .88rem; color: var(--gt-ink); font-weight: 700; }
.gtw-stp-info span { font-size: .7rem; color: var(--gt-gray); }
.gtw-stepper { display: flex; align-items: center; gap: 0; }
.gtw-stp-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid #E2DCD2; background: #fff; color: var(--gt-navy-brand);
  font-size: 1.05rem; font-weight: 700; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s; font-family: 'DM Sans', sans-serif;
}
.gtw-stp-btn:hover { border-color: var(--gt-amber); color: var(--gt-amber); }
.gtw-stp-btn:disabled { opacity: .35; cursor: default; }
.gtw-stp-val {
  width: 42px; text-align: center; border: none; background: transparent;
  font-size: 1rem; font-weight: 800; color: var(--gt-navy-brand);
  font-family: 'DM Sans', sans-serif; pointer-events: none;
}
/* Footer nav */
.gtw-foot {
  display: flex; align-items: center; gap: 10px;
  padding: 0 22px 14px;
}
.gtw-back {
  border: 1.5px solid #E2DCD2; background: #fff; color: var(--gt-ink-2);
  font-weight: 700; font-size: .85rem; padding: 12px 20px; border-radius: 12px;
  cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all .15s;
}
.gtw-back:hover { border-color: var(--gt-navy-brand); color: var(--gt-navy-brand); }
.gtw-next {
  flex: 1; background: linear-gradient(135deg, var(--gt-amber), var(--gt-amber-d));
  color: #fff; font-weight: 800; font-size: .92rem; padding: 13px; border-radius: 12px;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  letter-spacing: .02em; transition: all .2s;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.gtw-next:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(184,134,11,.4); }
.gtw-next:disabled { opacity: .6; cursor: wait; transform: none; box-shadow: none; }
.gtw-skip {
  background: none; border: none; color: var(--gt-gray); font-size: .78rem;
  font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif;
  padding: 12px 8px; white-space: nowrap; transition: color .15s;
}
.gtw-skip:hover { color: var(--gt-navy-brand); }
.gtw-trust {
  text-align: center; font-size: .68rem; color: var(--gt-gray);
  padding: 0 20px 16px; line-height: 1.6;
}
.gtw-trust b { color: #15803d; font-weight: 700; }
.gtw-assure {
  display: flex; align-items: center; gap: 8px;
  background: var(--gt-cream); border: 1px solid var(--gt-cream-2);
  border-radius: 10px; padding: 9px 12px; font-size: .72rem; color: var(--gt-ink-2);
  margin-top: 12px; line-height: 1.5;
}
.gtw-err {
  background: #FDF3F2; color: #A2352C; border: 1px solid #F3D5D2;
  border-radius: 10px; padding: 10px 13px; font-size: .79rem;
  margin-top: 10px; line-height: 1.5; display: none;
}
.gtw-err.show { display: block; }
/* Flexible-date toggle */
.gtw-flex-toggle {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 9px;
  font-size: .78rem; font-weight: 600; color: var(--gt-ink-2); cursor: pointer;
  user-select: none;
}
.gtw-flex-toggle input { accent-color: var(--gt-amber); width: 15px; height: 15px; cursor: pointer; }
/* Success panel */
.gtw-success { text-align: center; padding: 34px 24px 38px; }
.gtw-success .gtw-success-icon { font-size: 3rem; margin-bottom: 12px; }
.gtw-success h3 {
  font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700;
  color: var(--gt-navy-brand); margin-bottom: 6px;
}
.gtw-success p { font-size: .85rem; color: var(--gt-gray); line-height: 1.65; }

/* ── Shared lead form (frontend/partials/lead-form.blade.php) ─────────────
   The same partial renders in two shapes:
     · variant=modal  — inside #lead-popup-box, which supplies the card chrome
     · variant=inline — in-page, so the shell supplies its own card
   Deliberately no max-height / overflow on the inline shell: these forms are
   majority mobile traffic and an inner scroll container traps the page scroll.
   Toggling is class-based (never id-based) so several instances coexist. */
[data-gtw-wizard].hidden,
[data-gtw-success].hidden { display: none !important; }

.gtw-shell--inline {
  background: #fff; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--gt-cream-2);
  box-shadow: 0 4px 24px rgba(10, 22, 40, .07);
}
.gtw-shell--inline .gtw-head { padding: 20px 22px 16px; }
.gtw-shell--inline .gtw-title { font-size: 1.2rem; }

/* Locked destination — package and destination pages fix the destination so a
   Kashmir package enquiry can never be submitted as "Goa". */
.gtw-locked {
  display: flex; align-items: center; flex-wrap: wrap; gap: 4px 8px;
  background: var(--gt-cream); border: 1px solid var(--gt-cream-2);
  border-radius: 12px; padding: 11px 14px;
}
.gtw-locked-pin  { font-size: 1rem; line-height: 1; }
.gtw-locked-name { font-weight: 800; color: var(--gt-navy-brand); font-size: .95rem; }
.gtw-locked-meta { font-size: .72rem; color: var(--gt-gray); width: 100%; }

.gtw-wa-alt {
  text-align: center; font-size: .72rem; color: var(--gt-gray);
  padding: 0 20px 16px; margin: -6px 0 0;
}
.gtw-wa-alt a { color: #16a34a; font-weight: 700; text-decoration: none; }

/* Thumb-friendly targets on phones — steppers and date fields are the two
   controls people actually miss-tap on mobile. */
@media (max-width: 640px) {
  .gtw-stp-btn { width: 40px; height: 40px; font-size: 1.15rem; }
  .gtw-stp-val { width: 48px; font-size: 1.05rem; }
  .gtw-pill    { padding: 11px 18px; }
  .gtw-shell input[type="date"],
  .gtw-shell input[type="tel"],
  .gtw-shell input[type="number"] { min-height: 46px; font-size: 16px; } /* 16px stops iOS zoom-on-focus */
}

/* ── Country-code select chevron (legacy helper kept) ────────────────────── */
.gt-phone-wrap { box-sizing: border-box; }
.gt-cc-sel {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236B7280' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 13px;
  padding-right: 18px !important;
}
.gt-cc-sel option { color: #1A1614; background: #fff; }

/* ── Prose (policy pages, blog articles) ─────────────────────────────────── */
.gt-prose { color: var(--gt-ink-2); font-size: .95rem; line-height: 1.85; }
.gt-prose h2 {
  font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700;
  color: var(--gt-navy-brand); margin: 2em 0 .6em;
}
.gt-prose h3 {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  color: var(--gt-navy-brand); margin: 1.6em 0 .5em;
}
.gt-prose p { margin-bottom: 1em; }
.gt-prose ul, .gt-prose ol { margin: 0 0 1.2em 1.4em; }
.gt-prose ul { list-style: disc; }
.gt-prose ol { list-style: decimal; }
.gt-prose li { margin-bottom: .4em; }
.gt-prose a { color: var(--gt-amber); font-weight: 600; }
.gt-prose img { max-width: 100%; border-radius: 14px; margin: 1.2em 0; }
.gt-prose blockquote {
  border-left: 3px solid var(--gt-gold); padding: .4em 0 .4em 1.2em;
  font-style: italic; color: var(--gt-ink-2); margin: 1.4em 0;
}

/* ── Page hero band (simple inner pages) ─────────────────────────────────── */
.gt-page-band {
  background: linear-gradient(145deg, var(--gt-navy) 0%, var(--gt-navy-brand) 100%);
  position: relative; overflow: hidden; padding: 52px 20px; text-align: center;
}
.gt-page-band::before {
  content: ''; position: absolute; top: -70px; right: -70px; width: 280px; height: 280px;
  border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,.16), transparent 70%);
  pointer-events: none;
}
.gt-page-band h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 700; color: #fff; position: relative;
}
.gt-page-band .gt-band-sub { color: rgba(255,255,255,.6); font-size: .9rem; margin-top: 8px; position: relative; }
