/* ============================================================
   SIGIRIYA TUK TUK TOURS — Cinematic Luxury Editorial CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600;700&family=Cinzel:wght@400;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --ink:          #0A0806;
  --ink-soft:     #1A1410;
  --ink-mid:      #2E2218;
  --bark:         #7B3F00;
  --bark-light:   #A05A2C;
  --bark-dark:    #4A2400;
  --gold:         #D4A017;
  --gold-bright:  #F2BB3A;
  --gold-pale:    #EDD38A;
  --amber:        #E8813A;
  --sunset:       #C95E1E;
  --cream:        #F8F0E3;
  --cream-dark:   #EDE0C8;
  --parchment:    #FAF4EA;
  --mist:         #FBF7F1;
  --white:        #FFFFFF;
  --text-body:    #3D2B1A;
  --text-muted:   #8A6F52;
  --text-faint:   #B8A090;

  --shadow-sm:    0 2px 12px rgba(10,8,6,0.12);
  --shadow-md:    0 8px 40px rgba(10,8,6,0.18);
  --shadow-lg:    0 20px 80px rgba(10,8,6,0.28);
  --shadow-gold:  0 4px 32px rgba(212,160,23,0.25);

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    28px;
  --radius-xl:    40px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--mist);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ink-soft); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Selection ── */
::selection { background: var(--gold); color: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--ink);
  padding: 120px 24px 100px;
}

/* Cinematic layered background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(212,160,23,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 15% 50%, rgba(74,36,0,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(10,8,6,0.85) 0%, transparent 55%),
    linear-gradient(175deg, #0A0806 0%, #1A1008 35%, #2E1A08 70%, #0A0806 100%);
}

/* Noise texture overlay */
.hero-bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' 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 200px;
}

/* Geometric line pattern */
.hero-bg-lines {
  position: absolute;
  inset: 0;
  opacity: 1;
  background-image:
    linear-gradient(rgba(212,160,23,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
}

/* Decorative rock silhouette SVG */
.hero-rock-silhouette {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  opacity: 0.06;
  pointer-events: none;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatParticle linear infinite;
}

.particle:nth-child(1)  { left: 10%; animation-duration: 12s; animation-delay: 0s;   width: 3px; height: 3px; }
.particle:nth-child(2)  { left: 25%; animation-duration: 9s;  animation-delay: 2s;   }
.particle:nth-child(3)  { left: 40%; animation-duration: 14s; animation-delay: 1s;   width: 1px; height: 1px; background: var(--amber); }
.particle:nth-child(4)  { left: 55%; animation-duration: 10s; animation-delay: 4s;   }
.particle:nth-child(5)  { left: 70%; animation-duration: 13s; animation-delay: 0.5s; width: 3px; height: 3px; }
.particle:nth-child(6)  { left: 85%; animation-duration: 8s;  animation-delay: 3s;   background: var(--gold-bright); }
.particle:nth-child(7)  { left: 18%; animation-duration: 11s; animation-delay: 6s;   width: 1px; height: 1px; }
.particle:nth-child(8)  { left: 60%; animation-duration: 15s; animation-delay: 1.5s; background: var(--amber); }
.particle:nth-child(9)  { left: 78%; animation-duration: 7s;  animation-delay: 5s;   width: 2px; height: 2px; }
.particle:nth-child(10) { left: 33%; animation-duration: 10s; animation-delay: 7s;   background: var(--gold-bright); }

@keyframes floatParticle {
  0%   { bottom: -10px; opacity: 0; transform: translateX(0); }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.4; }
  100% { bottom: 100%; opacity: 0; transform: translateX(40px); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  animation: revealUp 0.8s var(--ease-out) both;
}

.eyebrow-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow-line.right {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.eyebrow-text {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  animation: revealUp 0.9s 0.1s var(--ease-out) both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 300;
}

.hero-title-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  animation: revealUp 0.9s 0.15s var(--ease-out) both;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  animation: revealUp 0.9s 0.2s var(--ease-out) both;
}

.hero-divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.5));
}

.hero-divider-line.right {
  background: linear-gradient(90deg, rgba(212,160,23,0.5), transparent);
}

.hero-divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto 44px;
  font-weight: 300;
  line-height: 1.8;
  animation: revealUp 0.9s 0.25s var(--ease-out) both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: revealUp 0.9s 0.3s var(--ease-out) both;
}

/* Stats strip */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  animation: revealUp 0.9s 0.45s var(--ease-out) both;
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: var(--radius-md);
  background: rgba(212,160,23,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  width: fit-content;
  margin: 0 auto;
}

.stat-item {
  padding: 20px 36px;
  text-align: center;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(212,160,23,0.2);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-top: 4px;
  display: block;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: revealUp 1s 1s var(--ease-out) both;
}

.scroll-label {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

.scroll-track {
  width: 1px;
  height: 48px;
  background: rgba(212,160,23,0.2);
  position: relative;
  overflow: hidden;
}

.scroll-track::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollTrack 2s ease-in-out infinite;
}

@keyframes scrollTrack {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 15px 34px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s var(--ease-spring), box-shadow 0.25s;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 40px rgba(212,160,23,0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212,160,23,0.4);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   VEHICLE STRIP
   ============================================================ */

.vehicle-strip {
  background: var(--bark-dark);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.vehicle-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(212,160,23,0.06) 50%, transparent 100%);
  pointer-events: none;
}

.vs-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 24px;
  position: relative;
}

.vs-item + .vs-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 14px;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.vs-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.vs-value {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-pale);
  letter-spacing: 0.04em;
}

/* ============================================================
   SECTIONS COMMON
   ============================================================ */

.section {
  padding: 100px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 64px;
}

.section-header.centered {
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.eyebrow-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bark);
  background: rgba(123,63,0,0.08);
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(123,63,0,0.14);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--bark);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

.section-header.centered .section-desc {
  margin: 0 auto;
}

/* ============================================================
   PACKAGES SECTION
   ============================================================ */

.packages-section {
  background: var(--parchment);
  position: relative;
  overflow: hidden;
}

.packages-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Notice Banner */
.notice-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.22);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-bottom: 48px;
  font-size: 0.82rem;
  color: var(--bark-dark);
  line-height: 1.6;
}

.notice-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--gold);
}

/* Tabs */
.tabs-wrap {
  margin-bottom: 48px;
}

.tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  background: rgba(74,36,0,0.06);
  padding: 5px;
  border-radius: var(--radius-md);
  width: fit-content;
  border: 1px solid rgba(74,36,0,0.08);
}

.tab {
  padding: 9px 22px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.84rem;
  cursor: pointer;
  transition: all 0.22s var(--ease-out);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.tab:hover {
  color: var(--bark);
  background: rgba(74,36,0,0.04);
}

.tab.active {
  background: var(--ink);
  color: var(--gold-pale);
  box-shadow: 0 2px 12px rgba(10,8,6,0.2);
}

/* Package Grid */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

/* Package Card */
.pkg-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  box-shadow: 0 2px 20px rgba(10,8,6,0.07), 0 0 0 1px rgba(10,8,6,0.04);
  animation: cardReveal 0.5s var(--ease-out) both;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(10,8,6,0.14), 0 0 0 1px rgba(212,160,23,0.12);
}

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

/* Card Image Frame */
.pkg-img-frame {
  position: relative;
  height: 230px;
  background: var(--ink);
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.pkg-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.6s var(--ease-out), opacity 0.4s;
}

.pkg-card:hover .pkg-img-frame img {
  transform: scale(1.07);
  opacity: 0.95;
}

/* Cinematic placeholder */
.pkg-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.pkg-img-placeholder.sunrise-bg {
  background: linear-gradient(160deg, #1A0800 0%, #3D1500 30%, #7B3000 65%, #C86420 100%);
}

.pkg-img-placeholder.sunset-bg {
  background: linear-gradient(160deg, #0A0810 0%, #1A0820 30%, #4A1040 60%, #8A2820 100%);
}

.pkg-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(212,160,23,0.12) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(232,129,58,0.08) 0%, transparent 50%);
}

/* Decorative rock in card */
.card-rock-art {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.15;
  width: 80%;
}

.pkg-img-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
}

.pkg-img-alt-text {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 0 24px;
  font-style: italic;
  line-height: 1.6;
  font-family: 'Cormorant Garamond', serif;
  max-width: 280px;
}

/* Sunrise rays decoration */
.sunrise-rays {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  opacity: 0.12;
}

.pkg-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 3;
}

.pkg-badge.sunrise-badge {
  background: rgba(212,160,23,0.9);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.pkg-badge.sunset-badge {
  background: rgba(201,94,30,0.9);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.pkg-price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(10,8,6,0.82);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  z-index: 3;
  border: 1px solid rgba(212,160,23,0.2);
  line-height: 1.2;
  text-align: right;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.pkg-price-badge small {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Card Body */
.pkg-body {
  padding: 28px 28px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pkg-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.2;
}

.pkg-tagline {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
}

.pkg-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.meta-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bark);
  background: rgba(123,63,0,0.07);
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(123,63,0,0.1);
}

/* Stops */
.stops-label {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-faint);
  margin-bottom: 12px;
}

.stops-list {
  list-style: none;
  margin-bottom: 24px;
}

.stops-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(123,63,0,0.06);
  font-size: 0.86rem;
  color: var(--text-body);
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
  border-radius: 4px;
}

.stops-list li:last-child { border-bottom: none; }

.stops-list li:hover .stop-indicator { background: var(--gold); }

.stop-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bark-light);
  flex-shrink: 0;
  margin-top: 5px;
  transition: background 0.2s, transform 0.2s;
}

.stops-list li:hover .stop-indicator {
  transform: scale(1.3);
}

.stop-info { flex: 1; }

.stop-name {
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.stop-name-alt {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.stop-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.stop-chevron {
  color: var(--text-faint);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s var(--ease-out);
}

.stops-list li.open .stop-chevron {
  transform: rotate(180deg);
}

/* Stop Detail Accordion */
.stop-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.stop-detail.open {
  max-height: 500px;
}

.stop-detail-inner {
  padding: 10px 0 4px 14px;
  border-left: 2px solid rgba(123,63,0,0.12);
  margin-top: 8px;
}

.detail-row {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
  align-items: flex-start;
  font-size: 0.78rem;
}

.detail-key {
  font-weight: 700;
  color: var(--bark);
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 1px;
}

.detail-val {
  color: var(--text-muted);
  line-height: 1.6;
}

.alt-stop-note {
  background: rgba(201,94,30,0.06);
  border-left: 2px solid var(--amber);
  border-radius: 0 6px 6px 0;
  padding: 8px 12px;
  margin: 8px 0;
  font-size: 0.76rem;
  color: var(--bark-dark);
  line-height: 1.6;
}

.alt-stop-note strong {
  color: var(--sunset);
  font-weight: 700;
}

/* Dropoff & Extras */
.dropoff-block {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding: 10px 14px;
  background: rgba(123,63,0,0.03);
  border-radius: var(--radius-sm);
}

.dropoff-block strong { color: var(--text-body); }

.extras-block {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding: 12px 14px;
  background: rgba(123,63,0,0.04);
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(123,63,0,0.14);
  line-height: 1.7;
}

.extras-block strong { color: var(--bark); }

/* Card Footer */
.pkg-footer {
  padding: 0 28px 28px;
}

.book-btn {
  display: block;
  width: 100%;
  background: var(--ink);
  color: var(--gold-pale);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 15px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.25s, transform 0.2s var(--ease-spring), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.book-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,160,23,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.book-btn:hover {
  background: var(--bark-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(10,8,6,0.2);
}

/* ============================================================
   INFO CARDS SECTION
   ============================================================ */

.info-section {
  background: var(--ink);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.info-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,160,23,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.info-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.4), transparent);
}

.info-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
}

.info-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.info-card:hover {
  background: rgba(255,255,255,0.055);
  border-color: rgba(212,160,23,0.2);
  transform: translateY(-4px);
}

.info-card:hover::before {
  opacity: 1;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.info-card p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */

.pricing-section {
  background: var(--cream);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-inner {
  max-width: 920px;
  margin: 0 auto;
}

/* Pricing Cards (instead of boring table) */
.pricing-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-bottom: 40px;
  font-size: 0.82rem;
  color: var(--bark-dark);
  line-height: 1.65;
}

.price-table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(123,63,0,0.06);
  margin-top: 40px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table thead tr {
  background: var(--ink);
}

.price-table thead th {
  color: rgba(255,255,255,0.55);
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 18px 20px;
  text-align: left;
}

.price-table tbody tr {
  border-bottom: 1px solid rgba(123,63,0,0.06);
  transition: background 0.2s;
}

.price-table tbody tr:hover {
  background: rgba(212,160,23,0.03);
}

.price-table tbody tr:last-child {
  border-bottom: none;
}

.price-table td {
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--text-body);
  vertical-align: middle;
}

.price-table td strong {
  color: var(--ink);
  font-weight: 600;
}

.mode-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
  text-transform: uppercase;
}

.mode-tag.sunrise {
  background: rgba(212,160,23,0.12);
  color: #7a4f00;
}

.mode-tag.sunset {
  background: rgba(201,94,30,0.1);
  color: #7a2800;
}

.price-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 5px 16px;
  border-radius: 6px;
  white-space: nowrap;
}

.price-badge.special {
  background: var(--ink);
  color: var(--gold-pale);
}

.row-sunrise td:first-child {
  border-left: 3px solid var(--gold);
}

.row-sunset td:first-child {
  border-left: 3px solid var(--sunset);
}

.row-overtime {
  background: rgba(123,63,0,0.02) !important;
}

.pricing-footnote {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 20px;
  line-height: 1.75;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

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

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

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 900px) {
  .hero { padding: 100px 20px 80px; }
  .hero-title { font-size: clamp(2.8rem, 8vw, 5rem); }
  .pkg-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  .stat-item { padding: 16px 24px; }
  .stat-num { font-size: 1.6rem; }

  .price-table thead th,
  .price-table td { padding: 14px 14px; font-size: 0.82rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 640px) {
  .hero { padding: 90px 16px 80px; min-height: 100svh; }
  .hero-title { font-size: 3rem; line-height: 1; }
  .hero-title-sub { font-size: 1.2rem; }
  .hero-stats { width: 100%; flex-direction: row; }
  .stat-item { flex: 1; padding: 14px 12px; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.58rem; }

  .vehicle-strip { flex-direction: column; gap: 8px; padding: 16px; }
  .vs-item { padding: 4px 0; width: 100%; justify-content: center; }
  .vs-item + .vs-item::before { display: none; }

  .section { padding: 72px 16px; }
  .section-title { font-size: 2rem; }

  .tabs { 
    width: 100%; 
    flex-wrap: nowrap; /* Forces a single line */
    justify-content: space-between; 
    gap: 2px; /* Shrinks the space between buttons */
    padding: 3px; /* Tighter box around the buttons */
  }
  
  .tab { 
    flex: 1; /* Makes all buttons share the width equally */
    min-width: 0; /* Allows buttons to shrink to fit the screen */
    text-align: center; 
    font-size: 0.62rem; /* Reduces font size to fit "All Packages" */
    padding: 8px 2px; /* Very tight side padding */
    letter-spacing: -0.03em; /* Squeezes the text just a tiny bit */
    white-space: nowrap; /* Prevents text from breaking into two lines */
  }

  .pkg-grid { grid-template-columns: 1fr; gap: 20px; }
  .pkg-body { padding: 22px 20px 16px; }
  .pkg-footer { padding: 0 20px 22px; }
  .pkg-name { font-size: 1.25rem; }

  .info-grid { grid-template-columns: 1fr; }

  .price-table-wrap { border-radius: var(--radius-md); overflow-x: auto; }
  .price-table { min-width: 520px; }
  .price-table thead th,
  .price-table td { padding: 12px 12px; font-size: 0.78rem; }

  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  .section-header { margin-bottom: 40px; }
  .notice-banner { font-size: 0.78rem; }
}

/* ============================================================
   RESPONSIVE — LARGE SCREENS
   ============================================================ */

@media (min-width: 1400px) {
  .hero-title { font-size: 8rem; }
  .section-title { font-size: 4rem; }
  .pkg-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .info-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1700px) {
  .section-inner, .info-grid, .pricing-inner { max-width: 1400px; }
}

/* ============================================================
   UTILITY
   ============================================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}