/* ═══════════════════════════════════════════════════
   VOYAGO home.css
   Palette:
     Deep Maroon   #6E1F2B
     Mustard Gold  #D9A441
     Charcoal Grey #3A3A3A
     Ivory         #F5EFE6
     Rust          #A35334
═══════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --maroon:       #6E1F2B;
  --maroon-dark:  #4d1520;
  --maroon-mid:   #8a2535;
  --gold:         #D9A441;
  --gold-muted:   #c4903a;
  --rust:         #A35334;
  --charcoal:     #3A3A3A;
  --charcoal-mid: #555555;
  --ivory:        #F5EFE6;
  --ivory-deep:   #EDE5D8;
  --dark:         #1A1010;
  --text:         #2A1A1A;
  --text-muted:   #7a6a64;
  --white:        #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 12px rgba(26,16,16,.08);
  --shadow-md:  0 8px 32px rgba(26,16,16,.14);
  --shadow-lg:  0 20px 60px rgba(26,16,16,.22);

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --nav-h:      72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--ivory);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, button, textarea { font-family: var(--font-body); }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--maroon); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}
.section-desc.light { color: rgba(255,255,255,0.75); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-desc { margin: 0 auto; }

.section { padding: 96px 0; }
/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--maroon);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 2px solid var(--maroon);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--maroon-dark);
  border-color: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(110,31,43,.38);
}
.btn-sm { padding: 9px 18px; font-size: 12px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--maroon);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--maroon);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--maroon);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline.btn-sm { padding: 9px 18px; font-size: 12px; }

.btn-ghost {
  color: rgba(255,255,255,.88);
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}
.navbar.scrolled .btn-ghost { color: var(--text); }
.btn-ghost:hover { color: var(--gold); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  color: var(--maroon-dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--white);
  transition: all var(--transition);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
}

.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,.6);
  transition: all var(--transition);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-large { padding: 17px 40px; font-size: 15px; }

/* ─── NEW LOGO STYLING ─── */
.logo-brand {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 64px;
  width: 64px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
  padding: 6px;
  box-shadow:
    0 2px 4px rgba(0,0,0,.15),
    0 6px 12px rgba(0,0,0,.18),
    0 14px 28px rgba(0,0,0,.16),
    0 0 0 3px rgba(217,164,65,.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.logo-img:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 4px 8px rgba(0,0,0,.18),
    0 10px 20px rgba(0,0,0,.22),
    0 22px 40px rgba(0,0,0,.22),
    0 0 0 3px rgba(217,164,65,.45);
}
/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
  padding-bottom: 42px;
            padding-top: 42px;
}
.navbar.scrolled {
  background: rgba(245,239,230,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(26,16,16,.1);
}
.nav-inner {
  display: flex; align-items: center;
  gap: 32px;
  max-width: 1280px; width: 100%;
  margin: 0 auto; padding: 0 24px;
}
.nav-links {
  display: flex; align-items: center;
  gap: 4px; flex: 1;
  justify-content: center;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 50px;
  transition: all var(--transition);
  display: block;
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.14);
}
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--maroon);
  background: rgba(110,31,43,.08);
}
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-actions .btn-primary { font-size: 13px; padding: 10px 22px; }
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; background: none; border: none;
  cursor: pointer; padding: 6px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-only { display: none; }

/* ════════════════════════════════════
   HERO ENHANCED
════════════════════════════════════ */
.hero {
  position: relative;
  height: 85vh;
  min-height: 620px;
  max-height: 960px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
  transform-origin: center center;
}

/* Multi-layer cinematic overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(55,12,18,0.93) 0%,
      rgba(77,21,32,0.82) 38%,
      rgba(26,10,16,0.55) 68%,
      rgba(10,6,10,0.30) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(26,10,16,0.25) 0%,
      transparent 40%,
      transparent 70%,
      rgba(26,10,16,0.65) 100%
    );
}

/* Grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

/* Diagonal gold light accent */
.hero-diagonal {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-diagonal::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 140%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(217,164,65,0.04) 40%,
    rgba(217,164,65,0.09) 55%,
    rgba(217,164,65,0.03) 70%,
    transparent 100%
  );
  transform: skewX(-12deg);
}
.hero-diagonal::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to top, rgba(245,239,230,0.06), transparent);
}

/* Particle canvas */
#heroParticles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Content grid */
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ── LEFT: Copy ── */
.hero-copy { max-width: 600px; }

/* Animated badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,164,65,0.12);
  border: 1px solid rgba(217,164,65,0.32);
  border-radius: 50px;
  padding: 7px 16px 7px 10px;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 0.7s 0.2s ease forwards;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(217,164,65,0.25);
  animation: heroPulse 2s infinite;
  flex-shrink: 0;
}
@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(217,164,65,0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(217,164,65,0.08); }
}
.hero-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Hide the original eyebrow when badge is shown */
.hero-eyebrow { display: none; }

/* Headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.4s ease forwards;
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
  /* background: linear-gradient(135deg, #D9A441 0%, #f5c96a 50%, #D9A441 100%); */
  /* -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; */
}

/* Subheading */
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.8;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.6s ease forwards;
  font-weight: 400;
}

/* CTA row */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.8s ease forwards;
  margin-bottom: 52px;
}

/* Gold primary CTA */
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--maroon);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 2px solid var(--maroon);
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}
.hero-btn-primary:hover {
  background: #8a2535;
  border-color: #8a2535;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(194, 65, 72, 0.4);
}
.hero-btn-primary .btn-arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(26,16,16,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.hero-btn-primary:hover .btn-arrow { transform: translateX(3px); }

/* Ghost CTA */
.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.82);
  padding: 15px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.24);
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.04);
}
.hero-btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.10);
  color: var(--white);
  transform: translateY(-2px);
}

/* Trust strip */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: heroFadeUp 0.8s 1.0s ease forwards;
}
.hero-trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-trust-item svg { flex-shrink: 0; color: var(--gold); opacity: 0.85; }

/* ── RIGHT: Floating stat cards ── */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  animation: heroSlideLeft 0.9s 0.7s ease forwards;
  flex-shrink: 0;
}

@keyframes heroSlideLeft {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 20px 24px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  min-width: 180px;
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.hero-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,164,65,0.5), transparent);
}
.hero-stat-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateX(-4px);
}
.hero-stat-card.card-featured {
  background: rgba(217,164,65,0.12);
  border-color: rgba(217,164,65,0.30);
}
.hero-stat-card.card-featured::before {
  background: linear-gradient(90deg, transparent, rgba(217,164,65,0.8), transparent);
}

.stat-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(217,164,65,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--gold);
}
.stat-card-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-card-num span { color: var(--gold); }
.stat-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.stat-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(217,164,65,0.12);
  padding: 3px 9px;
  border-radius: 50px;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeUp 0.8s 1.3s ease forwards;
  cursor: pointer;
}
.hero-scroll-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(217,164,65,0.6), transparent);
  animation: heroScrollLine 2s infinite;
}
@keyframes heroScrollLine {
  0%   { opacity: 1; transform: scaleY(1) translateY(0); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0.4) translateY(20px); transform-origin: top; }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════
   STATS STRIP
════════════════════════════════════ */
.stats-strip {
  background: var(--maroon);
  padding: 20px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 20px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.stat-sep {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.14);
  flex-shrink: 0;
}

/* ════════════════════════════════════
   VEHICLES
════════════════════════════════════ */
.vehicles-section { background: var(--ivory); }

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}
.section-cta {
    margin-top: 40px;      
    display: flex;
    justify-content: center; 
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(163,83,52,.14);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
/* .vehicle-card.featured-card {
  background: var(--maroon);
  border-color: var(--maroon);
} */
/* .vehicle-card.featured-card .vehicle-info h3 { color: var(--white); } */
/* .vehicle-card.featured-card .vehicle-info p { color: rgba(255,255,255,.78); } */
/* .vehicle-card.featured-card .vehicle-meta span { color: rgba(255,255,255,.75); background: rgba(255,255,255,.12); } */
/* .vehicle-card.featured-card .vehicle-price { color: rgba(255,255,255,.7); } */
.vehicle-card.featured-card .vehicle-price strong { color: var(--gold); }
.vehicle-card.featured-card .vehicle-badge { background: var(--gold); color: var(--maroon-dark); }
.vehicle-card.featured-card .btn-primary { background: var(--maroon-dark); color: var(--white); border-color: var(--maroon); }
.vehicle-card.featured-card .btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.vehicle-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.vehicle-img-wrap img {
  width: 100%; height: 100%;
  transition: transform 0.6s ease;
}
.vehicle-card:hover .vehicle-img-wrap img { transform: scale(1.06); }

.vehicle-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--maroon);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.vehicle-info { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.vehicle-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.vehicle-info p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.vehicle-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.vehicle-meta span {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--ivory);
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.meta-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: inherit;
  opacity: 0.85;
}
.vehicle-price {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.vehicle-price strong { font-size: 1.1rem; font-weight: 700; color: var(--maroon); }

/* ════════════════════════════════════
   PACKAGES
════════════════════════════════════ */
.packages-section {
  background: var(--maroon);
  padding: 96px 0;
  margin-bottom: 40px;
}

.packages-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.tab-btn {
  background: transparent;
  border: 1.5px solid rgba(217,164,65,.5);
  color: rgba(255,255,255,.7);
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.04em;
}
.tab-btn:hover, .tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.packages-slider-outer {
  overflow: hidden;
  width: 100%;
}

.packages-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.package-card.hidden { display: none; }

.pkg-img-wrap { position: relative; height: 220px; overflow: hidden; }
.pkg-img-wrap img { width: 100%; height: 100%; transition: transform 0.6s ease; }
.package-card:hover .pkg-img-wrap img { transform: scale(1.07); }

.pkg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(77,21,32,.7) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.pkg-duration {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  background: rgba(110,31,43,.75);
  padding: 5px 12px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.pkg-info { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.pkg-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 8px;
}
.pkg-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pkg-info p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 18px; }

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--ivory-deep);
  padding-top: 16px;
}
.pkg-price { display: flex; align-items: baseline; gap: 4px; }
.pkg-price .from, .pkg-price .per { font-size: 11px; color: var(--text-muted); }
.pkg-price strong { font-size: 1.05rem; font-weight: 700; color: var(--maroon); }

.pkg-btn {
  display: inline-block;
  background: var(--maroon);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.pkg-btn:hover { background: var(--maroon-dark); transform: scale(1.03); }

.slider-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.slider-prev, .slider-next, .tl-prev, .tl-next {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(217,164,65,.5);
  background: transparent;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.slider-prev:hover, .slider-next:hover,
.tl-prev:hover, .tl-next:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
}
.slider-dots, .tl-dots { display: flex; gap: 8px; align-items: center; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(217,164,65,.4);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  padding: 0;
}
.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════ */
.why-section {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.why-bg-img { position: absolute; inset: 0; }
.why-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.45) saturate(0.5);
}

.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    118deg,
    rgba(55,12,20,.97) 0%,
    rgba(77,21,32,.90) 45%,
    rgba(40,10,16,.96) 100%
  );
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(217,164,65,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 1;
  pointer-events: none;
}

.why-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  padding: 108px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.why-left { position: relative; max-width: 460px; }

.why-watermark {
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(217,164,65,0.045);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}
.why-left > *:not(.why-watermark) { position: relative; z-index: 1; }

.why-micro-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 36px 0 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(217,164,65,0.18);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  backdrop-filter: blur(8px);
}
.why-micro-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 4px;
}
.why-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.why-stat-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.why-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(217,164,65,0.2);
  flex-shrink: 0;
}

.why-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}
.why-cta-btn svg { transition: transform var(--transition); }
.why-cta-btn:hover svg { transform: translateX(4px); }

.why-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 26px;
  background: rgba(255,255,255,0.055);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid rgba(217,164,65,0.45);
  backdrop-filter: blur(10px);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-left-color var(--transition);
  transition-delay: var(--reveal-delay, 0s);
}
.feature-item:hover {
  background: rgba(255,255,255,0.09);
  transform: translateX(8px);
  box-shadow: -4px 0 24px rgba(217,164,65,0.1), 0 8px 32px rgba(0,0,0,0.2);
  border-left-color: var(--gold);
}

.feature-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(217,164,65,0.18) 0%, rgba(217,164,65,0.06) 100%);
  border: 1.5px solid rgba(217,164,65,0.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}
.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 0 18px rgba(217,164,65,0.28);
  background: radial-gradient(circle at 35% 35%, rgba(217,164,65,0.28) 0%, rgba(217,164,65,0.1) 100%);
  border-color: rgba(217,164,65,0.65);
}

.feature-text h4 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.feature-text p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
}

/* ════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════ */
.testimonials-section { background: var(--ivory); }

.testimonials-carousel { overflow: hidden; margin-bottom: 28px; }
.reviews-cta { display: flex; justify-content: center; }
.testimonial-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: testimonialLoop 40s linear infinite;
}
.testimonials-carousel:hover .testimonial-track {
  animation-play-state: paused;
}
@keyframes testimonialLoop {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* ─── UPCOMING SECTION DISABLED STATE ─── */
.upcoming-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--maroon-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  animation: upcomingGlow 1.8s ease-in-out infinite;
}
@keyframes upcomingGlow {
  0%, 100% {
    box-shadow: 0 0 6px rgba(217,164,65,.5), 0 0 0 0 rgba(217,164,65,.4);
  }
  50% {
    box-shadow: 0 0 18px rgba(217,164,65,.9), 0 0 10px 4px rgba(217,164,65,.35);
  }
}

.events-disabled .events-slider-wrap,
.events-disabled .btn-primary {
  pointer-events: none !important;
  opacity: 0.55;
  filter: grayscale(35%);
  cursor: not-allowed;
}
.packages-disabled .packages-tabs,
.packages-disabled .packages-slider-outer,
.packages-disabled .slider-controls,
.packages-disabled .section-cta {
  pointer-events: none !important;
  opacity: 0.55;
  filter: grayscale(35%);
  cursor: not-allowed;
}
.testimonial-card {
  flex: 0 0 420px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(217,164,65,.2);
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 18px; }
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 24px;
}
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.reviewer span { font-size: 12px; color: var(--text-muted); }

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
}
.tl-prev, .tl-next {
  border-color: var(--maroon);
  color: var(--maroon);
}
.tl-dots .dot { background: rgba(110,31,43,.2); }
.tl-dots .dot.active { background: var(--maroon); }

/* ════════════════════════════════════
   UPCOMING DEPARTURES
════════════════════════════════════ */
.events-section { background: var(--ivory-deep); }

.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.events-header > div {
  text-align: center;
  flex: 1;
}

.events-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.events-track-outer {
  flex: 1;
  overflow: hidden;
}
.events-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.event-card {
  flex: 0 0 calc(25% - 18px);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(163,83,52,.14);
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.event-img { height: 190px; overflow: hidden; }
.event-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.event-card:hover .event-img img { transform: scale(1.06); }
.event-info { padding: 18px 20px; }
.event-date {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--maroon);
  margin-bottom: 6px;
}
.event-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.35;
}
.event-loc {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.event-loc svg { flex-shrink: 0; margin-top: 2px; color: var(--rust); }

.events-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold-muted);
  background: var(--white);
  color: var(--maroon);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.events-arrow:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
}

    /* ════════════════════════════════════════════
       FOUNDER SECTION
    ════════════════════════════════════════════ */
    .founder-section {
      padding: 96px 0;
      margin-bottom: 48px;
      background: var(--maroon);
      overflow: hidden;
      position: relative;
    }
    /* Subtle diagonal background accent */
    .founder-section::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 45%;
      height: 100%;
      background: linear-gradient(135deg, transparent 40%, rgba(217,164,65,.04) 100%);
      pointer-events: none;
    }

    .founder-inner {
      display: flex;
      align-items: center;
      gap: 72px;
      position: relative;
      z-index: 1;
    }

    /* ── Image column ── */
    .founder-img-col {
      flex: 0 0 400px;
      position: relative;
    }
    .founder-img-wrap {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0,0,0,.55);
    }
    .founder-img-wrap img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      object-position: center top;
      display: block;
      transition: transform .6s ease;
    }
    .founder-img-wrap:hover img {
      transform: scale(1.04);
    }
    /* Gold accent frame */
    .founder-img-wrap::before {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: 21px;
      background: linear-gradient(135deg, #D9A441 0%, transparent 55%);
      z-index: -1;
      opacity: .7;
    }
    /* Gold corner badge */
    .founder-badge {
      position: absolute;
      bottom: 24px;
      left: 24px;
      background: rgba(15,13,11,.82);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(217,164,65,.35);
      border-radius: 12px;
      padding: 12px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .founder-badge-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #D9A441;
      box-shadow: 0 0 8px rgba(217,164,65,.7);
      flex-shrink: 0;
    }
    .founder-badge-text {
      font-family: var(--font-body, 'Inter', sans-serif);
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,.9);
      letter-spacing: .04em;
    }
    .founder-badge-text span {
      color: #D9A441;
      display: block;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    /* Decorative quote marks */
    .founder-quote-deco {
      position: absolute;
      top: -20px;
      right: -20px;
      font-family: var(--font-display, 'Playfair Display', serif);
      font-size: 120px;
      line-height: 1;
      color: rgba(217,164,65,.12);
      pointer-events: none;
      user-select: none;
    }

    /* ── Content column ── */
    .founder-content-col {
      flex: 1;
      min-width: 0;
    }
    .founder-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-body, 'Inter', sans-serif);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: #D9A441;
      margin-bottom: 20px;
    }
    .founder-eyebrow::before {
      content: '';
      width: 32px; height: 2px;
      background: #D9A441;
      border-radius: 2px;
      flex-shrink: 0;
    }
    .founder-headline {
      font-family: var(--font-display, 'Playfair Display', serif);
      font-size: clamp(2rem, 3.5vw, 2.9rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.18;
      margin-bottom: 28px;
    }
    .founder-headline em {
      font-style: italic;
      color: #D9A441;
    }
    .founder-body {
      font-family: var(--font-body, 'Inter', sans-serif);
      font-size: 1.02rem;
      line-height: 1.78;
      color: rgba(255,255,255,.68);
      margin-bottom: 16px;
    }
    .founder-body:last-of-type {
      margin-bottom: 36px;
    }

    /* Signature block */
    .founder-sig {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 36px;
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,.1);
    }
    .founder-sig-avatar {
      width: 56px; height: 56px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center top;
      border: 2px solid rgba(217,164,65,.5);
      flex-shrink: 0;
    }
    .founder-sig-name {
      font-family: var(--font-display, 'Playfair Display', serif);
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      font-style: italic;
    }
    .founder-sig-title {
      font-family: var(--font-body, 'Inter', sans-serif);
      font-size: 12px;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.45);
      margin-top: 3px;
    }
    .founder-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body, 'Inter', sans-serif);
      font-size: 14px;
      font-weight: 600;
      color: #D9A441;
      text-decoration: none;
      letter-spacing: .04em;
      transition: gap .25s ease, color .25s ease;
    }
    .founder-link:hover {
      gap: 14px;
      color: #f0c060;
    }
    .founder-link svg {
      transition: transform .25s ease;
    }
    .founder-link:hover svg {
      transform: translateX(3px);
    }

    /* ── Stats row inside founder ── */
    .founder-stats {
      display: flex;
      gap: 32px;
      margin-bottom: 36px;
      flex-wrap: wrap;
    }
    .founder-stat {
      text-align: left;
    }
    .founder-stat-num {
      font-family: var(--font-display, 'Playfair Display', serif);
      font-size: 2rem;
      font-weight: 700;
      color: #D9A441;
      line-height: 1;
    }
    .founder-stat-label {
      font-family: var(--font-body, 'Inter', sans-serif);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: rgba(255,255,255,.45);
      margin-top: 4px;
    }
    .founder-stat-divider {
      width: 1px;
      background: rgba(255,255,255,.12);
      align-self: stretch;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .founder-inner { gap: 48px; }
      .founder-img-col { flex: 0 0 340px; }
      .founder-img-wrap img { height: 460px; }
    }
    @media (max-width: 900px) {
      .founder-section { padding: 72px 0; }
      .founder-inner {
        flex-direction: column;
        gap: 48px;
        text-align: center;
      }
      .founder-img-col { flex: unset; width: 100%; max-width: 420px; margin: 0 auto; }
      .founder-img-wrap img { height: 420px; }
      .founder-eyebrow { justify-content: center; }
      .founder-stats { justify-content: center; }
      .founder-sig { justify-content: center; }
      .founder-link { justify-content: center; }
    }
    @media (max-width: 600px) {
      .founder-section { padding: 56px 0; }
      .founder-img-col { max-width: 100%; }
      .founder-img-wrap img { height: 340px; }
      .founder-stats { gap: 20px; }
      .founder-stat-num { font-size: 1.6rem; }
      .founder-quote-deco { font-size: 80px; top: -10px; right: -10px; }

      .founder-sig {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }
      .founder-sig-avatar {
        width: 68px;
        height: 68px;
      }
    }

/* ════════════════════════════════════
   CTA BANNER
════════════════════════════════════ */
.cta-banner {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  margin: 48px auto;
  max-width: 1280px;
  width: calc(100% - 48px);
  border-radius: 32px;
  display: flex; align-items: center;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cta-banner:hover .cta-bg img { transform: scale(1.08); }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(77,21,32,.92) 0%, rgba(110,31,43,.76) 100%);
}
.cta-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 72px 24px;
  width: 100%; max-width: 1280px; margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 700; color: var(--white);
  line-height: 1.15; margin-bottom: 16px;
}
.cta-content h2 em { font-style: italic; color: var(--gold); }
.cta-content p { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 40px; }
.cta-btns {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 28px;
}
.cta-contact {
  font-size: 14px; color: rgba(255,255,255,.6);
  display: flex; align-items: center;
  gap: 8px; justify-content: center;
}
.cta-contact a { color: var(--gold); font-weight: 600; transition: color var(--transition); }
.cta-contact a:hover { color: var(--white); }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer { background: var(--dark); padding-top: 80px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  align-items:start; 
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
/* Footer logo image height */
.logo-img-footer {
  height: 72px;
  width: 72px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 24px;
  background: var(--white);
  padding: 8px;
  box-shadow:
    0 3px 6px rgba(0,0,0,.3),
    0 8px 16px rgba(0,0,0,.28),
    0 18px 36px rgba(0,0,0,.24),
    0 0 0 3px rgba(217,164,65,.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.logo-img-footer:hover {
  transform: translateY(-3px) scale(1.05);
}
/* .footer-brand .footer-logo { color: var(--white); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-brand .footer-logo .logo-icon { color: var(--gold); } */
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 300px; margin-bottom: 28px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}
.social-links a:hover { background: var(--maroon); border-color: var(--maroon); color: var(--white); }

.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }

.contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.contact-list li svg { flex-shrink: 0; color: var(--rust); margin-top: 2px; }
.contact-list li a, .contact-list li span { font-size: 13.5px; color: rgba(255,255,255,.55); transition: color var(--transition); }
.contact-list li a:hover { color: var(--white); }

.footer-hours { margin-top: 24px; display: flex; flex-direction: column; gap: 4px; }
.footer-hours strong { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.footer-hours span { font-size: 13px; color: rgba(255,255,255,.45); }

.footer-bottom { padding: 22px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.3); }
.footer-bottom-inner > p:first-child { order: 0; }
.footer-credit {
  order: 1;
  flex: 1;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,.3);
}
.footer-credit a {
  color: rgba(217,164,65,.7);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-credit a:hover { color: var(--gold); }
.footer-legal { order: 2; display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { font-size: 12.5px; color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1100px) {
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-slider {
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: none;
    gap: 28px;
    width: auto;
    transform-style: preserve-3d;
  }
  .packages-slider .package-card {
    flex: 0 0 calc(50% - 14px);
    max-width: calc(50% - 14px);
  }
  .slider-controls { display: flex; }
  .why-content { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .event-card { flex: 0 0 calc(33.333% - 16px); }
  .why-watermark { font-size: clamp(3rem, 7vw, 5.5rem); }

  /* Hero cards go horizontal on tablet */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .hero-stat-card {
    min-width: 160px;
    flex: 1;
  }
}

.mobile-only { display: none; }

@media (max-width: 900px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .mobile-only { display: block; width: 100%; margin-top: 8px; }
  .nav-btn-signin {
    text-align: center;
    border: 1px solid var(--maroon);
    color: var(--maroon) !important;
    border-radius: 50px;
    padding: 10px 0;
  }
  .nav-btn-book {
    text-align: center;
    background: var(--maroon) !important;
    color: var(--white) !important;
    border-radius: 50px;
    padding: 10px 0;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(245,239,230,.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--ivory-deep);
    box-shadow: var(--shadow-md);
    gap: 4px;
    align-items: flex-start;
    z-index: 999;
  }
  .nav-links.open a {
    color: var(--dark);
    font-size: 15px;
    padding: 12px 16px;
    width: 100%;
    border-radius: var(--radius-sm);
  }
  .nav-links.open a:hover { background: rgba(110,31,43,.08); color: var(--maroon); }

  .why-content { grid-template-columns: 1fr; gap: 48px; padding: 72px 24px; }
  .why-left { max-width: 100%; }
  .why-watermark { top: -20px; left: 0; font-size: clamp(2.5rem, 8vw, 4rem); }
  .why-micro-stats { margin: 28px 0 32px; }

  .testimonial-card { flex: 0 0 calc(80vw); }

  .stat-item { padding: 16px 28px; }
  .stat-sep { display: none; }
  .stats-grid { gap: 0; }

  .events-header { flex-direction: column; align-items: center; text-align: center; }
  .events-header .btn-primary { margin-top: 8px; }
  .event-card { flex: 0 0 calc(50% - 12px); }
}
/* ─── FLOATING WHATSAPP + CALL BUTTONS ─── */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  transition: transform var(--transition), box-shadow var(--transition);
}
.floating-btn:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.floating-btn.whatsapp-btn { background: #25D366; }
.floating-btn.call-btn { background: var(--maroon); }

@media (max-width: 480px) {
  .floating-actions { bottom: 18px; right: 18px; gap: 10px; }
  .floating-btn { width: 48px; height: 48px; }
}
@media (max-width: 768px) {
  .hero {
    height: 60vh;
    min-height: 440px;
    padding-top: 20px;
  }
  .hero-content {
    padding-top: calc(var(--nav-h) + 50px);
    padding-bottom: 20px;
    grid-template-columns: 1fr;
  }
  .hero-cards { display: none; }
  .hero-headline { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .hero-sub { font-size: 1rem; margin-bottom: 24px; }
  .hero-trust { flex-wrap: wrap; gap: 12px; }
  .hero-trust-divider { display: none; }
}

@media (max-width: 700px) {
  .section { padding: 64px 0; }
  .vehicles-grid { grid-template-columns: 1fr; }
  .packages-slider {
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: none;
    gap: 28px;
    width: auto;
  }
  .packages-slider .package-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .cta-btns { flex-direction: column; align-items: center; }
  .testimonial-card { flex: 0 0 calc(90vw); padding: 24px; }
  .event-card { flex: 0 0 calc(75vw); }
}

@media (max-width: 500px) {
  .nav-actions { display: none; }
}

@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  .section-title { font-size: 1.75rem; }
  .stat-item { padding: 12px 16px; }
  .stats-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .feature-item { padding: 16px; }
  .hero {height: 55vh; min-height: 380px;}
  .hero-headline { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .hero-sub { font-size: 0.92rem; margin-bottom: 18px; }
  .hero-ctas { gap: 12px; }
  .hero-btn-primary, .hero-btn-ghost { padding: 13px 22px; font-size: 13px; }
  .hero-ctas { margin-bottom: 32px; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ─── RESPONSIVE / MEDIA QUERIES ─── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .mobile-only { display: block; width: 100%; margin-top: 8px; }
  
  .nav-btn-signin {
    display: block; text-align: center;
    border: 1px solid var(--maroon); color: var(--maroon) !important;
    border-radius: 50px; padding: 10px 0;
  }
  .nav-btn-book {
    display: block; text-align: center;
    background: var(--maroon) !important; color: var(--white) !important;
    border-radius: 50px; padding: 10px 0;
  }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(245,239,230,.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--ivory-deep);
    box-shadow: var(--shadow-md);
    gap: 4px; align-items: flex-start; z-index: 999;
  }
  .nav-links.open a {
    color: var(--dark); font-size: 15px;
    padding: 12px 16px; width: 100%; border-radius: var(--radius-sm);
  }
  .nav-links.open a:hover, .nav-links.open a.active {
    background: rgba(110,31,43,.08); color: var(--maroon);
  }
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}
@media (max-width: 500px) {
  .nav-actions { display: none; }
}
@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  .logo-img { height: 46px; width: 46px; } /* Slightly smaller logo on extra-small mobile screens */
}

    /* ─── EVENT CARDS CORNER CORRECTION ─── */
    .event-card {
      isolation: isolate !important;
      border-radius: var(--radius-lg) !important;
      overflow: hidden !important;
    }
    .event-img {
      border-top-left-radius: var(--radius-lg) !important;
      border-top-right-radius: var(--radius-lg) !important;
      overflow: hidden !important;
    }
    .event-info {
      border-bottom-left-radius: var(--radius-lg) !important;
      border-bottom-right-radius: var(--radius-lg) !important;
    }

    /* ─── DECREASE BORDER RADIUS FOR CARDS ON TABLET/MOBILE ─── */
    @media (max-width: 1024px) {
      .vehicle-card,
      .package-card,
      .testimonial-card,
      .event-card {
        border-radius: var(--radius-md) !important; /* 16px */
      }
      .vehicle-img-wrap,
      .pkg-img-wrap,
      .event-img {
        border-top-left-radius: var(--radius-md) !important;
        border-top-right-radius: var(--radius-md) !important;
      }
      .event-info {
        border-bottom-left-radius: var(--radius-md) !important;
        border-bottom-right-radius: var(--radius-md) !important;
      }
    }

    /* ─── VIEW DETAILS BUTTON CORRECTION ─── */
    @media (max-width: 1024px) {
      .vehicle-info .btn-sm {
        align-self: flex-start !important;
        width: auto !important;
        padding: 8px 16px !important;
        font-size: 12px !important;
      }
    }

    /* ─── CTA ROW & BUTTON TEXT CENTERING ON MOBILE ─── */
    @media (max-width: 700px) {
      .cta-btns {
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 12px !important;
        flex-wrap: nowrap !important;
      }
      .cta-btns a.btn-large {
        padding: 12px 18px !important;
        font-size: 14px !important;
        flex: 1 !important;
        max-width: 150px !important;
        text-align: center !important;
        white-space: nowrap !important;
        justify-content: center !important; /* Center text inside dynamic flex button */
      }
    }

    /* ─── BUTTON TEXT CENTERING FOR ALL CTA BUTTONS ─── */
    .cta-btns a.btn-large {
      justify-content: center !important;
    }

    /* ─── CTA SECTION HEIGHT DECREASE (ALL DEVICES) ─── */
    .cta-banner {
      min-height: 380px !important;
    }
    .cta-content {
      padding: 48px 24px !important;
    }
    @media (max-width: 768px) {
      .cta-banner {
        width: calc(100% - 24px) !important;
        border-radius: 20px !important;
      }
    }

    /* ─── HERO STYLING MATCHED TO VEHICLES/PACKAGES PAGE HERO ─── */
    .hero {
      height: 100vh !important;
      min-height: 700px !important;
      max-height: none !important;
      display: flex !important;
      align-items: center !important;
    }
    .hero-bg {
      inset: -10% 0 !important;
      object-position: center 60% !important;
      object-fit: cover !important;
    }
    .hero-content {
      padding-top: var(--nav-h) !important;
      height: auto !important;
    }
    .hero-copy {
      text-align: left !important;
      display: block !important;
      margin: 0 !important;
    }
    .hero-ctas {
      justify-content: flex-start !important;
    }
    .hero-trust {
      justify-content: flex-start !important;
    }

    /* Responsive hero layout to match page-hero on vehicles page */
    @media (max-width: 900px) {
      .hero {
        height: auto !important;
        min-height: 380px !important;
        padding: 120px 0 60px !important;
      }
      .hero-content {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
      }
      .hero-scroll {
        display: none !important;
      }
    }
    @media (max-width: 700px) {
      .hero {
        padding: 110px 0 52px !important;
      }
      /* Prevent event card clipping on mobile (makes all 4 corners visible and rounded) */
      .event-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        border-radius: var(--radius-md) !important;
      }
      .event-img {
        border-top-left-radius: var(--radius-md) !important;
        border-top-right-radius: var(--radius-md) !important;
      }
      .event-info {
        border-bottom-left-radius: var(--radius-md) !important;
        border-bottom-right-radius: var(--radius-md) !important;
      }
    }
  