/* ==========================================================================
   Belvi — small-group adventures & private trips
   Design DNA adapted from Madame Cruise: warm, editorial, high contrast.
   Colorblind-safe: dark text on light backgrounds, never color-only meaning.
   ========================================================================== */

:root {
  --cream: #FBF6EE;
  --sand: #F3EADD;
  --ink: #221C14;
  --ink-soft: #4A4237;
  --terra: #A6491F;        /* terracotta accent (Cappadocia rock) */
  --terra-dark: #7E3413;
  --gold: #C9A86A;
  --gold-soft: #E9DCC2;
  --white: #FFFFFF;
  --ok: #2E6B3C;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(34, 28, 20, 0.10);
  --shadow-lg: 0 22px 60px rgba(34, 28, 20, 0.16);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--terra-dark); }

.container { width: min(1140px, 92%); margin-inline: auto; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: 1.45rem; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra-dark);
  margin-bottom: 0.9rem;
}

.lead { font-size: 1.13rem; color: var(--ink-soft); max-width: 46rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600; font-size: 1rem;
  text-decoration: none; cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--terra); color: #fff; }
.btn-primary:hover { background: var(--terra-dark); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-light { background: #fff; color: var(--ink); }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.08rem; }
.btn[disabled] { opacity: 0.5; pointer-events: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 238, 0.96);
  border-bottom: 1px solid rgba(34, 28, 20, 0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.9rem 0; }
.brand {
  font-family: var(--font-display); font-size: 1.65rem; font-weight: 700;
  letter-spacing: 0.06em; color: var(--ink); text-decoration: none;
}
.brand span { color: var(--terra); }
.nav-links { display: flex; gap: 1.6rem; list-style: none; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 0.97rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--terra-dark); text-decoration: underline; text-underline-offset: 5px; }
.nav-actions { display: flex; align-items: center; gap: 0.8rem; }
.nav-cta { padding: 0.6rem 1.3rem; font-size: 0.95rem; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.2s; }
.mobile-menu { display: none; background: var(--cream); border-bottom: 1px solid rgba(34,28,20,0.1); }
.mobile-menu ul { list-style: none; padding: 1rem 0 1.4rem; }
.mobile-menu li a { display: block; padding: 0.65rem 0; color: var(--ink); text-decoration: none; font-weight: 600; font-size: 1.05rem; }
.mobile-menu.open { display: block; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 78vh;
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(20, 14, 8, 0.78) 0%, rgba(20, 14, 8, 0.25) 45%, rgba(20, 14, 8, 0.18) 100%),
    var(--hero-img) center / cover no-repeat;
}
.hero .container { position: relative; padding: 4.5rem 0 3.5rem; }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 { color: #fff; max-width: 16ch; text-wrap: balance; }
.hero p { margin-top: 1rem; font-size: 1.15rem; max-width: 40rem; color: rgba(255,255,255,0.92); }
.hero-ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }
.section-sand { background: var(--sand); }
.section-head { max-width: 46rem; margin-bottom: 2.6rem; }

/* ---------- Path choice (Join a group / Own way) ---------- */
.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
@media (max-width: 800px) { .path-grid { grid-template-columns: 1fr; } }
.path-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 420px; display: flex; align-items: flex-end;
  color: #fff; text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.path-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,14,8,0.82) 0%, rgba(20,14,8,0.12) 55%), var(--card-img) center / cover no-repeat;
  transition: transform 0.4s ease;
}
.path-card:hover::before { transform: scale(1.04); }
.path-card-body { position: relative; padding: 1.8rem; }
.path-card .tag {
  display: inline-block; background: var(--gold); color: var(--ink);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 999px; margin-bottom: 0.8rem;
}
.path-card h3 { font-size: 2rem; color: #fff; }
.path-card p { margin-top: 0.5rem; color: rgba(255,255,255,0.9); max-width: 34rem; }
.path-card .cta { margin-top: 1rem; display: inline-block; font-weight: 700; border-bottom: 2px solid var(--gold); padding-bottom: 2px; color: #fff; }

/* ---------- Country / destination grid ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dest-grid { grid-template-columns: 1fr; } }

.dest-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 360px; display: flex; align-items: flex-end;
  text-decoration: none; color: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: var(--ink);
}
.dest-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,14,8,0.8) 5%, rgba(20,14,8,0.05) 60%), var(--card-img) center / cover no-repeat;
  transition: transform 0.4s ease;
}
a.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
a.dest-card:hover::before { transform: scale(1.05); }
.dest-card-body { position: relative; padding: 1.3rem 1.4rem; width: 100%; }
.dest-card .flag { font-size: 1.5rem; display: block; margin-bottom: 0.3rem; }
.dest-card h3 { color: #fff; font-size: 1.6rem; }
.dest-card p { font-size: 0.92rem; color: rgba(255,255,255,0.88); }
.dest-card .status {
  position: absolute; top: 1rem; inset-inline-end: 1rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border-radius: 999px;
}
.status-open { background: #fff; color: var(--ok); }
.status-soon { background: rgba(255,255,255,0.92); color: var(--ink-soft); }

.dest-card.soon { cursor: default; }
.dest-card.soon::before { filter: grayscale(35%); }

/* ---------- Steps / how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff; border-radius: var(--radius); padding: 1.6rem;
  box-shadow: var(--shadow);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold);
  display: block; margin-bottom: 0.6rem;
}
.step h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Feature list ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 900px) { .features { grid-template-columns: 1fr; } }
.feature { background: #fff; border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow); }
.feature .icon { font-size: 1.8rem; display: block; margin-bottom: 0.7rem; }
.feature h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.feature p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
@media (max-width: 800px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery img {
  width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.gallery img.tall { grid-row: span 2; height: 100%; }

/* ---------- Wizard ---------- */
.wizard {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: clamp(1.4rem, 3.5vw, 2.6rem);
  max-width: 880px;
}
.wizard-steps { display: flex; gap: 0.5rem; margin-bottom: 1.8rem; flex-wrap: wrap; }
.wizard-steps .ws {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.4rem 0.9rem; border-radius: 999px;
  background: var(--sand); color: var(--ink-soft);
  border: 1.5px solid transparent;
}
.wizard-steps .ws.active { background: var(--ink); color: var(--cream); }
.wizard-steps .ws.done { border-color: var(--ok); color: var(--ok); background: #fff; }
.wizard h3 { margin-bottom: 1.2rem; }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .choice-grid { grid-template-columns: 1fr; } }
.choice {
  position: relative; border: 2px solid rgba(34,28,20,0.15); border-radius: var(--radius-sm);
  padding: 1.2rem 1.3rem; cursor: pointer; background: #fff;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.choice:hover { border-color: var(--terra); }
.choice.selected { border-color: var(--terra); background: #FDF1EA; }
.choice.selected::after {
  content: "✓"; position: absolute; top: 0.8rem; inset-inline-end: 0.9rem;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--terra); color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
}
.choice h4 { font-size: 1.08rem; margin-bottom: 0.25rem; padding-inline-end: 2rem; }
.choice p { font-size: 0.9rem; color: var(--ink-soft); }
.choice .price { display: block; margin-top: 0.5rem; font-weight: 700; color: var(--terra-dark); font-size: 0.95rem; }

/* Add-on rows */
.addon {
  display: flex; align-items: flex-start; gap: 0.9rem;
  border: 2px solid rgba(34,28,20,0.15); border-radius: var(--radius-sm);
  padding: 1rem 1.1rem; cursor: pointer; background: #fff;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.addon:hover { border-color: var(--terra); }
.addon.selected { border-color: var(--terra); background: #FDF1EA; }
.addon input { margin-top: 0.3rem; accent-color: var(--terra); width: 18px; height: 18px; flex: none; }
.addon .a-body { flex: 1; }
.addon h4 { font-size: 1rem; }
.addon p { font-size: 0.86rem; color: var(--ink-soft); }
.addon .price { font-weight: 700; color: var(--terra-dark); white-space: nowrap; font-size: 0.95rem; }
.addon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
@media (max-width: 700px) { .addon-grid { grid-template-columns: 1fr; } }

.wizard-nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.8rem; flex-wrap: wrap; }
.estimate {
  background: var(--sand); border-radius: var(--radius-sm);
  padding: 0.8rem 1.2rem; font-size: 0.95rem;
}
.estimate strong { font-size: 1.25rem; color: var(--terra-dark); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.9rem; }
.field input, .field select, .field textarea {
  font: inherit; padding: 0.75rem 0.9rem;
  border: 2px solid rgba(34,28,20,0.18); border-radius: var(--radius-sm);
  background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--terra);
}
.check-row { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--ink-soft); }
.check-row input { margin-top: 0.25rem; accent-color: var(--terra); width: 17px; height: 17px; flex: none; }

.form-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: clamp(1.4rem, 3.5vw, 2.6rem); max-width: 760px;
}

.notice-ok {
  background: #EAF4EC; border: 2px solid var(--ok); color: var(--ok);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem; font-weight: 600;
}

/* ---------- Tour cards ---------- */
.tour-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
@media (max-width: 800px) { .tour-grid { grid-template-columns: 1fr; } }
.tour-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.tour-card img { height: 230px; width: 100%; object-fit: cover; }
.tour-card .t-body { padding: 1.5rem 1.6rem 1.8rem; }
.tour-card ul { margin: 0.8rem 0 0 1.1rem; color: var(--ink-soft); font-size: 0.95rem; }
.tour-card li { margin-bottom: 0.25rem; }

/* ---------- Trip page: facts bar ---------- */
.facts {
  display: flex; flex-wrap: wrap; gap: 0.6rem 0.7rem;
  margin-top: 1.8rem;
}
.fact {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(255,255,255,0.14);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.30); color: #fff;
  border-radius: 999px; padding: 0.55rem 1.05rem;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.01em;
}
.fact .fi { font-size: 1.05rem; line-height: 1; }
/* Light variant for facts placed on a pale background (not over a photo) */
.section .fact { background: #fff; border-color: rgba(34,28,20,0.12); color: var(--ink); }

/* ---------- Trip page: day-by-day program ---------- */
.day-list { max-width: 780px; }
.day {
  display: flex; gap: 1.3rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(34,28,20,0.12);
}
.day:last-child { border-bottom: none; }
.day-num {
  flex: none; width: 64px; height: 64px; border-radius: 50%;
  background: var(--ink); color: var(--gold-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display); line-height: 1;
}
.day-num small { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; }
.day-num strong { font-size: 1.7rem; }
.day-body h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.day-body p { color: var(--ink-soft); font-size: 0.98rem; }
.day-body .day-tag {
  display: inline-block; margin-top: 0.5rem;
  font-size: 0.78rem; font-weight: 700; color: var(--terra-dark);
  background: #FDF1EA; border-radius: 999px; padding: 0.25rem 0.75rem;
}

/* ---------- Trip page: optional activities ---------- */
.extras-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 900px) { .extras-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .extras-grid { grid-template-columns: 1fr; } }
.extra {
  background: #fff; border-radius: var(--radius); padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.extra .ei { font-size: 1.7rem; line-height: 1; }
.extra h3 { font-size: 1.12rem; margin: 0.55rem 0 0.3rem; }
.extra p { color: var(--ink-soft); font-size: 0.92rem; flex: 1; }
.extra .from { margin-top: 0.75rem; font-weight: 700; color: var(--terra-dark); font-size: 0.9rem; }

/* ---------- Trip page: included lists ---------- */
.split-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 700px) { .split-list { grid-template-columns: 1fr; } }
.list-card { background: #fff; border-radius: var(--radius); padding: 1.6rem 1.8rem; box-shadow: var(--shadow); }
.list-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.list-card ul { list-style: none; }
.list-card li { padding: 0.35rem 0 0.35rem 1.7rem; position: relative; color: var(--ink-soft); font-size: 0.96rem; }
.list-card li::before { position: absolute; left: 0; font-weight: 700; }
.list-card.yes li::before { content: "✓"; color: var(--ok); }
.list-card.no li::before { content: "✕"; color: var(--terra-dark); }

/* ---------- Perks / gift block in forms ---------- */
.perks {
  border: 2px dashed var(--gold); border-radius: var(--radius-sm);
  background: #FFFDF7; padding: 1.1rem 1.2rem; margin-top: 1.2rem;
}
.perks h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.perks p { font-size: 0.86rem; color: var(--ink-soft); margin-bottom: 0.8rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; color: #fff; text-align: center;
  padding: 5rem 0; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(20,14,8,0.72), rgba(20,14,8,0.72)), var(--band-img) center / cover no-repeat;
}
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.92); max-width: 38rem; margin: 0 auto 2rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.85); padding: 3.5rem 0 2rem; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.site-footer .brand { color: #fff; }
.site-footer h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.9rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; }
.footer-brand p { margin-top: 0.8rem; font-size: 0.95rem; max-width: 26rem; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed; bottom: 1.4rem; inset-inline-end: 1.4rem; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1rem; }
.crumbs a { color: var(--ink-soft); }

/* ---------- Misc ---------- */
.badge-soon {
  display: inline-block; background: var(--sand); color: var(--ink-soft);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 999px; border: 1.5px solid rgba(34,28,20,0.2);
}
.hidden { display: none !important; }

/* ---------- Booking page ---------- */
.book-summary {
  display: flex; gap: 1.2rem; align-items: center;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1rem 1.2rem; margin-bottom: 1.8rem;
}
.book-summary img { width: 108px; height: 84px; object-fit: cover; border-radius: var(--radius-sm); flex: none; }
.book-summary .bs-body h2 { font-size: 1.35rem; }
.book-summary .bs-body p { color: var(--ink-soft); font-size: 0.92rem; margin-top: 0.15rem; }

.pay-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin: 0.4rem 0 0.5rem; }
@media (max-width: 620px) { .pay-choice { grid-template-columns: 1fr; } }
.pay-opt {
  position: relative; border: 2px solid rgba(34,28,20,0.16); border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem; cursor: pointer; background: #fff; transition: border-color 0.15s ease, background 0.15s ease;
}
.pay-opt:hover { border-color: var(--terra); }
.pay-opt.selected { border-color: var(--terra); background: #FDF1EA; }
.pay-opt input { position: absolute; opacity: 0; pointer-events: none; }
.pay-opt .po-top { display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; }
.pay-opt h4 { font-size: 1.05rem; }
.pay-opt .po-amt { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--terra-dark); white-space: nowrap; }
.pay-opt p { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.35rem; }
.pay-opt .po-tag { display: inline-block; margin-top: 0.5rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ok); background: #EAF4EC; border-radius: 999px; padding: 0.2rem 0.6rem; }

.passport-row { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 0.5rem; }
.passport-row select { flex: 1; }
.passport-row .rm { flex: none; border: none; background: var(--sand); color: var(--ink-soft); width: 38px; height: 38px; border-radius: var(--radius-sm); cursor: pointer; font-size: 1.1rem; }
.passport-row .rm:hover { background: #f0e2cf; color: var(--terra-dark); }
.add-passport { background: none; border: none; color: var(--terra-dark); font-weight: 600; cursor: pointer; padding: 0.3rem 0; font-size: 0.9rem; }
.add-passport:hover { text-decoration: underline; }

.member-banner {
  display: flex; gap: 0.8rem; align-items: center; flex-wrap: wrap;
  background: var(--gold-soft); border-radius: var(--radius-sm);
  padding: 0.8rem 1.1rem; margin-bottom: 1.4rem; font-size: 0.92rem;
}
.member-banner a { font-weight: 700; }

/* Required-field asterisk */
.req { color: var(--terra); font-weight: 700; margin-inline-start: 2px; }

/* WhatsApp: dial-code select + number */
.phone-group { display: flex; gap: 0.5rem; }
.phone-group select { flex: 0 0 40%; max-width: 180px; }
.phone-group input { flex: 1; }

/* Airport autocomplete */
.airport-ac { position: relative; }
.airport-ac-list {
  position: absolute; z-index: 20; top: calc(100% + 4px); left: 0; right: 0;
  background: #fff; border: 1.5px solid rgba(34,28,20,0.18); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); max-height: 260px; overflow-y: auto; list-style: none; padding: 0.3rem;
}
.airport-ac-list[hidden] { display: none; }
.airport-ac-list li {
  padding: 0.55rem 0.7rem; border-radius: 8px; cursor: pointer; font-size: 0.92rem;
  display: flex; justify-content: space-between; gap: 0.6rem; align-items: baseline;
}
.airport-ac-list li:hover, .airport-ac-list li.active { background: var(--sand); }
.airport-ac-list .ac-city { font-weight: 600; color: var(--ink); }
.airport-ac-list .ac-name { color: var(--ink-soft); font-size: 0.82rem; }
.airport-ac-list .ac-iata { font-weight: 700; color: var(--terra-dark); flex: none; }
.airport-ac-empty { padding: 0.6rem 0.7rem; color: var(--ink-soft); font-size: 0.88rem; }

/* Reveal block for flight help */
.reveal { margin-top: 0.9rem; }
.reveal[hidden] { display: none; }

/* Addon "see details" link + tour modal */
.addon .a-body .a-details {
  display: inline-block; margin-top: 0.4rem; font-size: 0.82rem; font-weight: 700;
  color: var(--terra-dark); background: none; border: none; padding: 0; cursor: pointer;
  border-bottom: 1.5px solid var(--gold);
}
.addon .a-body .a-details:hover { color: var(--terra); }

.modal-overlay {
  position: fixed; inset: 0; z-index: 100; background: rgba(20,14,8,0.55);
  display: flex; align-items: flex-start; justify-content: center; padding: 4vh 1rem;
  overflow-y: auto; -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
}
.modal-overlay[hidden] { display: none; }
.modal {
  background: var(--cream); border-radius: var(--radius); max-width: 720px; width: 100%;
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.modal-head { padding: 1.5rem 1.6rem 0.8rem; }
.modal-head h3 { font-size: 1.6rem; }
.modal-head p { color: var(--ink-soft); font-size: 0.92rem; margin-top: 0.2rem; }
.modal-close {
  position: absolute; top: 0.9rem; inset-inline-end: 0.9rem; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; border: none; cursor: pointer;
  background: #fff; box-shadow: var(--shadow); font-size: 1.2rem; color: var(--ink);
}
.modal-body { padding: 0 1.6rem 1.6rem; }
.modal-included {
  background: #fff; border-radius: var(--radius-sm); padding: 1rem 1.2rem; margin-bottom: 1.2rem;
}
.modal-included h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--terra-dark); margin-bottom: 0.5rem; }
.modal-included ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; }
.modal-included li { font-size: 0.9rem; color: var(--ink-soft); }
.modal-included li::before { content: "✓ "; color: var(--ok); font-weight: 700; }
.tour-stop { display: flex; gap: 1rem; margin-bottom: 1rem; align-items: flex-start; }
.tour-stop img { width: 120px; height: 84px; object-fit: cover; border-radius: var(--radius-sm); flex: none; }
.tour-stop .ts-no-img { width: 120px; height: 84px; border-radius: var(--radius-sm); background: var(--sand); flex: none; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.tour-stop h5 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.tour-stop p { color: var(--ink-soft); font-size: 0.9rem; margin-top: 0.15rem; }
.modal-credit { font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.4rem; }

/* Nav account chip */
.nav-account { padding: 0.55rem 1.1rem; font-size: 0.92rem; }
@media (max-width: 900px) { .nav-account { display: none; } }

/* Member dashboard */
.dash-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; align-items: start; }
@media (max-width: 800px) { .dash-grid { grid-template-columns: 1fr; } }
.wallet-card {
  background: linear-gradient(135deg, #2A2118, #4A3D2C); color: #fff;
  border-radius: var(--radius); padding: 1.7rem 1.9rem; box-shadow: var(--shadow-lg);
}
.wallet-card .wl-label { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-soft); }
.wallet-card .wl-balance { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; margin: 0.15rem 0 0.5rem; line-height: 1; }
.wallet-card p { color: rgba(255,255,255,0.82); font-size: 0.9rem; }
.wallet-card .btn { margin-top: 1.1rem; }
.dash-card { background: #fff; border-radius: var(--radius); padding: 1.6rem 1.8rem; box-shadow: var(--shadow); }
.dash-card h3 { margin-bottom: 0.5rem; }
.dash-card .muted { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 1rem; }
.trip-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid rgba(34,28,20,0.1); align-items: center; }
.trip-row:last-child { border-bottom: none; }
.trip-row h4 { font-size: 1.05rem; }
.trip-row p { font-size: 0.85rem; color: var(--ink-soft); }
.tr-status { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.25rem 0.7rem; border-radius: 999px; white-space: nowrap; }
.tr-upcoming { background: #EAF4EC; color: var(--ok); }
.tr-past { background: var(--sand); color: var(--ink-soft); }
.dash-empty { color: var(--ink-soft); font-size: 0.94rem; padding: 0.4rem 0; }
.dash-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 1.6rem; text-align: center; }

/* Wizard date field + custom date picker (DD/MM/YYYY) */
.wiz-date .date-hint { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.35rem; }
.dp { position: relative; }
.dp-input {
  font: inherit; padding: 0.75rem 0.9rem; width: 100%; cursor: pointer;
  border: 2px solid rgba(34,28,20,0.18); border-radius: var(--radius-sm); background: #fff; color: var(--ink);
}
.dp-input:focus { outline: none; border-color: var(--terra); }
.dp-pop {
  position: absolute; z-index: 40; top: calc(100% + 4px); inset-inline-start: 0;
  background: #fff; border: 1.5px solid rgba(34,28,20,0.18); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); padding: 0.8rem; width: 290px;
}
.dp-pop[hidden] { display: none; }
.dp-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.dp-head span { font-weight: 600; font-size: 0.95rem; }
.dp-head button { border: none; background: var(--sand); width: 32px; height: 32px; border-radius: 8px; cursor: pointer; font-size: 1.1rem; color: var(--ink); }
.dp-head button:hover { background: #efe1cd; }
.dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center; }
.dp-dow { font-size: 0.68rem; color: var(--ink-soft); padding: 4px 0; font-weight: 600; }
.dp-day { border: none; background: none; padding: 7px 0; border-radius: 8px; cursor: pointer; font: inherit; font-size: 0.88rem; }
.dp-day:hover:not(:disabled) { background: var(--sand); }
.dp-day.sel { background: var(--terra); color: #fff; }
.dp-day:disabled { color: rgba(34,28,20,0.22); cursor: default; }

/* ---------- Departures ---------- */
.dep-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 820px) { .dep-grid { grid-template-columns: 1fr; } }
.dep-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.7rem 1.8rem; border-top: 4px solid var(--terra);
}
.dep-card .dep-dates { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--ink); }
.dep-card .dep-sub { color: var(--ink-soft); font-size: 0.92rem; margin: 0.15rem 0 1.1rem; }
.airport-list { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; margin: 0; }
.airport-list li {
  display: inline-flex; align-items: baseline; gap: 0.4rem;
  background: var(--sand); border-radius: 999px; padding: 0.42rem 0.9rem; font-size: 0.9rem; color: var(--ink);
}
.airport-list .code { font-weight: 700; color: var(--terra-dark); letter-spacing: 0.02em; }
.flights-note {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--sand); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin-top: 1.6rem;
}
.flights-note .fn-icon { font-size: 1.7rem; line-height: 1; flex: none; }
.flights-note h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.flights-note p { color: var(--ink-soft); font-size: 0.96rem; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
