@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color System - Shifted to Cobalt Blue */
  --color-white: #FFFFFF;
  --color-black: #0A0A0A;
  --color-steel-blue: #2563EB;       /* Cobalt Blue primary */
  --color-steel-blue-light: #60A5FA; /* Light Cobalt Blue hover */
  --color-steel-blue-dark: #1D4ED8;  /* Dark Cobalt Blue active/pressed */
  --color-gray-soft: #F8FAFC;        /* Light Slate background */
  --color-gray-border: #E2E8F0;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;

  /* Sizing and Radii */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  
  /* Snapping transitions */
  --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-med: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Premium Shadow presets */
  --shadow-sm: 0 4px 12px rgba(91, 124, 142, 0.04);
  --shadow-md: 0 10px 30px rgba(91, 124, 142, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 10, 10, 0.1);
}

/* Reset and Core Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden !important;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-white);
  color: var(--color-black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden !important;
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-black);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Image Assets styling */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img-card {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 1px solid var(--color-gray-border);
  aspect-ratio: 16 / 10;
  background-color: var(--color-gray-soft);
  transition: transform var(--transition-med);
}

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

/* Buttons & Interactive Elements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--color-steel-blue);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-steel-blue-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  background-color: var(--color-steel-blue-dark);
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-steel-blue);
  border-color: var(--color-steel-blue);
}

.btn-secondary:hover {
  background-color: var(--color-gray-soft);
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-black {
  background-color: var(--color-black);
  color: var(--color-white);
}

.btn-black:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Spacious, Uncompressed Header */
header#global-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #000000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: padding var(--transition-med), box-shadow var(--transition-med), background-color var(--transition-med);
  padding: 28px 0; /* Expanded padding for spacious feel */
}

header#global-header.scrolled {
  padding: 16px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  background-color: #000000;
}

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

.logo-link {
  display: flex;
  align-items: center;
  height: 56px; /* Expanded logo size */
  transition: transform var(--transition-fast);
}

.logo-link:hover {
  transform: scale(1.02);
}

.logo-link img {
  height: 100%;
  width: auto;
  filter: brightness(0) invert(1);
}

nav.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px; /* Expanded gap */
}

nav.desktop-nav a {
  font-weight: 600;
  font-size: 1rem; /* Slightly larger, more legible navigation */
  position: relative;
  padding: 8px 0;
  color: #FFFFFF;
  letter-spacing: -0.2px;
}

nav.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-steel-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
  border-radius: 2px;
}

nav.desktop-nav a:hover::after,
nav.desktop-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

nav.desktop-nav a:hover,
nav.desktop-nav a.active {
  color: var(--color-steel-blue);
}

/* More Dropdown Menu */
.dropdown-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-container {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 10px;
  min-width: 210px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  z-index: 1010;
}

.dropdown-container:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background-color: var(--color-gray-soft);
  color: var(--color-steel-blue);
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background-color: #FFFFFF;
  margin-bottom: 6px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hamburger span:last-child {
  margin-bottom: 0;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--color-white);
  box-shadow: var(--shadow-lg);
  z-index: 1050;
  padding: 100px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--transition-med), visibility var(--transition-med);
}

.mobile-nav.active {
  transform: translateX(0) !important;
  visibility: visible !important;
}

.mobile-nav a {
  font-size: 1.15rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-gray-soft);
}

.mobile-nav a.active {
  color: var(--color-steel-blue);
  border-bottom-color: var(--color-steel-blue-light);
}

/* Mobile Nav Drawer Premium Button Styling */
.mobile-nav .btn {
  padding: 8px 18px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  border-radius: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 38px !important;
  box-sizing: border-box !important;
  transition: all var(--transition-fast) !important;
}

.mobile-nav .btn-secondary {
  color: #FFFFFF !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
  background-color: transparent !important;
}

.mobile-nav .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

.mobile-nav .btn-primary {
  color: #FFFFFF !important;
  background-color: #0047AB !important;
  border: 1.5px solid #0047AB !important;
  box-shadow: 0 4px 10px rgba(0, 71, 171, 0.25) !important;
}

.mobile-nav .btn-primary:hover {
  background-color: #003da1 !important;
  border-color: #003da1 !important;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Intersection Observer Reveal Styles */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

.reveal-slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-slide-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-slide-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger animations */
.reveal-stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger-item.active {
  opacity: 1;
  transform: translateY(0);
}

/* Professional 5+ Second SVG Welcome Splash Overlay */
#splash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#splash-overlay .splash-content {
  text-align: center;
  z-index: 10000;
  max-width: 500px;
  width: 90%;
  padding: 20px;
}

/* Animated Logo Container in Splash */
#splash-logo-svg {
  width: 100%;
  max-width: 440px;
  height: auto;
  margin-bottom: 24px;
}

/* SVG Line Drawing Animations */
#splash-logo-svg .draw-path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawStroke 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

#splash-logo-svg .draw-checkmark {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawStroke 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.8s;
}

/* Animated Bus sliding in */
#splash-logo-svg .splash-bus-group {
  opacity: 0;
  transform: translateX(-150px);
  animation: slideBus 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.5s;
}

/* Flash lights on the bus */
#splash-logo-svg .bus-light-flash {
  opacity: 0;
  animation: flashLights 1.5s ease-in-out infinite;
  animation-delay: 3s;
}

/* Text glow fade in */
#splash-logo-svg .splash-text-group {
  opacity: 0;
  animation: textFadeGlow 1.2s ease-out forwards;
  animation-delay: 3.3s;
}

@keyframes drawStroke {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes slideBus {
  0% {
    opacity: 0;
    transform: translateX(-150px);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes flashLights {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

@keyframes textFadeGlow {
  0% {
    opacity: 0;
    filter: drop-shadow(0 0 0px var(--color-steel-blue-light));
  }
  50% {
    opacity: 0.8;
    filter: drop-shadow(0 0 15px var(--color-steel-blue));
  }
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 0px transparent);
  }
}

#splash-overlay .splash-progress-container {
  width: 220px;
  height: 3px;
  background-color: rgba(37, 99, 235, 0.15);
  margin-top: 20px;
  border-radius: 2px;
  overflow: hidden;
  display: inline-block;
}

#splash-overlay .splash-progress-bar {
  width: 0%;
  height: 100%;
  background-color: var(--color-steel-blue);
  border-radius: 2px;
}

/* Hero Section with Image Backgrounds and Dark Overlays */
.hero-banner {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 260px 0 160px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}

/* Dark gradient overlay for hero banners to make text readable */
.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.48) 0%, rgba(10, 10, 10, 0.68) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-banner.hero-inner {
  padding: 140px 0 70px;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

@media (min-width: 1200px) {
  .hero-content {
    margin-left: -40px;
  }
}

@media (min-width: 1500px) {
  .hero-content {
    margin-left: -100px;
  }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background-color: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 30px;
  color: var(--color-steel-blue-light);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.hero-tag svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  color: var(--color-white);
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-steel-blue-light);
  margin-bottom: 28px;
  font-weight: 400;
}

/* Booking Widget styling */
.booking-widget-wrapper {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px;
  margin-top: -45px;
  position: relative;
  z-index: 10;
  border: 1px solid var(--color-gray-border);
}


.booking-widget-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 20px;
  align-items: end;
}

.widget-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.widget-field label {
  font-size: 0.8rem;
  font-weight: 750;
  text-transform: uppercase;
  color: var(--color-steel-blue);
  letter-spacing: 0.5px;
}

.widget-field-input {
  display: flex;
  align-items: center;
  border: 2px solid var(--color-gray-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  background-color: var(--color-white);
  transition: border-color var(--transition-fast);
}

.widget-field-input:focus-within {
  border-color: var(--color-steel-blue);
}

.widget-field-input svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-steel-blue);
  margin-right: 12px;
}

.widget-field-input select,
.widget-field-input input {
  border: none;
  width: 100%;
  background: transparent;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.widget-field-input select option {
  background-color: var(--color-white) !important;
  color: var(--color-black) !important;
}

.widget-swap-btn {
  position: absolute;
  right: -18px;
  top: 38px;
  width: 34px;
  height: 34px;
  background-color: var(--color-white);
  border: 2px solid var(--color-gray-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all var(--transition-fast);
}

.widget-swap-btn:hover {
  border-color: var(--color-steel-blue);
  transform: rotate(180deg);
}

.widget-swap-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-steel-blue);
}

/* Sticky Bottom Booking Bar for Mobile */
.mobile-sticky-booking {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-gray-border);
  padding: 14px 24px;
  display: none;
  z-index: 900;
  box-shadow: 0 -8px 24px rgba(10, 10, 10, 0.08);
}

/* Bullet markers */
.snap-bullet-list {
  list-style: none;
}

.snap-bullet-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-weight: 500;
}

.snap-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%232563EB" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12l5 5L20 7"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

/* Sections Base */
.section {
  padding: 90px 0;
}

.section-tinted {
  background-color: var(--color-gray-soft);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 55px;
}

.section-header .subtitle {
  color: var(--color-steel-blue);
  text-transform: uppercase;
  font-weight: 750;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: -0.5px;
}

/* Feature Grid Card styling */
.feature-card {
  background-color: var(--color-white);
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-border);
  transition: all var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-steel-blue-light);
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-steel-blue);
  font-weight: 700;
  font-size: 1.25rem;
}

.feature-icon-wrapper svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 1.3rem;
}

/* Stats Counter Section */
.stats-bar {
  background-color: #0047AB; /* Cobalt Blue solid background */
  color: #FFFFFF;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 40px;
}

.stat-item h3 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: #FFFFFF;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -1.5px;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.85); /* 85% White */
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
}

/* Route Card styling */
.route-card {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-border);
  overflow: hidden;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-steel-blue-light);
}

.route-card-header {
  padding: 28px;
  border-bottom: 1px solid var(--color-gray-soft);
}

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

.route-city {
  display: flex;
  flex-direction: column;
}

.route-city .name {
  font-weight: 700;
  font-size: 1.2rem;
}

.route-city .state {
  font-size: 0.75rem;
  color: var(--color-steel-blue);
  font-weight: 600;
  text-transform: uppercase;
}

.route-connector {
  flex-grow: 1;
  height: 2px;
  background-color: var(--color-steel-blue-light);
  position: relative;
}

.route-connector::after {
  content: '→';
  position: absolute;
  top: -10px;
  right: 0;
  color: var(--color-steel-blue);
  font-weight: 700;
}

.route-card-body {
  padding: 24px 28px;
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-gray-soft);
}

.route-info-item {
  display: flex;
  flex-direction: column;
}

.route-info-item .label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-steel-blue);
  text-transform: uppercase;
}

.route-info-item .value {
  font-weight: 600;
  font-size: 1.1rem;
}

.route-card-footer {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.route-fare {
  display: flex;
  flex-direction: column;
}

.route-fare .label {
  font-size: 0.75rem;
  color: var(--color-steel-blue-light);
  font-weight: 600;
}

.route-fare .amount {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-black);
}

/* FAQ Accordion Styling */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--color-steel-blue);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.05rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-steel-blue);
  stroke-width: 2.5;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-med) ease;
}

.faq-answer-inner {
  padding: 0 28px 22px;
  color: var(--color-steel-blue-dark);
}

/* Footer Section */
footer#global-footer {
  background-color: #000000;
  color: #FFFFFF;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer#global-footer a {
  transition: color var(--transition-fast);
  text-decoration: none;
}

footer#global-footer a:hover {
  color: #FFFFFF !important;
  opacity: 1 !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  height: 56px;
  align-self: flex-start;
}

.footer-logo svg, .footer-logo img {
  height: 100%;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  color: rgba(255, 255, 255, 0.6);
}

.social-icon:hover {
  background-color: var(--color-steel-blue);
  border-color: var(--color-steel-blue);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
}

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

.footer-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: #FFFFFF;
}

.pwa-badge {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: var(--radius-md);
}

.pwa-badge h5 {
  color: #FFFFFF;
  font-size: 0.95rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.pwa-badge p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  margin-bottom: 16px;
}

.pwa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-steel-blue);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pwa-btn:hover {
  background-color: var(--color-steel-blue-light);
  transform: translateY(-1px);
}

.pwa-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

/* Route Search page and filters styling */
.routes-page-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 36px;
  margin-top: 45px;
}

.filter-sidebar {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-md);
  padding: 28px;
  height: fit-content;
  position: sticky;
  top: 120px;
}

.filter-section {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-gray-soft);
}

.filter-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.filter-section h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-steel-blue);
  margin-bottom: 18px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  cursor: pointer;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-steel-blue);
}

/* Seat Selection Mock Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 10, 10, 0.5);
  backdrop-filter: blur(5px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--color-gray-border);
  transform: translateY(20px);
  transition: transform var(--transition-med);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-header {
  padding: 28px;
  border-bottom: 1px solid var(--color-gray-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-steel-blue);
}

.modal-close svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2.5;
}

.modal-body {
  padding: 28px;
}

/* Bus seat grid layout */
.seat-map-container {
  border: 2px solid var(--color-gray-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.seat-driver-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--color-gray-border);
}

.driver-wheel {
  width: 24px;
  height: 24px;
  opacity: 0.6;
}

.seat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  justify-items: center;
}

.seat-grid .seat-aisle {
  grid-column: 3;
}

.bus-seat {
  width: 38px;
  height: 38px;
  border: 2px solid var(--color-steel-blue-light);
  border-radius: 6px;
  background-color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.bus-seat:hover {
  background-color: var(--color-gray-soft);
  border-color: var(--color-steel-blue);
}

.bus-seat.selected {
  background-color: var(--color-steel-blue);
  border-color: var(--color-steel-blue-dark);
  color: var(--color-white);
}

.bus-seat.occupied {
  background-color: var(--color-gray-soft);
  border-color: var(--color-gray-border);
  color: var(--color-steel-blue-light);
  cursor: not-allowed;
  pointer-events: none;
}

.seat-legend {
  display: flex;
  justify-content: space-around;
  margin-top: 24px;
  font-size: 0.85rem;
  font-weight: 500;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid var(--color-steel-blue-light);
}

.legend-box.selected {
  background-color: var(--color-steel-blue);
}

.legend-box.occupied {
  background-color: var(--color-gray-soft);
  border-color: var(--color-gray-border);
}

/* Responsive Rules */
@media (max-width: 1199px) {
  .routes-page-layout {
    grid-template-columns: 1fr;
  }
  .filter-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 24px;
  }
}

@media (max-width: 991px) {
  nav.desktop-nav,
  header#global-header .header-auth-group {
    display: none !important;
  }
  .hamburger {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .booking-widget-grid {
    grid-template-columns: 1fr 1fr;
  }
  .live-ticker-container {
    margin-top: 80px !important;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }
  .grid-4, .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .booking-widget-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .booking-widget-wrapper {
    padding: 24px;
    border-radius: var(--radius-md);
    margin-top: 15px !important;
  }
  .hero-banner {
    padding: 120px 0 60px;
  }
  .section {
    padding: 60px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
  
  /* Show sticky bottom bar for mobile screens */
  .mobile-sticky-booking {
    display: block;
  }
  body {
    padding-bottom: 0 !important;
  }
  footer, #global-footer {
    padding-bottom: 104px !important;
  }

  header#global-header {
    padding: 10px 0 !important;
  }

  .mobile-nav {
    padding: 80px 24px 24px !important;
  }

  /* Reduce header font sizes on mobile to prevent wrapping and layout breakage */
  h1, .hero-content h1, .hero-banner h1 {
    font-size: 2rem !important;
  }
  h2, .section-header h2 {
    font-size: 1.6rem !important;
  }
  h3, .stat-item h3 {
    font-size: 2.2rem !important;
  }
}

/* Reduced Motion Mode */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-scale, .reveal-slide-left, .reveal-slide-right, .reveal-stagger-item {
    opacity: 1 !important;
    transform: none !important;
  }
  #splash-overlay {
    animation: none !important;
  }
  #splash-overlay .splash-logo-svg * {
    animation: none !important;
    opacity: 1 !important;
    stroke-dashoffset: 0 !important;
    transform: none !important;
  }
}

/* Toast Message */
.toast-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.toast {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 18px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-steel-blue-light);
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  transform: translateY(20px);
  opacity: 0;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-steel-blue-light);
}

/* Form Styling (Unified) */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 750;
  text-transform: uppercase;
  color: var(--color-steel-blue);
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--color-gray-border);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  font-weight: 500;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-steel-blue);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* Operator Portal dashboard mock */
.operator-dashboard {
  background: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 45px;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.dashboard-stat-card {
  border: 1px solid var(--color-gray-border);
  background-color: var(--color-gray-soft);
  border-radius: var(--radius-md);
  padding: 18px;
}

.dashboard-stat-card h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-steel-blue);
}

.dashboard-stat-card .val {
  font-size: 1.9rem;
  font-weight: 800;
  margin-top: 6px;
}

/* Timeline component for Vision 2030 */
.timeline {
  position: relative;
  max-width: 850px;
  margin: 45px auto 0;
  padding: 24px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: var(--color-steel-blue-light);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 45px;
  width: 100%;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-badge {
  width: 20px;
  height: 20px;
  background-color: var(--color-steel-blue);
  border: 4px solid var(--color-white);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-content {
  width: 45%;
  background-color: var(--color-white);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-border);
  box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-date {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-steel-blue);
  margin-bottom: 10px;
  display: inline-block;
}

}

/* ==========================================================================
   NEW REDESIGN UTILITIES & CUSTOM ANIMATIONS
   ========================================================================== */

/* Glassmorphism card structures */
.glass-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(91, 124, 142, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform var(--transition-med), border-color var(--transition-med);
}

.glass-card:hover {
  border-color: rgba(91, 124, 142, 0.35);
  transform: translateY(-2px);
}

/* Infinite scrolling live booking data ticker */
.live-ticker-container {
  background-color: var(--color-black);
  color: var(--color-white);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  border-bottom: 2px solid var(--color-steel-blue);
  z-index: 100;
  position: relative;
  box-shadow: var(--shadow-sm);
  margin-top: 112px;
}

.live-ticker-wrap {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-slide-anim 160s linear infinite;
}

.live-ticker-container:hover .live-ticker-wrap {
  animation-play-state: paused;
}

.live-ticker-item {
  display: inline-block;
  padding: 0 45px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #FFFFFF; /* Crisp white text for maximum readability */
}

.live-ticker-item strong {
  color: #60A5FA; /* Light cobalt blue highlighting */
}

@keyframes ticker-slide-anim {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* Custom Double Curtain Slide Page Transition Overlay */
#page-transit-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  display: flex;
  pointer-events: none;
  visibility: hidden;
}

#page-transit-overlay.active {
  visibility: visible;
  pointer-events: auto;
}

/* Mini Brand Shutter Page Transition (1.5s max) */
.mini-intro-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #070B13;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 1000;
}

#page-transit-overlay.active .mini-intro-panel {
  opacity: 1;
  visibility: visible;
}

.mini-intro-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  width: 320px;
}

.mini-intro-track {
  width: 100%;
  position: relative;
  height: 40px;
}

.mini-route-progress-right,
.mini-route-progress-left {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.mini-bus-group-right,
.mini-bus-group-left {
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.mini-logo-box {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 1px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mini-logo-box .snap {
  color: #2563EB;
}

.mini-logo-box .bus {
  color: #FFFFFF;
}

/* Entrance fade-out animation */
.mini-intro-panel.entrance-active {
  animation: fadeOutMini 0.4s ease-in-out forwards !important;
}

@keyframes fadeOutMini {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* Ready to Ride Bottom Banner Call to Action */
.ready-banner-section {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 2px solid var(--color-steel-blue);
  border-bottom: 2px solid var(--color-steel-blue);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ready-banner-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(91, 124, 142, 0.12), transparent 70%);
  pointer-events: none;
}

.ready-banner-content h2 {
  color: var(--color-white);
  font-size: 2rem;
  margin-bottom: 12px;
}

.ready-banner-content p {
  color: var(--color-steel-blue-light);
  max-width: 600px;
  margin: 0 auto 25px;
  font-size: 1.02rem;
}

/* FAQ panel styling */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 30px auto 0;
}

.faq-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.08);
  transition: all var(--transition-med);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.faq-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 71, 171, 0.2);
}

.faq-card.active {
  border-color: #0047AB;
  box-shadow: var(--shadow-md);
}

.faq-header {
  border: none;
  outline: none;
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--color-white);
  transition: all var(--transition-fast);
  color: #000000;
}

.faq-header:hover {
  background: rgba(0, 71, 171, 0.02);
}

.faq-card.active .faq-header {
  background-color: rgba(0, 71, 171, 0.03);
  color: #0047AB;
  border-bottom: 1px solid rgba(0, 71, 171, 0.08);
}

.faq-body {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #FFFFFF;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-card.active .faq-body {
  padding: 22px 28px;
  max-height: 250px;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.03);
  color: rgba(0,0,0,0.4);
  transition: all 0.3s;
}

.faq-card.active .faq-icon {
  transform: rotate(180deg);
  background-color: #0047AB;
  color: #FFFFFF;
}

/* Glassmorphism Modal overrides for premium authentication / seat selections */
.modal-card {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 500px;
  width: 90%;
  transform: scale(0.9);
  opacity: 0;
  transition: all var(--transition-med);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
  opacity: 1;
}

/* Header auth navigation items details */
.header-auth-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-auth-group .btn {
  padding: 8px 18px;
  font-size: 0.88rem;
  border-radius: 30px;
}

/* Ensure inputs inside dark glassmorphism modals have dark background and high-contrast white text */
.modal-card input,
.modal-card select,
.modal-card textarea {
  color: #FFFFFF !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.modal-card input::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

/* Fix option tag visibility inside select controls inside modals */
.modal-card select option {
  color: #000000 !important;
  background-color: #FFFFFF !important;
}

/* Interactive Filter Chips & Timing Cards */
.filter-chip {
  display: inline-block;
  padding: 8px 16px;
  background-color: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  user-select: none;
}

.filter-chip:hover {
  background-color: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.15);
}

.filter-chip:has(input:checked) {
  background-color: #0047AB !important;
  border-color: #0047AB !important;
  color: #FFFFFF !important;
}

.filter-time-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  background-color: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  user-select: none;
  font-size: 0.8rem;
  color: #000000;
}

.filter-time-card:hover {
  background-color: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.15);
}

.filter-time-card:has(input:checked) {
  background-color: #0047AB !important;
  border-color: #0047AB !important;
  color: #FFFFFF !important;
}

/* Custom styled Range Input track overrides */
input[type="range"] {
  height: 6px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  outline: none;
}

/* FAQ Hero Search Bar Styles */
#faq-search-bar::placeholder {
  color: rgba(255, 255, 255, 0.65) !important;
}

#faq-search-bar:focus {
  background-color: #FFFFFF !important;
  color: #000000 !important;
  border-color: #FFFFFF !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

#faq-search-bar:focus + svg {
  color: #0047AB !important;
}

/* Premium Visual Ticket Stub Cutouts for profile page */
.profile-ticket-stub {
  background: var(--color-white) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-left: 4px solid #0047AB !important;
  border-radius: 8px !important;
  padding: 18px 20px !important;
  margin-bottom: 15px !important;
  box-shadow: var(--shadow-sm) !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all var(--transition-med) !important;
}

.profile-ticket-stub:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-md) !important;
  border-left-color: #000000 !important;
}

.profile-ticket-stub::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -8px;
  width: 14px;
  height: 14px;
  background: #F8FAFC; /* Matches profile body bg */
  border-radius: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(0,0,0,0.08);
  z-index: 2;
}

.profile-ticket-stub::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -8px;
  width: 14px;
  height: 14px;
  background: #F8FAFC; /* Matches profile body bg */
  border-radius: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(0,0,0,0.08);
  z-index: 2;
}

/* Premium Route Search Cards - Kayak / Flight timeline style */
.premium-route-card {
  background: var(--color-white) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  margin-bottom: 20px !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
  transition: all var(--transition-med) !important;
  position: relative !important;
  overflow: hidden !important;
}

.premium-route-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04) !important;
  border-color: #0047AB !important;
}

.premium-route-card .btn-select-seats {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: #0047AB !important;
  color: #FFFFFF !important;
  border: none !important;
  padding: 10px 24px !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  cursor: pointer !important;
  transition: all var(--transition-fast) !important;
}

.premium-route-card .btn-select-seats:hover {
  background: #003580 !important;
  transform: translateX(2px) !important;
}

