/* ============================================================
   BHARAT TRAILS — Design System
   Palette sourced from brand mark:
   --forest (#1B3B2F) primary, --gold (#C68A2E) accent,
   --parchment (#F7F3E9) bg, --ink (#0E2018) text/footer,
   --sand (#E8DCC4) cards, --sage (#3E6B52) secondary
   ============================================================ */

:root {
  --forest: #1B3B2F;
  --forest-deep: #0E2018;
  --gold: #C68A2E;
  --gold-light: #E0AE5C;
  --parchment: #FFFFFF;
  --sand: #E8DCC4;
  --sage: #3E6B52;
  --white: #FFFFFF;
  --ink: #1A2620;
  --ink-soft: #4B5A52;
  --line: rgba(27, 59, 47, 0.14);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 10px rgba(14, 32, 24, 0.07);
  --shadow-md: 0 12px 32px rgba(14, 32, 24, 0.12);
  --shadow-lg: 0 24px 60px rgba(14, 32, 24, 0.18);

  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: #FFFFFF;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest-deep);
  line-height: 1.12;
  margin: 0;
}

h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 500; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); letter-spacing: -0.01em; }
h3 { font-size: 1.4rem; }

p { margin: 0; color: var(--ink-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--forest-deep);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-ghost:hover { background: var(--forest); color: var(--white); }
.btn-block { width: 100%; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
/* Logo displayed as a wide banner — shows the illustrated icon + full wordmark */
.brand img {
  height: 66px;
  width: auto;
  max-width: 238px;
  object-fit: contain;
  object-position: left center;
}

.main-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.main-nav > ul { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--forest-deep);
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.nav-link:hover, .nav-link[aria-expanded="true"] { background: var(--sand); color: var(--forest); }
.nav-link .chev { width: 9px; height: 9px; transition: transform 0.2s ease; }
.has-dropdown[aria-expanded="true"] .chev { transform: rotate(180deg); }

.nav-item { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 22px;
  min-width: 620px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}
.nav-item.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-col-title {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.dropdown-col ul { display: flex; flex-direction: column; gap: 7px; }
.dropdown-col a {
  font-size: 0.92rem;
  color: var(--ink);
  padding: 6px 8px;
  border-radius: 8px;
  display: block;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}
.dropdown-col a:hover { background: var(--parchment); color: var(--forest); padding-left: 12px; }

.az-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.az-grid a {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink-soft);
  background: var(--parchment);
}
.az-grid a:hover { background: var(--gold); color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: none; }
.hamburger-icon { width: 24px; height: 24px; color: var(--forest-deep); }

@media (max-width: 1100px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary { padding: 10px 16px; font-size: 0.85rem; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--forest-deep);
  z-index: 900;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  padding: 24px 22px 60px;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.drawer-top img { height: 52px; width: auto; max-width: 180px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); }
.drawer-close { background: none; border: none; color: var(--sand); width: 30px; height: 30px; }
.mobile-drawer .accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-drawer .accordion-trigger .chev { width: 12px; height: 12px; color: var(--gold); transition: transform 0.2s ease; }
.mobile-drawer .accordion-trigger[aria-expanded="true"] .chev { transform: rotate(180deg); }
.mobile-panel {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.25s ease;
}
.mobile-panel.open { grid-template-rows: 1fr; }
.mobile-panel-inner { overflow: hidden; padding: 4px 4px 8px 14px; }
.mobile-panel a, .mobile-panel-group-title {
  display: block;
  padding: 10px 0;
  color: var(--sand);
  font-size: 0.95rem;
}
.mobile-panel-group-title { color: var(--gold); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 10px; }
.mobile-simple-link { display: block; padding: 16px 4px; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--white); font-family: var(--font-display); font-size: 1.15rem; }
.mobile-drawer .az-grid a { color: var(--sand); background: rgba(255,255,255,0.06); }
.mobile-drawer .az-grid a:hover { background: var(--gold); color: var(--forest-deep); }
.drawer-cta { margin-top: 26px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
  padding: 76px 0 0;
  min-height: 760px;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(14,32,24,0.88) 0%, rgba(14,32,24,0.68) 42%, rgba(14,32,24,0.32) 100%),
    linear-gradient(180deg, rgba(14,32,24,0.18), rgba(14,32,24,0.72));
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hero-topo {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 28px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-copy .eyebrow { color: var(--gold-light); }
.hero-copy .eyebrow::before { background: var(--gold-light); }
.hero-brand-mark {
  width: min(390px, 82vw);
  height: auto;
  margin: 24px 0 8px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,0.26));
  background: transparent;
}
.hero-copy h1 { color: var(--white); margin-top: 16px; }
.hero-copy h1 em { font-style: italic; color: var(--gold-light); }
.hero-copy p { color: rgba(247,243,233,0.78); margin-top: 18px; max-width: 480px; font-size: 1.07rem; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--gold-light); }
.hero-stat span { font-size: 0.8rem; color: rgba(247,243,233,0.65); }

.hero-art {
  position: relative;
  justify-self: end;
  width: min(360px, 100%);
}
.hero-art svg { width: 100%; height: auto; }
.hero-art img,
.hero-art video {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  border: 1px solid rgba(255,255,255,0.22);
}
.hero-art-badge {
  position: absolute;
  left: -34px;
  bottom: 34px;
  width: min(250px, 78%);
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-lg);
  color: var(--forest-deep);
}
.hero-art-badge strong { display: block; font-family: var(--font-display); font-size: 1.15rem; line-height: 1.1; }
.hero-art-badge span { display: block; color: var(--ink-soft); font-size: 0.82rem; line-height: 1.35; margin-top: 5px; }

.hero-trail-strip {
  position: relative;
  z-index: 2;
  margin-top: 56px;
}
.hero-trail-strip svg { width: 100%; display: block; }

/* Search card overlapping hero */
.search-card {
  position: relative;
  z-index: 3;
  max-width: var(--container);
  margin: -38px auto 0;
  padding: 0 28px;
}
.search-card-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}
.search-field { display: flex; flex-direction: column; gap: 6px; }
.search-field label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); font-weight: 700; }
.search-field input, .search-field select {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 12px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  background: var(--parchment);
  color: var(--ink);
}
.search-field input:focus, .search-field select:focus { outline: 2px solid var(--gold); }
.search-card .btn-primary { height: 46px; padding: 0 28px; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-art { justify-self: start; max-width: 320px; }
  .search-card-inner { grid-template-columns: 1fr; }
  .search-card { margin-top: -24px; }
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 44px;
}
.section-head h2 { margin-top: 10px; }
.section-head p { margin-top: 12px; max-width: 460px; }
.section-alt { background: var(--white); }
.section-forest { background: var(--forest-deep); color: var(--white); }
.section-forest h2, .section-forest h3 { color: var(--white); }
.section-forest .eyebrow { color: var(--gold-light); }
.section-forest .eyebrow::before { background: var(--gold-light); }

/* ---------- Tripcat-style video story ---------- */
.video-story {
  background: #FFFFFF;
}
.video-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.video-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--forest-deep);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.video-card-large { min-height: 520px; }
.video-card:nth-child(4) {
  grid-column: 2 / span 2;
  min-height: 300px;
}
.video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(14,32,24,0.06), rgba(14,32,24,0.76));
}
.video-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 24px;
}
.video-card span {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 800;
  margin-bottom: 8px;
}
.video-card h3 {
  color: var(--white);
  font-size: 1.45rem;
  max-width: 360px;
}

@media (max-width: 980px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-card:nth-child(4) { grid-column: auto; }
  .video-card,
  .video-card-large { min-height: 340px; }
}

/* ---------- Trail connector ---------- */
.trail-divider { display: block; width: 100%; height: 36px; margin: -6px 0 10px; }

/* ---------- Category grid ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.category-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.category-card .cat-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: var(--sand);
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--forest);
}
.category-card .cat-icon svg { width: 24px; height: 24px; }
.category-card h3 { font-size: 1.08rem; margin-bottom: 6px; }
.category-card p { font-size: 0.88rem; }
.category-card .cat-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 0.85rem; font-weight: 700; color: var(--gold); }
.category-card .cat-link svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.category-card:hover .cat-link svg { transform: translateX(3px); }

@media (max-width: 1080px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .category-grid { grid-template-columns: 1fr; } }

/* ---------- Destination scroller ---------- */
.dest-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 300px;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
}
.dest-scroller::-webkit-scrollbar { height: 6px; }
.dest-scroller::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 6px; }
.dest-card {
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.dest-card .dest-media { height: 190px; position: relative; overflow: hidden; }
.dest-card .dest-media svg { width: 100%; height: 100%; }
.dest-card .dest-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.dest-card:hover .dest-media img { transform: scale(1.06); }
.dest-card .dest-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(14,32,24,0.78);
  color: var(--sand);
  font-size: 0.72rem;
  padding: 5px 11px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.dest-card-body { padding: 18px 18px 20px; }
.dest-card-body h3 { font-size: 1.05rem; }
.dest-card-body p { font-size: 0.85rem; margin-top: 6px; }
.dest-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; }
.dest-meta .price { font-family: var(--font-display); color: var(--forest); font-size: 1.05rem; }
.dest-meta .price span { font-size: 0.72rem; color: var(--ink-soft); font-weight: 400; }

/* ---------- Trip style tiles ---------- */
.style-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: repeat(2, 200px); gap: 18px; }
.style-tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: var(--white);
  isolation: isolate;
}
.style-tile::before { content: ""; position: absolute; inset: 0; z-index: 0; }
.style-tile::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.style-tile span { font-family: var(--font-display); font-size: 1.25rem; position: relative; z-index: 2; }
.style-tile.tile-1 { grid-row: span 2; }
.style-tile { background-size: cover; background-position: center; }
.style-tile::before { background-image: inherit; background-size: cover; background-position: center; }
.style-tile.tile-treks::after { background: linear-gradient(160deg,rgba(44,82,64,0.68),rgba(14,32,24,0.82)); }
.style-tile.tile-beach::after { background: linear-gradient(160deg,rgba(62,107,82,0.55),rgba(27,59,47,0.78)); }
.style-tile.tile-culture::after { background: linear-gradient(160deg,rgba(198,138,46,0.6),rgba(138,94,30,0.82)); }
.style-tile.tile-weekend::after { background: linear-gradient(160deg,rgba(27,59,47,0.6),rgba(14,32,24,0.82)); }
.style-tile.tile-custom::after { background: linear-gradient(160deg,rgba(75,90,82,0.6),rgba(26,38,32,0.82)); }

@media (max-width: 900px) {
  .style-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3,160px); }
  .style-tile.tile-1 { grid-row: span 1; grid-column: span 2; }
}
@media (max-width: 560px) {
  .style-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .style-tile { height: 140px; grid-column: auto !important; grid-row: auto !important; }
}

/* ---------- Two-up promo (Trotter / ABVIMAS) ---------- */
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.promo-card {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.promo-card.alt { background: var(--sage); }
.promo-card > *:not(.promo-video) { position: relative; z-index: 2; }
.promo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}
.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(27,59,47,0.94), rgba(27,59,47,0.62));
}
.promo-card.alt::after { display: none; }
.promo-card .eyebrow { color: var(--gold-light); }
.promo-card .eyebrow::before { background: var(--gold-light); }
.promo-card h3 { color: var(--white); font-size: 1.7rem; margin: 14px 0 12px; }
.promo-card p { color: rgba(247,243,233,0.82); max-width: 380px; }
.promo-card .btn { margin-top: 24px; }
.promo-card .promo-orbit { position: absolute; right: -40px; bottom: -40px; opacity: 0.5; width: 220px; }

@media (max-width: 860px) { .promo-grid { grid-template-columns: 1fr; } }

/* ---------- Corporate band ---------- */
.corp-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.corp-list { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.corp-item { display: flex; gap: 14px; align-items: flex-start; }
.corp-item .icon-dot {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(198,138,46,0.16);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
}
.corp-item .icon-dot svg { width: 16px; height: 16px; }
.corp-item strong { display: block; color: var(--white); font-size: 1rem; margin-bottom: 3px; }
.corp-item p { font-size: 0.9rem; }
.corp-art { position: relative; }
.corp-art svg { width: 100%; }
.corp-art img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; opacity: 0.88; }

@media (max-width: 900px) { .corp-band { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Testimonials ---------- */
.testimonial-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
}
.testimonial-stars { color: var(--gold); display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial-stars svg { width: 15px; height: 15px; }
.testimonial-quote { font-size: 0.96rem; color: var(--ink); }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.avatar-badge {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  color: var(--forest);
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-person small { display: block; color: var(--ink-soft); font-size: 0.78rem; margin-top: 1px; }
.testimonial-ig {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--gold);
  margin-top: 10px; font-weight: 700;
}
.testimonial-ig svg { width: 13px; height: 13px; }

@media (max-width: 980px) { .testimonial-track { grid-template-columns: 1fr; } }

/* ---------- Newsletter / CTA strip ---------- */
.cta-strip {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  color: var(--forest-deep);
}
.cta-strip h3 { color: var(--forest-deep); font-size: 1.7rem; }
.cta-strip p { color: rgba(14,32,24,0.72); margin-top: 8px; }
.cta-strip .btn-primary { background: var(--forest-deep); color: var(--white); }
.cta-strip .btn-primary:hover { background: var(--ink); }

@media (max-width: 760px) { .cta-strip { flex-direction: column; text-align: center; } }

@media (max-width: 760px) {
  .google-form-actions { flex-direction: column; align-items: stretch; }
  .google-form-card iframe { height: 680px; }
  .captain-video-panel { height: 240px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--forest-deep); color: rgba(247,243,233,0.75); padding-top: 70px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 56px; width: auto; max-width: 200px; object-fit: contain; object-position: left center; margin-bottom: 16px; }
.footer-brand p { color: rgba(247,243,233,0.6); font-size: 0.9rem; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 16px; height: 16px; color: var(--sand); }
.footer-col h4 { color: var(--white); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.9rem; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 10px; font-size: 0.9rem; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(247,243,233,0.6); }
.footer-legal { display: flex; gap: 20px; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  background: var(--forest-deep);
  color: var(--white);
  padding: 160px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero .eyebrow::before { background: var(--gold-light); }
.page-hero h1 { color: var(--white); margin-top: 14px; font-size: clamp(2.2rem, 4vw, 3.4rem); }
.page-hero p { color: rgba(247,243,233,0.75); margin-top: 16px; max-width: 560px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: rgba(247,243,233,0.55); margin-bottom: 6px; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---------- Filter bar (used on Places / Categories pages) ---------- */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all 0.18s ease;
}
.filter-chip:hover { border-color: var(--gold); color: var(--forest); }
.filter-chip.active { background: var(--forest); border-color: var(--forest); color: var(--white); }

/* ---------- Generic content card grid (listing pages) ---------- */
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .listing-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .listing-grid { grid-template-columns: 1fr; } }

/* ---------- A-Z directory page ---------- */
.az-directory { display: flex; flex-direction: column; gap: 36px; }
.az-letter-row { display: flex; gap: 28px; border-bottom: 1px solid var(--line); padding-bottom: 28px; }
.az-letter {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  width: 60px;
  flex-shrink: 0;
}
.az-places { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.az-places a { font-size: 0.96rem; color: var(--ink); font-weight: 500; }
.az-places a:hover { color: var(--forest); text-decoration: underline; }

/* ---------- Form page (Trotter / ABVIMAS / Corporate) ---------- */
.form-shell {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.form-side h2 { margin-bottom: 16px; }
.form-side-list { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.captain-join-section .form-shell { align-items: stretch; }
.captain-video-panel {
  height: 310px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--forest-deep);
}
.captain-video-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.google-form-card {
  padding: 0;
  overflow: hidden;
}
.google-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.google-form-card iframe {
  display: block;
  width: 100%;
  height: 760px;
  border: 0;
  background: #FFFFFF;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.full { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.84rem; font-weight: 700; color: var(--forest-deep); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--parchment);
  color: var(--ink);
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--gold); }
.field-hint { font-size: 0.78rem; color: var(--ink-soft); }
.radio-group { display: flex; gap: 14px; flex-wrap: wrap; }
.radio-pill { display: flex; align-items: center; gap: 7px; font-size: 0.88rem; }
.form-note {
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.86rem;
  color: var(--ink);
  margin-top: 6px;
}
.success-banner {
  display: none;
  background: var(--sage);
  color: var(--white);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-weight: 600;
}
.success-banner.show { display: flex; align-items: center; gap: 10px; }

.story-art{
    width:100%;
    height:480px;
    overflow:hidden;
    border-radius:var(--radius-lg);
}

.story-art img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:var(--radius-lg);
}

@media (max-width: 900px) { .form-shell { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ---------- Story page ---------- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-art svg { width: 100%; }
.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 30px; }
.timeline-item { display: grid; grid-template-columns: 90px auto; gap: 20px; padding-bottom: 32px; position: relative; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: 44px; top: 26px; bottom: 0;
  width: 1px;
  background: var(--line);
}
.timeline-item:last-child::before { display: none; }
.timeline-year { font-family: var(--font-display); color: var(--gold); font-size: 1.1rem; padding-top: 2px; }
.timeline-dot {
  position: absolute; left: 38px; top: 2px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--forest); border: 3px solid var(--parchment);
}
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 20px; }
.value-card { background: var(--sand); border-radius: var(--radius-md); padding: 24px 20px; }
.value-card svg { width: 28px; height: 28px; color: var(--forest); margin-bottom: 12px; }
.value-card h4 { font-size: 1rem; margin-bottom: 6px; }
.value-card p { font-size: 0.86rem; }
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } .values-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- 404 ---------- */
.notfound { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 28px; }
.notfound svg { width: 220px; margin-bottom: 20px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 40px; }
.badge-soft {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--sand); color: var(--forest);
  font-size: 0.78rem; font-weight: 700;
  padding: 6px 13px; border-radius: 999px;
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .section-head { flex-direction: column; align-items: flex-start; }

/* ============================================================
   ADDITIONAL RESPONSIVE FIXES
   ============================================================ */

/* Tablet: 768px–1100px */
@media (max-width: 1100px) {
  .container { padding: 0 20px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px 0; }
  .hero-art { order: -1; }
  .hero-art img { height: 300px; }
  .corp-art { display: none; }
  .corp-inner { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile: up to 768px */
@media (max-width: 768px) {
  :root { --container: 100%; }
  .container { padding: 0 16px; }

  /* Header */
  .header-inner { padding: 10px 16px; }
  .brand img { height: 52px; max-width: 180px; }

  /* Hero */
  .hero { padding: 60px 0 0; }
  .hero-inner { padding: 32px 16px 0; gap: 24px; }
  h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }

  /* Cards & grids */
  .dest-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .trip-style-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .listing-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .testimonial-track { grid-template-columns: 1fr; }
  .style-grid { grid-template-columns: 1fr; grid-template-rows: none; }

  /* CTA strip */
  .cta-strip { padding: 32px 20px; flex-direction: column; text-align: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 12px; }

  /* Story & form pages */
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-shell { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .story-art { height: 260px; }

  /* AZ directory */
  .az-letter-row { flex-direction: column; gap: 12px; }
  .az-letter { width: auto; }

  /* Dropdown — disable on mobile (handled by drawer) */
  .dropdown { min-width: 280px; grid-template-columns: 1fr; }
}

/* Small mobile: up to 480px */
@media (max-width: 480px) {
  .brand img { height: 44px; max-width: 155px; }
  .header-actions .btn-primary { padding: 8px 14px; font-size: 0.8rem; }
  .trip-style-grid { grid-template-columns: 1fr; }
  .testimonial-track { grid-template-columns: 1fr; }
  .btn { padding: 11px 20px; font-size: 0.88rem; }
  .cta-strip { padding: 24px 16px; }
  .page-hero { padding: 120px 0 50px; }
  .page-hero h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
}

}

/* ============================================================
   TRIP / DESTINATION DETAIL PAGES
   (Category event-style pages + Places A-Z destination pages)
   Built entirely from existing tokens above — no new colors added.
   ============================================================ */

.trip-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-color: var(--forest-deep);
  background-size: cover;
  background-position: center;
  padding: 160px 0 40px;
}
.trip-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,32,24,0.55) 0%, rgba(14,32,24,0.86) 100%);
}
.trip-hero .container { position: relative; z-index: 2; }
.trip-hero .eyebrow { color: var(--gold-light); }
.trip-hero .eyebrow::before { background: var(--gold-light); }
.trip-hero h1 { color: var(--white); margin-top: 12px; font-size: clamp(2.2rem, 4.4vw, 3.6rem); }
.trip-hero .trip-hero-meta { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 18px; }
.trip-hero .trip-hero-meta span {
  display: inline-flex; align-items: center; gap: 7px;
  color: rgba(247,243,233,0.88); font-size: 0.9rem; font-weight: 600;
}
.trip-hero .trip-hero-meta svg { width: 16px; height: 16px; color: var(--gold-light); }
.trip-rating { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--gold-light); font-weight: 700; font-size: 0.92rem; }
.trip-rating svg { width: 15px; height: 15px; }
.trip-rating small { color: rgba(247,243,233,0.65); font-weight: 500; }

.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; }
.detail-main { min-width: 0; display: flex; flex-direction: column; gap: 64px; }
.detail-block h2 { margin-bottom: 18px; }
.detail-block h2 .eyebrow { display: block; margin-bottom: 8px; }

.booking-card {
  position: sticky; top: 100px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 26px;
}
.booking-card .price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.booking-card .price-row strong { font-family: var(--font-display); font-size: 1.9rem; color: var(--forest); }
.booking-card .price-row span { font-size: 0.85rem; color: var(--ink-soft); }
.booking-card .btn { width: 100%; margin-top: 14px; }
.booking-card .btn-whatsapp { background: #25D366; color: #fff; margin-top: 10px; }
.booking-card .btn-whatsapp:hover { background: #1ebd59; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.booking-card ul { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.booking-card li { display: flex; gap: 9px; font-size: 0.86rem; color: var(--ink-soft); align-items: flex-start; }
.booking-card li svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 1100px) { .detail-layout { grid-template-columns: 1fr; } .booking-card { position: static; } }

.gallery-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; grid-template-rows: repeat(2, 160px); gap: 10px; border-radius: var(--radius-lg); overflow: hidden; }
.gallery-grid a:first-child { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-grid a:hover img { transform: scale(1.05); }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 120px); } .gallery-grid a:first-child { grid-column: span 2; grid-row: auto; height: 200px; } }

.overview-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }
.overview-card { background: var(--sand); border-radius: var(--radius-md); padding: 18px 16px; }
.overview-card svg { width: 22px; height: 22px; color: var(--forest); margin-bottom: 10px; }
.overview-card span { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); font-weight: 700; }
.overview-card strong { display: block; margin-top: 5px; font-family: var(--font-display); font-size: 1.05rem; color: var(--forest-deep); }

.check-list, .cross-list, .carry-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li, .cross-list li, .carry-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; color: var(--ink); }
.check-list svg { color: var(--sage); width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.cross-list svg { color: #b3432b; width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.carry-list svg { color: var(--gold); width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.incl-excl-grid, .pickup-carry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 700px) { .incl-excl-grid, .pickup-carry-grid { grid-template-columns: 1fr; gap: 24px; } }

.notes-box { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius-md); padding: 20px 22px; display: flex; flex-direction: column; gap: 10px; }
.notes-box li { font-size: 0.92rem; color: var(--ink-soft); display: flex; gap: 9px; }
.notes-box li::before { content: "!"; flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); color: var(--white); font-size: 0.72rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-top: 1px; }

.itinerary-list { display: flex; flex-direction: column; }
.itinerary-item { display: grid; grid-template-columns: 130px auto; gap: 22px; padding-bottom: 30px; position: relative; }
.itinerary-item::before { content: ""; position: absolute; left: 130px; top: 6px; bottom: -4px; width: 1px; background: var(--line); margin-left: 27px; }
.itinerary-item:last-child::before { display: none; }
.itinerary-item:last-child { padding-bottom: 0; }
.itinerary-day-label { font-family: var(--font-display); color: var(--gold); font-size: 0.98rem; padding-top: 3px; }
.itinerary-dot { position: absolute; left: 130px; margin-left: 20px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--forest); border: 3px solid var(--sand); }
.itinerary-body h4 { font-size: 1.06rem; margin-bottom: 6px; color: var(--forest-deep); font-family: var(--font-display); font-weight: 600; }
.itinerary-body p { font-size: 0.92rem; }
@media (max-width: 620px) { .itinerary-item { grid-template-columns: 1fr; gap: 8px; } .itinerary-item::before, .itinerary-dot { display: none; } }

.package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.package-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 22px; display: flex; flex-direction: column; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.package-card.featured { border-color: var(--gold); box-shadow: var(--shadow-md); position: relative; }
.package-card.featured::before { content: "Most Popular"; position: absolute; top: -12px; right: 20px; background: var(--gold); color: var(--forest-deep); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; padding: 5px 12px; border-radius: 999px; }
.package-card h3 { font-size: 1.12rem; }
.package-card .package-price { font-family: var(--font-display); color: var(--forest); font-size: 1.5rem; margin-top: 8px; }
.package-card p.package-desc { font-size: 0.86rem; margin-top: 6px; }
.package-card ul { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.package-card li { font-size: 0.86rem; color: var(--ink-soft); display: flex; gap: 8px; align-items: flex-start; }
.package-card li svg { width: 14px; height: 14px; color: var(--sage); flex-shrink: 0; margin-top: 3px; }
.package-card .btn { margin-top: 18px; }

.policy-box { background: var(--sand); border-radius: var(--radius-md); padding: 20px 22px; font-size: 0.9rem; color: var(--ink-soft); }
.policy-box + .policy-box { margin-top: 14px; }
.policy-box strong { display: block; color: var(--forest-deep); margin-bottom: 6px; font-family: var(--font-body); }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: var(--white); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 18px 20px; background: none; border: none; text-align: left; font-family: var(--font-body); font-weight: 700; font-size: 0.96rem; color: var(--forest-deep); }
.faq-question .chev { width: 11px; height: 11px; flex-shrink: 0; transition: transform 0.2s ease; color: var(--gold); }
.faq-question[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.25s ease; }
.faq-answer.open { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer p { padding: 0 20px 18px; font-size: 0.92rem; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .review-grid { grid-template-columns: 1fr; } }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); height: 340px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .related-grid { grid-template-columns: 1fr; } }

.whatsapp-float { position: fixed; bottom: 22px; right: 22px; z-index: 40; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); transition: transform 0.2s ease; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; }

.dest-intro-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .dest-intro-grid { grid-template-columns: 1fr; } }
.info-pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.info-pill { background: var(--sand); border-radius: 999px; padding: 8px 16px; font-size: 0.82rem; font-weight: 700; color: var(--forest-deep); }

.plain-list { display: flex; flex-direction: column; gap: 11px; }
.plain-list li { display: flex; gap: 10px; font-size: 0.95rem; color: var(--ink); align-items: flex-start; }
.plain-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 8px; }

/* ============================================================
   BOOKING MODAL (Razorpay "Book Now" flow)
   ============================================================ */
.booking-modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(14,32,24,0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity 0.2s ease, visibility 0.2s ease;
}
.booking-modal.open { opacity: 1; visibility: visible; }
.booking-modal-box {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 30px; max-width: 420px; width: 100%; position: relative;
  transform: translateY(10px); transition: transform 0.2s ease;
}
.booking-modal.open .booking-modal-box { transform: translateY(0); }
.booking-modal-close {
  position: absolute; top: 14px; right: 14px; background: none; border: none;
  font-size: 1.6rem; line-height: 1; color: var(--ink-soft); cursor: pointer;
}
.booking-modal h3 { font-size: 1.3rem; margin-bottom: 6px; }
.booking-modal-amount { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 16px; }
.booking-modal-amount strong { color: var(--forest); font-family: var(--font-display); font-size: 1.15rem; }
.booking-modal-error {
  background: #fbe6e0; color: #b3432b; border: 1px solid #f2c3b6; border-radius: var(--radius-sm);
  padding: 10px 14px; font-size: 0.86rem; margin-bottom: 14px;
}
.booking-modal .field { margin-bottom: 14px; }
