/*
 * Go Buddy Rides - Car, Bike & Scooty Self-Drive Rentals
 * Core Stylesheet
 */

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

/* ==========================================
   CSS Variables & Design Tokens
   ========================================== */
:root {
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Color Palette (Based on User's Blue/Lavender Shades) */
  --bg-gradient-start: #f1f6ff;
  --bg-gradient-mid: #e3edff;
  --bg-gradient-end: #c4daff;

  --primary: #4361ee;
  --primary-hover: #3751d7;
  --secondary: #3f37c9;

  --accent-whatsapp: #25d366;
  --accent-whatsapp-hover: #128c7e;
  --accent-call: #0077b6;
  --accent-call-hover: #0096c7;

  --dark-slate: #0f172a;
  --dark-slate-light: #334155;
  --text-muted: #64748b;

  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.45);
  --glass-bg-hover: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.08);
  --card-shadow: 0 10px 30px -10px rgba(67, 97, 238, 0.15);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s ease;
}



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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-primary);
  color: var(--dark-slate);
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-mid) 50%, var(--bg-gradient-end) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  width: 100%;
  line-height: 1.6;
}

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

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  transition: var(--transition-fast);
}

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

/* Common Section Layout */
section {
  padding: 80px 5% 40px;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.section-header p {
  color: var(--dark-slate-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Glassmorphism Common Class */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.glass-panel:hover {
  background: var(--glass-bg-hover);
  box-shadow: 0 10px 40px 0 rgba(31, 38, 135, 0.12);
}

/* ==========================================
   Navigation Bar
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 5%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  padding: 10px 5%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

.logo span {
  color: var(--dark-slate);
}

.logo-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.mobile-menu-cta {
  display: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-slate-light);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-normal);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--dark-slate);
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-mid) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-content h1 {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* Staggered Word Reveal Typography */
.stagger-reveal .word-line {
  display: inline;
}

.stagger-reveal .word {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  animation: slideUpWord 0.75s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  margin-right: 10px;
}

.stagger-reveal .brand-span {
  display: inline-block;
  white-space: nowrap;
}

/* Dynamic text gradient theme-aware */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes slideUpWord {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Stagger delay math */
.stagger-reveal .word-line:nth-child(1) .word:nth-child(1) {
  animation-delay: 0.05s;
}

.stagger-reveal .word-line:nth-child(1) .word:nth-child(2) {
  animation-delay: 0.12s;
}

.stagger-reveal .word-line:nth-child(1) .word:nth-child(3) {
  animation-delay: 0.19s;
}

.stagger-reveal .word-line:nth-child(1) .word:nth-child(4) {
  animation-delay: 0.26s;
}

.stagger-reveal .word-line:nth-child(2) .word:nth-child(1) {
  animation-delay: 0.33s;
}

.stagger-reveal .brand-span .word:nth-child(1) {
  animation-delay: 0.4s;
}

.stagger-reveal .brand-span .word:nth-child(2) {
  animation-delay: 0.47s;
}

.stagger-reveal .brand-span .word:nth-child(3) {
  animation-delay: 0.54s;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--dark-slate-light);
  margin-bottom: 35px;
  max-width: 520px;
}

.hero-search-box {
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 15px 35px rgba(67, 97, 238, 0.08);
  max-width: 550px;
  position: relative;
}

/* Thin Neon Flowing Gradient Border Mask */
.hero-search-box::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
  background-size: 200% auto;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: borderGlowFlow 6s linear infinite;
  z-index: 1;
}

@keyframes borderGlowFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.custom-select-trigger span i,
.custom-option i {
  margin-right: 10px;
  color: var(--primary);
  width: 18px;
  text-align: center;
  transition: color var(--transition-fast);
}

.custom-option:hover i,
.custom-option.selected i {
  color: inherit;
}

.hero-search-box h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-slate);
}

.hero-search-box h3 i {
  color: var(--primary);
  text-shadow: 0 0 10px rgba(67, 97, 238, 0.2);
}

.search-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.search-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-group label {
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.8px;
}

/* Custom Dropdown select wrapper */
.custom-select {
  position: relative;
  width: 100%;
  user-select: none;
  z-index: 20;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(67, 97, 238, 0.16);
  background: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-slate);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.custom-select-trigger:hover {
  border-color: rgba(67, 97, 238, 0.35);
  background: #ffffff;
}

.custom-select.open .custom-select-trigger {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.12);
}

.custom-select .select-chevron {
  color: var(--primary);
  font-size: 0.9rem;
  transition: transform var(--transition-fast);
}

.custom-select.open .select-chevron {
  transform: rotate(180deg);
}

/* Options dropdown container - glassmorphic and elegant! */
.custom-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(67, 97, 238, 0.15);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(67, 97, 238, 0.12);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 6px;
  box-sizing: border-box;
}

.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-option {
  display: block;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark-slate);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.custom-option:hover {
  background: rgba(67, 97, 238, 0.08);
  color: var(--primary);
}

.custom-option.selected {
  background: var(--primary);
  color: var(--white);
}

.btn-search {
  grid-column: span 2;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
  border-radius: var(--radius-sm);
}

/* Hero Visual Area */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bg-blob {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.6) 0%, rgba(67, 97, 238, 0.45) 45%, rgba(67, 97, 238, 0) 70%);
  filter: blur(35px);
  z-index: 1;
  pointer-events: none;
}

.hero-img-wrapper {
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  width: 100%;
  max-width: 550px;
  overflow: visible;
}

.hero-img-box {
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img-wrapper img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  transition: opacity 0.35s ease-out;
  margin-top: -15px;
}

.floating-badge {
  position: absolute;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
  z-index: 3;
  transition: transform 0.3s ease;
}

.floating-badge:hover {
  transform: translateY(-5px) scale(1.02);
}

.badge-1 {
  top: 10%;
  left: -5%;
}

.badge-2 {
  bottom: 15%;
  right: -5%;
}

.floating-badge i {
  font-size: 1.5rem;
  color: var(--primary);
  background: rgba(67, 97, 238, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-badge h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.floating-badge p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Stats Counter Section */
.stats-counter-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 70px auto 30px;
  max-width: 1100px;
  padding: 40px 20px;
  border-top: 1.5px dashed rgba(67, 97, 238, 0.15);
}

.stat-counter-item {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(67, 97, 238, 0.05);
  border-radius: 20px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-normal);
  overflow: hidden;
}

.stat-counter-item:hover {
  transform: translateY(-8px);
  background: var(--glass-bg-hover);
  box-shadow: 0 15px 35px rgba(67, 97, 238, 0.15);
  border-color: rgba(168, 85, 247, 0.35);
}

.stat-counter-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0.2);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transition: transform 0.4s ease;
  border-radius: 2px;
}

.stat-counter-item:hover::after {
  transform: translateX(-50%) scaleX(0.8);
}

.stat-icon {
  font-size: 1.5rem;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.12) 0%, rgba(63, 55, 201, 0.03) 100%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4), 0 4px 12px rgba(67, 97, 238, 0.05);
  transition: all var(--transition-normal);
}

.stat-counter-item:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.stat-number-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 15px rgba(67, 97, 238, 0.12);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-slate);
  letter-spacing: 1.2px;
  text-align: center;
  opacity: 0.85;
}

@media (max-width: 1024px) {
  .stats-counter-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .stats-counter-row {
    margin-top: 50px;
    padding: 20px 10px;
    gap: 20px;
  }

  .stat-counter-item {
    padding: 25px 15px;
  }

  .stat-number {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .stats-counter-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   Fleet & Booking Section
   ========================================== */
.fleet {
  background: rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.fleet-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 10px 25px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--dark-slate-light);
  border: 1px solid var(--glass-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.filter-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

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

.vehicle-card {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
}

.vehicle-img-area {
  position: relative;
  padding: 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 270px;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.vehicle-img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.vehicle-card:hover .vehicle-img-area img {
  transform: scale(1.08) translateY(-5px);
}

.vehicle-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(67, 97, 238, 0.15);
  z-index: 2;
}

.vehicle-price-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--dark-slate);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.vehicle-price-tag span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-gradient-mid);
}

.vehicle-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vehicle-info h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.vehicle-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.vehicle-rating i {
  color: #ffb703;
}

.vehicle-rating span {
  font-weight: 600;
  color: var(--dark-slate);
}

.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 15px 0;
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.spec-item i {
  font-size: 1.1rem;
  color: var(--primary);
}

.spec-item span {
  font-weight: 600;
  color: var(--dark-slate-light);
}

/* Card CTA Buttons */
.vehicle-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.btn-whatsapp {
  background: var(--accent-whatsapp);
  color: var(--white);
  justify-content: center;
  font-size: 0.85rem;
}

.btn-whatsapp:hover {
  background: var(--accent-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-call {
  background: var(--accent-call);
  color: var(--white);
  justify-content: center;
  font-size: 0.85rem;
}

.btn-call:hover {
  background: var(--accent-call-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

/* ==========================================
   How It Works Section
   ========================================== */
/* ==========================================
   How It Works Section (Roadside Timeline)
   ========================================== */
.road-container {
  position: relative;
  height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 40px;
  overflow: visible;
}

.timeline-road {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 54px;
  background: #2a2e3d;
  /* asphalt grey */
  border-top: 5px solid #1e212c;
  border-bottom: 5px solid #1e212c;
  transform: translateY(-50%);
  z-index: 1;
  box-shadow: inset 0 8px 16px rgba(0, 0, 0, 0.45);
  border-radius: 8px;
}

/* Yellow dashed center line */
.timeline-road::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(90deg, #ffd166 0px, #ffd166 22px, transparent 22px, transparent 44px);
  transform: translateY(-50%);
}

/* Car driving on the timeline road */
.road-car-wrapper {
  position: absolute;
  top: 50%;
  width: 70px;
  height: 28px;
  transform: translateY(-50%);
  z-index: 2;
}

.timeline-car {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Billboards Grid */
.billboards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100%;
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 100%;
}

.billboard-card {
  pointer-events: auto;
  width: 250px;
  padding: 22px 20px;
  text-align: center;
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-normal);
}

.billboard-card:hover {
  transform: translateY(-5px) scale(1.02);
  background: var(--glass-bg-hover);
  box-shadow: 0 12px 35px rgba(67, 97, 238, 0.15);
}

/* Spotlight Beam */
.billboard-beam {
  position: absolute;
  top: -4px;
  left: 10%;
  right: 10%;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 209, 102, 0.45) 0%, rgba(255, 209, 102, 0) 100%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scaleY(0);
  transform-origin: top center;
  pointer-events: none;
  z-index: 0;
}

.billboard-card:hover .billboard-beam {
  opacity: 1;
  transform: scaleY(1);
}

/* Ensure content stands on top of the beam */
.billboard-card * {
  position: relative;
  z-index: 2;
}

/* Exclude spotlight and beam from relative z-index overlays */
.billboard-card .billboard-light,
.billboard-card .billboard-beam {
  position: absolute;
  z-index: 1;
}

/* Small top spotlight on billboard */
.billboard-light {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 8px;
  background: #475569;
  border-radius: 4px 4px 0 0;
}

.billboard-light::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 4px;
  background: #ffd166;
  border-radius: 50%;
  box-shadow: 0 0 10px 4px #ffd166;
}

.step-num {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(67, 97, 238, 0.12);
  line-height: 1;
}

.billboard-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
  box-shadow: 0 6px 15px rgba(67, 97, 238, 0.2);
}

.billboard-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--dark-slate);
}

.billboard-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.billboard-pole {
  width: 8px;
  background: linear-gradient(to right, #475569 0%, #64748b 50%, #334155 100%);
  box-shadow: inset 1px 0 2px rgba(255, 255, 255, 0.2), 2px 0 5px rgba(0, 0, 0, 0.15);
}

.billboard-base {
  width: 32px;
  height: 8px;
  background: #334155;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Alternating Billboards: Odd is top, Even is bottom */
.step-odd {
  justify-content: flex-start;
  padding-top: 10px;
}

.step-odd .billboard-pole {
  height: 90px;
  margin-top: 4px;
}

.step-even {
  justify-content: flex-end;
  padding-bottom: 10px;
}

.step-even .billboard-pole {
  height: 90px;
  margin-bottom: 4px;
  order: -1;
}

.step-even .billboard-base {
  order: -2;
  border-radius: 0 0 4px 4px;
}

/* ==========================================
   Why Choose Us Section
   ========================================== */
.why-choose-us .benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.benefit-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.benefit-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(67, 97, 238, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================
   Testimonial & Reviews Section
   ========================================== */
.testimonials {
  background: rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.review-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #ffb703;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--dark-slate-light);
  font-style: italic;
  margin-bottom: 25px;
  flex-grow: 1;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 15px;
}

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-gradient-end);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary);
  border: 2px solid var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.review-user-info h4 {
  font-size: 0.95rem;
}

.review-user-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

.faq-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.4);
  transition: var(--transition-fast);
}

.faq-header:hover {
  background: rgba(255, 255, 255, 0.6);
}

.faq-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-icon {
  font-size: 1rem;
  color: var(--primary);
  transition: var(--transition-normal);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  background: rgba(255, 255, 255, 0.2);
}

.faq-content p {
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--dark-slate-light);
  line-height: 1.6;
  border-top: 1px solid rgba(0, 0, 0, 0.02);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
  background: var(--dark-slate);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 5% 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

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

.footer-brand .logo {
  color: var(--white);
}

.footer-brand .logo span {
  color: rgba(255, 255, 255, 0.75);
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 35px;
  height: 2px;
  background: var(--primary);
}

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

.footer-links ul a {
  font-size: 0.9rem;
}

.footer-links ul a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
}

.contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

/* ==========================================
   Floating WhatsApp Button
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--accent-whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
  background: var(--accent-whatsapp-hover);
  transform: scale(1.05);
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================
   Responsive Breakpoints
   ========================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content p {
    max-width: 600px;
  }

  .hero-search-box {
    width: 100%;
    max-width: 600px;
  }

  .how-it-works .steps-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-choose-us .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 4% 30px;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-content h1 {
    font-size: 2.0rem;
    line-height: 1.25;
  }

  .stagger-reveal .word-line {
    display: inline;
    margin-bottom: 0;
  }

  .stagger-reveal .brand-span {
    display: inline-block;
    white-space: nowrap;
  }

  .stagger-reveal .word {
    display: inline-block;
    margin-right: 6px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 100px 0 50px;
    gap: 30px;
    transition: var(--transition-normal);
    z-index: -1;
    /* Render behind logo and hamburger button */
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links .mobile-menu-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 80%;
    max-width: 300px;
    margin-top: 5px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav-links .mobile-menu-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
  }

  .nav-links .mobile-menu-cta .btn-primary {
    color: var(--white) !important;
  }

  .nav-cta {
    display: none;
    /* Can be placed in sidebar menu */
  }

  .menu-toggle {
    display: flex;
  }

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

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

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

  .why-choose-us .benefits-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.3;
  }

  .search-fields {
    grid-template-columns: 1fr;
  }

  .btn-search {
    grid-column: span 1;
  }

  .floating-badge {
    display: flex;
    padding: 8px 14px;
    gap: 8px;
    border-radius: var(--radius-sm);
  }

  .floating-badge h4 {
    font-size: 0.75rem;
  }

  .floating-badge p {
    font-size: 0.6rem;
  }

  .floating-badge i {
    font-size: 0.85rem;
  }

  .badge-1 {
    top: 5%;
    left: 2%;
  }

  .badge-2 {
    bottom: 8%;
    right: 2%;
  }

  .fleet-filter-tabs {
    flex-wrap: wrap;
  }

  .filter-tab {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}

/* ==========================================
   Bottom Animated Car Track
   ========================================== */
.road-track {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background: transparent;
  z-index: 9998;
  pointer-events: none;
  overflow: hidden;
  border-bottom: 5px solid var(--dark-slate);
  transition: border-color 0.4s ease;
}

.road-track.on-dark-bg {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}

.moving-car-wrapper {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 110px;
  height: 44px;
  transform: translateX(-120px);
  animation: driveRight 14s linear infinite;
  will-change: transform;
}

.moving-car {
  width: 100%;
  height: 100%;
}

.suv-body {
  fill: #111827;
  transition: fill 0.4s ease;
}

.car-window {
  fill: #e0f2fe;
  opacity: 0.75;
  transition: fill 0.4s ease, opacity 0.4s ease;
}

.road-track.on-dark-bg .suv-body {
  fill: #ffffff;
  /* Turn white over dark footer background */
}

.road-track.on-dark-bg .car-window {
  fill: #0f172a;
  /* Tinted windows over dark footer background */
  opacity: 0.9;
}

.car-wheel {
  animation: spinWheel 0.6s linear infinite;
}

.wheel-front {
  transform-origin: 74px 30px;
}

.wheel-back {
  transform-origin: 26px 30px;
}

@keyframes driveRight {
  0% {
    transform: translateX(-120px);
  }

  100% {
    transform: translateX(calc(100vw + 120px));
  }
}

@keyframes spinWheel {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Speed override on mobile screens & nav right containers */
.nav-right-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ==========================================
   Entrance Reveal Animations
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform, opacity;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .moving-car-wrapper {
    animation-duration: 8s;
  }

  .nav-cta {
    display: none;
  }

  /* Vertical Timeline Road Overrides */
  .road-container {
    height: auto;
    padding: 20px 20px 20px 70px;
    box-sizing: border-box;
  }

  .timeline-road {
    top: 0;
    left: 30px;
    width: 26px;
    height: 100%;
    transform: none;
    border-top: none;
    border-bottom: none;
    border-left: 3px solid #1e212c;
    border-right: 3px solid #1e212c;
  }

  .timeline-road::after {
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(180deg, #ffd166 0px, #ffd166 22px, transparent 22px, transparent 44px);
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  .road-car-wrapper {
    top: -100px;
    left: 50%;
    width: 38px;
    height: 95px;
    transform: translateX(-50%);
  }

  .timeline-car {
    transform: rotate(90deg);
    /* face car downwards */
  }

  .billboards-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 30px;
    display: flex;
    flex-direction: column;
  }

  .timeline-step {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 0;
    position: relative;
    height: auto;
  }

  .billboard-card {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    text-align: left;
    /* Align text left on mobile */
  }

  .billboard-icon {
    margin: 0 0 14px 0;
    /* Align icon left on mobile */
  }

  /* Horizontal support poles extending leftwards to the road center */
  .timeline-step .billboard-pole {
    position: absolute;
    left: -40px;
    /* spans from card edge to road center line */
    width: 40px;
    height: 8px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    border-radius: 0;
    background: linear-gradient(to bottom, #475569, #334155);
    order: 0;
  }

  .timeline-step .billboard-base {
    position: absolute;
    left: -44px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    width: 24px;
    height: 8px;
    margin: 0;
    background: #334155;
    order: 0;
  }

  .step-odd,
  .step-even {
    justify-content: flex-start;
    padding: 0;
  }
}

/* ==========================================
   Premium Preloader
   ========================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #0e1830 0%, #060a16 100%);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.loader-svg {
  width: 75px;
  height: 75px;
  animation: rotateSteering 1.8s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  filter: drop-shadow(0 0 15px rgba(67, 97, 238, 0.4));
}

.loader-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(12px);
  animation: loaderFadeInUp 0.8s ease forwards 0.2s;
}

.loader-brand span {
  color: var(--primary);
}

@keyframes rotateSteering {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loaderFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   3D Tilt & Glass Glare Overlay
   ========================================== */
.vehicle-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.vehicle-gloss {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 5;
  border-radius: inherit;
  transition: background 0.05s ease-out;
}

/* ==========================================
   Hero Parallax Glow Blob
   ========================================== */
.hero-bg-blob {
  transition: transform 0.15s ease-out;
}

/* ==========================================
   Floating Quick Book Drawer Styles
   ========================================== */
.quick-book-fab {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(67, 97, 238, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  z-index: 999;
}

.quick-book-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(67, 97, 238, 0.55);
  background: #3f37c9;
}

/* Animated pulse rings around FAB */
.fab-pulse {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: fabPulseRing 1.8s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  pointer-events: none;
  opacity: 0;
}

@keyframes fabPulseRing {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Sliding Drawer Panel */
.quick-drawer {
  position: fixed;
  top: 0;
  right: -360px;
  /* Hidden by default */
  width: 340px;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  box-sizing: border-box;
  transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.drawer-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark-slate);
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-header h3 i {
  color: #ffd166;
  text-shadow: 0 0 10px rgba(255, 209, 102, 0.4);
}

.drawer-close {
  background: none;
  border: none;
  color: var(--dark-slate);
  font-size: 1.25rem;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.drawer-close:hover {
  transform: rotate(90deg) scale(1.1);
}

.drawer-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.drawer-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-slate);
  opacity: 0.85;
}

.drawer-form select,
.drawer-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.6);
  color: var(--dark-slate);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  box-sizing: border-box;
  transition: all var(--transition-fast);
}

.drawer-form select:focus,
.drawer-form input:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

/* Drawer Overlay backdrop */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 13, 26, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 10000;
  transition: all 0.4s ease;
}

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

@media (max-width: 480px) {
  .quick-drawer {
    width: 100%;
    right: -100%;
  }
}

/* ==========================================================
   Website Neon Theme Switcher Dots Styles
   ========================================== */
.theme-palette-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--glass-border);
  padding: 6px 10px;
  border-radius: var(--radius-full);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.palette-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.palette-dot:hover {
  transform: scale(1.25);
}

.palette-dot.active {
  border-color: var(--dark-slate);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transform: scale(1.15);
}

@media (max-width: 480px) {
  .theme-palette-switcher {
    padding: 4px 6px;
    gap: 6px;
  }

  .palette-dot {
    width: 12px;
    height: 12px;
  }
}

/* Mobile and Desktop theme switcher overrides */
.mobile-theme-switcher-container {
  display: none;
}

@media (max-width: 768px) {
  .desktop-theme-switcher {
    display: none !important;
  }

  .mobile-theme-switcher-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    padding: 10px 0 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    width: 80%;
  }

  .mobile-theme-switcher-container .switcher-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
  }
}