
/* --- home-desktop.css --- */
/* ============================================================
   RudraSafar – Home Page Desktop CSS (min-width: 1024px)
   ============================================================ */

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: auto;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 2.5rem);
  padding-bottom: var(--space-12);
}

/* Animated road dashes */
.hero-road-bg {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(255,193,7,0.25);
  overflow: hidden;
}

.road-line {
  position: absolute;
  top: 0;
  left: -200px;
  width: 100px;
  height: 100%;
  background: rgba(255,193,7,0.5);
  animation: roadMove 1.2s linear infinite;
  box-shadow: 200px 0 0 rgba(255,193,7,0.5), 400px 0 0 rgba(255,193,7,0.5), 600px 0 0 rgba(255,193,7,0.5), 800px 0 0 rgba(255,193,7,0.5), 1000px 0 0 rgba(255,193,7,0.5), 1200px 0 0 rgba(255,193,7,0.5), 1400px 0 0 rgba(255,193,7,0.5), 1600px 0 0 rgba(255,193,7,0.5);
}

/* Floating shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; }

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-light);
  top: -200px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: #1565C0;
  top: 50%;
  left: 40%;
  animation: float 6s ease-in-out infinite;
  opacity: 0.1;
}

/* Hero layout */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-12);
  min-height: calc(100vh - var(--nav-height));
  padding: var(--space-16) 0;
}

/* Hero content */
.hero-content { position: relative; z-index: 2; }

.hero-title {
  font-size: 4rem;
  font-weight: var(--fw-black);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-5);
  letter-spacing: -0.03em;
}

.hero-title-accent {
  color: var(--accent);
  display: inline;
}

.hero-title-highlight {
  background: linear-gradient(90deg, #FFC107, #FFD54F);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--fs-xl);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-8);
  max-width: 520px;
  line-height: var(--lh-relaxed);
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.hero-stat strong {
  display: block;
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  color: var(--accent);
  line-height: 1.1;
}

.hero-stat span {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
  display: block;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* Hero CTA */
.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

/* Trust badges */
.trust-badges {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.75);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
}

/* Hero car scene */
.hero-car-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-car-scene {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.hero-car-svg {
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(255,193,7,0.3));
}

/* Wheel Spin Animation */
.wheel-spin {
  animation: wheelSpin 0.4s linear infinite;
}

@keyframes wheelSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* Moving Road Strip Animation */
.road-strip-move {
  animation: moveRoadStrip 0.6s linear infinite;
}

@keyframes moveRoadStrip {
  0%   { transform: translateX(0); }
  100% { transform: translateX(80px); }
}

/* Glow rings */
.car-glow-ring {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,71,161,0.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ring-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,193,7,0.08) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

/* Speed lines */
.speed-lines {
  position: absolute;
  left: -40px;
  top: 55%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.speed-line {
  height: 2px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, rgba(255,193,7,0.6), transparent);
  animation: speedFade 1s ease-in-out infinite;
}

.speed-line:nth-child(1) { width: 60px; animation-delay: 0s; }
.speed-line:nth-child(2) { width: 40px; animation-delay: 0.2s; }
.speed-line:nth-child(3) { width: 80px; animation-delay: 0.1s; }
.speed-line:nth-child(4) { width: 30px; animation-delay: 0.3s; }

@keyframes speedFade {
  0%, 100% { opacity: 0.2; transform: translateX(0); }
  50%       { opacity: 0.8; transform: translateX(-8px); }
}

/* Location pin */
.location-pin-float {
  position: absolute;
  top: -20px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(239,68,68,0.4));
}

.pin-label {
  background: var(--white);
  color: var(--gray-900);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-top: 4px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  z-index: 10;
  animation: fadeInUp 1s ease 1s both;
}

.scroll-indicator span {
  color: rgba(255,255,255,0.5);
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-full);
  margin-top: 6px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: 0.3; }
}

/* ─── QUICK BOOKING STRIP ──────────────────────────────────── */
.quick-booking-strip {
  background: var(--white);
  padding: var(--space-6) 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  position: relative;
  z-index: var(--z-base);
  border-bottom: 2px solid var(--gray-100);
}

.quick-booking-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.quick-book-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--gray-900);
  white-space: nowrap;
}

.quick-book-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* ─── VEHICLE SECTION ──────────────────────────────────────── */
.section-header {
  margin-bottom: var(--space-16);
}

.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  align-items: start;
  padding-top: var(--space-4);
}

.vehicle-card.featured {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.vehicle-popular-badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0D47A1 0%, #1565C0 100%);
  color: var(--white);
  font-size: 11px;
  font-weight: var(--fw-bold);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(13, 71, 161, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 10;
}

.vehicle-image-wrap {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  padding: var(--space-4);
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
}

.vehicle-img {
  height: 130px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform var(--transition-bounce);
}

.vehicle-card:hover .vehicle-img {
  transform: scale(1.08) translateY(-4px);
}

/* Card body content */
.vehicle-info {
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.vehicle-name {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--gray-900);
  margin-bottom: 0;
}

.vehicle-desc {
  font-size: var(--fs-sm);
  color: var(--gray-500);
  margin-bottom: 0;
  line-height: var(--lh-relaxed);
}

.vehicle-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: 0;
}

.vehicle-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--gray-700);
  font-weight: var(--fw-medium);
}

.vehicle-pricing {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(135deg, rgba(13,71,161,0.06), rgba(255,193,7,0.04));
  border-radius: var(--radius-lg);
  margin-bottom: 0;
  border: 1px solid rgba(13,71,161,0.1);
}

.vehicle-rate { display: flex; align-items: baseline; gap: 2px; }

.rate-amount {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-black);
  color: var(--primary);
  line-height: 1;
}

.rate-unit {
  font-size: var(--fs-base);
  color: var(--gray-500);
  font-weight: var(--fw-medium);
}

.vehicle-min {
  font-size: var(--fs-xs);
  color: var(--gray-500);
  font-weight: var(--fw-medium);
}

/* ─── HOW IT WORKS ─────────────────────────────────────────── */
#how-it-works {
  background: linear-gradient(135deg, #FFFDF0 0%, #FFF8D6 50%, #FEF0B3 100%);
  border-top: 1px solid rgba(255, 193, 7, 0.35);
  border-bottom: 1px solid rgba(255, 193, 7, 0.35);
  position: relative;
  overflow: hidden;
  padding: var(--space-12) 0;
}

#how-it-works::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: var(--space-12);
  position: relative;
  z-index: 2;
}

.step-card {
  flex: 1;
  background: #FFFFFF;
  border: 2px solid rgba(255, 193, 7, 0.35);
  border-radius: var(--radius-2xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  position: relative;
  box-shadow: 0 12px 35px rgba(217, 119, 6, 0.08), 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-bounce);
}

.step-card:hover {
  border-color: #0D47A1;
  box-shadow: 0 20px 45px rgba(13, 71, 161, 0.16), 0 8px 20px rgba(255, 193, 7, 0.2);
  transform: translateY(-6px);
}

.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.5), rgba(217, 119, 6, 0.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: var(--space-3);
  right: var(--space-5);
  line-height: 1;
  letter-spacing: -1px;
}

.step-icon-wrap {
  width: 84px;
  height: 84px;
  background: linear-gradient(135deg, #FFF8D6 0%, #FFE082 100%);
  border: 2px solid #FFC107;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
  transition: all var(--transition-bounce);
}

.step-icon-wrap svg {
  transition: all var(--transition-base);
}

.step-card:hover .step-icon-wrap {
  background: linear-gradient(135deg, #0D47A1 0%, #1565C0 100%);
  border-color: #0D47A1;
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 10px 25px rgba(13, 71, 161, 0.35);
}

.step-card:hover .step-icon-wrap svg {
  stroke: #FFFFFF;
}

.step-connector {
  flex-shrink: 0;
  padding: 0 var(--space-3);
}

.step-title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--gray-900);
  margin-bottom: var(--space-3);
}

.step-desc {
  font-size: var(--fs-sm);
  color: var(--gray-600);
  line-height: var(--lh-relaxed);
}

/* ─── TRUST & HIGHLIGHTS SECTION ───────────────────────────── */
.trust-highlights-section {
  padding: var(--space-12) 0;
  background: linear-gradient(135deg, #09172B 0%, #0E294E 50%, #071221 100%);
  border-top: 1px solid rgba(255, 193, 7, 0.25);
  border-bottom: 1px solid rgba(255, 193, 7, 0.25);
  margin-top: var(--space-12);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.4);
}

.trust-highlights-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 71, 161, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.trust-highlights-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.trust-highlights-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  position: relative;
  z-index: 2;
}

.trust-features-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex: 1;
}

.trust-feature-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  flex: 1;
  transition: all var(--transition-base);
}

.trust-feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: 0 14px 40px rgba(13, 71, 161, 0.35);
}

.trust-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.22), rgba(255, 193, 7, 0.06));
  border: 1px solid rgba(255, 193, 7, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255, 193, 7, 0.2);
}

.trust-feature-text {
  display: flex;
  flex-direction: column;
}

.trust-feature-text strong {
  font-size: 15px;
  font-weight: var(--fw-bold);
  color: #FFFFFF;
  letter-spacing: 0.2px;
}

.trust-feature-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 2px;
}

.trust-divider {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(255, 193, 7, 0.4), transparent);
  flex-shrink: 0;
}

.trust-highlights-section .stats-grid {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.trust-highlights-section .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-base);
}

.trust-highlights-section .stat-item:hover {
  transform: translateY(-3px);
}

.trust-highlights-section .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFC107 0%, #FFE082 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(255, 193, 7, 0.3));
  line-height: 1.1;
}

.trust-highlights-section .stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 6px;
}

/* ─── TOUR PACKAGES PREVIEW ────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.package-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.package-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.package-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.package-card:hover::after { transform: scaleX(1); }

.package-route-icon {
  display: none;
}

.package-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.package-card-header {
  position: relative;
  overflow: hidden;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.package-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.package-card:hover .package-bg-img {
  transform: scale(1.08);
}

.package-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(15,23,42,0.45) 100%);
  z-index: 1;
}

.package-header-content {
  position: relative;
  z-index: 2;
  padding: var(--space-4);
}

.package-card .package-content {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-route {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-1);
  flex-wrap: wrap;
}

.package-from, .package-to {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--gray-900);
}

.package-card-header .package-from,
.package-card-header .package-to {
  color: #FFFFFF !important;
  font-size: var(--fs-lg);
  font-weight: var(--fw-black);
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.package-arrow {
  color: var(--accent-dark);
  font-size: var(--fs-lg);
  flex-shrink: 0;
}

.package-card-header .package-arrow {
  color: var(--accent) !important;
  font-size: var(--fs-xl);
}

.package-meta {
  display: flex;
  gap: var(--space-4);
  font-size: var(--fs-xs);
  color: var(--gray-500);
  margin-bottom: var(--space-4);
}

.package-card-header .package-meta {
  color: rgba(255,255,255,0.9) !important;
  margin-bottom: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

.package-vehicle-toggle {
  display: flex;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 3px;
  gap: 3px;
  margin-bottom: var(--space-2);
}

.pkg-vehicle-btn {
  flex: 1;
  padding: var(--space-2);
  border-radius: var(--radius-md);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--gray-600);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}

.pkg-vehicle-btn.active {
  background: var(--white);
  color: var(--primary);
  border-color: rgba(13,71,161,0.15);
  box-shadow: var(--shadow-sm);
  font-weight: var(--fw-bold);
}

.package-trip-toggle {
  display: flex;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 3px;
  gap: 3px;
  margin-bottom: var(--space-4);
}

.pkg-trip-btn {
  flex: 1;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--gray-500);
  border: none;
  background: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
}

.pkg-trip-btn.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.package-pricing {
  text-align: center;
  padding: var(--space-3);
  background: linear-gradient(135deg, rgba(13,71,161,0.05), rgba(255,193,7,0.03));
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  border: 1px solid rgba(13,71,161,0.08);
}

.package-price-label {
  font-size: var(--fs-xs);
  color: var(--gray-500);
  margin-bottom: var(--space-1);
}

.package-price {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  color: var(--primary);
  line-height: 1;
}

.pkg-book-btn { margin-top: var(--space-2); }

/* ─── WHY US ────────────────────────────────────────────────── */
.why-us {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, #09172B 0%, #0E294E 50%, #071221 100%);
  border-top: 1px solid rgba(255, 193, 7, 0.25);
  border-bottom: 1px solid rgba(255, 193, 7, 0.25);
  position: relative;
  overflow: hidden;
}

.why-us .section-title,
.section-dark .section-title {
  color: #FFFFFF !important;
}

.why-us .section-title span,
.section-dark .section-title span {
  color: #FFC107 !important;
}

.why-us .section-subtitle,
.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.95) !important;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -30%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 71, 161, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
  position: relative;
  z-index: 2;
}

.why-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-2xl);
  padding: var(--space-8) var(--space-6);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 193, 7, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13, 71, 161, 0.35);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.22), rgba(255, 193, 7, 0.06));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  border: 1px solid rgba(255, 193, 7, 0.4);
  box-shadow: 0 4px 16px rgba(255, 193, 7, 0.2);
  transition: all var(--transition-base);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.35), rgba(255, 193, 7, 0.15));
  transform: scale(1.1) rotate(-5deg);
}

.why-card h3 {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: #FFFFFF;
  margin-bottom: var(--space-3);
  letter-spacing: 0.2px;
}

.why-card p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.88);
  line-height: var(--lh-relaxed);
}

/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section { background: var(--white); }

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  margin-top: var(--space-12);
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: 100%;
  background: linear-gradient(135deg, #f8f9ff 0%, #fff8e1 100%);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-3xl);
  padding: var(--space-12) var(--space-16);
  text-align: center;
}

.testimonial-stars {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-6);
  letter-spacing: 4px;
}

.testimonial-text {
  font-size: var(--fs-xl);
  color: var(--gray-700);
  line-height: var(--lh-relaxed);
  font-style: italic;
  max-width: 700px;
  margin: 0 auto var(--space-8);
  font-weight: var(--fw-light);
}

.testimonial-text::before { content: '"'; }
.testimonial-text::after  { content: '"'; }

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
}

.author-info strong {
  display: block;
  font-size: var(--fs-base);
  color: var(--gray-900);
  font-weight: var(--fw-bold);
}

.author-info span {
  font-size: var(--fs-sm);
  color: var(--gray-500);
}

.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  color: var(--gray-700);
  z-index: 2;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.testimonial-prev { left: 16px; }
.testimonial-next { right: 16px; }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: all var(--transition-base);
}

.testimonial-dot.active {
  width: 24px;
  border-radius: var(--radius-full);
  background: var(--primary);
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-16);
  align-items: start;
}

.faq-header { position: sticky; top: calc(var(--nav-height) + var(--space-6)); }

/* ─── CONTACT CTA STRIP ────────────────────────────────────── */
.contact-cta-strip {
  background: var(--gradient-primary);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.contact-cta-strip::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.cta-title {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  color: var(--white);
  margin-bottom: var(--space-3);
}

.cta-subtitle {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,0.75);
  max-width: 480px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* --- booking-desktop.css --- */
/* ============================================================
   RudraSafar – Booking Page Desktop CSS (min-width: 1024px)
   ============================================================ */

/* ─── PAGE HERO ─────────────────────────────────────────────── */
.booking-hero {
  padding: calc(var(--nav-height) + var(--space-12)) 0 var(--space-10);
}

.booking-hero h1 { font-size: var(--fs-5xl); }

/* ─── BOOKING SECTION ───────────────────────────────────────── */
.booking-section {
  padding: var(--space-16) 0 var(--space-20);
  background: var(--off-white);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-8);
  align-items: start;
}

/* ─── TABS ──────────────────────────────────────────────────── */
.booking-tabs {
  display: flex;
  gap: 0;
  background: var(--gray-100);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 6px;
}

.booking-tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--gray-500);
  border: none;
  background: none;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
}

.booking-tab-btn.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.tab-price-badge {
  background: var(--accent);
  color: var(--gray-900);
  font-size: 10px;
  font-weight: var(--fw-bold);
  padding: 2px 6px;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
}

/* ─── FORM PANEL ────────────────────────────────────────────── */
.booking-form-panel {
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.booking-tab-panel {
  display: none;
  padding: var(--space-8);
}

.booking-tab-panel.active { display: block; }

.form-panel-header {
  margin-bottom: var(--space-6);
}

.form-panel-header h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--gray-900);
  margin-bottom: var(--space-2);
}

.form-panel-header p {
  font-size: var(--fs-sm);
  color: var(--gray-500);
}

/* ─── FORM LAYOUT ───────────────────────────────────────────── */
.booking-form { display: flex; flex-direction: column; gap: var(--space-3); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

/* ─── VEHICLE SELECTOR CARDS ────────────────────────────────── */
.vehicle-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.vehicle-selector-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-3);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-bounce);
  background: var(--white);
}

.vehicle-selector-card:hover {
  border-color: var(--primary-light);
  background: rgba(13,71,161,0.02);
}

.vehicle-selector-card.selected {
  border-color: var(--primary);
  background: rgba(13,71,161,0.04);
  box-shadow: 0 0 0 3px rgba(13,71,161,0.1);
}

.vehicle-selector-card svg {
  width: 100%;
  height: 44px;
  margin-bottom: var(--space-2);
}

.vs-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--gray-900);
}

.vs-rate {
  font-size: 11px;
  color: var(--primary);
  font-weight: var(--fw-semibold);
  margin-top: 2px;
}

/* ─── ROUTE ARROW ───────────────────────────────────────────── */
.route-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -6px 0;
}

/* ─── PRICE DISPLAY ─────────────────────────────────────────── */
.price-display {
  background: linear-gradient(135deg, #f0f4ff 0%, #fffbeb 100%);
  border: 2px solid rgba(13,71,161,0.15);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  animation: scaleIn 0.3s ease both;
}

.price-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-6);
  color: var(--gray-500);
  font-size: var(--fs-sm);
}

.price-error {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--error);
  font-size: var(--fs-sm);
  padding: var(--space-4);
  background: rgba(239,68,68,0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(239,68,68,0.15);
}

.price-result-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.price-result-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: var(--space-1);
}

.price-main {
  font-size: var(--fs-5xl);
  font-weight: var(--fw-black);
  color: var(--primary);
  line-height: 1;
}

.price-main span:first-child {
  font-size: var(--fs-3xl);
  vertical-align: top;
  line-height: 1.3;
}

.price-vehicle-label {
  font-size: var(--fs-xs);
  color: var(--gray-500);
  margin-top: var(--space-1);
}

.price-trip-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: flex-end;
}

.price-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--gray-700);
  background: rgba(255,193,7,0.1);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,193,7,0.2);
}

.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(13,71,161,0.12);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-sm);
  color: var(--gray-500);
}

.price-row.total {
  font-weight: var(--fw-bold);
  color: var(--primary);
  font-size: var(--fs-base);
  padding-top: var(--space-2);
  border-top: 1px dashed rgba(13,71,161,0.15);
  margin-top: var(--space-1);
}

.price-note {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: var(--space-3);
  line-height: 1.5;
}

/* ─── FORM SUCCESS ──────────────────────────────────────────── */
.form-success {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: rgba(16,185,129,0.06);
  border: 1.5px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-xl);
  animation: scaleIn 0.3s ease both;
}

.form-success strong {
  display: block;
  color: #059669;
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  margin-bottom: 2px;
}

.form-success p {
  font-size: var(--fs-sm);
  color: var(--gray-500);
  margin: 0;
}

/* ─── SIDEBAR ───────────────────────────────────────────────── */
.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: sticky;
  top: calc(var(--nav-height) + var(--space-4));
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.sidebar-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--gray-900);
  margin-bottom: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* Rate Table */
.rate-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-4);
  font-size: var(--fs-sm);
}

.rate-table th,
.rate-table td {
  padding: var(--space-3) var(--space-3);
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
}

.rate-table th {
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--gray-50);
}

.rate-table td:nth-child(2),
.rate-table td:nth-child(3) {
  font-weight: var(--fw-bold);
  color: var(--primary);
}

.rate-note {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 11px;
  color: var(--gray-500);
  margin-bottom: var(--space-2);
}

/* Benefits List */
.sidebar-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.sidebar-benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--gray-700);
}

.sidebar-why { background: linear-gradient(135deg, #f0f4ff, #f8f9ff); }
.sidebar-contact { background: var(--gradient-primary); }
.sidebar-contact .sidebar-title { color: var(--white); }

/* --- location-desktop.css --- */
/* ============================================================
   RudraSafar – Location Page Desktop CSS (min-width: 1024px)
   ============================================================ */

.location-hero { padding: calc(var(--nav-height) + var(--space-12)) 0 var(--space-10); }
.location-hero h1 { font-size: var(--fs-5xl); }
.location-hero p { font-size: var(--fs-xl); max-width: 640px; }

.location-hero-ctas {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

.location-content-section {
  padding: var(--space-16) 0 var(--space-20);
  background: var(--off-white);
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-10);
  align-items: start;
}

/* Content blocks */
.loc-content-block {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.loc-content-block h2 {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--gray-900);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--gray-100);
}

.loc-content-block p {
  font-size: var(--fs-base);
  color: var(--gray-600);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-3);
}

.loc-content-block p:last-child { margin-bottom: 0; }

/* Routes Table */
.loc-routes-table {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
}

.loc-routes-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.loc-routes-table th,
.loc-routes-table td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
}

.loc-routes-table th {
  background: var(--primary);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.loc-routes-table tr:hover td { background: var(--gray-50); }
.loc-routes-table td:nth-child(3),
.loc-routes-table td:nth-child(4),
.loc-routes-table td:nth-child(5) { font-weight: var(--fw-semibold); color: var(--primary); }

.btn-xs {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  transition: all var(--transition-base);
}

.btn-xs:hover { background: var(--primary-dark); }

/* Benefits list */
.loc-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.loc-benefits li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--fs-base);
  color: var(--gray-700);
  line-height: var(--lh-relaxed);
}

.loc-benefits li svg { flex-shrink: 0; margin-top: 3px; }

/* Sidebar */
.location-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: sticky;
  top: calc(var(--nav-height) + var(--space-4));
}

.location-quick-book { background: var(--gradient-primary); }
.location-quick-book .sidebar-title { color: var(--white); }

/* City links */
.city-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.city-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-lg);
  color: var(--gray-700);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: all var(--transition-base);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}

.city-link:hover {
  background: rgba(13,71,161,0.06);
  color: var(--primary);
  border-color: rgba(13,71,161,0.15);
}
