/* ═══════════════════════════════════════════════
   FLYINGFISH — TRIP DETAIL PAGE
   Brand: Cyan / teal ocean palette · extends styles.css
═══════════════════════════════════════════════ */

.trip-body { background: var(--bg-soft); padding-top: 96px; }

/* ── Breadcrumbs ─────────────────────────────── */
.trip-crumbs {
  max-width: 1400px; margin: 0 auto; padding: 18px 24px 0;
  font-size: 13px; color: var(--muted);
}
.trip-crumbs a { color: var(--primary); text-decoration: none; }
.trip-crumbs a:hover { text-decoration: underline; }
.trip-crumbs .sep { margin: 0 8px; color: var(--dim); }
.trip-crumbs .current { color: var(--deep); font-weight: 500; }

/* ── Hero (3-col) ────────────────────────────── */
.trip-hero {
  max-width: 1400px; margin: 0 auto; padding: 22px 24px 48px;
}
.trip-hero-inner {
  display: grid; gap: 28px;
  grid-template-columns: 300px minmax(0,1fr) 360px;
  align-items: start;
}

/* Info column */
.trip-info { padding-top: 4px; }
.trip-eyebrow {
  font-family: 'Josefin Sans', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--primary);
  margin-bottom: 10px;
}
.trip-title {
  font-family: 'Josefin Sans', sans-serif; font-size: 30px; font-weight: 700;
  line-height: 1.12; color: var(--deep); margin-bottom: 12px;
}
.trip-rating {
  display: flex; align-items: center; gap: 8px; margin-bottom: 22px;
  font-size: 13px; color: var(--muted);
}
.trip-rating .stars { color: var(--accent); letter-spacing: 1px; }
.trip-rating strong { color: var(--deep); font-weight: 600; }
.trip-specs {
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr; row-gap: 0;
}
.trip-specs .row {
  display: grid; grid-template-columns: 110px 1fr; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.trip-specs dt { color: var(--muted); font-weight: 500; }
.trip-specs dd { color: var(--deep); font-weight: 500; }

.trip-spec-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}
.spec-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: 100px;
  background: var(--primary-soft); border: 1px solid var(--border);
  font-size: 12px; color: var(--deep); font-weight: 500;
}
.spec-badge i { color: var(--primary); font-size: 11px; }

/* Marine Life & Conditions button — layout in the left column.
   The gradient-outline visual lives on the base .visibility-btn in styles.css
   so it's shared with the homepage cards. */
.trip-spec-badges:has(.trip-visibility-btn) {
  margin-top: 18px; padding-top: 18px;
  border-top: 1px solid var(--border);
}

/* Gallery */
.trip-gallery { min-width: 0; display: flex; flex-direction: column; align-items: center; padding-top: 60px; }
.gallery-main {
  aspect-ratio: 1 / 1;
  width: 100%; max-width: 440px;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--primary-soft);
  box-shadow: var(--shadow);
  position: relative;
}
.gallery-main img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.gallery-main:hover img { transform: scale(1.02); }
.gallery-main .ph {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--primary-soft) 0%, var(--bg3) 100%);
  color: var(--deep);
}
.gallery-main .ph i { font-size: 36px; color: var(--primary); opacity: 0.55; }
.gallery-main .ph span { font-size: 13px; font-weight: 500; color: var(--muted); }
.gallery-thumbs {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-top: 14px;
  width: 100%;
}
.gallery-thumbs-row {
  display: flex; gap: 8px;
}
.gallery-arrow {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%; border: 1px solid var(--border-strong);
  background: var(--white); color: var(--deep);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: var(--transition);
}
.gallery-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.gallery-thumb {
  width: 58px; height: 58px; aspect-ratio: 1 / 1;
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
  background: var(--primary-soft); position: relative; flex-shrink: 0;
}
.gallery-thumb.active { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(6,182,212,0.18); }
.gallery-thumb:hover { border-color: var(--border-hover); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb .ph-mini {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary-soft), var(--bg3));
  color: var(--primary);
}
.gallery-thumb .ph-mini i { font-size: 16px; opacity: 0.55; }

/* Buy-box (glass-morphic — mirrors .vm-dialog / .site-header) */
.trip-buy {
  position: sticky; top: 96px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.64) 100%);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-lg); padding: 22px;
  box-shadow:
    0 24px 60px rgba(6, 95, 120, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .trip-buy { background: rgba(255, 255, 255, 0.96); }
}
.buy-price { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px dashed var(--border); }
.buy-price-row { display: flex; align-items: baseline; gap: 10px; }
.buy-srp { font-size: 16px; color: var(--dim); text-decoration: line-through; }
.buy-amount {
  font-family: 'Josefin Sans', sans-serif; font-size: 30px; font-weight: 700;
  color: var(--deep);
}
.buy-sub { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
.buy-save {
  display: inline-block; margin-top: 8px; font-size: 12px; font-weight: 600;
  background: var(--green); color: #fff; padding: 3px 10px; border-radius: 100px;
}
.buy-field { margin-bottom: 14px; }
.buy-field label {
  display: block; font-size: 11.5px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 6px;
}
/* Hero-style glass form fields — applies to .buy-field, .tf-field, .book-field */
.tf-field input, .tf-field select,
.book-field input,
.buy-field select {
  width: 100%; max-width: 100%; box-sizing: border-box;
  padding: 12px 14px; padding-right: 38px;
  font: 500 14.5px/1.2 'Roboto', sans-serif;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  backdrop-filter: blur(8px) saturate(140%);
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius);
  outline: none; cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.tf-field select, .buy-field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2306b6d4' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.tf-field input:hover, .tf-field select:hover,
.book-field input:hover, .buy-field select:hover { border-color: rgba(6, 182, 212, 0.4); }
.tf-field input:focus, .tf-field select:focus,
.book-field input:focus, .buy-field select:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.buy-stepper {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid rgba(15, 23, 42, 0.08); border-radius: var(--radius);
  overflow: hidden; background: rgba(255, 255, 255, 0.45);
}
.buy-stepper button {
  width: 40px; height: 40px; border: 0; background: rgba(255, 255, 255, 0.55);
  color: var(--deep); font-size: 20px; font-weight: 600; cursor: pointer;
}
.buy-stepper button:hover { background: rgba(255, 255, 255, 0.85); }
.buy-stepper input {
  flex: 1; border: 0; text-align: center; font-size: 15px; font-weight: 600;
  color: var(--deep); background: transparent; font-family: inherit;
}
.buy-addons { margin: 8px 0 12px; }
.buy-addon {
  display: flex; gap: 10px; padding: 10px; margin-bottom: 6px;
  background: rgba(255, 255, 255, 0.42); border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius); cursor: pointer; transition: var(--transition);
}
.buy-addon:hover { background: rgba(255, 255, 255, 0.6); border-color: rgba(255, 255, 255, 0.85); }
.buy-addon input { margin-top: 2px; accent-color: var(--primary); }
.buy-addon-body { flex: 1; min-width: 0; }
.buy-addon-top { display: flex; justify-content: space-between; gap: 8px; }
.buy-addon-label { font-size: 13px; font-weight: 600; color: var(--deep); }
.buy-addon-price { font-size: 12.5px; font-weight: 600; color: var(--primary); white-space: nowrap; }
.buy-addon-note { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

.buy-total {
  padding: 12px; margin-bottom: 12px; background: var(--primary-soft);
  border-radius: var(--radius); display: flex; justify-content: space-between;
  align-items: center; font-size: 14px;
}
.buy-total-label { color: var(--muted); font-weight: 500; }
.buy-total-amount {
  font-family: 'Josefin Sans', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--deep);
}

.buy-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px 16px; border-radius: var(--radius);
  font-family: inherit; font-size: 14.5px; font-weight: 600;
  cursor: pointer; transition: var(--transition); border: 0;
  text-decoration: none; margin-bottom: 8px;
}
.buy-cta-primary {
  position: relative; overflow: hidden;
  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: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  box-shadow:
    0 8px 22px rgba(29, 78, 216, 0.32),
    0 4px 12px rgba(16, 185, 129, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.buy-cta-primary::after {
  content: ""; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.32) 50%, transparent 100%);
  transform: skewX(-18deg);
  transition: left .7s ease;
  pointer-events: none;
}
.buy-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 32px rgba(29, 78, 216, 0.45),
    0 6px 16px rgba(16, 185, 129, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.buy-cta-primary:hover::after { left: 140%; }
.buy-cta-secondary {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--deep);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.buy-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.9);
}

.buy-trust { list-style: none; padding: 14px 0 0; border-top: 1px dashed rgba(15, 23, 42, 0.08); margin-top: 8px; }
.buy-trust li {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted); margin-bottom: 6px;
}
.buy-trust i { color: var(--primary); width: 14px; }

/* ── Smart bar ───────────────────────────────── */
/* ── Tabs ──────────────────────────────────── */
.trip-tabs-wrap {
  position: sticky; top: 96px; z-index: 40;
  padding: 14px 24px 8px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, rgba(241,245,249,0) 100%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.trip-tabs {
  max-width: max-content; margin: 0 auto;
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.64) 100%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  box-shadow:
    0 8px 24px rgba(6, 95, 120, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  overflow-x: auto; scrollbar-width: none;
  max-width: 100%;
}
.trip-tabs::-webkit-scrollbar { display: none; }
.trip-tab {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 999px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0;
  color: var(--muted); background: transparent;
  border: 0; cursor: pointer; white-space: nowrap;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}
.trip-tab i { font-size: 12px; opacity: .85; }
.trip-tab:hover { color: var(--deep); background: rgba(255, 255, 255, 0.55); }
.trip-tab.active {
  color: #fff;
  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%);
  box-shadow:
    0 6px 16px rgba(29, 78, 216, 0.28),
    0 3px 8px rgba(16, 185, 129, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}
.trip-tab.active i { opacity: 1; }

/* ── Section shell ───────────────────────────── */
.trip-section { padding: 32px 24px; }
.trip-section .section-wrap { max-width: 1400px; margin: 0 auto; text-align: left; }
.trip-section h2 {
  font-family: 'Josefin Sans', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--deep); margin: 0 0 6px; text-align: left;
}
.trip-section .section-subtitle {
  font-size: 13.5px; color: var(--muted); margin: 0 0 18px;
  text-align: left;
}

/* ── Inclusions ─────────────────────────────── */
.inc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.inc-col {
  position: relative;
  background: linear-gradient(180deg,
    rgba(16, 185, 129, 0.07) 0%, rgba(255, 255, 255, 0.6) 60%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
}
.inc-col-out {
  background: linear-gradient(180deg,
    rgba(244, 63, 94, 0.06) 0%, rgba(255, 255, 255, 0.6) 60%);
  border-color: rgba(244, 63, 94, 0.18);
}
.inc-col-head {
  font-family: 'Josefin Sans', sans-serif; font-weight: 700; font-size: 15px;
  color: var(--deep); margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 8px;
}
.inc-col-head i {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-grid; place-items: center; font-size: 11px;
  background: rgba(16, 185, 129, 0.16); color: #047857;
}
.inc-col-out .inc-col-head i { background: rgba(244, 63, 94, 0.14); color: #be123c; }
.inc-col ul { list-style: none; padding: 0; margin: 0; }
.inc-col li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 13.5px; color: var(--deep); line-height: 1.5;
}
.inc-col li + li { border-top: 1px dashed rgba(15, 23, 42, 0.06); }
.inc-col li::before {
  content: "✓"; position: absolute; left: 0; top: 7px;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(16, 185, 129, 0.16); color: #047857;
  font-size: 10px; font-weight: 700;
  display: inline-grid; place-items: center;
}
.inc-col-out li::before { content: "✕"; background: rgba(244, 63, 94, 0.14); color: #be123c; }

/* ── Sightings calendar ─────────────────────── */
.sightings-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; overflow-x: auto; }
.sightings-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.sightings-table th, .sightings-table td {
  padding: 8px 6px; text-align: center; font-size: 12px;
}
.sightings-table thead th {
  color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.6px;
  font-size: 10.5px; padding-bottom: 12px;
}
.sightings-table tbody th {
  text-align: left; padding-right: 16px; font-weight: 500;
  color: var(--deep); white-space: nowrap;
}
.sight-cell {
  width: 36px; height: 28px; border-radius: 4px; display: inline-block;
  background: var(--border);
}
.sight-cell.l1 { background: rgba(148, 163, 184, 0.24); }
.sight-cell.l2 { background: rgba(6, 182, 212, 0.45); }
.sight-cell.l3 { background: var(--primary); }
.sightings-legend {
  display: flex; gap: 16px; align-items: center; margin-top: 16px;
  font-size: 12px; color: var(--muted); flex-wrap: wrap;
}
.leg-dot {
  width: 14px; height: 14px; border-radius: 3px; display: inline-block;
  vertical-align: middle; margin-right: 6px;
}
.leg-dot.l1 { background: rgba(148, 163, 184, 0.24); }
.leg-dot.l2 { background: rgba(6, 182, 212, 0.45); }
.leg-dot.l3 { background: var(--primary); }

/* ── Itinerary timeline ─────────────────────── */
.itinerary { list-style: none; padding: 0; margin: 0; position: relative; }
.itinerary::before {
  content: ""; position: absolute; left: 22px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, #10b981 0%, #06b6d4 50%, #1d4ed8 100%);
  border-radius: 2px;
}
.itin-item { display: flex; gap: 18px; padding: 10px 0; position: relative; }
.itin-day {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #1d4ed8 100%);
  color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Josefin Sans', sans-serif; font-weight: 700; font-size: 10.5px;
  line-height: 1;
  box-shadow:
    0 4px 12px rgba(29, 78, 216, 0.22),
    0 0 0 4px var(--bg-soft);
}
.itin-day strong { font-size: 16px; display: block; }
.itin-body { flex: 1; padding-top: 4px; }
.itin-title { font-weight: 600; color: var(--deep); margin-bottom: 4px; font-size: 14.5px; }
.itin-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── Dive sites ─────────────────────────────── */
.sites-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.site-card {
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.55) 100%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.site-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(6, 95, 120, 0.14);
  border-color: rgba(6, 182, 212, 0.35);
}
.site-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.site-card-name { font-family: 'Josefin Sans', sans-serif; font-weight: 600; color: var(--deep); font-size: 16px; }
.site-card-chip {
  font-size: 10.5px; font-weight: 600; padding: 3px 8px; border-radius: 100px;
  background: var(--primary-soft); color: var(--primary); text-transform: uppercase; letter-spacing: 0.6px;
}
.site-card-depth { font-size: 12px; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.site-card-note { font-size: 13px; color: var(--deep); line-height: 1.45; }

/* ── Partner card ────────────────────────────── */
.partner-card {
  position: relative;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.58) 100%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow:
    0 24px 60px rgba(6, 95, 120, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  display: grid; grid-template-columns: 72px 1fr auto; gap: 20px; align-items: center;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .partner-card { background: rgba(255, 255, 255, 0.96); }
}
.partner-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.6) 100%);
  -webkit-backdrop-filter: blur(14px) saturate(170%);
  backdrop-filter: blur(14px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 6px 18px rgba(6, 95, 120, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  display: grid; place-items: center; padding: 12px; overflow: hidden;
}
.partner-avatar img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.partner-body h3 {
  font-family: 'Josefin Sans', sans-serif; font-size: 20px; font-weight: 600;
  color: var(--deep); margin-bottom: 4px;
}
.partner-body p { font-size: 13.5px; color: var(--muted); margin-bottom: 8px; line-height: 1.45; }
.partner-meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--muted); }
.partner-meta span { display: inline-flex; align-items: center; gap: 5px; }
.partner-meta i { color: var(--primary); }
.partner-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #1d4ed8 100%) border-box;
  border: 2px solid transparent;
  color: var(--deep);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
  padding: 12px 24px; border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(6, 95, 120, 0.10);
}

/* ── Travel forms (flights + stay) ───────────── */
.travel-form {
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.58) 100%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 12px 32px rgba(6, 95, 120, 0.10);
}
.tf-grid {
  display: grid; gap: 14px; margin-bottom: 16px;
  grid-template-columns: repeat(3, 1fr);
}
.tf-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.tf-field.tf-wide { grid-column: span 2; }
.tf-field label {
  font-size: 11.5px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.8px;
}
.tf-field label small {
  text-transform: none; letter-spacing: 0; font-size: 11.5px; color: var(--dim); font-weight: 400;
}
.tf-field > small { font-size: 11px; color: var(--dim); }
.tf-field input, .tf-field select { /* shared rule defined above */
}
.tf-field input:focus, .tf-field select:focus { /* shared rule defined above */
}
.travel-btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px;
  border-radius: var(--radius); font-size: 14px; font-weight: 600; font-family: inherit;
  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: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff; text-decoration: none; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow:
    0 8px 22px rgba(29, 78, 216, 0.32),
    0 4px 12px rgba(16, 185, 129, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.travel-btn::after {
  content: ""; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.32) 50%, transparent 100%);
  transform: skewX(-18deg); transition: left .7s ease; pointer-events: none;
}
.travel-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 32px rgba(29, 78, 216, 0.45),
    0 6px 16px rgba(16, 185, 129, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.travel-btn:hover::after { left: 140%; }
.travel-meta {
  display: flex; flex-wrap: wrap; gap: 24px; margin-top: 20px;
  padding-top: 18px; border-top: 1px dashed var(--border);
}
.travel-fact {
  font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: 8px;
}
.travel-fact i { color: var(--primary); }
.travel-fact strong { color: var(--deep); font-weight: 600; }

@media (max-width: 760px) {
  .tf-grid { grid-template-columns: repeat(2, 1fr); }
  .tf-field.tf-wide { grid-column: span 2; }
  .travel-form { padding: 16px; }
  .travel-btn { width: 100%; justify-content: center; }
}
@media (max-width: 420px) {
  .tf-grid { grid-template-columns: 1fr; gap: 10px; }
  .tf-field.tf-wide { grid-column: span 1; }
}

/* ── Reviews ─────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.review-card {
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.55) 100%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}
.review-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.review-author { font-weight: 600; color: var(--deep); font-size: 14px; }
.review-author small { display: block; font-size: 11.5px; color: var(--muted); font-weight: 400; }
.review-stars { color: var(--accent); font-size: 12px; letter-spacing: 1.5px; }
.review-text { font-size: 13.5px; color: var(--deep); line-height: 1.55; margin-bottom: 10px; }
.review-foot { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--muted); }
.review-foot .verified { color: var(--green); font-weight: 600; }

/* ── FAQ ─────────────────────────────────────── */
.faq-list { max-width: 800px; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item[open] {
  box-shadow: 0 8px 22px rgba(6, 95, 120, 0.10);
  border-color: rgba(6, 182, 212, 0.28);
}
.faq-item > summary {
  list-style: none;
  padding: 14px 18px;
  font-weight: 600; color: var(--deep); font-size: 14.5px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: ""; width: 9px; height: 9px;
  border-right: 2px solid var(--primary); border-bottom: 2px solid var(--primary);
  transform: rotate(45deg); transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item[open] > summary::after { transform: rotate(-135deg); }
.faq-item > p {
  margin: 0; padding: 0 18px 14px;
  font-size: 13.5px; color: var(--muted); line-height: 1.6;
}

/* ── Final CTA ───────────────────────────────── */
.trip-final-cta {
  position: relative;
  background:
    linear-gradient(135deg, rgba(12, 63, 83, 0.85) 0%, rgba(8, 145, 178, 0.72) 100%),
    url('https://images.pexels.com/photos/7970768/pexels-photo-7970768.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
  color: #fff; padding: 80px 24px; text-align: center;
  overflow: hidden;
}
.trip-final-cta::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at top, rgba(255,255,255,0.08), transparent 60%);
}
.final-cta-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.trip-final-cta h2 {
  font-family: 'Josefin Sans', sans-serif; font-size: 32px; font-weight: 700;
  margin-bottom: 14px; color: #fff; letter-spacing: -0.3px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}
.trip-final-cta p { color: rgba(255,255,255,0.94); margin-bottom: 26px; font-size: 15px; line-height: 1.5; }
.final-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.final-cta-buttons .buy-cta { width: auto; min-width: 220px; margin: 0; }
.final-cta-buttons .buy-cta-secondary {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.4);
}
.final-cta-buttons .buy-cta-secondary:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ── Booking modal ───────────────────────────── */
.book-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: none; align-items: flex-start; justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
}
.book-modal.open { display: flex; }
.book-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.55); backdrop-filter: blur(4px); }
.book-panel {
  position: relative;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.64) 100%);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-xl);
  max-width: 480px; width: 100%; padding: 28px 28px 22px;
  box-shadow: 0 24px 60px rgba(6, 95, 120, 0.3);
  max-height: calc(100vh - 80px); overflow-y: auto;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .book-panel { background: rgba(255, 255, 255, 0.96); }
}
.book-close {
  position: absolute; top: 14px; right: 14px; width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7); color: var(--muted);
  border: 1px solid rgba(15, 23, 42, 0.08); font-size: 14px; cursor: pointer;
  display: grid; place-items: center;
}
.book-close:hover { background: rgba(255, 255, 255, 0.9); color: var(--text); }

.book-head { margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px dashed var(--border); }
.book-eyebrow {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  color: var(--primary); margin-bottom: 6px;
}
.book-panel h3 {
  font-family: 'Josefin Sans', sans-serif; font-size: 20px; font-weight: 700;
  color: var(--deep); margin-bottom: 4px; line-height: 1.2;
}
.book-sub { font-size: 13px; color: var(--muted); }

.book-field { margin-bottom: 12px; }
.book-field label {
  display: block; font-size: 11.5px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 6px;
}
.book-field input { /* shared rule defined above */ }
.book-field input:focus { /* shared rule defined above */ }

.book-summary {
  background: rgba(255, 255, 255, 0.45); border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius);
  padding: 12px 14px; margin: 16px 0;
}
.bs-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); padding: 4px 0; }
.bs-row strong { color: var(--deep); font-weight: 600; }
.bs-row.bs-total { border-top: 1px solid var(--border); margin-top: 6px; padding-top: 10px; font-size: 14px; color: var(--deep); }
.bs-row.bs-total strong { font-family: 'Josefin Sans', sans-serif; font-size: 17px; font-weight: 700; }

.book-pay { margin-top: 4px; }
.book-err {
  margin-top: 10px; padding: 10px 12px; background: #fef2f2; color: #991b1b;
  border: 1px solid #fecaca; border-radius: var(--radius); font-size: 13px;
}
.book-trust {
  margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--border);
  font-size: 11.5px; color: var(--muted); text-align: center;
}
.book-trust i { color: var(--primary); margin-right: 4px; }

.book-view-success { text-align: center; padding: 20px 0; }
.book-success-icon { font-size: 52px; color: var(--green); margin-bottom: 12px; }
.book-view-success h3 { margin-bottom: 8px; font-size: 22px; }
.book-view-success p { color: var(--muted); font-size: 14px; margin-bottom: 14px; line-height: 1.5; }
.book-success-ref {
  display: inline-block; background: var(--primary-soft); color: var(--deep);
  font-family: 'Josefin Sans', sans-serif; font-weight: 600; font-size: 14px;
  padding: 8px 14px; border-radius: 100px; margin-bottom: 20px;
}
.book-view-success .buy-cta { width: 100%; margin-bottom: 8px; }

/* ── Mobile sticky bar ───────────────────────── */
.trip-mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 255, 255, 0.58) 100%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  padding: 10px 16px; display: none;
  box-shadow:
    0 -10px 28px rgba(6, 95, 120, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  align-items: center; justify-content: space-between; gap: 12px;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .trip-mobile-bar { background: rgba(255, 255, 255, 0.95); }
}
.trip-mobile-bar .m-price {
  font-family: 'Josefin Sans', sans-serif; font-size: 20px; font-weight: 700; color: var(--deep);
}
.trip-mobile-bar .m-price small { display: block; font-size: 11px; color: var(--muted); font-weight: 400; }
.trip-mobile-bar .m-cta {
  position: relative; overflow: hidden;
  flex: 1; max-width: 220px;
  padding: 13px 18px; border-radius: 100px;
  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: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff; font-weight: 600; font-family: inherit;
  text-decoration: none; text-align: center; font-size: 14px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  box-shadow:
    0 8px 22px rgba(29, 78, 216, 0.32),
    0 4px 12px rgba(16, 185, 129, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.trip-mobile-bar .m-cta::after {
  content: ""; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.32) 50%, transparent 100%);
  transform: skewX(-18deg); transition: left .7s ease; pointer-events: none;
}
.trip-mobile-bar .m-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 32px rgba(29, 78, 216, 0.45),
    0 6px 16px rgba(16, 185, 129, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.trip-mobile-bar .m-cta:hover::after { left: 140%; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1100px) {
  .trip-hero-inner { grid-template-columns: 1fr; }
  .trip-info { order: 2; }
  .trip-gallery { order: 1; padding-top: 0; }
  .trip-buy { order: 3; position: static; }
  .trip-specs { max-width: 600px; }
}
@media (max-width: 760px) {
  .trip-hero { padding: 14px 16px 32px; }
  .trip-crumbs { padding: 14px 16px 0; font-size: 12px; }
  .trip-title { font-size: 26px; }
  .trip-section { padding: 28px 16px; }
  .trip-section h2 { font-size: 20px; }
  .trip-tabs-wrap { padding: 12px 12px 6px; }
  .trip-tab { padding: 9px 16px; font-size: 12.5px; gap: 6px; }
  .trip-tab i { font-size: 11px; }
  .inc-grid, .travel-grid { grid-template-columns: 1fr; gap: 16px; }
  .partner-card { grid-template-columns: 64px 1fr; gap: 18px; padding: 20px 18px; }
  .partner-avatar { width: 64px; height: 64px; padding: 9px; }
  .partner-card .partner-badge { grid-column: 1 / -1; justify-self: center; margin-top: 4px; }
  .trip-mobile-bar { display: flex; }
  body.trip-body { padding-top: 76px; padding-bottom: 80px; }
  .final-cta-buttons .buy-cta { width: 100%; }
  .trip-smart { padding: 0 16px; }
}
@media (max-width: 480px) {
  .trip-smart-links { width: 100%; justify-content: flex-start; margin-left: 0; margin-top: 6px; padding-top: 8px; border-top: 1px solid var(--border); }
}

/* ── Mobile glass bottom-sheet select picker ─────────── */
.trip-sheet-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(15, 23, 42, 0.5);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.trip-sheet-overlay.open { opacity: 1; pointer-events: auto; }
.trip-sheet {
  width: 100%; max-width: 520px;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.78) 100%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  padding: 10px 18px 24px;
  max-height: 70vh; overflow-y: auto;
  transform: translateY(100%); transition: transform .3s ease;
  box-shadow: 0 -16px 40px rgba(6, 95, 120, 0.25);
}
.trip-sheet-overlay.open .trip-sheet { transform: translateY(0); }
.trip-sheet-grabber {
  width: 40px; height: 4px; border-radius: 2px;
  background: rgba(15, 23, 42, 0.18);
  margin: 6px auto 14px;
}
.trip-sheet-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.trip-sheet-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--deep); margin: 0;
}
.trip-sheet-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.7); color: var(--muted);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: grid; place-items: center; cursor: pointer;
}
.trip-sheet-list { display: flex; flex-direction: column; gap: 2px; }
.trip-sheet-option {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 14px; border-radius: var(--radius);
  font-size: 14px; color: var(--deep); background: transparent;
  border: 0; cursor: pointer; text-align: left;
  transition: background .15s ease;
}
.trip-sheet-option:hover { background: rgba(6, 182, 212, 0.08); }
.trip-sheet-option.is-selected {
  background: rgba(6, 182, 212, 0.12);
  font-weight: 600; color: var(--primary);
}
.trip-sheet-option.is-selected::after {
  content: "✓"; color: var(--primary); font-weight: 700;
}
