/* FlyingFish — Destination hub page (per-destination)
 * Layered on top of /assets/css/styles.css and /courses/courses.css.
 * Section-by-section styles for the hub: compact hero → trips grid →
 * when-to-go → marine life → about → FAQs.
 *
 * NO buy-box, NO booking modal, NO travel widgets. The hub aggregates
 * products and routes to /dive-trips/<id>/ — the product page handles
 * actual booking.
 */

body.destination-hub-body {
  background: #fff;
  color: var(--text);
}

/* ─── Hero ──────────────────────────────────── */
.dest-hero {
  position: relative;
  min-height: 440px;
  height: 50vh;
  max-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.dest-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.dest-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(15, 23, 42, 0.50) 0%,
    rgba(15, 23, 42, 0.45) 45%,
    rgba(15, 23, 42, 0.30) 75%,
    rgba(15, 23, 42, 0.14) 100%);
  z-index: 2;
}
.dest-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 24px 56px;
  color: #fff;
  text-align: center;
}

.dest-crumbs {
  font-family: 'Roboto', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  margin: 0 0 18px;
}
.dest-crumbs a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
  transition: all .2s ease;
}
.dest-crumbs a:hover { color: #fff; border-bottom-color: #fff; }
.dest-crumbs .sep { margin: 0 7px; opacity: .55; }

.dest-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin: 0 0 12px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.dest-eyebrow .dest-flag { font-size: 18px; margin-right: 4px; vertical-align: -2px; }

.dest-h1 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.32);
}

.dest-tagline {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.5;
  color: rgba(255,255,255,0.94);
  margin: 0 auto;
  max-width: 720px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.28);
}

/* ─── Floating stats card (overlaps hero bottom) ──── */
.dest-statbar-wrap {
  max-width: 1180px;
  margin: -44px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 20;
}
.dest-statbar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 18px 48px -20px rgba(15, 23, 42, 0.30), 0 4px 12px -6px rgba(15, 23, 42, 0.10);
  overflow: hidden;
}
.dest-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  padding: 22px 14px;
  border-left: 1px solid var(--border);
}
.dest-stat:first-child { border-left: none; }
.dest-stat i {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 5px;
}
.dest-stat-val {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--deep);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.dest-stat-lbl {
  font-family: 'Roboto', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Sticky anchor pill row (segmented) ───────── */
.dest-anchors-wrap {
  position: sticky;
  top: 78px;
  z-index: 50;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.dest-anchors {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.dest-anchors::-webkit-scrollbar { display: none; }
.dest-anchors a {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(6, 182, 212, 0.18);
  box-shadow: 0 1px 3px rgba(6, 95, 120, 0.04);
  border-radius: 100px;
  padding: 12px 24px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--deep);
  text-decoration: none;
  transition: all .25s ease;
  white-space: nowrap;
}
.dest-anchors a:hover {
  border-color: var(--primary, #06b6d4);
  color: var(--deep, #164e63);
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.18);
}
.dest-anchors a.is-active {
  background: linear-gradient(135deg,
    rgba(16, 185, 129, 0.96) 0%,
    rgba(6, 182, 212, 0.96) 50%,
    rgba(29, 78, 216, 0.96) 100%);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  box-shadow:
    0 4px 12px rgba(29, 78, 216, 0.16),
    0 2px 6px rgba(16, 185, 129, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

/* ─── Section wrapper ──────────────────────────── */
.dest-section { padding: 56px 24px; }
.dest-section .section-wrap { max-width: 1400px; margin: 0 auto; }
.dest-section + .dest-section { padding-top: 44px; }
.dest-section h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 600;
  color: var(--deep);
  margin: 0 0 8px;
  letter-spacing: -0.3px;
  line-height: 1.15;
}
.dest-section .section-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 14.5px;
  color: var(--muted);
  margin: 0 auto 28px;
  max-width: 960px;
  line-height: 1.55;
}

/* ─── Trips grid (the primary payload) ─────────── */
.dest-trips-section { padding-top: 48px; padding-bottom: 40px; }
.dest-trips-cats {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  margin: -4px 0 22px;
  padding: 4px 0;
}
.dest-trips-cats::-webkit-scrollbar { display: none; }
.dest-trips-cat {
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid var(--border-strong, rgba(6, 182, 212, 0.32));
  border-radius: 100px;
  padding: 8px 15px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--deep);
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.dest-trips-cat:hover { border-color: var(--primary); color: var(--primary); }
.dest-trips-cat.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.32);
}
.dest-trips-cat-count {
  font-size: 11px;
  opacity: .75;
  font-weight: 500;
  padding: 1px 7px;
  background: rgba(15, 23, 42, 0.06);
  border-radius: 100px;
  margin-left: 4px;
}
.dest-trips-cat.active .dest-trips-cat-count { background: rgba(255, 255, 255, 0.22); opacity: 1; }

.dest-trips-section .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}
.dest-trips-section .dest-card.is-hidden { display: none; }

.dest-trips-empty {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #fde68a;
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
}
.dest-trips-empty h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #78350f;
  margin: 0 0 8px;
}
.dest-trips-empty p {
  color: #92400e;
  margin: 0 0 18px;
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.dest-trips-empty .notify-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.32);
  transition: all .2s ease;
}
.dest-trips-empty .notify-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.42);
}

/* ─── Plan-a-trip CTA (replaces the retired dummy /trip/ grid) ─────────── */
.dest-trips-cta {
  background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
  border: 1px solid var(--border-strong, rgba(6, 182, 212, 0.32));
  border-radius: 18px;
  padding: 40px 32px;
  text-align: center;
}
.dest-trips-cta-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.32);
}
.dest-trips-cta h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--deep, #0f172a);
  margin: 0 0 10px;
}
.dest-trips-cta p {
  color: var(--muted, #475569);
  margin: 0 auto 22px;
  max-width: 580px;
  font-size: 15px;
  line-height: 1.6;
}
.dest-trips-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.dest-trips-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: all .2s ease;
}
.dest-trips-cta-btn.primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(6, 182, 212, 0.32);
}
.dest-trips-cta-btn.wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.32);
}
.dest-trips-cta-btn:hover { transform: translateY(-1px); }

/* Slim "alt dates / custom trip" line under a real curated-trip grid */
.dest-trips-more {
  margin: 22px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted, #475569);
}
.dest-trips-more a {
  color: var(--primary, #06b6d4);
  font-weight: 600;
  text-decoration: none;
}
.dest-trips-more a:hover { text-decoration: underline; }

/* ─── Dive trips: wide horizontal rows (hub only) ─── */
.dest-trip-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.dest-trip-row {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 14px;
  text-decoration: none;
  color: var(--text);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.dest-trip-row:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong, rgba(6, 182, 212, 0.32));
  box-shadow: 0 16px 34px -18px rgba(15, 23, 42, 0.28);
}
.dest-trip-row-media {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4 / 3;
}
.dest-trip-row-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.dest-trip-row:hover .dest-trip-row-media img { transform: scale(1.05); }
.dest-trip-row-main {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 6px 4px;
  min-width: 0;
}
.dest-trip-row-name {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--deep);
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.2px;
}
.dest-trip-row-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
.dest-trip-row-sub i { color: var(--primary); margin-right: 3px; font-size: 12px; }
.dest-trip-row-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 1px;
}
.dtr-tag {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.dtr-tag-level  { color: #047857; background: #ecfdf5; border: 1px solid #a7f3d0; }
.dtr-tag-format { color: #7c3aed; background: #f5f3ff; border: 1px solid #ddd6fe; }
.dest-trip-row-feats {
  display: flex;
  align-items: stretch;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.dtr-feat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0 6px;
  border-left: 1px solid var(--border);
  font-family: 'Roboto', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
}
.dtr-feat:first-child { border-left: none; }
.dtr-feat i { font-size: 15px; color: var(--primary); }
.dest-trip-row-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  padding: 6px 18px 6px 6px;
  text-align: right;
  white-space: nowrap;
}
.dest-trip-row-price {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: -0.3px;
}
.dest-trip-row-per {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}
.dest-trip-row-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg,
    rgba(16, 185, 129, 0.96) 0%,
    rgba(6, 182, 212, 0.96) 55%,
    rgba(29, 78, 216, 0.96) 100%);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 100px;
  box-shadow: 0 6px 16px -6px rgba(29, 78, 216, 0.45);
  transition: transform .18s ease;
}
.dest-trip-row:hover .dest-trip-row-btn { transform: translateX(2px); }

/* ─── When to go (12-month season bar) ─────────── */
.season-bar {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2px;
  margin: 0 0 14px;
  border-radius: 12px;
  overflow: hidden;
}
.season-month {
  text-align: center;
  padding: 14px 4px 12px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
}
.season-month:first-child { border-radius: 12px 0 0 12px; }
.season-month:last-child  { border-radius: 0 12px 12px 0; }
.season-month.peak     { background: #16a34a; color: #fff; }
.season-month.shoulder { background: #fcd34d; color: #854d0e; }
.season-month.off      { background: #eef1f4; color: #94a3b8; }
.season-month .season-prob {
  display: block;
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 500;
  margin-top: 2px;
  opacity: .85;
}

.season-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.season-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: var(--muted);
}
.season-legend-dot {
  display: inline-block;
  width: 11px; height: 11px;
  border-radius: 50%;
  vertical-align: -1px;
  margin-right: 6px;
}
.season-legend-dot.peak     { background: #16a34a; }
.season-legend-dot.shoulder { background: #fcd34d; }
.season-legend-dot.off      { background: #e5e7eb; }

.season-bestmonths {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  padding: 10px 16px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #065f46;
  line-height: 1.3;
}
.season-bestmonths i { color: #16a34a; font-size: 14px; }
.season-bestmonths strong { color: #065f46; font-weight: 600; }

/* ─── Marine life: circular thumbs + caption below ─ */
.marine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 20px 14px;
}
.marine-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  /* Reset the global homepage .marine-card (styles.css) leaking in: it forces
     aspect-ratio 4/5, overflow hidden, a box-shadow and a dark ::before overlay. */
  position: static;
  aspect-ratio: auto;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.marine-card::before { content: none !important; display: none !important; }
.marine-card:hover { transform: none; box-shadow: none; }
.marine-card-photo {
  position: relative;
  width: 100%;
  max-width: 132px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 8px 20px -10px rgba(15, 23, 42, 0.30);
  outline: 1px solid var(--border);
  transition: transform .22s ease, box-shadow .22s ease, outline-color .22s ease;
}
.marine-card:hover .marine-card-photo {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -12px rgba(6, 182, 212, 0.45);
  outline-color: var(--primary);
}
.marine-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.marine-card:hover .marine-card-photo img { transform: scale(1.06); }
.marine-card-ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #cffafe, #ecfeff);
  display: grid;
  place-items: center;
}
.marine-card-ph::after {
  content: '\f578'; /* fa-fish */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 30px;
  color: rgba(6, 182, 212, 0.40);
}
.marine-card-name {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
  margin: 12px 0 0;
  line-height: 1.25;
}
.marine-card-prob {
  font-family: 'Roboto', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  margin-top: 2px;
  color: var(--muted);
}
.marine-card-prob.high     { color: #0d9488; }
.marine-card-prob.seasonal { color: #b45309; }

/* ─── About / spec list ────────────────────────── */
.dest-about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: start;
  margin-top: 26px;
}
.dest-about-copy p {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 14px;
}
.dest-about-copy p:last-child { margin-bottom: 0; }

.dest-spec-card {
  background: var(--bg-soft, #f8fdff);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
}
.dest-spec-card h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.dest-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-family: 'Roboto', sans-serif;
  font-size: 13.5px;
  gap: 14px;
}
.dest-spec-row:last-child { border-bottom: none; padding-bottom: 0; }
.dest-spec-label { color: var(--muted); flex-shrink: 0; }
.dest-spec-value { color: var(--text); font-weight: 500; text-align: right; }

.dest-personas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.dest-persona {
  font-family: 'Roboto', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--deep);
  background: var(--primary-soft);
  border: 1px solid var(--border-strong, rgba(6, 182, 212, 0.22));
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.01em;
}

/* ─── FAQs (native <details> accordion) ────────── */
.dest-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 880px;
  margin: 26px auto 0;
}
.dest-faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 22px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.dest-faq-item:hover { border-color: var(--border-strong, rgba(6, 182, 212, 0.32)); }
.dest-faq-item[open] {
  border-color: var(--border-strong, rgba(6, 182, 212, 0.32));
  box-shadow: 0 10px 26px -16px rgba(15, 23, 42, 0.22);
}
.dest-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--deep);
  letter-spacing: -0.1px;
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
}
.dest-faq-q::-webkit-details-marker { display: none; }
.dest-faq-q::after {
  content: '+';
  flex: 0 0 auto;
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--primary);
  transition: transform .2s ease;
}
.dest-faq-item[open] .dest-faq-q::after { content: '\2212'; }
.dest-faq-a {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  padding: 0 0 18px;
}

/* ─── Final CTA — matches the liveaboards dark-marine CTA ──────────────── */
body.destination-hub-body .final-cta {
  background:
    linear-gradient(135deg,
      rgba(15, 23, 42, 0.62) 0%,
      rgba(15, 23, 42, 0.38) 50%,
      rgba(6, 95, 120, 0.62) 100%),
    url('/marine-life/images/marine-cta-banner.webp?v=202605222345') center/cover no-repeat;
  padding: 72px 32px;
}
body.destination-hub-body .final-cta::before { display: none; }
body.destination-hub-body .final-cta-inner { max-width: 760px; }
body.destination-hub-body .final-cta h2 { font-size: clamp(28px, 3.6vw, 40px); }
body.destination-hub-body .final-cta .hero-cta {
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.12) 100%) !important;
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.42) !important;
  padding: 13px 24px; font-size: 14.5px; font-weight: 600; letter-spacing: .02em;
  text-decoration: none !important;
  display: inline-flex; align-items: center; gap: 10px; line-height: 1;
  box-shadow: 0 6px 18px rgba(15,23,42,0.18), inset 0 1px 0 rgba(255,255,255,0.28), inset 0 -1px 0 rgba(255,255,255,0.10);
  transition: all .25s ease;
}
body.destination-hub-body .final-cta .hero-cta:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0.18) 100%) !important;
  border-color: rgba(255,255,255,0.62) !important; color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15,23,42,0.26), inset 0 1px 0 rgba(255,255,255,0.38), inset 0 -1px 0 rgba(255,255,255,0.14);
}
body.destination-hub-body .final-cta .hero-cta i { font-size: 16px; line-height: 1; display: inline-flex; align-items: center; }
body.destination-hub-body .final-cta .hero-cta .fa-whatsapp { font-size: 18px; color: #fff; }
body.destination-hub-body .final-cta .hero-cta .cta-arrow { font-size: 12px; transition: transform .25s ease; opacity: .85; }
body.destination-hub-body .final-cta .hero-cta:hover .cta-arrow { transform: translateX(3px); opacity: 1; }

/* ─── Mobile ───────────────────────────────────── */
@media (max-width: 720px) {
  .dest-hero { min-height: 360px; height: 46vh; }
  .dest-hero-inner { padding: 86px 16px 40px; }
  .dest-h1 { font-size: 32px; }
  .dest-tagline { font-size: 14.5px; }

  /* Floating stats card → 2-col hairline grid */
  .dest-statbar-wrap { margin-top: -28px; padding: 0 16px; }
  .dest-statbar { grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border-radius: 14px; }
  .dest-stat { border-left: none; background: #fff; padding: 16px 10px; }
  .dest-stat:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .dest-stat i { font-size: 23px; }
  .dest-stat-val { font-size: 15.5px; }

  .dest-anchors-wrap { top: 64px; margin-top: 22px; }
  .dest-anchors { justify-content: flex-start; padding: 10px 16px; gap: 8px; }
  .dest-anchors a { padding: 10px 18px; font-size: 14px; }

  .dest-section { padding: 36px 16px; }
  .dest-section + .dest-section { padding-top: 28px; }
  .dest-section h2 { font-size: 24px; }

  /* Trip rows stack: image on top, details, then price/CTA */
  .dest-trip-row { grid-template-columns: 1fr; gap: 14px; }
  .dest-trip-row-media { aspect-ratio: 16 / 10; }
  .dest-trip-row-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 4px 4px;
    border-top: 1px solid var(--border);
    text-align: left;
  }
  .dest-trip-row-per { margin-bottom: 0; }
  .dest-trip-row-btn { margin-left: auto; }

  .season-bar { gap: 2px; }
  .season-month { padding: 12px 2px 10px; font-size: 10px; }
  .season-month .season-prob { display: none; }

  .dest-about-grid { grid-template-columns: 1fr; gap: 22px; }
  .marine-grid { grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 16px 10px; }
  .marine-card-name { font-size: 12.5px; }

  body.destination-hub-body .final-cta { padding: 52px 18px; }
}
