/* ==========================================================================
   Dakshit Tour and Travel — Design System
   Palette: Ink Navy / Deodar Pine / Antique Gold / Dusk Amber / Mist Cream
   Type: Fraunces (display) + Work Sans (body) + Space Mono (labels)
   ========================================================================== */

:root {
  --ink: #12233f;
  --ink-soft: #1c3459;
  --pine: #2f4a3d;
  --gold: #c9a227;
  --amber: #d97a33;
  --cream: #f6f2e9;
  --cream-deep: #efe8d8;
  --paper: #fffdf8;
  --slate: #5b6b75;
  --line: rgba(18, 35, 63, 0.12);
  --radius: 18px;
  --shadow-soft: 0 20px 45px -25px rgba(18, 35, 63, 0.45);
  --shadow-lift: 0 30px 60px -20px rgba(18, 35, 63, 0.5);

  /* Theme-aware tokens — used for page background / card surfaces / body text.
     var(--ink) and var(--paper) stay as-is (they're also used as fixed brand
     colors on permanently-dark sections like the hero and footer), so these
     are separate tokens the dark theme below can safely repoint. */
  --surface: var(--paper);
  --on-surface: var(--ink);
  --header-bg: rgba(246, 242, 233, 0.92);
  --page-bg: linear-gradient(180deg, #f4efe2 0%, #ede4cf 45%, #e9dfc4 100%);
}

[data-theme="dark"] {
  --surface: #182437;
  --on-surface: #eef1f5;
  --slate: #9aa7b5;
  --line: rgba(238, 241, 245, 0.12);
  --cream: #101a29;
  --cream-deep: #1f2c40;
  --header-bg: rgba(13, 20, 32, 0.88);
  --page-bg: linear-gradient(180deg, #0d1420 0%, #0f1a2a 45%, #101c2f 100%);
  --shadow-soft: 0 20px 45px -25px rgba(0, 0, 0, 0.6);
  --shadow-lift: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--page-bg);
  color: var(--on-surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  transition: background .35s ease, color .35s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(680px 420px at 8% 8%, rgba(201,162,39,0.16), transparent 70%),
    radial-gradient(620px 460px at 95% 30%, rgba(47,74,61,0.14), transparent 70%),
    radial-gradient(700px 500px at 50% 100%, rgba(217,122,51,0.12), transparent 70%);
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--amber);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-amber {
  background: var(--amber);
  color: var(--paper);
  box-shadow: 0 14px 30px -12px rgba(217, 122, 51, 0.65);
}
.btn-amber:hover { background: #c26c28; }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: inherit;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-ink {
  background: var(--ink);
  color: var(--paper);
}
.btn-ink:hover { background: var(--ink-soft); }

/* ---------------------------- Navbar ---------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background .35s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 52px; width: auto; }
.brand-text .name {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--on-surface);
  line-height: 1.1;
}
.brand-text .tagline {
  font-family: "Space Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--on-surface);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--amber); }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-cta > a.btn-amber {
  animation: navPulse 3.2s ease-in-out infinite;
}
@keyframes navPulse {
  0%, 100% { box-shadow: 0 14px 30px -12px rgba(217, 122, 51, 0.65); }
  50% { box-shadow: 0 14px 34px -8px rgba(217, 122, 51, 0.9); }
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--on-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.theme-toggle:hover { transform: translateY(-2px); border-color: var(--amber); }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: inline; }
.nav-phone {
  font-family: "Space Mono", monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pine);
  display: flex;
  align-items: center;
  gap: 6px;
}
[data-theme="dark"] .nav-phone { color: #6fae8f; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--ink); display: block;
}

/* ---------------------------- Hero ---------------------------- */

.hero {
  position: relative;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 55%, #274a6b 100%);
  color: var(--paper);
  overflow: hidden;
  padding: 100px 0 70px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 85% 15%, rgba(201,162,39,0.35), transparent 70%),
    radial-gradient(500px 260px at 10% 100%, rgba(47,74,61,0.55), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  color: var(--paper);
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero p.lead {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  color: var(--gold);
}
.hero-stats .stat span {
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.hero-art {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4/5;
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-art .badge {
  position: absolute;
  left: 20px; bottom: 20px;
  background: rgba(18,35,63,0.75);
  backdrop-filter: blur(6px);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: 14px;
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* ---------------------------- Hero (auto slider) ---------------------------- */

.hero-slider {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: var(--ink);
}

.slider-track { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
}
.slide.is-active { opacity: 1; visibility: visible; z-index: 2; }

.slide-media { width: 100%; height: 100%; object-fit: cover; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,35,63,0) 0%, rgba(18,35,63,0) 55%, rgba(18,35,63,0.78) 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 76px;
}

.slide-content { color: var(--paper); max-width: 640px; }

.slide-tag {
  display: inline-block;
  font-family: "Space Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.slide-content h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); color: var(--paper); margin-bottom: 14px; }
.slide-content p { font-size: 1.05rem; color: rgba(255,255,255,0.88); max-width: 52ch; margin-bottom: 28px; }
.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.slide-actions .btn-outline { color: var(--paper); }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--paper);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.slider-arrow:hover { background: rgba(255,255,255,0.3); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.dot.is-active { background: var(--gold); transform: scale(1.3); }

.stats-strip { background: var(--ink); padding: 30px 0; }
.stats-strip .hero-stats { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }

/* ---------------------------- Route line (signature) ---------------------------- */

.route-strip {
  background: var(--surface);
  padding: 60px 0 70px;
  border-bottom: 1px solid var(--line);
}
.route-strip .heading { text-align: center; margin-bottom: 46px; }
.route-strip .heading h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.route-strip .heading p { color: var(--slate); max-width: 60ch; margin: 0 auto; }

.route-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.route-track::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 6%;
  right: 6%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
  background-size: 16px 2px;
}
.route-stop { position: relative; text-align: center; padding-top: 44px; }
.route-stop::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--amber);
}
.route-stop.origin::before { background: var(--amber); }
.route-stop .place { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.05rem; margin-bottom: 6px; }
.route-stop .blurb { color: var(--slate); font-size: 0.88rem; }

/* ---------------------------- Sections ---------------------------- */

section { padding: 78px 0; }
.section-cream { background: transparent; }
.section-pine {
  background: linear-gradient(135deg, var(--pine), #223a2f);
  color: var(--paper);
}

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); margin-bottom: 8px; }
.section-head p { color: var(--slate); max-width: 55ch; margin: 0; }
.section-pine .section-head p { color: rgba(255,255,255,0.75); }

/* ---------------------------- Boarding-pass package cards ---------------------------- */

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

.pass-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pass-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.pass-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.pass-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pass-card:hover .pass-media img { transform: scale(1.06); }
.pass-region {
  position: absolute; top: 14px; left: 14px;
  background: rgba(18,35,63,0.82);
  color: var(--paper);
  font-family: "Space Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.pass-rating {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 999px;
}

.pass-stub {
  position: relative;
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pass-stub::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 0;
  border-top: 2px dashed var(--line);
}
.pass-stub::after, .pass-card .cut-l, .pass-card .cut-r { content: ""; }
.pass-card { position: relative; }
.pass-card .notch {
  position: absolute;
  width: 20px; height: 20px;
  background: var(--cream);
  border-radius: 50%;
  z-index: 2;
}
.pass-card .notch.left { left: -10px; }
.pass-card .notch.right { right: -10px; }

.pass-stub h3 { font-size: 1.2rem; margin-bottom: 6px; }
.pass-stub .summary { color: var(--slate); font-size: 0.92rem; margin-bottom: 16px; flex: 1; }
.pass-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  color: var(--slate);
  border-top: 1px dashed var(--line);
  padding-top: 14px;
  margin-top: auto;
}
.pass-price { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.3rem; color: var(--on-surface); }
.pass-price span { font-family: "Work Sans", sans-serif; font-size: 0.7rem; color: var(--slate); font-weight: 400; }

.pass-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  gap: 10px;
}

/* ---------------------------- Region filter pills ---------------------------- */

.region-pills { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.region-pill {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--on-surface);
  background: var(--surface);
  transition: all .2s ease;
}
.region-pill:hover { border-color: var(--amber); color: var(--amber); }
.region-pill.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------------------------- Why us ---------------------------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px -24px rgba(18,35,63,0.35);
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.feature-card .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 1.2rem;
  transition: transform .35s ease;
}
.feature-card:hover .icon { animation: iconBounce .6s ease; }
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
  55% { transform: translateY(0); }
  75% { transform: translateY(-3px); }
}
.feature-card h4 { font-size: 1.05rem; margin-bottom: 6px; }
.feature-card p { color: var(--slate); font-size: 0.9rem; margin: 0; }

/* ---------------------------- Testimonials ---------------------------- */

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 20px 40px -28px rgba(0,0,0,0.6);
  transition: transform .3s ease, background .3s ease;
}
.testimonial-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.1); }
.testimonial-card p.quote { font-style: italic; color: rgba(255,255,255,0.9); margin-bottom: 18px; }
.testimonial-card .who { font-family: "Space Mono", monospace; font-size: 0.78rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }

/* ---------------------------- CTA banner ---------------------------- */

.cta-banner {
  background: linear-gradient(120deg, var(--amber), #b95e21);
  color: var(--paper);
  border-radius: 24px;
  padding: 50px 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: 0 28px 55px -30px rgba(185,94,33,0.75);
}
.cta-banner h3 { color: var(--paper); font-size: 1.7rem; margin-bottom: 6px; }
.cta-banner p { margin: 0; color: rgba(255,255,255,0.9); }

/* ---------------------------- Package detail ---------------------------- */

.detail-hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 21/9;
  margin-bottom: 40px;
  box-shadow: var(--shadow-lift);
}
.detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.detail-hero .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(18,35,63,0.85), transparent 60%);
  display: flex; align-items: flex-end;
  padding: 34px;
}
.detail-hero .overlay h1 { color: var(--paper); margin-bottom: 6px; }
.detail-hero .overlay .meta { color: rgba(255,255,255,0.85); font-family: "Space Mono", monospace; font-size: 0.85rem; }

.detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 44px; }
.itinerary-item {
  display: flex; gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.itinerary-item .day-tag {
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  color: var(--amber);
  font-weight: 700;
  min-width: 90px;
}
.rich-content { color: var(--slate); line-height: 1.75; }
.rich-content p { margin: 0 0 1em; }
.rich-content h2, .rich-content h3 { color: var(--on-surface); margin-top: 1.2em; }
.rich-content ul, .rich-content ol { padding-left: 1.3em; margin: 0 0 1em; }
.rich-content a { color: var(--amber); text-decoration: underline; }
.rich-content strong { color: var(--on-surface); }

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px 0 30px;
}
.detail-gallery-item {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-soft);
}
.detail-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.detail-gallery-item:hover img { transform: scale(1.08); }

.highlight-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0 30px; }
.highlight-list li { list-style: none; display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; }
.highlight-list li::before { content: "✦"; color: var(--gold); }

.booking-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 100px;
  border: 1px solid var(--line);
}
.booking-card .price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 20px; }
.booking-card .price-row strong { font-family: "Fraunces", serif; font-size: 2rem; }
.booking-card .btn { width: 100%; justify-content: center; margin-top: 10px; }
.booking-card .contact-line { margin-top: 18px; font-size: 0.88rem; color: var(--slate); text-align: center; }

/* ---------------------------- Contact page ---------------------------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
.contact-form { background: var(--surface); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-soft); }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: "Work Sans", sans-serif;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--on-surface);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: 2px solid var(--amber);
  outline-offset: 1px;
}
.error-text { color: #b3261e; font-size: 0.8rem; margin-top: 4px; }

.contact-info-card {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-info-card .info-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-info-card .info-row:last-child { border-bottom: none; }
.contact-info-card .info-row .label { font-family: "Space Mono", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); display: block; margin-bottom: 4px; }

.alert-success {
  background: rgba(47,74,61,0.1);
  border: 1px solid var(--pine);
  color: var(--pine);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-weight: 600;
}

/* ---------------------------- About page ---------------------------- */

.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.about-hero img { border-radius: 24px; box-shadow: var(--shadow-lift); }
.timeline { border-left: 2px dashed var(--line); padding-left: 26px; margin-top: 10px; }
.timeline .t-item { position: relative; padding-bottom: 26px; }
.timeline .t-item::before {
  content: ""; position: absolute; left: -32px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--amber);
}

/* ---------------------------- Footer ---------------------------- */

.site-footer { background: var(--ink); color: rgba(255,255,255,0.85); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; margin-bottom: 40px; }
.footer-grid h5 { color: var(--paper); font-family: "Space Mono", monospace; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid ul li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid ul li a:hover { color: var(--gold); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 46px; }
.footer-brand span { font-family: "Fraunces", serif; font-size: 1.1rem; color: var(--paper); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.social-row a:hover { background: var(--amber); }

/* ---------------------------- Entrance animations ---------------------------- */

@keyframes slideUpFade {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes tagPop {
  from { opacity: 0; transform: translate3d(0,0,0) scale(0.92); }
  to { opacity: 1; transform: translate3d(0,0,0) scale(1); }
}

.slide-media { }
.slide-tag, .slide-content h1, .slide-content p, .slide-actions {
  /* Force GPU compositing so the entrance animation doesn't smear/ghost */
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.slide.is-active .slide-tag { animation: tagPop .45s ease-out .15s both; }
.slide.is-active .slide-content h1 { animation: slideUpFade .5s ease-out .25s both; }
.slide.is-active .slide-content p { animation: slideUpFade .5s ease-out .38s both; }
.slide.is-active .slide-actions { animation: slideUpFade .5s ease-out .5s both; }

.hero-stats .stat strong { display: inline-block; }

/* ---------------------------- Reveal-on-scroll ---------------------------- */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Staggered reveal delays — must come after .reveal so the delay isn't reset by it */
.package-grid .pass-card:nth-child(1) { transition-delay: 0s; }
.package-grid .pass-card:nth-child(2) { transition-delay: .12s; }
.package-grid .pass-card:nth-child(3) { transition-delay: .24s; }
.feature-grid .feature-card:nth-child(1) { transition-delay: 0s; }
.feature-grid .feature-card:nth-child(2) { transition-delay: .1s; }
.feature-grid .feature-card:nth-child(3) { transition-delay: .2s; }
.feature-grid .feature-card:nth-child(4) { transition-delay: .3s; }
.testimonial-grid .testimonial-card:nth-child(1) { transition-delay: 0s; }
.testimonial-grid .testimonial-card:nth-child(2) { transition-delay: .12s; }
.testimonial-grid .testimonial-card:nth-child(3) { transition-delay: .24s; }
.route-stop:nth-child(1) { transition-delay: 0s; }
.route-stop:nth-child(2) { transition-delay: .1s; }
.route-stop:nth-child(3) { transition-delay: .2s; }
.route-stop:nth-child(4) { transition-delay: .3s; }



/* ---------------------------- Pagination ---------------------------- */
.pagination { display: flex; gap: 8px; list-style: none; padding: 0; margin-top: 40px; justify-content: center; }
.pagination li a, .pagination li span {
  display: flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--line); font-size: 0.9rem; color: var(--on-surface);
}
.pagination li.active span { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pagination li.disabled span { color: var(--slate); opacity: .5; }

/* ---------------------------- Responsive ---------------------------- */

@media (max-width: 1024px) {
  .hero-slider { height: 540px; }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .hero-slider { height: 460px; }
  .slide-overlay { padding-bottom: 46px; }
  .slide-content p { font-size: 0.92rem; }
  .slider-arrow { width: 38px; height: 38px; font-size: 1.3rem; }
  .stats-strip .hero-stats { gap: 30px; }
  body { overflow-x: hidden; }
  .nav-links, .nav-cta .nav-phone { display: none; }
  .brand-text .tagline { display: none; }
  .brand img { height: 38px; }
  .brand-text .name { font-size: 0.95rem; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn-amber { padding: 9px 14px; font-size: 0.82rem; }
  .nav-toggle { display: flex; padding: 6px; }
  .site-header.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  .route-track { grid-template-columns: 1fr 1fr; row-gap: 30px; }
  .route-track::before { display: none; }
  .package-grid { grid-template-columns: 1fr; }
  .detail-gallery { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}
