/* =============================================================================
   EaseXplorer Holidays — Shared Theme Stylesheet
   Single source of truth for ALL public pages.
   Do NOT add <style> blocks in individual HTML files.
   ============================================================================= */

/* ─── 1. CSS VARIABLES ─────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --gold:        #c8a96e;
  --gold-light:  #e2c99a;
  --gold-dark:   #8a6c30;
  --gold-dim:    rgba(200, 169, 110, 0.15);
  --dark:        #0e0b06;
  --dark-2:      #1a1510;
  --dark-3:      #252015;
  --cream:       #faf7f2;
  --warm:        #f2ebe0;
  --white:       #ffffff;
  --text:        #1c160a;
  --muted:       #7a6a50;
  --border:      rgba(200, 169, 110, 0.12);

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;

  /* Layout */
  --nav-h:       80px;
  --max-w:       1400px;
  --pad-x:       80px;
  --pad-sec:     130px;

  /* Easing */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── 2. RESET & BASE ──────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: var(--font-sans); cursor: none; }
ul, ol { list-style: none; }

/* ─── 3. CUSTOM CURSOR ─────────────────────────────────────────────────────── */
#cur {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transform: translate(-100vw, 0); /* hidden until first mousemove */
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s;
}

#curR {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(200, 169, 110, 0.55);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
  transform: translate(-100vw, 0); /* hidden until first mousemove */
  transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.35s;
}

/* Cursor enlarges on hoverable elements */
body:has(a:hover) #cur,
body:has(button:hover) #cur {
  width: 6px;
  height: 6px;
}

body:has(a:hover) #curR,
body:has(button:hover) #curR {
  width: 56px;
  height: 56px;
  background: rgba(200, 169, 110, 0.06);
}

/* ─── 4. NAVIGATION ────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav-h);
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}

nav.solid {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(200, 169, 110, 0.06);
}

/* Logo */
.nav-logo {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  transition: color 0.5s;
  flex-shrink: 0;
}

nav.solid .nav-logo { color: var(--dark); }

.nav-logo em {
  color: var(--gold);
  font-style: normal;
}

.nav-logo-img {
  height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
}

.foot-logo-img {
  height: 110px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}

nav.solid .nav-links a { color: var(--muted); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Book Now button */
.nav-btn {
  background: transparent;
  border: 1px solid rgba(200, 169, 110, 0.55);
  color: var(--gold);
  padding: 9px 24px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.35s, color 0.35s, border-color 0.35s;
  white-space: nowrap;
}

.nav-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* Mobile hamburger */
.nav-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: none;
}

.nav-ham span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}

nav.solid .nav-ham span { background: var(--dark); }

.nav-ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav dropdown */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(14, 11, 6, 0.97);
  backdrop-filter: blur(20px);
  padding: 24px var(--pad-x);
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  z-index: 499;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  padding: 6px 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.08);
}

.nav-mobile a:hover,
.nav-mobile a.active { color: var(--gold); }

/* ─── 5. HERO SECTION (Full Viewport) ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(200, 169, 110, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(100, 140, 80, 0.07) 0%, transparent 60%),
    linear-gradient(160deg, #0a0804 0%, #140f06 25%, #0e1408 50%, #060c12 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: -80px;
  background-image:
    linear-gradient(rgba(200, 169, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 110, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  will-change: transform;
  animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}

/* Light beams */
.beam {
  position: absolute;
  width: 2px;
  background: linear-gradient(to bottom, transparent 0%, rgba(200, 169, 110, 0.45) 50%, transparent 100%);
  will-change: transform, opacity;
  opacity: 0;
  pointer-events: none;
}

@keyframes beamFall {
  0%   { transform: translateY(-30%); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(130%); opacity: 0; }
}

/* Hero inner content */
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 32px;
}

/* Eyebrow label with lines */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  animation: riseIn 1s 0.2s both;
}

.hero-label::before,
.hero-label::after {
  content: '';
  width: 60px;
  height: 1px;
}

.hero-label::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.hero-label::after  { background: linear-gradient(90deg, var(--gold), transparent); }

.hero-label span {
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
  animation: riseIn 1s 0.4s both;
  letter-spacing: -1px;
}

.hero h1 strong { font-weight: 600; display: block; }

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 32px;
  animation: riseIn 1s 0.55s both;
  letter-spacing: 1px;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.42);
  font-size: 15px;
  line-height: 2;
  font-weight: 300;
  letter-spacing: 0.4px;
  max-width: 500px;
  margin: 0 auto 48px;
  animation: riseIn 1s 0.7s both;
}

.hero-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 72px;
  animation: riseIn 1s 0.85s both;
  flex-wrap: wrap;
}

/* Hero buttons */
.hbtn-primary {
  background: var(--gold);
  color: #fff;
  padding: 15px 42px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  border: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.35s, transform 0.35s, box-shadow 0.35s;
}

.hbtn-primary:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200, 169, 110, 0.4);
}

.hbtn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  padding: 15px 42px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.18);
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: border-color 0.35s, color 0.35s, transform 0.35s;
}

.hbtn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* Hero search bar */
.hero-search {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  animation: riseIn 1s 1s both;
  max-width: 900px;
  margin: 0 auto;
}

.hsf {
  flex: 1;
  padding: 16px 22px;
  border-right: 1px solid rgba(200, 169, 110, 0.1);
  text-align: left;
}

.hsf:last-of-type { border-right: none; }

.hsf label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.hsf input,
.hsf select {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 300;
  width: 100%;
  outline: none;
}

.hsf select option { background: #1a1206; color: #fff; }
.hsf input::placeholder { color: rgba(255, 255, 255, 0.22); }

.hs-btn {
  background: var(--gold);
  border: none;
  padding: 0 34px;
  font-size: 10px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
  flex-shrink: 0;
  min-width: 110px;
}

.hs-btn:hover {
  background: var(--gold-light);
  color: var(--dark);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: riseIn 1.2s 1.3s both;
}

.scroll-hint span {
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1px solid rgba(200, 169, 110, 0.35);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}

.scroll-dot {
  width: 3px;
  height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBob 2s infinite;
}

@keyframes scrollBob {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%       { transform: translateY(10px); opacity: 0; }
}

/* ─── 6. PAGE HERO (Inner pages ~50vh) ────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 380px;
  max-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(155deg, #0a0804 0%, #140f06 40%, #0a0e08 70%, #060c12 100%);
  padding-top: var(--nav-h);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 169, 110, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 110, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 32px;
}

.page-hero-eyebrow {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 16px;
  opacity: 0.8;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.page-hero h1 strong { font-weight: 600; }

.page-hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2.5vw, 22px);
  font-style: italic;
  color: rgba(200, 169, 110, 0.7);
  font-weight: 300;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb span { color: var(--gold); }

.breadcrumb-sep { font-size: 10px; opacity: 0.4; }

/* ─── 7. MARQUEE STRIP ─────────────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--gold);
  padding: 13px 0;
  overflow: hidden;
  flex-shrink: 0;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── 8. STATS BAR ─────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(200, 169, 110, 0.1);
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat-cell {
  padding: 42px 20px;
  text-align: center;
  border-right: 1px solid rgba(200, 169, 110, 0.08);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}

.stat-cell:last-child { border-right: none; }

.stat-cell::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}

.stat-cell:hover { background: rgba(200, 169, 110, 0.025); }
.stat-cell:hover::before { width: 56%; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
  display: block;
}

.stat-lbl {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 400;
}

/* ─── 9. SECTION LAYOUT ────────────────────────────────────────────────────── */
.wsec {
  padding: var(--pad-sec) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

.wsec-full {
  padding: var(--pad-sec) 0;
}

.bg-white  { background: var(--white); }
.bg-cream  { background: var(--cream); }
.bg-warm   { background: var(--warm); }
.bg-dark   { background: var(--dark); }

/* Eyebrow label */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.eyebrow span {
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* Section title */
.stitle {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}

.stitle strong { font-weight: 600; }

.stitle-light { color: #fff; }

/* Section subtitle */
.ssub {
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
  font-weight: 300;
  max-width: 440px;
}

/* Section header row (title left + link right) */
.sec-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.sec-link {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(200, 169, 110, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
  white-space: nowrap;
}

.sec-link:hover { border-color: var(--gold); }

/* ─── 10. TOUR CARDS ───────────────────────────────────────────────────────── */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.tour-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.42s var(--ease), box-shadow 0.42s var(--ease);
  position: relative;
  box-shadow: 0 4px 24px rgba(14, 11, 6, 0.07);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(30, 20, 8, 0.15);
}

.tour-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s var(--ease);
  z-index: 2;
}

.tour-card:hover::before { transform: scaleX(1); }

.tour-img {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1a3a, #0d3b2e);
}

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.72s var(--ease);
  display: block;
}

.tour-card:hover .tour-img img { transform: scale(1.08); }

/* Bottom gradient overlay on home card images */
.tour-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(14,11,6,0.52) 0%,
    rgba(14,11,6,0.10) 42%,
    transparent 68%);
  pointer-events: none;
}

.tour-type-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 13px;
  border-radius: 50px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  z-index: 1;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.badge-honeymoon { background: rgba(180, 60, 110, 0.82); color: #fff; }
.badge-group     { background: rgba(50, 90, 200, 0.82); color: #fff; }
.badge-solo      { background: rgba(20, 140, 90, 0.82); color: #fff; }

/* Duration chip overlaid on home card image */
.tour-dur-chip {
  position: absolute;
  bottom: 13px;
  left: 15px;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.tour-card-body {
  padding: 24px 26px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tour-card-country {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Gold rule below location */
.tour-card-divider {
  width: 30px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border: none;
  margin-bottom: 11px;
}

.tour-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
}

.tour-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  flex: 1;
}

.tour-card-meta-item {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.tour-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(200,169,110,0.18);
  gap: 12px;
}

.tour-price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tour-price-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
}

.tour-price {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
}

.tour-price small {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 2px;
}

/* ─── 11. DESTINATION GRID ─────────────────────────────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 340px 240px;
  gap: 3px;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 56px;
}

.dc {
  position: relative;
  overflow: hidden;
  cursor: none;
}

.dc.wide { grid-column: span 2; }

.dc-inner {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}

.dc:hover .dc-inner { transform: scale(1.07); }

.dc-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 5, 1, 0.88) 0%, rgba(8, 5, 1, 0.12) 55%, transparent 100%);
  transition: opacity 0.4s;
}

.dc:hover .dc-shade { opacity: 0.72; }

.dc-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px 30px;
  transform: translateY(5px);
  transition: transform 0.5s var(--ease);
}

.dc:hover .dc-info { transform: translateY(0); }

.dc-tag {
  font-size: 10px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.dc-name {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
}

.dc.sm .dc-name { font-size: 20px; }

.dc-pill {
  display: inline-block;
  background: rgba(200, 169, 110, 0.22);
  border: 1px solid rgba(200, 169, 110, 0.4);
  color: var(--gold-light);
  font-size: 11px;
  padding: 4px 14px;
  border-radius: 2px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.dc:hover .dc-pill {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ─── 12. PACKAGE CARDS ────────────────────────────────────────────────────── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid rgba(200, 169, 110, 0.1);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 56px;
}

.pcard {
  background: var(--white);
  padding: 42px 34px;
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}

.pcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.pcard:hover::before { transform: scaleX(1); }
.pcard:hover { background: var(--cream); }

.pcard-num {
  font-family: var(--font-serif);
  font-size: 70px;
  font-weight: 300;
  color: rgba(200, 169, 110, 0.1);
  line-height: 1;
  margin-bottom: -14px;
}

.pcard-icon { font-size: 44px; margin-bottom: 18px; }

.pcard h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.pcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}

.ptag {
  font-size: 11px;
  color: var(--muted);
  border: 1px solid rgba(200, 169, 110, 0.2);
  padding: 3px 11px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

.pcard p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 26px;
}

.pcard-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.pprice {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}

.pprice small {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
}

/* ─── 13. TESTIMONIAL CARDS ────────────────────────────────────────────────── */
.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200, 169, 110, 0.07);
  border: 1px solid rgba(200, 169, 110, 0.07);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 56px;
}

.tcard {
  background: rgba(255, 255, 255, 0.025);
  padding: 44px 34px;
  transition: background 0.4s;
}

.tcard:hover { background: rgba(200, 169, 110, 0.04); }

.tcard-quote {
  font-family: var(--font-serif);
  font-size: 76px;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.28;
  margin-bottom: 10px;
}

.tcard p {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  margin-bottom: 26px;
}

.tcard-stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 22px;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 22px;
  border-top: 1px solid rgba(200, 169, 110, 0.1);
}

.tav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  overflow: hidden;
}

.tav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tname {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 2px;
}

.ttrip {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}

/* ─── 14. GALLERY GRID ─────────────────────────────────────────────────────── */
.gallery-grid {
  columns: 4;
  column-gap: 12px;
  margin-top: 56px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: none;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 11, 6, 0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-caption {
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 3px;
}

.gallery-loc {
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Gallery item button wrapper */
.gallery-item-btn {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: none;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-item-btn img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease);
}

.gallery-item-btn:hover img { transform: scale(1.05); }
.gallery-item-btn:hover .gallery-overlay { opacity: 1; }

/* Caption text inside gallery overlay */
.gallery-cap {
  font-size: 13px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 3px;
}

/* Gallery page section padding */
.gallery-section {
  padding: 72px 0 96px;
  background: var(--cream);
}

/* Skeleton loader */
.gallery-skeleton {
  background: linear-gradient(90deg, var(--warm) 25%, var(--cream) 50%, var(--warm) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  break-inside: avoid;
  margin-bottom: 6px;
}

/* ─── 15. LIGHTBOX ─────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 8, 4, 0.97);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  animation: fadeIn 0.3s var(--ease);
}

.lightbox.open { display: flex; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lb-img-wrap {
  position: relative;
  max-width: 900px;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img-wrap img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 3px;
}

.lb-info {
  position: absolute;
  bottom: -52px;
  left: 0;
  right: 0;
  text-align: center;
}

.lb-caption {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3px;
}

.lb-location {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lb-close {
  position: fixed;
  top: 24px;
  right: 28px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.lb-close:hover { border-color: var(--gold); color: var(--gold); }

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid rgba(200, 169, 110, 0.25);
  color: var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lb-prev { left: 24px; }
.lb-next { right: 24px; }

.lb-prev:hover,
.lb-next:hover { background: rgba(200, 169, 110, 0.25); }

/* ─── 16. TEAM CARDS ───────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.team-card {
  text-align: center;
  transition: transform 0.4s var(--ease);
}

.team-card:hover { transform: translateY(-6px); }

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.team-card:hover .team-photo img { transform: scale(1.05); }

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 48px;
  color: rgba(200, 169, 110, 0.3);
}

.team-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.spec-pill {
  font-size: 11px;
  color: var(--muted);
  background: var(--warm);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 2px;
}

/* ─── 17. FILTER BAR ───────────────────────────────────────────────────────── */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  padding: 18px var(--pad-x);
}

.filter-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Type filter tabs */
.filter-tabs {
  display: flex;
  gap: 6px;
}

.filter-tab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 7px 18px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* Dropdowns */
.filter-select {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 7px 28px 7px 14px;
  border-radius: 2px;
  font-size: 12px;
  font-family: var(--font-sans);
  outline: none;
  cursor: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237a6a50'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.3s;
  min-width: 130px;
}

.filter-select:focus { border-color: var(--gold); }

.filter-count {
  font-size: 12px;
  color: var(--muted);
  margin-left: auto;
}

.filter-clear {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(200, 169, 110, 0.3);
  transition: border-color 0.3s;
  padding-bottom: 1px;
}

.filter-clear:hover { border-color: var(--gold); }

/* Filter pill tabs (alias for filter-tabs, used on destinations page) */
.filter-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.filter-pill {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 7px 18px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  cursor: none;
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.filter-dropdowns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-dropdowns select {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 7px 28px 7px 14px;
  border-radius: 2px;
  font-size: 12px;
  font-family: var(--font-sans);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237a6a50'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color 0.3s;
  min-width: 130px;
  cursor: pointer;
}

.filter-dropdowns select:focus { border-color: var(--gold); }
.filter-dropdowns select:disabled { opacity: 0.5; }

/* ─── Destinations page — package card grid ────────────────────────────────── */
.dest-section {
  padding: 72px 0 96px;
  background: var(--cream);
}

.dest-tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dest-card-wrap {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(14, 11, 6, 0.07);
  transition: transform 0.42s var(--ease), box-shadow 0.42s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Gold accent line that slides in from left on hover */
.dest-card-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s var(--ease);
  z-index: 2;
}

.dest-card-wrap:hover::before { transform: scaleX(1); }

.dest-card-wrap:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(14, 11, 6, 0.15);
}

/* ── Image area ─────────────────────────────────────────────────── */
.dest-card-img {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--warm);
}

.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.72s var(--ease);
  display: block;
}

.dest-card-wrap:hover .dest-card-img img { transform: scale(1.08); }

/* Bottom gradient so chips are legible over any image */
.dest-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(14,11,6,0.55) 0%,
    rgba(14,11,6,0.12) 45%,
    transparent 70%);
  pointer-events: none;
}

.dest-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a0d3d 0%, #0d3b2e 60%, #3a1a00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  font-family: var(--font-serif);
  color: rgba(200,169,110,0.25);
}

/* Type badge — top left, frosted pill */
.dest-type-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
}

.badge-general   { background: rgba(200,169,110,0.82); color: #fff; }

/* Duration chip — bottom left, overlaid on image */
.dest-card-dur-chip {
  position: absolute;
  bottom: 13px;
  left: 15px;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  letter-spacing: 0.3px;
}

/* Group-size chip — bottom right, overlaid on image */
.dest-card-pax-chip {
  position: absolute;
  bottom: 13px;
  right: 15px;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  background: rgba(14,11,6,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 3px 10px;
  border-radius: 50px;
  z-index: 1;
}

/* ── Card body ──────────────────────────────────────────────────── */
.dest-card-body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Location row */
.dest-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.dest-card-country {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.dest-card-group { display: none; } /* moved to image chips */

/* Thin gold rule between location and title */
.dest-card-divider {
  width: 32px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 12px;
  border: none;
}

.dest-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
}

.dest-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}

/* ── Footer ─────────────────────────────────────────────────────── */
.dest-card-footer {
  border-top: 1px solid rgba(200,169,110,0.18);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dest-card-price-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.dest-card-price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dest-card-price-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--muted);
  text-transform: uppercase;
}

.dest-card-price {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
}

.dest-card-price small {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 2px;
}

.dest-card-duration { display: none; } /* moved to image chip */

.dest-card-actions {
  display: flex;
  gap: 10px;
}

.dest-view-btn {
  flex: 2;
  text-align: center;
  padding: 12px 16px;
  font-size: 11px;
  letter-spacing: 1.4px;
  border-radius: 6px;
}

.dest-enq-btn {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  font-size: 11px;
  letter-spacing: 1.4px;
  border-radius: 6px;
}

/* Skeleton card for destinations grid */
.skeleton-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(14, 11, 6, 0.07);
}

.skeleton-card .dest-card-img {
  aspect-ratio: 3 / 2;
}

.dest-card-body.skeleton-body {
  padding: 26px 28px;
}

/* Empty state */
.dest-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}

.dest-empty-icon {
  font-size: 48px;
  opacity: 0.3;
  margin-bottom: 20px;
  display: block;
}

.dest-empty h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--text);
  margin-bottom: 10px;
}

.dest-empty p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

/* Load more */
.dest-load-more {
  text-align: center;
  margin-top: 52px;
}

/* ─── 18. FORMS ────────────────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-label span {
  color: var(--gold);
  margin-left: 3px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(200, 169, 110, 0.2);
  color: var(--text);
  padding: 13px 16px;
  border-radius: 2px;
  font-size: 14px;
  font-family: var(--font-sans);
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(100, 80, 50, 0.35); }

.form-textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.7;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237a6a50'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-error {
  font-size: 12px;
  color: #c0392b;
  background: rgba(192, 57, 43, 0.06);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: 2px;
  padding: 10px 14px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #c0392b;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
}

.form-success-icon {
  font-size: 40px;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
  animation: floatIcon 4s ease-in-out infinite;
}

/* Contact info list (contact page right column) */
.contact-info-list {
  border-top: 1px solid var(--border);
}

/* Map embed */
.map-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ─── 19. BUTTONS ──────────────────────────────────────────────────────────── */
.btn-gold {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background 0.35s, color 0.35s, transform 0.35s, box-shadow 0.35s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 169, 110, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 13px 34px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background 0.35s, color 0.35s, transform 0.35s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background 0.35s, transform 0.35s, box-shadow 0.35s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-dark:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(200, 169, 110, 0.3);
}

.btn-sm { padding: 9px 22px; font-size: 10px; }
.btn-lg { padding: 18px 52px; font-size: 12px; }

.btn-loading {
  opacity: 0.7;
  pointer-events: none;
  cursor: not-allowed;
}

/* ─── 20. CTA SECTION ──────────────────────────────────────────────────────── */
.cta-sec {
  position: relative;
  padding: 150px var(--pad-x);
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(200, 169, 110, 0.1) 0%, transparent 70%),
    linear-gradient(160deg, var(--cream), var(--warm));
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.1);
  animation: circleGrow 8s ease-in-out infinite;
  top: 50%;
  left: 50%;
}

.cc1 { width: 280px;  height: 280px;  transform: translate(-50%, -50%); animation-delay: 0s; }
.cc2 { width: 520px;  height: 520px;  transform: translate(-50%, -50%); animation-delay: 1.5s; }
.cc3 { width: 780px;  height: 780px;  transform: translate(-50%, -50%); animation-delay: 3s; }

@keyframes circleGrow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.04); }
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.1;
}

.cta-inner h2 em {
  font-weight: 600;
  color: var(--gold-dark);
  font-style: normal;
}

.cta-inner p {
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
  font-weight: 300;
  margin: 0 auto 48px;
  max-width: 460px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── 21. FOOTER ───────────────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  padding: 96px var(--pad-x) 36px;
  border-top: 1px solid rgba(200, 169, 110, 0.07);
}

.foot-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 56px;
  margin-bottom: 72px;
}

.foot-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.foot-logo em { color: var(--gold); font-style: normal; }

.foot-desc {
  color: rgba(255, 255, 255, 0.28);
  font-size: 13px;
  line-height: 2;
  font-weight: 300;
  max-width: 280px;
}

.foot-socials {
  display: flex;
  gap: 9px;
  margin-top: 26px;
}

.foot-social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200, 169, 110, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: none;
  transition: border-color 0.3s, background 0.3s;
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

.foot-social-icon:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.08);
  color: var(--gold);
}

footer h5 {
  font-size: 9px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

footer ul { list-style: none; }

footer li { margin-bottom: 13px; }

footer li a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  font-weight: 300;
  transition: color 0.3s, padding-left 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

footer li a:hover { color: var(--gold-light); padding-left: 4px; }

.foot-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-bot p {
  color: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.foot-bot a {
  color: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  transition: color 0.3s;
}

.foot-bot a:hover { color: var(--gold); }

/* ─── 22. REVEAL ANIMATION ─────────────────────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.rv.in {
  opacity: 1;
  transform: translateY(0);
}

/* Delay variants */
.rv-d1 { transition-delay: 0.1s; }
.rv-d2 { transition-delay: 0.2s; }
.rv-d3 { transition-delay: 0.3s; }
.rv-d4 { transition-delay: 0.4s; }

/* ─── 23. LOADING SKELETONS ────────────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton {
  background: linear-gradient(90deg, var(--warm) 25%, rgba(250, 247, 242, 0.8) 50%, var(--warm) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  border-radius: 3px;
}

.skeleton-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
}

.skeleton-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(90deg, var(--warm) 25%, var(--cream) 50%, var(--warm) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
}

.skeleton-line {
  height: 14px;
  margin: 10px 20px;
  background: linear-gradient(90deg, var(--warm) 25%, var(--cream) 50%, var(--warm) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  border-radius: 3px;
}

.skeleton-line.short { width: 60%; }
.skeleton-line.med   { width: 80%; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  grid-column: 1 / -1;
}

.empty-state h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 10px;
}

.empty-state p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}

/* ─── 24. UTILITY CLASSES ──────────────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--muted); }
.text-dark   { color: var(--dark); }
.text-white  { color: #fff; }
.text-center { text-align: center; }
.serif       { font-family: var(--font-serif); }
.hidden      { display: none !important; }
.sr-only     { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ─── 25. TRAVELLER PHOTOS GRID ───────────────────────────────────────────── */
.traveller-grid {
  columns: 4;
  column-gap: 12px;
  margin-top: 56px;
}

.traveller-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: none;
}

.traveller-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease);
}

.traveller-item:hover img { transform: scale(1.05); }

.traveller-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,11,6,0.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.traveller-item:hover .traveller-overlay { opacity: 1; }

.traveller-name {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 3px;
}

.traveller-dest {
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Gradient placeholder for traveller photos while loading */
.traveller-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, var(--warm), var(--cream));
  border-radius: 4px;
  animation: shimmer 1.6s infinite;
  background-size: 200% 100%;
  background-image: linear-gradient(90deg, var(--warm) 25%, var(--cream) 50%, var(--warm) 75%);
}

/* ─── 26. VIDEOS GRID ──────────────────────────────────────────────────────── */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.video-item { }

.video-thumb {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: none;
  background: var(--dark-2);
  aspect-ratio: 16 / 9;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.video-thumb:hover img { transform: scale(1.04); }

.video-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,11,6,0.75) 0%, transparent 55%);
  transition: opacity 0.4s;
}

.video-thumb:hover .video-shade { opacity: 0.85; }

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: rgba(200, 169, 110, 0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.35s var(--ease);
  z-index: 2;
  border: none;
}

.video-thumb:hover .video-play-btn {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 17px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

.video-info-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
  z-index: 2;
}

.video-client {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 2px;
}

.video-dest {
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* YouTube iframe replaces thumbnail */
.video-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── 27. ABOUT SPLIT (shared for about.html + home about preview) ─────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-main {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(160deg, #0d3b2e, #1a6e5c, #0d4a3a);
  position: relative;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  width: 55%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  bottom: -36px;
  right: -36px;
  border: 6px solid var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
  overflow: hidden;
  background: linear-gradient(135deg, #2d0a5e, #7a2ab8);
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 28px;
  left: -28px;
  background: var(--gold);
  color: #fff;
  padding: 18px 22px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(200,169,110,0.4);
}

.about-badge-num {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  display: block;
}

.about-badge-lbl {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.88;
  display: block;
  margin-top: 4px;
}

.about-text { padding: 16px 0; }

.about-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 2.1;
  font-weight: 300;
  margin-bottom: 26px;
}

.about-list {
  list-style: none;
  margin-bottom: 38px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}

.about-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

/* ─── 28. VISION / MISSION CARDS ───────────────────────────────────────────── */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
}

.vm-card {
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}

.vm-card.dark-card { background: var(--dark); }
.vm-card.light-card { background: var(--warm); }

.vm-card .eyebrow::before { background: var(--gold); }
.dark-card .eyebrow span { color: rgba(200,169,110,0.7); }
.dark-card .eyebrow::before { background: rgba(200,169,110,0.4); }

.vm-card .stitle { font-size: clamp(28px, 3.5vw, 44px); }
.dark-card .stitle { color: #fff; }

.vm-card p {
  font-size: 15px;
  line-height: 2;
  font-weight: 300;
  max-width: 460px;
}

.dark-card p  { color: rgba(255,255,255,0.45); }
.light-card p { color: var(--muted); }

/* ─── 29. WHY CHOOSE US GRID ───────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-top: 56px;
}

.why-card {
  background: var(--white);
  padding: 40px 32px;
  transition: background 0.4s;
}

.why-card:hover { background: var(--cream); }

.why-icon {
  font-size: 32px;
  margin-bottom: 18px;
  display: block;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  font-weight: 300;
}

/* ─── 30. CONTACT INFO BLOCK ───────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-info-label {
  font-size: 9px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-val {
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
}

.contact-info-val a {
  color: var(--text);
  transition: color 0.3s;
}

.contact-info-val a:hover { color: var(--gold); }

/* ─── 31. COMING SOON (blogs placeholder) ─────────────────────────────────── */
.coming-soon-section {
  padding: 100px var(--pad-x) 120px;
  background: var(--cream);
  text-align: center;
}

.coming-soon-inner {
  max-width: 640px;
  margin: 0 auto;
}

.coming-soon-decor {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 52px;
}

.cs-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--gold);
  animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-12px) rotate(5deg); }
}

.cs-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.2);
  inset: 0;
  animation: spin 8s linear infinite;
}

.cs-orbit-1 { animation-duration: 8s;  inset: -10px; }
.cs-orbit-2 { animation-duration: 13s; inset: -24px; animation-direction: reverse; }
.cs-orbit-3 { animation-duration: 20s; inset: -40px; border-color: rgba(200,169,110,0.1); }

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.coming-soon-section .stitle {
  margin-bottom: 20px;
}

.coming-soon-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 36px 0 52px;
  flex-wrap: wrap;
}

.coming-soon-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.cs-topic {
  background: var(--warm);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

/* ─── 32. TOUR DETAIL PAGE ─────────────────────────────────────────────────── */

/* ── Transport Loading Screen — Premium Dark Edition ─────────────────── */
/* All animation via transform/opacity only — zero layout repaints.       */

.tour-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #080503;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* CRITICAL: override display:flex when [hidden] is set by JS */
#tour-loading[hidden] { display: none !important; }

/* ── Ambient glow — unique hue per transport ── */
.tl-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  animation: tlGlowBreath 4s ease-in-out infinite alternate;
}

@keyframes tlGlowBreath {
  from { opacity: .55; }
  to   { opacity: 1; }
}

/* Flight — warm amber/gold glow from below (sunset altitude) */
.tour-loading.tl-flight .tl-glow {
  background:
    radial-gradient(ellipse 80% 55% at 50% 110%, rgba(210,140,50,.22) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 75% 10%,  rgba(200,169,110,.07) 0%, transparent 50%);
}

/* Car — deep red-orange sunset glow */
.tour-loading.tl-car .tl-glow {
  background:
    radial-gradient(ellipse 80% 55% at 50% 110%, rgba(190,70,30,.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 20% 15%,  rgba(210,120,60,.07) 0%, transparent 50%);
}

/* Bus — cool deep-blue morning glow */
.tour-loading.tl-bus .tl-glow {
  background:
    radial-gradient(ellipse 80% 55% at 50% 110%, rgba(30,90,180,.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 70% 10%,  rgba(80,150,220,.07) 0%, transparent 50%);
}

/* ── SVG path layer — thin gold trail animation ── */
.tl-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Faint ghost path (always visible) */
.tl-path-ghost {
  fill: none;
  stroke: rgba(200,169,110,.07);
  stroke-width: 1;
}

/* Animated gold trail */
.tl-path-trail {
  fill: none;
  stroke: url(#tlGold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: tlDraw 2.8s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes tlDraw {
  to { stroke-dashoffset: 0; }
}

/* Glowing dot that runs along the trail */
.tl-path-dot {
  r: 3.5;
  fill: var(--gold-light);
  filter: url(#tlBloom);
  animation: tlDotMove 2.8s cubic-bezier(.4,0,.2,1) forwards;
}

/* Flight arc: dot travels from left-bottom to right-top */
.tour-loading.tl-flight .tl-path-dot {
  offset-path: path('M -60,520 C 200,380 500,160 900,80 L 1260,20');
  offset-distance: 0%;
  animation-name: tlDotSlide;
}

/* Car / Bus road: dot travels a gentle S-curve left → right */
.tour-loading.tl-car .tl-path-dot,
.tour-loading.tl-bus .tl-path-dot {
  offset-path: path('M -60,500 C 150,490 300,510 500,500 C 700,490 900,510 1260,500');
  offset-distance: 0%;
  animation-name: tlDotSlide;
}

@keyframes tlDotSlide {
  to { offset-distance: 100%; }
}

/* ── Noise grain overlay (very subtle, adds texture) ── */
.tl-noise {
  position: absolute;
  inset: 0;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
}

/* ── Center content ── */
.tl-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
  padding: 0 32px;
  animation: tlFadeUp .7s ease-out both;
}

@keyframes tlFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Logo image */
.tl-logo {
  height: clamp(80px, 11vw, 120px);
  width: auto;
  object-fit: contain;
  margin-bottom: 22px;
  opacity: .8;
  filter: brightness(0) invert(1);
}

/* ── Background flyby vehicle ── */
.tl-flyby {
  position: absolute;
  font-size: clamp(44px, 6vw, 68px);
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

/* Emoji content per transport */
.tour-loading.tl-flight .tl-flyby::before { content: '✈'; }
.tour-loading.tl-car    .tl-flyby::before { content: '🚗'; }
.tour-loading.tl-bus    .tl-flyby::before { content: '🚌'; }

/* Flight: diagonal arc bottom-left → top-right, loops */
.tour-loading.tl-flight .tl-flyby {
  bottom: 28%;
  left: -80px;
  filter: drop-shadow(0 0 16px rgba(200,169,110,.45));
  animation: tlFlyArc 4.5s cubic-bezier(.4,0,.6,1) infinite;
  animation-delay: .3s;
}

@keyframes tlFlyArc {
  0%   { transform: translate(0,      0)      rotate(-7deg); opacity: 0;    }
  6%   { opacity: .16; }
  45%  { transform: translate(48vw,  -16vh)   rotate(-4deg); opacity: .13; }
  94%  { opacity: .06; }
  100% { transform: translate(112vw, -28vh)   rotate(-2deg); opacity: 0;    }
}

/* Car / Bus: steady drive left → right across lower third */
.tour-loading.tl-car .tl-flyby,
.tour-loading.tl-bus .tl-flyby {
  bottom: 14%;
  left: -80px;
  filter: drop-shadow(0 0 12px rgba(200,169,110,.35));
  animation: tlDriveAcross 4.5s linear infinite;
  animation-delay: .3s;
}

@keyframes tlDriveAcross {
  0%   { transform: translateX(0);     opacity: 0;    }
  6%   { opacity: .14; }
  92%  { opacity: .10; }
  100% { transform: translateX(112vw); opacity: 0;    }
}

/* Thin divider line */
.tl-rule {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  margin-bottom: 30px;
  animation: tlRuleGrow .9s ease-out .15s forwards;
}

@keyframes tlRuleGrow {
  to { width: 56px; }
}

/* Transport icon */
.tl-icon {
  font-size: clamp(38px, 5.5vw, 52px);
  line-height: 1;
  margin-bottom: 22px;
  animation: tlIconFloat 3s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 18px rgba(200,169,110,.55));
}

@keyframes tlIconFloat {
  from { transform: translateY(0)   scale(1);    filter: drop-shadow(0 0 14px rgba(200,169,110,.45)); }
  to   { transform: translateY(-7px) scale(1.05); filter: drop-shadow(0 0 26px rgba(200,169,110,.75)); }
}

/* Label */
.tl-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 400;
  color: rgba(255,255,255,.3);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 28px;
}

/* Progress line */
.tl-bar {
  width: min(180px, 55vw);
  height: 1px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  overflow: hidden;
}

.tl-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 40%, var(--gold-light) 60%, transparent 100%);
  background-size: 300% 100%;
  animation: tlBarShimmer 2.2s ease-in-out infinite;
}

@keyframes tlBarShimmer {
  0%   { background-position:  150% 0; }
  100% { background-position: -150% 0; }
}

/* Floating breadcrumb — inside hero, top */
.tour-breadcrumb-float {
  position: absolute;
  top: calc(var(--nav-h) + 18px);
  left: 0; right: 0;
  z-index: 10;
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
}

.tour-breadcrumb-float .wsec { max-width: var(--max-w); padding: 0 var(--pad-x); margin: 0 auto; }
.tour-breadcrumb-float a { color: rgba(255,255,255,0.55); transition: color 0.3s; }
.tour-breadcrumb-float a:hover { color: var(--gold-light); }
.tour-breadcrumb-float span[aria-current] { color: rgba(255,255,255,0.85); }

/* ── Tour Hero ─────────────────────────────────────────────────────────────── */
.tour-hero {
  position: relative;
  height: 76vh;
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.tour-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 10s ease;
  background-color: #0d1a2a;
}

.tour-hero:hover .tour-hero-img { transform: scale(1.04); }

/* Layered gradient: dark bottom + slight top vignette */
.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,6,3,0.96) 0%, rgba(8,6,3,0.55) 40%, rgba(8,6,3,0.10) 70%, transparent 100%),
    linear-gradient(to bottom, rgba(8,6,3,0.35) 0%, transparent 30%);
}

/* Subtle CSS grid mesh overlay */
.tour-hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.tour-hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad-x) 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Hero badge — frosted pill */
.tour-hero-badge {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  margin-bottom: 20px;
  display: inline-flex !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* H1 */
.tour-h1 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 800px;
  letter-spacing: -0.5px;
}

.tour-hero-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tour-meta-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 400;
  letter-spacing: 0.4px;
}

/* Scroll indicator */
.tour-hero-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.45;
}

.tour-hero-scroll-line {
  width: 40px;
  height: 1px;
  background: #fff;
  display: block;
  position: relative;
  overflow: hidden;
}

.tour-hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold-light);
  animation: scanLine 2s ease-in-out infinite;
}

@keyframes scanLine {
  0%   { left: -100%; }
  100% { left: 100%; }
}

.tour-hero-scroll-text {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
}

/* ── Sticky overview bar ──────────────────────────────────────────────────── */
.tour-overview-bar {
  background: rgba(10, 8, 4, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  border-bottom: 1px solid rgba(200,169,110,0.15);
}

.tob-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  flex-wrap: wrap;
}

.tob-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 32px 18px 0;
  border-right: 1px solid rgba(255,255,255,0.07);
  margin-right: 32px;
}

.tob-label {
  font-size: 8.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  font-weight: 600;
}

.tob-val {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  font-weight: 400;
}

.tob-price {
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
}

.tob-inner .btn-gold {
  margin-left: auto;
  flex-shrink: 0;
  border-radius: 6px;
  font-size: 11px;
  padding: 12px 24px;
  letter-spacing: 1.5px;
}

/* ── Tour body (main layout wrapper) ─────────────────────────────────────── */
.tour-body {
  padding: 72px 0 96px;
  background: var(--cream);
}

.tour-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

/* ── Tour main content ────────────────────────────────────────────────────── */
.tour-short-desc {
  font-family: var(--font-serif);
  font-size: 19px;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 56px;
  font-weight: 300;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}

/* Section headings with gold left accent */
.tour-section-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.tour-section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  flex-shrink: 0;
}

/* Gallery */
.tour-gallery-wrap { margin-bottom: 64px; }

.tour-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  border-radius: 12px;
  overflow: hidden;
}

.tour-gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

/* First item spans 2 columns for variety */
.tour-gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.tour-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}

.tour-gallery-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  background: rgba(14,11,6,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tour-gallery-item:hover img { transform: scale(1.08); }
.tour-gallery-item:hover::after { opacity: 1; }

/* Highlights */
.tour-highlights-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 56px;
}

.tour-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  background: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(14,11,6,0.05);
}

.tour-hl-icon {
  color: var(--gold);
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
  font-weight: 700;
}

/* Full description */
.tour-full-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 56px;
}

.tour-full-desc p  { margin-bottom: 16px; }
.tour-full-desc h3 { font-family: var(--font-serif); font-size: 22px; margin: 32px 0 12px; color: var(--text); }

/* Inclusions / Exclusions */
.tour-ie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.tour-ie-grid > div {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(14,11,6,0.05);
}

.tour-inc-list,
.tour-exc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tour-inc-item,
.tour-exc-item {
  font-size: 13.5px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 8px;
}

.tour-inc-item {
  background: rgba(39,174,96,0.07);
}

.tour-exc-item {
  background: rgba(192,57,43,0.07);
}

.tour-inc-item span {
  color: #1a9e50;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  margin-top: 1px;
  flex-shrink: 0;
}

.tour-exc-item span {
  color: #c0392b;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  margin-top: 1px;
  flex-shrink: 0;
}

/* Reviews */
.tour-reviews-wrap { margin-top: 56px; }

/* ── Tour Sidebar ─────────────────────────────────────────────────────────── */
.tour-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 72px + 20px);
}

.tour-sidebar-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(14,11,6,0.12);
}

/* Dark header with price */
.tour-sidebar-header {
  background: linear-gradient(145deg, #0e0b06 0%, #1c1408 60%, #241a0a 100%);
  padding: 32px 28px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tour-sidebar-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.tour-sidebar-from {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(200,169,110,0.65);
  display: block;
  margin-bottom: 10px;
  position: relative;
}

.tour-sidebar-amount {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
  position: relative;
}

.tour-sidebar-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  position: relative;
}

/* Sidebar body */
.tour-sidebar-body {
  padding: 24px 24px 28px;
}

.tour-sidebar-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.tour-sidebar-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  transition: background 0.2s;
}

.tour-sidebar-row:hover { background: var(--warm); }

.tour-sidebar-icon-wrap {
  width: 38px;
  height: 38px;
  background: var(--warm);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.tour-sidebar-key {
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
  font-weight: 600;
}

.tour-sidebar-val {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

/* Sidebar action buttons */
.tour-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.tour-sidebar-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 11.5px;
  letter-spacing: 1.4px;
}

.tour-sidebar-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 8px;
  border: 1.5px solid #25d366;
  color: #1a9e50;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  transition: background 0.25s, color 0.25s;
}

.tour-sidebar-wa-btn:hover {
  background: #25d366;
  color: #fff;
}

.tour-sidebar-contact {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tour-sidebar-contact-link {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
}

.tour-sidebar-contact-link span {
  width: 24px;
  text-align: center;
}

.tour-sidebar-contact-link:hover { color: var(--gold); }

/* ── Related tours section ───────────────────────────────────────────────── */
.related-tours-section {
  padding: 96px 0 112px;
  background: var(--warm);
}

/* ─── 33. MOBILE RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  :root { --pad-x: 48px; --pad-sec: 100px; }

  .tours-grid          { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid            { grid-template-columns: repeat(2, 1fr); }
  .dest-tours-grid     { grid-template-columns: repeat(2, 1fr); }
  .tgrid               { grid-template-columns: repeat(2, 1fr); }
  .team-grid           { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid        { columns: 3; }
  .traveller-grid      { columns: 3; }
  .videos-grid         { grid-template-columns: repeat(2, 1fr); }
  .stats-inner         { grid-template-columns: repeat(3, 1fr); }
  .foot-top            { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid          { gap: 60px; }
  .vision-mission-grid { grid-template-columns: 1fr; }
  .why-grid            { grid-template-columns: repeat(2, 1fr); }
  .tour-layout         { grid-template-columns: 1fr 300px; gap: 40px; }
  .tour-gallery-grid   { grid-template-columns: repeat(3, 1fr); }
  .tour-gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 900px) {
  :root { --pad-x: 28px; --pad-sec: 80px; }

  nav { padding: 0 28px; }
  .nav-links { display: none; }
  .nav-ham   { display: flex; }
  .hero-search { display: none; }

  .tours-grid      { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pkg-grid        { grid-template-columns: 1fr; }
  .dest-tours-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .tgrid          { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid   { columns: 2; }
  .traveller-grid { columns: 2; }
  .videos-grid    { grid-template-columns: 1fr; }
  .dest-grid      { grid-template-rows: auto; }
  .dc.wide        { grid-column: span 1; }
  .dc             { min-height: 220px; }
  .about-grid     { grid-template-columns: 1fr; gap: 48px; }
  .about-img-float { display: none; }
  .about-badge    { left: 16px; top: 16px; }
  .contact-grid   { grid-template-columns: 1fr; gap: 48px; }
  .why-grid       { grid-template-columns: 1fr; }
  .vm-card        { padding: 44px 32px; }

  .form-row  { grid-template-columns: 1fr; }
  .foot-top  { grid-template-columns: 1fr; gap: 32px; }
  footer     { padding: 60px 28px 28px; }

  .filter-bar-inner { gap: 12px; }
  .filter-count     { width: 100%; margin-left: 0; }

  .tour-layout         { grid-template-columns: 1fr; }
  .tour-sidebar        { position: static; }
  .tour-ie-grid        { grid-template-columns: 1fr; gap: 28px; }
  .tour-highlights-list { grid-template-columns: 1fr; }
  .tour-gallery-grid   { grid-template-columns: repeat(2, 1fr); }
  .tour-gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .tob-inner           { gap: 0; overflow-x: auto; flex-wrap: nowrap; }
  .tob-stat            { padding: 14px 20px 14px 0; margin-right: 20px; }
  .tour-overview-bar   { overflow-x: auto; }
  .tour-hero           { height: 62vh; min-height: 420px; }
}

@media (max-width: 640px) {
  :root { --pad-x: 18px; --pad-sec: 64px; }

  .tours-grid      { grid-template-columns: 1fr; }
  .dest-tours-grid { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr 1fr; }
  .gallery-grid   { columns: 1; }
  .traveller-grid { columns: 1; }
  .stats-inner    { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:last-child { grid-column: span 2; }

  .hero-btns  { flex-direction: column; align-items: center; }
  .cta-btns   { flex-direction: column; align-items: center; }
  .cta-sec    { padding: 96px var(--pad-x); }
  .filter-tabs { flex-wrap: wrap; }
  .filter-bar  { padding: 14px var(--pad-x); }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }

  .tour-gallery-grid   { grid-template-columns: 1fr 1fr; }
  .tour-gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .tour-hero           { height: 58vh; min-height: 380px; }
  .tob-inner .btn-gold { margin-left: 0; }
  .dest-card-actions   { flex-direction: column; }
  .tour-ie-grid        { grid-template-columns: 1fr; }
  .tour-highlights-list { grid-template-columns: 1fr; }
}
