/* ============================================
   Raj Jaisalmer Taxi Service — Website Design System
   Premium Dark Theme with Royal Blue & Crimson Accents
   ============================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  /* Jaisalmer Theme + Apple Minimalism */
  --bg-primary: #FAF9F6;      /* Sandstone White */
  --bg-surface: #FFFFFF;      /* Pure Surface */
  --text-high: #1A1A1A;       /* Deep Space Charcoal */
  --text-low: #8C8476;        /* Desert Dust */
  --accent-gold: #C59B27;     /* Jaisalmer Gold */
  
  --glass-bg: rgba(250, 249, 246, 0.7);
  --glass-border: rgba(26, 26, 26, 0.06);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  
  /* Emil Kowalski / Apple Easing Curves */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --transition: 200ms var(--ease-out);
  --transition-slow: 400ms var(--ease-out);
  
  --body-font: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --heading-font: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono-font: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
  
  --radius: 12px;
  --radius-lg: 24px;
  --radius-sm: 8px;
  
  --shadow-sm: 0 2px 8px rgba(26,26,26,0.06);
  --shadow-md: 0 4px 20px rgba(26,26,26,0.08);
  --shadow-lg: 0 8px 40px rgba(26,26,26,0.12);
  --shadow-glow: 0 8px 32px rgba(197, 155, 39, 0.15);
  --max-width: 1320px;
  --nav-height: 80px;
  
  /* Light-theme mappings for sections that previously used dark-theme vars */
  --bg-dark-2: #F5F4F0;
  --card-bg: var(--bg-surface);
  --text-white: var(--text-high);
  --text-light: #4A4A4A;
  --text-muted: var(--text-low);
  --primary: var(--accent-gold);
  --primary-light: #D4AF37;
  --primary-dark: #A67F1A;
  --accent: #8C7B5E;
  --accent-light: #B09D7A;

  /* Spring physics approximation: stiffness 100, damping 20 */
  --spring: cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
}

body {
  font-family: var(--body-font);
  background: var(--bg-primary);
  color: var(--text-high);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Page enter — subtle professional fade-in */
  animation: pageEnter 0.2s ease-out both;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 150ms var(--ease-out);
}

ul, ol {
  list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--text-high);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p {
  color: var(--text-low);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 65ch;
}

/* ---- Container ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

/* ---- Section ---- */
.section {
  padding: 110px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}

.section-header p {
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 12px;
}

/* ---- Buttons (Apple-style tactile feedback) ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 120ms var(--ease-out), background-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  text-decoration: none;
  will-change: transform;
}

/* Pointer-down feedback (kill latency) */
.btn:active {
  transform: scale(0.97);
  transition: transform 100ms ease-out;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--text-high);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #B38920; /* slightly darker gold */
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--text-high);
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: rgba(26,26,26,0.05);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-whatsapp:hover {
  background: #20BA5A;
}

.btn-call {
  background: var(--text-high);
  color: #fff;
}

.btn-call:hover {
  background: #333;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}


/* ============================================
   NAVBAR & RIBBON BAR
   ============================================ */
.ribbon-bar {
  background: var(--bg-surface);
  color: var(--text-high);
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  transition: max-height 300ms var(--ease-out), padding 300ms var(--ease-out), opacity 300ms var(--ease-out);
  max-height: 52px;
  overflow: hidden;
  opacity: 1;
}

.ribbon-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ribbon-right {
  display: flex;
  gap: 20px;
}

.ribbon-right a {
  color: var(--text-high);
  font-weight: 500;
  transition: color 150ms var(--ease-out);
}

.ribbon-right a:hover {
  color: var(--accent-gold);
}

.ribbon-bar .material-symbols-outlined.icon-sm {
  font-size: 1.4rem;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 300ms var(--ease-out), border-bottom 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
}

.navbar.scrolled .ribbon-bar {
  max-height: 0;
  padding: 0;
  opacity: 0;
  border-bottom: none;
}

.navbar.scrolled {
  background: rgba(250, 249, 246, 0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.main-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-high);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-logo span {
  color: var(--accent-gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-high);
  border-radius: 8px;
  transition: color 200ms var(--ease-out), background-color 150ms var(--ease-out);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold);
  background: rgba(197, 155, 39, 0.06);
}

.nav-link::after {
  display: none; 
}

.nav-cta {
  margin-left: 12px;
}



/* Liquid Dropdown */
.nav-dropdown {
  position: relative;
}

.liquid-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px) scale(0.98);
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out), visibility 300ms var(--ease-out);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}

.nav-dropdown:hover .liquid-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary); /* Base color if image fails */
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  /* Mask gradient for smooth transition from solid left to image right */
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%);
  mask-image: linear-gradient(to right, transparent, black 15%);
}

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

.hero-overlay {
  display: none; /* Removed the heavy dark overlay */
}

/* --- Hero Split Layout --- */
.hero-split {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
  max-width: var(--max-width);
  padding: 140px 32px 80px;
  margin: 0 auto;
}

.hero-content {
  flex: 1;
  text-align: left;
  max-width: 600px;
}

.hero-content .section-label {
  color: var(--accent-gold);
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  margin-bottom: 24px;
  color: var(--text-high);
  line-height: 1.1;
}

.hero-content .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-high);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-content .hero-desc {
  font-size: 1.05rem;
  color: var(--text-low);
  max-width: 520px;
  margin: 0 0 36px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Trust Badges --- */
.hero-trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-low);
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 8px 16px;
  box-shadow: var(--shadow-sm);
}
.trust-icon { font-size: 1rem; }
.trust-green { color: #22c55e; font-size: 0.8rem; }

/* ============================================
   BOOKING FORM CARD
   ============================================ */
.hero-booking-card {
  flex: 0 0 420px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.booking-card-header {
  padding: 24px 28px 16px;
  border-bottom: 1px solid var(--glass-border);
}
.booking-card-header h3 {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  color: var(--text-high);
  margin-bottom: 4px;
}
.highlight-primary {
  color: var(--accent-gold);
}
.booking-card-header p {
  font-size: 0.85rem;
  color: var(--text-low);
  margin: 0;
}

/* --- Form Fields --- */
.booking-form {
  padding: 20px 28px;
}
.form-field {
  margin-bottom: 12px;
}
.form-row {
  display: flex;
  gap: 12px;
}
.form-row .form-field {
  flex: 1;
}
.booking-form input,
.booking-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: var(--text-high);
  background: var(--bg-surface);
  transition: border-color 150ms var(--ease-out), box-shadow 150ms var(--ease-out);
  outline: none;
}
.booking-form input::placeholder {
  color: var(--text-low);
  opacity: 0.6;
}
.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}
.booking-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a1a' d='M6 8.825L.6 3.4l.85-.85L6 7.125 10.55 2.55l.85.85z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}

/* --- Form Actions --- */
.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.btn-quote {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--accent-gold);
  color: var(--text-high);
  border: none;
  border-radius: var(--radius);
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 120ms var(--ease-out), background-color 200ms var(--ease-out);
  box-shadow: var(--shadow-sm);
  will-change: transform;
}
.btn-quote:active {
  transform: scale(0.97);
}
.btn-quote:hover {
  background: #B38920;
}
.wa-icon {
  display: flex;
  align-items: center;
}

.btn-call-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  background: var(--bg-surface);
  color: var(--text-high);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 120ms var(--ease-out), background-color 200ms var(--ease-out);
  text-decoration: none;
  will-change: transform;
}
.btn-call-alt:active {
  transform: scale(0.97);
}
.btn-call-alt:hover {
  background: rgba(26,26,26,0.05);
}

.form-footer-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-low);
  margin-top: 16px;
}

/* --- Booking Card Stats --- */
.booking-card-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  background: rgba(26, 26, 26, 0.02);
  border-top: 1px solid var(--glass-border);
}
.bstat {
  font-size: 0.8rem;
  color: var(--text-low);
  font-weight: 500;
}
.bstat-stars {
  color: var(--accent-gold);
  letter-spacing: -1px;
  font-size: 0.9rem;
}
.bstat-sep {
  color: var(--glass-border);
}

/* Particle-like floating dots in booking card */
.hero-particles {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  bottom: -10px;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticleUp 8s infinite ease-in;
}

@keyframes floatParticleUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  20% { opacity: 0.6; }
  80% { opacity: 0.2; }
  100% { transform: translateY(-200px) scale(0.5); opacity: 0; }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--bg-surface);
}

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

.service-card {
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(197, 155, 39, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-gold);
  transition: transform 300ms var(--ease-out);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: var(--text-high);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-low);
  margin-bottom: 20px;
}

/* ============================================
   PACKAGES
   ============================================ */
.packages {
  background: var(--bg-primary);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.package-card {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.package-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

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

.package-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--bg-surface);
  color: var(--text-high);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.package-price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(250, 249, 246, 0.9);
  backdrop-filter: blur(10px);
  color: var(--accent-gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--glass-border);
}

.package-info {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-info h3 {
  margin-bottom: 12px;
  color: var(--text-high);
}

.package-info .package-duration {
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-info p {
  font-size: 0.95rem;
  color: var(--text-low);
  margin-bottom: 24px;
  flex: 1;
}

.package-buttons {
  display: flex;
  gap: 12px;
}

/* ============================================
   FLEET
   ============================================ */
.fleet {
  background: var(--bg-surface);
  position: relative;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.fleet-card {
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.fleet-img {
  height: 200px;
  overflow: hidden;
  background: rgba(26,26,26,0.02);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-img img {
  width: 90%;
  height: auto;
  object-fit: contain;
  transition: transform 600ms var(--ease-out);
}

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

.fleet-info {
  padding: 24px 20px;
}

.fleet-info h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--text-high);
}

.fleet-capacity {
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.fleet-info p {
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: var(--text-low);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--bg-primary);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.about-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-img-overlay {
  display: none; /* Removing old dirty border */
}

.about-text .section-label {
  text-align: left;
  color: var(--accent-gold);
}

.about-text h2 {
  margin-bottom: 20px;
  text-align: left;
  color: var(--text-high);
}

.about-text p {
  margin-bottom: 30px;
  font-size: 1rem;
  color: var(--text-low);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-item {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-high);
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-low);
  font-weight: 500;
}

/* Material Symbols alignment */
.icon-sm {
  font-size: 1.2rem;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ============================================
   CITY TOURS
   ============================================ */
.city-tours {
  background: var(--bg-surface);
}

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

.city-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 360px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

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

.city-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(26,26,26,0.8) 100%);
  transition: opacity 300ms var(--ease-out);
}

.city-card:hover .city-card-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(26,26,26,0.95) 100%);
}

.city-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  transform: translateY(20px);
  transition: transform 300ms var(--ease-out);
}

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

.city-card-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.city-card-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out);
}

.city-card:hover .city-card-info p {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--bg-primary);
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 500ms var(--ease-out);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 20px;
}

.testimonial-inner {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.testimonial-inner::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 30px;
  font-family: var(--heading-font);
  font-size: 6rem;
  color: var(--accent-gold);
  opacity: 0.1;
  line-height: 1;
}

.testimonial-stars {
  margin-bottom: 20px;
  color: var(--accent-gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-high);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-high);
  font-size: 1.05rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(26,26,26,0.1);
  border: none;
  cursor: pointer;
  transition: background-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}

.testimonial-dot.active {
  background: var(--accent-gold);
  transform: scale(1.2);
}

.testimonial-arrows {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.testimonial-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  color: var(--text-high);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}

.testimonial-arrow:hover {
  background: rgba(26,26,26,0.05);
  transform: scale(1.05);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid rgba(26,26,26,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out), border-color 300ms var(--ease-out);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(197, 155, 39, 0.2);
}

.faq-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-high);
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--text-low);
  line-height: 1.7;
  max-width: none;
}

/* ============================================
   BLOG GRID
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--bg-surface);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.contact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(197, 155, 39, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent-gold);
}

.contact-card h4 {
  color: var(--text-high);
  margin-bottom: 4px;
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--text-low);
}

.contact-card a {
  color: var(--text-low);
}

.contact-card a:hover {
  color: var(--accent-gold);
}

.contact-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  min-height: 380px;
  box-shadow: var(--shadow-sm);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: none;
  filter: grayscale(20%); /* slightly desaturate for clean look */
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-high);
  padding: 60px 0 0;
  border-top: 1px solid var(--glass-border);
  color: #FFFFFF;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 30px;
  padding-bottom: 40px;
}

.footer-about .nav-logo {
  margin-bottom: 16px;
  color: #FFFFFF;
  font-size: 1.2rem;
}

.footer-about p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

.footer-links h3,
.footer-contact h3 {
  font-family: var(--body-font);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--accent-gold);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 150ms var(--ease-out), color 150ms var(--ease-out);
}

.footer-links a::before {
  content: '→';
  color: var(--accent-gold);
  font-size: 0.8rem;
}

.footer-links a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer-contact-item span:first-child {
  color: var(--accent-gold);
  min-width: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background-color 200ms var(--ease-out), transform 200ms var(--ease-out);
}

.footer-social a:hover {
  background: var(--accent-gold);
  color: var(--text-high);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.whatsapp-float a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  font-size: 1.8rem;
  color: #fff;
  will-change: transform;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.7);
}

.whatsapp-float-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse 2s infinite;
  pointer-events: none;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms var(--ease-out), visibility 300ms var(--ease-out);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  color: var(--text-high);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background-color 200ms var(--ease-out);
}

.scroll-top button:hover {
  background: rgba(26,26,26,0.05);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-20vh) scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ============================================
   SCROLL ANIMATIONS DISABLED
   All elements are immediately visible on load.
   ============================================ */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible,
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .section { padding: 90px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(3, 1fr); }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .city-card { height: 320px; }
  .about-content { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-booking-card { flex: 0 0 380px; }
  .hero-split { gap: 40px; padding: 130px 28px 70px; }
  .hero-content h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
  .packages-grid { gap: 28px; }
  .package-img { height: 220px; }
  .faq-list { max-width: 100%; }
  .testimonials-slider { max-width: 100%; }

  /* Navbar Mobile moved to 1024px because of large nav sizes */
  :root { --nav-height: 70px; }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98); /* Changed from dark blue to theme dark grey */
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 30px 40px;
    gap: 8px;
    transition: var(--transition);
    border-left: 1px solid var(--glass-border);
    align-items: flex-start;
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 14px 16px;
    width: 100%;
    color: rgba(255, 255, 255, 0.85);
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--accent-gold);
    background: transparent;
  }

  .nav-dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0 20px;
    min-width: 100%;
    border: none;
    display: none;
  }

  .nav-dropdown:hover .nav-dropdown-content {
    display: block;
  }

  .nav-dropdown-content a {
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #fff !important; }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #fff !important; }
}

/* Mobile */
@media (max-width: 768px) {
  .ribbon-left {
    display: none;
  }
  .ribbon-right {
    width: 100%;
    justify-content: center;
  }
  .ribbon-right a[href^="mailto"] {
    display: none;
  }

  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .section-header p { font-size: 1rem; }

  .nav-dropdown .liquid-dropdown {
    position: static;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    min-width: unset;
    /* Accordion animation */
    max-height: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transform: none !important;
    transition: max-height 300ms var(--ease-out), padding 300ms var(--ease-out), opacity 300ms var(--ease-out);
  }

  .nav-dropdown.expanded .liquid-dropdown,
  .nav-dropdown:hover .liquid-dropdown {
    max-height: 400px;
    padding: 4px 0;
    opacity: 1;
    visibility: visible;
    transform: none !important;
  }

  .nav-dropdown .liquid-dropdown a {
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    display: block;
    font-size: 1rem;
  }

  .nav-dropdown .liquid-dropdown a:hover {
    color: #FFFFFF;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1rem;
  }

  /* Fix: Logo shrinks on mobile to prevent hamburger overlap */
  .nav-logo {
    gap: 8px;
    font-size: 1rem;
    max-width: calc(100% - 60px);
    flex-shrink: 1;
    min-width: 0;
  }

  .nav-logo img {
    height: 34px !important;
    width: auto;
    flex-shrink: 0;
  }

  /* Keep text visible but smaller on mobile */
  .nav-logo > span {
    display: inline;
    font-size: 0.9rem;
    letter-spacing: 0;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    margin-left: 8px;
  }

  /* Hero — full-width stacked layout for mobile */
  .hero { min-height: auto; }
  .hero-bg { width: 100%; opacity: 0.25; }
  .hero-split { flex-direction: column; padding: 110px 20px 50px; gap: 32px; }
  .hero-content { text-align: left; max-width: 100%; }
  .hero-content h1 { font-size: clamp(2rem, 7vw, 2.8rem); line-height: 1.15; }
  .hero-content .hero-subtitle { font-size: 1.05rem; }
  .hero-content .hero-desc { margin: 0 0 28px; max-width: 100%; font-size: 1rem; }
  .hero-buttons { justify-content: flex-start; gap: 12px; }
  .hero-trust-badges { justify-content: flex-start; }
  .hero-booking-card { flex: none; width: 100%; max-width: 100%; }
  .hero-buttons .btn { width: auto; max-width: 280px; justify-content: center; padding: 14px 24px; font-size: 1rem; }

  /* Grids — mobile optimized */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .service-card { padding: 28px 20px; }
  .service-icon { width: 56px; height: 56px; font-size: 1.6rem; margin-bottom: 14px; }
  .service-card h3 { font-size: 1.05rem; }
  .service-card p { font-size: 0.88rem; margin-bottom: 14px; }
  
  .packages-grid { grid-template-columns: 1fr; gap: 24px; }
  .package-img { height: 220px; }
  .package-info { padding: 24px; }

  .fleet-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .fleet-img { height: 160px; }
  .fleet-info { padding: 18px 16px; }
  .fleet-info h3 { font-size: 1rem; }

  .city-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .city-card { height: 240px; }
  .city-card-info { padding: 16px; }
  .city-card-info h3 { font-size: 1.05rem; }

  .contact-content { grid-template-columns: 1fr; }
  .about-content { gap: 32px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-img img { height: 280px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Package buttons */
  .package-buttons { flex-direction: column; }
  .package-buttons .btn { width: 100%; justify-content: center; }

  /* Testimonial */
  .testimonial-inner { padding: 30px 20px; }
  .testimonial-text { font-size: 1rem; }

  /* FAQ */
  .faq-item { padding: 24px; }

  /* Contact buttons */
  .contact-buttons { flex-direction: column; }
  .contact-buttons .btn { width: 100%; justify-content: center; }

  /* Booking card improvements */
  .booking-card-header h3 { font-size: 1.15rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 28px; }

  .hero-split { padding: 100px 16px 40px; }
  .hero-content h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; max-width: 100%; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 24px 18px; }

  .fleet-grid { grid-template-columns: 1fr; gap: 16px; }
  .fleet-card { display: flex; flex-direction: row; text-align: left; }
  .fleet-img { height: auto; width: 120px; min-width: 120px; }
  .fleet-img img { width: 100%; height: 100%; object-fit: cover; }
  .fleet-info { padding: 16px; }

  .city-grid { grid-template-columns: 1fr; }
  .city-card { height: 220px; }

  .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-item { padding: 18px 14px; }
  .stat-number { font-size: 1.8rem; }

  .booking-card-header { padding: 18px 20px 14px; }
  .booking-form { padding: 14px 20px 16px; }
  .booking-card-stats { flex-wrap: wrap; gap: 6px 12px; padding: 12px 20px; }
  .hero-trust-badges { gap: 8px; flex-wrap: wrap; }
  .trust-badge { font-size: 0.78rem; padding: 6px 12px; }
  .form-row { flex-direction: column; gap: 10px; }
  .form-actions { flex-direction: column; }
  .btn-call-alt { width: 100%; }

  .package-info { padding: 20px; }
  .faq-item { padding: 20px; }
  .testimonial-inner { padding: 24px 16px; }
  .testimonial-text { font-size: 0.95rem; }
  .footer-grid { gap: 28px; }
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   JAISALMER FORT PARALLAX ZOOM SECTION
   ============================================ */
.fort-parallax-wrapper {
  height: 200vh;
  position: relative;
}

.fort-parallax-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fort-parallax-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
}

.fort-parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.fort-parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11,22,34,0.3) 0%, rgba(11,22,34,0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.fort-parallax-text {
  text-align: center;
  max-width: 700px;
  padding: 40px;
  opacity: 1;
  transform: none;
}

.fort-parallax-text.visible {
  opacity: 1;
  transform: none;
}

.fort-parallax-text h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 20px;
  color: #FFFFFF;
}

.fort-parallax-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  line-height: 1.8;
}

.fort-parallax-text .section-label {
  margin-bottom: 16px;
  color: var(--accent-gold);
}

/* ============================================
   ROUTE PRICING SECTION
   ============================================ */
.routes {
  background: var(--bg-dark-2);
  position: relative;
}

.route-vehicle-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.route-tab {
  padding: 12px 28px;
  border: 1px solid var(--glass-border);
  background: var(--bg-surface);
  color: var(--text-low);
  border-radius: 50px;
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 200ms var(--ease-out);
}

.route-tab:hover {
  border-color: var(--accent-gold);
  color: var(--text-high);
}

.route-tab.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--text-high);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.route-card {
  background: var(--bg-surface);
  border: 1px solid rgba(26,26,26,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
  position: relative;
  overflow: hidden;
}

.route-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent));
}

.route-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.route-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.route-from-to {
  flex: 1;
}

.route-from-to .route-city {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-high);
}

.route-arrow {
  color: var(--accent-gold);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.route-arrow svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-gold);
}

.route-details {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.route-detail {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.route-detail-icon {
  font-size: 1rem;
}

.route-highlights {
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 18px;
  padding: 8px 14px;
  background: rgba(197, 155, 39, 0.06);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-gold);
}

.route-price {
  font-family: var(--mono-font);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-high);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.route-price span {
  font-size: 0.8rem;
  color: var(--text-low);
  font-family: var(--body-font);
  font-weight: 400;
}

.route-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50px;
  font-family: var(--body-font);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}

.route-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS DISABLED
   ============================================ */
[data-animation] {
  opacity: 1;
  transform: none;
}

[data-animation].revealed {
  opacity: 1;
  transform: none;
}

/* Stagger delays disabled */

/* ============================================
   RESPONSIVE - Fort Parallax & Routes
   ============================================ */
@media (max-width: 768px) {
  .fort-parallax-wrapper {
    height: 120vh;
  }
  .fort-parallax-text {
    padding: 20px;
  }
  .fort-parallax-text h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
  .fort-parallax-text p {
    font-size: 1rem;
  }
  .routes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .route-card { padding: 24px; }
  .route-vehicle-tabs {
    gap: 8px;
  }
  .route-tab {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  .route-price { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .fort-parallax-wrapper {
    height: 100vh;
  }
  .fort-parallax-text h2 {
    font-size: 1.5rem;
  }
  .route-card { padding: 20px; }
  .route-tab {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* ============================================
   MONOSPACE FONT FOR PRICING & DATA
   ============================================ */
.stat-number {
  font-family: var(--mono-font);
}

.package-price {
  font-family: var(--mono-font);
  letter-spacing: -0.02em;
}

.fleet-capacity {
  font-family: var(--mono-font);
  font-size: 0.85rem;
}

/* Reduced motion: not needed since scroll animations are disabled */
