:root {
  /* Brand colors derived directly from the official RydNxt logo */
  --brand-navy: #0B1B3D;
  --brand-navy-deep: #060F24;
  --brand-navy-light: #162D59;
  --brand-yellow: #FFA500;
  --brand-yellow-gradient: linear-gradient(135deg, #FFB300 0%, #FF8C00 100%);
  --brand-yellow-glow: rgba(255, 165, 0, 0.35);

  --bg-main: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-light-blue: #EFF6FF;
  --bg-card: #FFFFFF;
  --bg-card-alt: #F1F5F9;

  --text-heading: #0B1B3D;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;

  --border: #E2E8F0;
  --border-focus: #FFA500;

  --emerald: #10B981;
  --rose: #EF4444;
  --cyan: #0284C7;
  --gold: #FFA500;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(11, 27, 61, 0.04);
  --shadow-md: 0 10px 25px rgba(11, 27, 61, 0.08);
  --shadow-lg: 0 20px 40px rgba(11, 27, 61, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(at 0% 0%, rgba(255, 165, 0, 0.05) 0px, transparent 45%),
    radial-gradient(at 100% 15%, rgba(11, 27, 61, 0.04) 0px, transparent 50%),
    radial-gradient(at 50% 100%, rgba(255, 165, 0, 0.04) 0px, transparent 50%);
  min-height: 100vh;
  padding-top: 72px; /* Fix for fixed header so content never overlaps */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Header & Nav - Sleek Dark Theme matching RydNxt Mockup */
header.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 86px;
  padding: 0 1.75rem;
  background: #080F18;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.brand-logo:hover {
  transform: translateY(-1px) scale(1.04);
}

/* Official Logo Display */
.brand-logo-img {
  height: 74px;
  width: auto;
  max-width: 165px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 14px rgba(255, 165, 0, 0.35));
  transition: transform 0.25s ease;
}

.brand-logo-img:hover {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s ease;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover {
  color: #FBBF24;
}

.nav-link.active {
  color: #FBBF24;
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: #FBBF24;
  border-radius: 2px;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-link-partner {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.2s ease;
}

.nav-link-partner:hover {
  color: #FFFFFF;
  border-color: #FBBF24;
  background: rgba(251, 191, 36, 0.08);
}

/* Golden Pill Book Now Button */
.btn-book-now-gold {
  background: linear-gradient(135deg, #FDE047 0%, #F59E0B 100%);
  color: #0F172A;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.65rem 1.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-book-now-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.55);
  filter: brightness(1.06);
}

.btn-taxi-icon {
  font-size: 1.1rem;
}

/* Mobile Toggle */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .nav-mobile-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #0B1320;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
  .nav-links.mobile-active {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--brand-yellow-gradient);
  color: var(--brand-navy);
  font-weight: 800;
  box-shadow: 0 4px 14px var(--brand-yellow-glow);
}

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 165, 0, 0.5);
}

.btn-navy {
  background: var(--brand-navy);
  color: white;
  box-shadow: 0 4px 14px rgba(11, 27, 61, 0.25);
}

.btn-navy:hover {
  background: var(--brand-navy-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--brand-navy);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  background: var(--bg-light-blue);
  border-color: var(--brand-navy);
}

/* ===================================================
   RIDE MITRA HERO SLIDER (Dynamic CMS Banner Carousel)
   =================================================== */
.hero-mitra-section {
  position: relative;
  z-index: 100;
  background-color: #060B12;
  color: #FFFFFF;
  padding: 2.75rem 2rem 5.75rem 2rem;
  min-height: 530px;
  display: flex;
  align-items: center;
  overflow: visible;
}

/* Background Cross-fade Slider Container */
.hero-slider-bg-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1400px) {
  .hero-slide-bg {
    background-size: cover;
  }
}

.hero-slide-bg.active {
  opacity: 1;
  transform: scale(1);
}

/* Dark Gradient Vignette for perfect text readability */
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #060B12 0%,
    #060B12 34%,
    rgba(6, 11, 18, 0.94) 46%,
    rgba(6, 11, 18, 0.5) 65%,
    rgba(6, 11, 18, 0.15) 100%
  );
}

/* Subtle Golden Radial Glow */
.hero-slider-bg-container::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

/* Navigation Arrow Controls */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 120;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero-slider-arrow:hover {
  background: rgba(251, 191, 36, 0.9);
  color: #0F172A;
  border-color: #FBBF24;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.45);
}

.hero-slider-arrow.prev {
  left: 20px;
}

.hero-slider-arrow.next {
  right: 20px;
}

@media (max-width: 768px) {
  .hero-slider-arrow {
    display: none;
  }
}

/* Animated Text Transitions */
.hero-slide-text-wrapper {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-slide-text-wrapper.slide-animating {
  opacity: 0;
  transform: translateY(6px);
}

/* Slide Indicator Dots / Pills */
.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4.5rem;
  z-index: 110;
  position: relative;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-dot:hover {
  background: rgba(251, 191, 36, 0.7);
}

.hero-dot.active {
  width: 32px;
  background: linear-gradient(135deg, #FDE047 0%, #F59E0B 100%);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
}

/* Floating Promo Badge */
.hero-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(251, 191, 36, 0.16);
  border: 1px solid rgba(251, 191, 36, 0.45);
  color: #FBBF24;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.hero-mitra-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.hero-mitra-left {
  display: flex;
  flex-direction: column;
  max-width: 820px;
}

.hero-tagline-pills {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #F59E0B;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.hero-main-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 0.9rem;
}

.text-mitra-gold {
  color: #FBBF24;
  display: inline-block;
}

.hero-subtext {
  font-size: 1.05rem;
  color: #CBD5E1;
  line-height: 1.5;
  max-width: 520px;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Floating Quick Booking Bar */
.quick-booking-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 1rem 1.4rem 1.25rem 1.4rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  width: 100%;
  max-width: 920px;
  position: relative;
  z-index: 150;
  margin-top: 1.25rem;
  transform: translateY(56px);
}

/* Trip Type Tabs (MakeMyTrip / Goibibo Style) */
.qb-tabs-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.95rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #F1F5F9;
  flex-wrap: wrap;
}

.qb-tab-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  color: #475569;
  user-select: none;
  transition: all 0.2s ease;
  position: relative;
}

.qb-tab-pill input {
  display: none;
}

.qb-tab-pill .qb-radio-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #CBD5E1;
  background: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.qb-tab-pill.active .qb-radio-dot {
  border-color: #0284C7;
  background: #0284C7;
  box-shadow: inset 0 0 0 2.5px #FFFFFF;
}

.qb-tab-pill.active .qb-tab-label {
  color: #0F172A;
  font-weight: 800;
}

.qb-badge-new {
  background: #7C3AED;
  color: #FFFFFF;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 4px;
  text-transform: lowercase;
  letter-spacing: 0.2px;
  line-height: 1.2;
}

/* Form Grid */
.qb-grid {
  display: grid;
  grid-template-columns: 1.4fr auto 1.4fr auto 1.35fr auto;
  align-items: center;
  gap: 0.9rem;
}

.qb-segment {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 4px 6px;
  border-radius: 10px;
  transition: background 0.15s ease;
  cursor: pointer;
}

.qb-segment:hover {
  background: #F8FAFC;
}

.qb-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #64748B;
  margin-bottom: 2px;
  white-space: nowrap;
}

.qb-caret {
  color: #0284C7;
  font-size: 0.85rem;
  font-weight: 900;
}

.qb-input {
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  padding: 2px 0;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.qb-input:focus {
  cursor: text;
}

.qb-input::placeholder {
  color: #94A3B8;
  font-weight: 500;
  font-size: 0.92rem;
}

.qb-sub-label {
  font-size: 0.72rem;
  color: #94A3B8;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

/* Swap Button */
.qb-swap-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.qb-swap-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0284C7;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.qb-swap-btn:hover {
  background: #0284C7;
  color: #FFFFFF;
  border-color: #0284C7;
  transform: rotate(180deg) scale(1.08);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.qb-divider {
  width: 1px;
  height: 42px;
  background: #E2E8F0;
}

.qb-btn {
  background: #FACC15;
  color: #0F172A;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.65rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(250, 204, 21, 0.4);
  letter-spacing: 0.3px;
}

.qb-btn:hover {
  background: #EAB308;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 204, 21, 0.55);
}

/* ========================================================
   LOCATION SUGGESTIONS DROPDOWN (MakeMyTrip Photo Style)
   ======================================================== */
.qb-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 390px;
  max-width: 90vw;
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #E2E8F0;
  z-index: 2500;
  overflow: hidden;
  display: none;
  animation: qbDropdownSlide 0.2s ease-out;
}

@keyframes qbDropdownSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.qb-dropdown.active {
  display: block;
}

/* Top search field inside dropdown */
.qb-dd-search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}

.qb-dd-search-icon {
  font-size: 0.95rem;
  color: #64748B;
  flex-shrink: 0;
}

.qb-dd-search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0F172A;
}

.qb-dd-search-input::placeholder {
  color: #94A3B8;
  font-weight: 500;
}

.qb-dd-clear-btn {
  background: none;
  border: none;
  font-size: 1.15rem;
  color: #94A3B8;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.15s;
}

.qb-dd-clear-btn:hover {
  color: #0F172A;
}

/* Section Header: SUGGESTIONS */
.qb-dropdown-title {
  padding: 9px 16px 4px 16px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #718096;
}

/* Suggestions List */
.qb-dd-list {
  max-height: 280px;
  overflow-y: auto;
  padding: 4px 0;
}

/* Custom Slim Scrollbar */
.qb-dd-list::-webkit-scrollbar {
  width: 6px;
}
.qb-dd-list::-webkit-scrollbar-track {
  background: transparent;
}
.qb-dd-list::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 10px;
}
.qb-dd-list::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

/* Suggestion Item */
.qb-dd-item {
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #1E293B;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.15s ease;
  line-height: 1.35;
  border-bottom: 1px solid #F8FAFC;
}

.qb-dd-item:last-child {
  border-bottom: none;
}

.qb-dd-item:hover,
.qb-dd-item.selected {
  background: #F1F5F9;
  color: #0F172A;
}

.qb-dd-pin {
  font-size: 0.95rem;
  flex-shrink: 0;
  color: #64748B;
}

.qb-dd-content {
  flex: 1;
  min-width: 0;
}

.qb-dd-main {
  font-weight: 600;
  color: #1E293B;
}

.qb-dd-sub {
  font-size: 0.74rem;
  color: #64748B;
  font-weight: 500;
}

.qb-match-highlight {
  color: #0284C7;
  font-weight: 800;
}

.qb-dd-loading {
  padding: 18px;
  text-align: center;
  color: #64748B;
  font-size: 0.84rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Date/Time Popover */
.qb-popover {
  position: absolute;
  top: calc(100% + 14px);
  right: -8px;
  left: auto;
  width: 340px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45), 0 8px 24px rgba(0, 0, 0, 0.2);
  border: 1px solid #E2E8F0;
  padding: 16px;
  z-index: 2000;
  display: none;
}

.qb-popover.active {
  display: block;
}

.qb-popover-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #475569;
  margin-bottom: 10px;
}

.qb-chips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.qb-chip {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  font-family: inherit;
}

.qb-chip:hover {
  background: #FEF3C7;
  border-color: #F59E0B;
  color: #92400E;
}

.qb-custom-wrap {
  border-top: 1px dashed #E2E8F0;
  padding-top: 10px;
}

.qb-custom-dt {
  width: 100%;
  padding: 8px 10px;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  font-size: 0.82rem;
  font-family: inherit;
  outline: none;
  font-weight: 600;
  color: #0F172A;
}

.qb-custom-dt:focus {
  border-color: #F59E0B;
}

/* Hero Instant Ride Modal */
.hero-ride-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 15, 24, 0.78);
  backdrop-filter: blur(8px);
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.hero-ride-modal-backdrop.active {
  display: flex;
}

.hero-ride-modal {
  background: #FFFFFF;
  border-radius: 24px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  padding: 1.75rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: heroModalFadeIn 0.25s ease-out;
}

@keyframes heroModalFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.hrm-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #F1F5F9;
}

.hrm-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0F172A;
}

.hrm-subtitle {
  font-size: 0.82rem;
  color: #64748B;
  margin-top: 2px;
}

.hrm-close-btn {
  background: #F1F5F9;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.hrm-close-btn:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.hrm-route-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hrm-route-points {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
}

.hrm-arrow {
  color: #F59E0B;
}

.hrm-meta-badge {
  background: #FEF3C7;
  color: #92400E;
  font-weight: 700;
  font-size: 0.76rem;
  padding: 4px 10px;
  border-radius: 999px;
}

.hrm-vehicle-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hrm-vehicle-item {
  border: 2px solid #E2E8F0;
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hrm-vehicle-item:hover {
  border-color: #FCD34D;
  background: #FFFBEB;
}

.hrm-vehicle-item.selected {
  border-color: #F59E0B;
  background: #FFFDF0;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.2);
}

.hrm-v-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hrm-v-icon {
  font-size: 1.75rem;
}

.hrm-v-name {
  font-weight: 800;
  font-size: 0.96rem;
  color: #0F172A;
}

.hrm-v-sub {
  font-size: 0.75rem;
  color: #64748B;
}

.hrm-v-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: #0F172A;
  text-align: right;
}

.hrm-v-pricelabel {
  font-size: 0.7rem;
  color: #10B981;
  font-weight: 700;
}

/* Auth Box inside Hero Ride Modal */
.hrm-auth-box {
  margin-top: 1.1rem;
  background: #F8FAFC;
  border: 1.5px dashed #CBD5E1;
  border-radius: 14px;
  padding: 1.1rem;
}

.hrm-auth-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.95rem;
}

.hrm-auth-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.hrm-auth-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 3px;
}

.hrm-auth-desc {
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.4;
}

.hrm-logged-in-box {
  background: #F0FDF4;
  border: 1.5px solid #BBF7D0;
}

.hrm-user-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.95rem;
  background: #FFFFFF;
  border: 1px solid #DCFCE7;
  border-radius: 10px;
  padding: 8px 12px;
}

.hrm-avatar {
  font-size: 1.4rem;
}

.hrm-user-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: #14532D;
}

.hrm-user-phone {
  font-size: 0.75rem;
  color: #16A34A;
  font-weight: 600;
}

.hrm-user-status-pill {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  background: #DCFCE7;
  color: #15803D;
  padding: 3px 8px;
  border-radius: 999px;
}

.hrm-btn-book {
  width: 100%;
  background: linear-gradient(135deg, #FDE047 0%, #F59E0B 100%);
  color: #0F172A;
  border: none;
  border-radius: 12px;
  padding: 0.95rem;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hrm-btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.55);
}

.hrm-dashboard-link {
  display: block;
  text-align: center;
  margin-top: 0.85rem;
  color: #0284C7;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.hrm-dashboard-link:hover {
  text-decoration: underline;
}

/* Right Column: Transparent Visual Stage */
.hero-mitra-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 400px;
  pointer-events: none;
}

.hero-mobile-visual {
  display: none;
}

@media (max-width: 992px) {
  .hero-mitra-section {
    background-image: none;
    padding: 2.5rem 1rem 3.5rem 1rem;
    min-height: auto;
  }
  .hero-mitra-container {
    grid-template-columns: 1fr;
  }
  .hero-mitra-right {
    min-height: auto;
    pointer-events: auto;
  }
  .hero-mobile-visual {
    display: block;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  }
  .hero-mobile-img {
    width: 100%;
    display: block;
    object-fit: cover;
  }
}

/* Feature Trust Strip (6 Pillars exactly as in Mockup) */
.trust-features-strip {
  background: #FFFFFF;
  padding: 2.25rem 1.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}

.trust-strip-container {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FEF3C7;
  border: 2px solid #FDE68A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
}

.trust-content {
  min-width: 0;
}

.trust-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 2px 0;
  white-space: nowrap;
}

.trust-sub {
  font-size: 0.75rem;
  color: #64748B;
  margin: 0;
  white-space: nowrap;
}

/* Decorative Bottom Swoop Transition from Mockup */
.trust-strip-swoop {
  position: relative;
  background: #FFFFFF;
  line-height: 0;
  overflow: hidden;
  height: 48px;
}

.trust-strip-swoop svg {
  width: 100%;
  height: 48px;
  display: block;
}

@media (max-width: 1200px) {
  .hero-main-title { font-size: 3.4rem; }
  .trust-strip-container { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

@media (max-width: 960px) {
  .hero-mitra-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-main-title { font-size: 2.8rem; }
  .qb-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .qb-divider { display: none; }
  .qb-btn { width: 100%; justify-content: center; }
  .trust-strip-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero-main-title { font-size: 2.2rem; }
  .trust-strip-container { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* Legacy Hero Section */
.hero {
  padding: 1rem 1.5rem 3.5rem 1.5rem;
  max-width: 1340px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--brand-navy);
  margin-bottom: 1.25rem;
}

.highlight-gradient,
.highlight-gold {
  color: var(--brand-yellow);
  background: linear-gradient(135deg, #FF9E00 0%, #FF6600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.75rem;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-heading);
  box-shadow: var(--shadow-sm);
}

.badge-tag.highlight {
  color: var(--brand-navy);
  border-color: rgba(255, 165, 0, 0.4);
  background: #FFFBEB;
}

/* Hero Media Card */
.hero-media-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-media-card:hover .hero-img {
  transform: scale(1.03);
}

.hero-img-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 27, 61, 0.85) 0%, rgba(11, 27, 61, 0.1) 60%, transparent 100%);
}

.hero-floating-telemetry {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.telemetry-pilot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.telemetry-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--brand-yellow);
}

.telemetry-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--brand-navy);
}

.telemetry-loc {
  font-size: 0.76rem;
  color: var(--cyan);
  font-weight: 600;
}

/* Quick Booking Bar */
.booking-section-bar {
  margin-top: 3rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-md);
}

.booking-bar-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr auto;
  gap: 1.5rem;
  align-items: flex-end;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  color: var(--brand-navy);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.form-select, .form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-main);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  outline: none;
  transition: all 0.2s;
}

.form-select:focus, .form-input:focus {
  border-color: var(--brand-yellow);
  background: white;
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.15);
}

/* Fare Result Banner */
.fare-result-inline {
  background: #FFFBEB;
  border: 1.5px solid rgba(255, 165, 0, 0.4);
  border-radius: 12px;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fare-amount {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1;
}

/* Section styling */
.section {
  padding: 4.5rem 1.5rem;
  max-width: 1340px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-tag {
  color: #D97706;
  background: #FEF3C7;
  padding: 0.35rem 0.95rem;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-navy);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* Fleet Cards Grid - Clean 4 Columns on Desktop */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

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

.fleet-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(11, 27, 61, 0.04);
  position: relative;
}

.fleet-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-yellow);
  box-shadow: 0 16px 32px rgba(11, 27, 61, 0.1);
}

.fleet-photo-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #0F172A;
}

.fleet-photo-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.fleet-photo-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
  pointer-events: none;
}

.fleet-photo-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

.fleet-card:hover .fleet-photo-slide.active {
  transform: scale(1.05);
}

.fleet-photo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 27, 61, 0.88);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.fleet-slider-dots {
  position: absolute;
  bottom: 8px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 6;
  background: rgba(11, 27, 61, 0.6);
  backdrop-filter: blur(8px);
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.fleet-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.fleet-dot:hover {
  background: #FFFFFF;
}

.fleet-dot.active {
  background: #FFA500;
  width: 18px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 165, 0, 0.85);
}

.fleet-slide-counter {
  position: absolute;
  bottom: 8px;
  left: 10px;
  z-index: 6;
  background: rgba(11, 27, 61, 0.6);
  backdrop-filter: blur(6px);
  color: #E2E8F0;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 3px;
}

.fleet-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: visible;
}

.fleet-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.35rem;
  line-height: 1.35;
  overflow: visible;
  white-space: normal;
  word-break: break-word;
}

.fleet-models {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.65rem;
  line-height: 1.4;
}

.fleet-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex: 1;
}

.fleet-pricing-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

/* Routes Grid - Balanced 3 Columns */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

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

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

.route-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all 0.25s ease;
  box-shadow: 0 2px 10px rgba(11, 27, 61, 0.03);
}

.route-card:hover {
  border-color: var(--brand-yellow);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(11, 27, 61, 0.08);
}

/* Tour Packages Showcase Grid */
.tour-circuits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 2rem;
}

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

.tour-circuit-card {
  background: #FFFFFF;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(11, 27, 61, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tour-circuit-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-yellow);
  box-shadow: 0 14px 30px rgba(11, 27, 61, 0.1);
}

.tour-card-img-wrapper {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.tour-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.tour-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11, 27, 61, 0.85);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
}

.tour-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* End Tour Packages Showcase Grid */

.route-endpoints {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.route-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--brand-navy);
}

.route-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.route-fare {
  text-align: right;
}

.route-fare-val {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #D97706;
}

/* Pilgrimage & Char Dham Yatra Feature Box */
.pilgrimage-banner {
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 1.5px solid rgba(255, 165, 0, 0.4);
  border-radius: 24px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3.5rem;
  box-shadow: var(--shadow-md);
}

/* Safety Section */
.safety-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.safety-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.safety-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.safety-icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #FEE2E2;
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Driver Partner Banner */
.driver-banner {
  background: linear-gradient(135deg, #0B1B3D 0%, #162D59 100%);
  border-radius: 24px;
  padding: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  box-shadow: var(--shadow-lg);
}

/* Verified Pilots Showcase Grid */
.pilots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pilot-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.pilot-card:hover {
  border-color: var(--brand-yellow);
  box-shadow: var(--shadow-md);
}

.pilot-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand-yellow);
  margin: 0 auto 1rem auto;
  box-shadow: 0 4px 15px rgba(255, 165, 0, 0.25);
}

/* Footer */
footer.footer {
  background: var(--brand-navy-deep);
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 2rem 2rem 2rem;
}

.footer-logo-card {
  display: inline-flex;
  align-items: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  height: 84px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: white;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--brand-yellow);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #64748B;
}

/* Modal for Driver Signup */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11, 27, 61, 0.7);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-img {
    height: 380px;
  }
  .booking-bar-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pilgrimage-banner {
    grid-template-columns: 1fr;
  }
  .safety-box {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .driver-banner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 2rem;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .booking-bar-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   MULTI-MOBILITY CATEGORY SWITCHER BAR
   ========================================================== */
.mobility-nav-wrapper {
  max-width: 1340px;
  margin: 1.25rem auto 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.mobility-category-bar {
  display: flex;
  background: white;
  padding: 0.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  border: 1px solid var(--border);
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.mobility-category-bar::-webkit-scrollbar {
  display: none;
}

.mobility-tab {
  flex: 1;
  min-width: 170px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.mobility-tab:hover {
  background: #F8FAFC;
}

.mobility-tab.active {
  background: #ECFDF5;
  border-color: #A7F3D0;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.12);
}

.mobility-tab .m-icon {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobility-tab .m-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0F172A;
}

.mobility-tab.active .m-title {
  color: #059669;
}

.mobility-tab .m-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================
   BIKE & SCOOTY RENTAL SECTION
   ========================================================== */
.rentals-section {
  padding: 5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.rental-filter-card {
  background: white;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rental-filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.rental-duration-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.duration-pill-btn {
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  background: #F8FAFC;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s ease;
}

.duration-pill-btn:hover {
  background: #F1F5F9;
}

.duration-pill-btn.active {
  background: #059669;
  color: white;
  border-color: #059669;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
}

/* Bikes Grid */
.bikes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.75rem;
}

.bike-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.bike-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: #CBD5E1;
}

.bike-photo-wrap {
  position: relative;
  height: 220px;
  background: #0F172A;
  overflow: hidden;
}

.bike-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bike-card:hover .bike-photo {
  transform: scale(1.05);
}

.bike-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bike-hub-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: #059669;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(5, 150, 105, 0.35);
}

.bike-avail-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #86EFAC;
}

.bike-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.bike-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.25rem;
}

.bike-specs-row {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.bike-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.bike-feature-tag {
  background: #F8FAFC;
  color: #334155;
  border: 1px solid #E2E8F0;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}

.bike-pricing-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.bike-rate-day {
  font-size: 1.25rem;
  font-weight: 800;
  color: #059669;
  font-family: var(--font-heading);
}

.bike-rate-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.bike-deposit-pill {
  font-size: 0.72rem;
  background: #FEF3C7;
  color: #D97706;
  border: 1px solid #FDE68A;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 700;
}

/* ==========================================================
   EXPLORE PAHAD SECTION
   ========================================================== */
.explore-section {
  padding: 5rem 1.5rem;
  background: #F1F5F9;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.75rem;
  max-width: 1280px;
  margin: 0 auto;
}

.explore-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.explore-photo-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.explore-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.explore-card:hover .explore-photo {
  transform: scale(1.05);
}

.explore-time-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #FBBF24;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.explore-rec-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: #0284C7;
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.explore-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.explore-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.explore-highlights-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.85rem 0;
}

.explore-hl-pill {
  background: #F1F5F9;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}

.explore-meta-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

/* Modal Wide for Bike Booking */
.modal-content-wide {
  background: white !important;
  color: #0F172A !important;
  border-radius: 20px;
  max-width: 720px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.4);
  padding: 0;
}

