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

:root {
  --forest: #234E3C;
  --forest-dark: #1a3a2d;
  --sand: #F5F2EA;
  --sand-dark: #E8E4D9;
  --white: #FFFFFF;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --burnt-orange: #D4845A;
  --burnt-orange-light: #E6A07A;
  --glass-bg: rgba(255,255,255,0.12);
  --glass-border: rgba(255,255,255,0.18);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.15);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

* { margin:0; padding:0; box-sizing:border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--charcoal);
  background: var(--sand);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 600px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--sand);
  color: var(--charcoal);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  border: 1px solid transparent;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-primary svg { transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.4s ease;
}
.btn-dark:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: calc(16px + env(safe-area-inset-top, 0px));
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 1000;
  padding: 14px 28px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  padding: 12px 28px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.4s ease;
}
.nav.scrolled .nav-logo { color: var(--charcoal); }
.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-icon svg { width: 20px; height: 20px; }
.nav-logo .custom-logo-link { display: flex; align-items: center; }
.nav-logo .custom-logo { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burnt-orange);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--charcoal-light); }
.nav.scrolled .nav-links a:hover { color: var(--charcoal); }

.nav-cta {
  padding: 10px 24px !important;
  background: var(--forest) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--forest-dark) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.nav.scrolled .nav-hamburger span { background: var(--charcoal); }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,58,45,0.92) 0%, rgba(35,78,60,0.88) 40%, rgba(26,58,45,0.95) 100%);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
}
.mobile-menu::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,132,90,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-nav {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 320px;
  padding: 0 24px;
}
.mobile-menu a {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
  padding: 14px 28px;
  width: 100%;
  text-align: center;
  border-radius: 16px;
  z-index: 1;
}
.mobile-menu.open a {
  opacity: 0.85;
  transform: translateY(0);
}
.mobile-menu.open a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.32s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.38s; }
.mobile-menu a:hover,
.mobile-menu a:active {
  opacity: 1;
  background: rgba(255,255,255,0.08);
}
.mobile-menu a:last-child {
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}
.mobile-menu a:last-child:hover {
  background: rgba(255,255,255,0.18);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0;
  transform: rotate(-90deg);
}
.mobile-menu.open .mobile-menu-close {
  opacity: 1;
  transform: rotate(0deg);
  transition-delay: 0.15s;
}
.mobile-menu-close:hover {
  background: rgba(255,255,255,0.15);
  transform: rotate(90deg);
}
.mobile-menu-footer {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s;
}
.mobile-menu.open .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-footer p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.mobile-menu-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 16px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img, .hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.4) 80%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: calc(140px + env(safe-area-inset-top, 0px));
  padding-bottom: 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--white);
  max-width: 700px;
  margin-bottom: 20px;
  line-height: 1.08;
}
.hero h1 .accent { color: var(--burnt-orange-light); }
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { text-align: center; }
.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
}
.hero-stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.scroll-indicator {
  display: none;
}

/* ===== WHY CHOOSE ===== */
.why-section {
  padding: 72px 0 64px;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.why-card {
  padding: 28px 22px 24px;
  background: var(--sand);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  position: relative;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(35,78,60,0.1);
}
.why-card-emoji {
  display: none;
}
.why-card-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: var(--shadow-sm);
}
.why-card-icon svg { width: 22px; height: 22px; color: var(--forest); }
.why-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.why-card p {
  font-size: 0.82rem;
  color: var(--charcoal-light);
  line-height: 1.55;
}

/* ===== EXPERIENCES ===== */
.experiences-section {
  padding: 80px 0;
  background: var(--sand);
}
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.exp-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  border: 1px solid rgba(0,0,0,0.04);
  text-decoration: none;
  color: inherit;
}
.exp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.exp-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.exp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.exp-card:hover .exp-card-img img { transform: scale(1.05); }
.exp-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
}
.exp-card-price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 8px 16px;
  background: var(--white);
  color: var(--forest);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
}
.exp-card-price small {
  font-weight: 500;
  font-size: 0.75em;
  opacity: 0.7;
}
.exp-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.exp-card-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.exp-card-meta {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.exp-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.exp-card-tag {
  padding: 6px 14px;
  background: var(--sand);
  color: var(--charcoal-light);
  font-size: 0.78rem;
  border-radius: 50px;
  font-weight: 500;
}
.exp-card-footer {
  padding-top: 16px;
  margin-top: auto;
}
.exp-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 24px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.4s ease;
}
.exp-card:hover .exp-card-cta {
  background: var(--forest-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.exp-card-coming {
  position: relative;
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}
.exp-card-coming .exp-card-img::after {
  content: 'Coming Soon';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
}

/* ===== WHAT'S INCLUDED ===== */
.included-section {
  padding: 120px 0;
  background: var(--white);
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.included-card {
  padding: 32px 20px;
  background: var(--sand);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s ease;
}
.included-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.included-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
}
.included-card-icon svg { width: 32px; height: 32px; }
.included-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* ===== FLEET ===== */
.fleet-section {
  padding: 120px 0;
  background: var(--sand);
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s ease;
  border: 1px solid rgba(0,0,0,0.04);
}
.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.fleet-card-img {
  height: 260px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fleet-card-img svg { width: 80px; height: 80px; color: rgba(255,255,255,0.3); }
.fleet-card-body { padding: 28px; }
.fleet-card-name {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.fleet-card-spec {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  margin-bottom: 16px;
}
.fleet-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fleet-card-feature {
  padding: 6px 12px;
  background: var(--sand);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--charcoal-light);
  font-weight: 500;
}

/* ===== LIFESTYLE ===== */
.lifestyle-section {
  padding: 0;
}
.lifestyle-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.lifestyle-block:nth-child(even) { direction: rtl; }
.lifestyle-block:nth-child(even) > * { direction: ltr; }
.lifestyle-img {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  min-height: 400px;
}
.lifestyle-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lifestyle-img-placeholder svg { width: 80px; height: 80px; color: rgba(255,255,255,0.15); }
.lifestyle-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  background: var(--white);
}
.lifestyle-block:nth-child(even) .lifestyle-content { background: var(--sand); }
.lifestyle-content h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
  color: var(--charcoal);
}
.lifestyle-content p {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 1.7;
  max-width: 450px;
}

/* ===== UPCOMING ===== */
.upcoming-section {
  padding: 120px 0;
  background: var(--forest);
  color: var(--white);
}
.upcoming-section .section-label { color: var(--burnt-orange-light); }
.upcoming-section .section-title { color: var(--white); }
.upcoming-section .section-subtitle { color: rgba(255,255,255,0.7); }
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.upcoming-card {
  padding: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}
.upcoming-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.upcoming-card-emoji {
  font-size: 2rem;
  margin-bottom: 16px;
}
.upcoming-card h4 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.upcoming-card-stops {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.upcoming-card-stop {
  padding: 5px 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
}
.upcoming-card-status {
  font-size: 0.8rem;
  color: var(--burnt-orange-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== SAFETY ===== */
.safety-section {
  padding: 120px 0;
  background: var(--white);
}
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.safety-card {
  padding: 36px 28px;
  background: var(--sand);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}
.safety-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.safety-card-icon {
  width: 56px;
  height: 56px;
  background: var(--forest);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.safety-card-icon svg { width: 24px; height: 24px; color: var(--white); }
.safety-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}
.safety-card-last { grid-column: 2; }

/* ===== COMMUNITY ===== */
.community-section {
  padding: 120px 0;
  background: var(--sand);
  text-align: center;
}
.community-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
  margin-bottom: 48px;
}
.community-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  opacity: 0.8;
}
.community-img:nth-child(2) { grid-row: span 2; aspect-ratio: auto; }

/* ===== FOUNDER ===== */
.founder-section {
  padding: 120px 0;
  background: var(--white);
}
.founder-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
  margin-top: 48px;
}
.founder-img {
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-img svg { width: 80px; height: 80px; color: rgba(255,255,255,0.2); }
.founder-name {
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.founder-title {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin-bottom: 32px;
  font-weight: 500;
}
.founder-story {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 32px;
}
.founder-quote {
  padding: 32px;
  background: var(--sand);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--burnt-orange);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
}

/* ===== INVESTOR ===== */
.investor-section {
  padding: 120px 0;
  background: var(--forest);
  color: var(--white);
}
.investor-section .section-label { color: var(--burnt-orange-light); }
.investor-section .section-title { color: var(--white); }
.investor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.investor-card {
  padding: 32px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.4s ease;
}
.investor-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.investor-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--burnt-orange-light);
  margin-bottom: 8px;
}
.investor-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.investor-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.investor-funding {
  text-align: center;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.investor-funding-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--burnt-orange-light);
  margin-bottom: 8px;
}
.investor-funding-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== WAITLIST ===== */
.waitlist-section {
  padding: 120px 0;
  background: var(--sand);
  text-align: center;
}
.waitlist-form {
  max-width: 600px;
  margin: 48px auto 0;
  text-align: left;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: all 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(35,78,60,0.1);
}
.form-group input::placeholder { color: #aaa; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.waitlist-form .btn-dark {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 1rem;
  margin-top: 8px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 40px;
  background: var(--charcoal);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 300px; }
.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer-socials a:hover { background: rgba(255,255,255,0.15); }
.footer-socials svg { width: 18px; height: 18px; color: rgba(255,255,255,0.6); }

/* ===== WHATSAPP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: all 0.3s ease;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 28px; height: 28px; color: var(--white); }

/* ===== ANIMATIONS (disabled — content loads immediately) ===== */
.reveal {
  opacity: 1;
  transform: none;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.fade-in { opacity: 1; }

.parallax-img {
  transition: transform 0.1s ease-out;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .experiences-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(3, 1fr); }
  .investor-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-content { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-block { grid-template-columns: 1fr; }
  .lifestyle-block:nth-child(even) { direction: ltr; }
  .lifestyle-img { min-height: 300px; }
  .lifestyle-content { padding: 48px 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { align-items: stretch; min-height: 115vh; }
  .hero-content {
    padding-top: calc(120px + env(safe-area-inset-top, 0px));
    padding-bottom: 48px;
    display: flex;
    flex-direction: column;
  }
  .hero p {
    margin-bottom: 80px;
  }
  .whatsapp-btn {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .whatsapp-btn.visible {
    opacity: 1;
    pointer-events: auto;
  }
  .hero-buttons {
    margin-top: auto;
  }
  .hero-stats {
    margin-top: 20px;
  }
  .hero h1 { font-size: 2.5rem; }
  .hero-stat-number { font-size: 1.8rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .experiences-grid { grid-template-columns: 1fr; }
  .exp-card-tags {
    flex-wrap: wrap;
    max-height: 34px;
    overflow: hidden;
  }
  .fleet-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .upcoming-grid { grid-template-columns: 1fr; }
  .safety-section { padding: 80px 0; }
  .safety-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .safety-card { padding: 24px 16px; }
  .safety-card-icon { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 14px; }
  .safety-card h4 { font-size: 0.85rem; }
  .safety-card-last { grid-column: auto; }
  .investor-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .community-collage { grid-template-columns: repeat(2, 1fr); }
  .community-img:nth-child(2) { grid-row: auto; }
  .form-row { grid-template-columns: 1fr; }
  .section-title { font-size: 2rem; }
  .container { padding: 0 20px; }
  .founder-section { padding: 80px 0; }
  .founder-content { gap: 32px; }
  .founder-img {
    max-width: 240px;
    aspect-ratio: 3/4;
    margin: 0 auto;
  }
  .founder-name { font-size: 1.5rem; text-align: center; }
  .founder-title { text-align: center; margin-bottom: 24px; }
  .founder-story { font-size: 1rem; }
  .founder-quote { padding: 24px; font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons a, .hero-buttons button { width: 100%; justify-content: center; }
  .included-grid { grid-template-columns: 1fr 1fr; }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-number { font-size: 1.3rem; }
  .hero-stat-label { font-size: 0.55rem; letter-spacing: 0.05em; }
}

/* ===== EXPERIENCES ARCHIVE ===== */
.experiences-archive-hero {
  padding: 160px 0 32px;
  background: var(--sand);
  text-align: center;
}
.experiences-archive-hero .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}
.experiences-archive.experiences-section {
  padding-top: 0;
}

/* Experience Filter Bar */
.exp-filter-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.exp-filter-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.exp-filter-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--charcoal-light);
  pointer-events: none;
  z-index: 2;
}
.exp-filter-input {
  width: 100%;
  padding: 14px 44px 14px 48px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50px;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.exp-filter-input::placeholder {
  color: var(--charcoal-light);
  opacity: 0.6;
}
.exp-filter-input:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: var(--shadow-md), 0 0 0 3px rgba(35,78,60,0.08);
}
.exp-filter-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--charcoal-light);
  font-size: 1.1rem;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}
.exp-filter-clear:hover {
  background: var(--sand-dark);
  color: var(--charcoal);
}
.exp-filter-clear.visible {
  display: flex;
}
.exp-filter-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 260px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s cubic-bezier(0.25,0.46,0.45,0.94);
  z-index: 100;
}
.exp-filter-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.exp-filter-option {
  padding: 12px 20px;
  font-size: 0.88rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 0.15s ease;
}
.exp-filter-option:first-child {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.exp-filter-option:last-child {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.exp-filter-option:hover,
.exp-filter-option.highlighted {
  background: var(--sand);
}
.exp-filter-option.active {
  color: var(--forest);
  font-weight: 600;
}
.exp-filter-option.hidden {
  display: none;
}
.exp-no-results {
  text-align: center;
  color: var(--charcoal-light);
  padding: 60px 0;
  font-size: 0.95rem;
}
.exp-card.filtered-out {
  display: none !important;
}
.exp-hero {
  position: relative;
  height: 70vh;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.exp-hero-bg {
  position: absolute;
  inset: 0;
}
.exp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 60px;
  width: 100%;
}
.exp-breadcrumb {
  background: var(--sand);
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.exp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.exp-back:hover { color: var(--charcoal); }
.exp-hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}
.exp-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 8px;
}
.exp-hero-location {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
}

.exp-details {
  padding: 80px 0 120px;
  background: var(--sand);
}
.exp-details-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.exp-section-about,
.exp-section-itinerary,
.exp-section-included {
  grid-column: 1;
}
.exp-details-sidebar {
  grid-column: 2;
  grid-row: 1 / -1;
}
.exp-detail-section {
  margin-bottom: 48px;
}
.exp-detail-section h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--charcoal);
}
.exp-detail-section p {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Journey-style itinerary */
.exp-itinerary-day {
  margin-bottom: 40px;
}
.journey-day-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.journey-day-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.journey-road-container {
  position: relative;
}
.journey-road-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.journey-checkpoints {
  position: relative;
  z-index: 2;
}
.journey-cp {
  display: grid;
  grid-template-columns: 1fr 32px 1fr;
  align-items: center;
  gap: 0;
  padding: 8px 0;
}
.journey-cp-left .journey-card {
  grid-column: 1;
  grid-row: 1;
}
.journey-cp-left .journey-dot {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}
.journey-cp-left .journey-card-spacer {
  grid-column: 3;
  grid-row: 1;
}
.journey-cp-right .journey-card-spacer {
  grid-column: 1;
  grid-row: 1;
}
.journey-cp-right .journey-dot {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}
.journey-cp-right .journey-card {
  grid-column: 3;
  grid-row: 1;
}
.journey-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 14px;
  border: 1.5px solid rgba(35,78,60,0.1);
  box-shadow: 0 2px 8px rgba(35,78,60,0.05);
}
.journey-cp-left .journey-card {
  text-align: right;
}
.journey-time {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.journey-activity {
  font-size: 0.85rem;
  color: var(--charcoal);
  line-height: 1.4;
}
.journey-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3.5px solid var(--forest);
  z-index: 3;
  flex-shrink: 0;
  position: relative;
}
.journey-dot-start {
  background: var(--forest);
  box-shadow: 0 0 0 5px rgba(35,78,60,0.15);
  width: 18px;
  height: 18px;
}
.journey-dot-end {
  background: var(--burnt-orange);
  border-color: var(--burnt-orange);
  box-shadow: 0 0 0 5px rgba(212,132,90,0.15);
}

/* What's Included — chip style */
.exp-included-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.exp-included-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid rgba(35,78,60,0.1);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--charcoal);
  transition: border-color 0.2s;
}
.exp-included-chip:hover {
  border-color: rgba(35,78,60,0.25);
}
.exp-included-chip svg {
  width: 16px;
  height: 16px;
  color: var(--forest);
  flex-shrink: 0;
}

.exp-booking-card {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.04);
}
.exp-booking-price {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--sand);
}
.exp-booking-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--charcoal);
}
.exp-booking-per {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin-left: 4px;
}
.exp-booking-info {
  margin-bottom: 24px;
}
.exp-booking-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--charcoal-light);
}
.exp-booking-info-row svg { color: var(--forest); flex-shrink: 0; }
.exp-booking-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--charcoal-light);
  margin-top: 16px;
}

@media (max-width: 900px) {
  .exp-details-grid {
    grid-template-columns: 1fr;
  }
  .exp-section-about,
  .exp-section-itinerary,
  .exp-section-included,
  .exp-details-sidebar {
    grid-column: 1;
    grid-row: auto;
  }
  .exp-booking-card {
    position: static;
  }
  .journey-cp {
    grid-template-columns: 1fr 24px 1fr;
  }
}

@media (max-width: 480px) {
  .exp-hero { height: 50vh; }
  .exp-hero-content { padding-bottom: 40px; }
}

/* ===== FLEET ARCHIVE ===== */
.fleet-archive-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--sand);
  text-align: center;
  overflow: hidden;
}
.fleet-archive-hero-bg {
  position: absolute;
  inset: 0;
}
.fleet-archive-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fleet-archive-hero-content {
  position: relative;
  z-index: 2;
}
.fleet-archive-hero .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}
.text-white { color: var(--white) !important; }
.text-white-muted { color: rgba(255,255,255,0.75) !important; }

.fleet-archive-vehicles {
  padding: 80px 0 120px;
  background: var(--sand);
}

.fleet-vehicle {
  margin-bottom: 100px;
}
.fleet-vehicle:last-child {
  margin-bottom: 0;
}
.fleet-vehicle-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.fleet-vehicle-reverse {
  direction: rtl;
}
.fleet-vehicle-reverse > * {
  direction: ltr;
}

/* Gallery */
.fleet-vehicle-gallery {
  position: sticky;
  top: 100px;
}
.fleet-gallery-main {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  margin-bottom: 12px;
}
.fleet-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.fleet-gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fleet-gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--sand-dark) transparent;
}
.fleet-gallery-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  background: none;
}
.fleet-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fleet-gallery-thumb:hover {
  border-color: var(--charcoal-light);
}
.fleet-gallery-thumb.active {
  border-color: var(--forest);
  box-shadow: 0 0 0 2px rgba(35,78,60,0.15);
}

/* Info */
.fleet-vehicle-name {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
  color: var(--charcoal);
}
.fleet-vehicle-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.fleet-vehicle-spec {
  font-size: 0.95rem;
  color: var(--charcoal-light);
}
.fleet-vehicle-capacity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--charcoal-light);
}
.fleet-vehicle-capacity svg {
  color: var(--forest);
}
.fleet-vehicle-desc {
  margin-bottom: 28px;
}
.fleet-vehicle-desc p {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.fleet-vehicle-desc p:last-child {
  margin-bottom: 0;
}
.fleet-vehicle-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.fleet-vehicle-feature {
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid rgba(35,78,60,0.12);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--charcoal);
  font-weight: 500;
  transition: all 0.2s ease;
}
.fleet-vehicle-feature:hover {
  border-color: var(--forest);
  color: var(--forest);
}

/* Amenities */
.fleet-vehicle-amenities h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--charcoal);
}
.fleet-vehicle-amenities ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.fleet-vehicle-amenities li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--charcoal-light);
}
.fleet-vehicle-amenities li svg {
  color: var(--forest);
  flex-shrink: 0;
}

/* Fleet Archive Responsive */
@media (max-width: 900px) {
  .fleet-vehicle-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .fleet-vehicle-reverse {
    direction: ltr;
  }
  .fleet-vehicle-gallery {
    position: static;
  }
  .fleet-vehicle {
    margin-bottom: 72px;
  }
}
@media (max-width: 480px) {
  .fleet-archive-hero {
    padding: 120px 0 60px;
  }
  .fleet-gallery-thumb {
    width: 60px;
    height: 44px;
  }
  .fleet-vehicle-amenities ul {
    grid-template-columns: 1fr;
  }
}
