/* ============================================================
   CAB4U — GLOBAL DESIGN SYSTEM
   Luxury Automotive x Dark Glass UI x Signature Purple & White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Syne:wght@700;800&display=swap');

:root {
  /* Surfaces */
  --bg-primary: #050508;
  --bg-secondary: #0a0b10;
  --surface: #101118;
  --surface-raised: #161722;
  --surface-card: rgba(16, 17, 26, 0.75);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #a3a8b8;
  --text-tertiary: #686d80;

  /* Brand Accent — Signature Purple & Violet */
  --purple: #8b2cff;
  --purple-bright: #a855f7;
  --purple-light: #c084fc;
  --purple-deep: #5b21b6;
  --purple-glow: rgba(139, 44, 255, 0.4);
  --purple-glow-soft: rgba(168, 85, 247, 0.18);
  --accent: #a855f7;
  --accent-hover: #9333ea;
  --accent-text: #ffffff;

  /* Ambient Glows */
  --glow-primary: rgba(139, 44, 255, 0.25);
  --glow-ambient: rgba(91, 33, 182, 0.2);

  /* Glass Surfaces */
  --glass-bg: rgba(18, 19, 28, 0.65);
  --glass-bg-strong: rgba(24, 25, 38, 0.85);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-border-bright: rgba(168, 85, 247, 0.35);
  --glass-highlight: rgba(255, 255, 255, 0.05);

  /* Radius */
  --radius-xs: 8px;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  /* Layout */
  --container: 1360px;
  --nav-height: 80px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.2s;
  --dur-med: 0.4s;
  --dur-slow: 0.8s;

  /* Premium Commanding Typography */
  --font-display: 'Syne', 'Outfit', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-accent: 'Outfit', -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
label,
strong,
em,
button,
input,
select,
textarea {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  color: inherit;
}

::selection {
  background: var(--purple);
  color: #ffffff;
}

:focus-visible {
  outline: 2px solid var(--purple-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

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

section {
  position: relative;
  overflow-x: clip;
}

/* ---------- Background Atmosphere ---------- */
.bg-atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60% 45% at 80% 12%, rgba(139, 44, 255, 0.16), transparent 65%),
    radial-gradient(45% 40% at 15% 35%, rgba(91, 33, 182, 0.12), transparent 65%),
    linear-gradient(180deg, #09090f 0%, #050508 40%, #040406 100%);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  background: radial-gradient(circle, var(--purple-glow), transparent 70%);
  opacity: 0.55;
  z-index: 0;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
  color: var(--text-primary);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 16px;
}

.h1 {
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
}

.h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.h3 {
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.h4 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-pad {
  padding: 90px 0;
}

.section-pad-sm {
  padding: 50px 0;
}

.lede {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin-top: 14px;
  font-weight: 400;
  line-height: 1.62;
}

.text-purple {
  color: var(--purple-bright);
}

/* ---------- Glass Surfaces ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    0 20px 50px rgba(0, 0, 0, 0.55);
}

.glass-strong {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--glass-border);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.btn::before,
.btn::after {
  display: none !important;
}

/* Primary Purple Button */
.btn-primary,
.btn-accent {
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-deep));
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 4px 24px var(--purple-glow);
  -webkit-appearance: none;
  border: none;
  outline: none;
  text-decoration: none !important;
}

.btn-primary:hover,
.btn-accent:hover {
  background: linear-gradient(135deg, #b86bf8, var(--purple));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.55);
}

.btn-primary:active,
.btn-accent:active {
  transform: translateY(0) scale(0.98);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  backdrop-filter: blur(16px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-ghost {
  color: var(--purple-bright);
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  gap: 6px;
}

.btn-ghost svg {
  transition: transform var(--dur-fast) var(--ease);
}

.btn-ghost:hover svg {
  transform: translate(3px, -3px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

.btn-loading {
  opacity: 0.9;
  cursor: wait !important;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Floating Navbar ---------- */
.nav-wrap {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.nav {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 24px;
  border-radius: var(--radius-pill);
  background: rgba(12, 13, 20, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  transition: all var(--dur-med) var(--ease);
}

.nav.scrolled {
  background: rgba(8, 9, 14, 0.9);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.65);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo-img {
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  transition: all 0.35s var(--ease);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 16px rgba(168, 85, 247, 0.8)) drop-shadow(0 0 28px rgba(139, 44, 255, 0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 4px;
  position: relative;
  transition: all var(--dur-fast) var(--ease);
  letter-spacing: 0.015em;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a.active {
  color: #ffffff;
  font-weight: 600;
}

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

.nav-login-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--dur-fast) var(--ease);
}

.nav-login-link:hover {
  color: #ffffff;
}

.nav-pill-btn {
  background: linear-gradient(135deg, var(--purple-bright), var(--purple-deep));
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  transition: all var(--dur-fast) var(--ease);
  box-shadow: 0 2px 16px var(--purple-glow);
}

.nav-pill-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 22px rgba(168, 85, 247, 0.55);
}

.nav-burger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}

.nav-burger:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--purple-bright);
}

.burger-icon {
  width: 18px;
  height: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.burger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
  transform-origin: center;
}

.nav-burger.open .burger-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-burger.open .burger-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-burger.open .burger-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(5, 5, 8, 0.98);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--dur-med) var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.mobile-menu a.book {
  color: var(--purple-bright);
}

/* Header spacer */
.page-top-spacer {
  height: 100px;
}

/* ============================================================
   HERO SECTION (Pure Transparent Swift Dzire — Enlarged)
   ============================================================ */
.hero-section {
  position: relative;
  padding: 30px 0 60px;
  overflow-x: clip;
  overflow-y: visible;
}

.hero-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: center;
  min-height: 480px;
}

.hero-text-col {
  z-index: 2;
  position: relative;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  color: #ffffff;
  margin-bottom: 22px;
}

.hero-title span {
  display: block;
  color: #ffffff;
  white-space: nowrap;
}

/* Verified Social Proof Avatar Badge */
.hero-verified-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  max-width: 480px;
}

.avatar-stack {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.avatar-stack img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #13141c;
  margin-left: -10px;
  object-fit: cover;
  background: var(--surface-raised);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.verified-text {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.verified-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple-bright) 0%, var(--purple) 50%, var(--purple-deep) 100%);
  box-shadow: 0 8px 28px rgba(139, 44, 255, 0.45);
  transition: all var(--dur-fast) var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  white-space: nowrap;
}

.hero-btn-primary svg,
.hero-btn-primary i {
  font-size: 14px;
  transition: transform var(--dur-fast) var(--ease);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(168, 85, 247, 0.6);
  background: linear-gradient(135deg, #b86bf8 0%, var(--purple-bright) 50%, var(--purple) 100%);
}

.hero-btn-primary:hover svg,
.hero-btn-primary:hover i {
  transform: translateX(3px);
}

.hero-btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.hero-btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.hero-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: #25D366;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.hero-btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
  color: #4ade80;
}

.hero-btn-whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hero Car Stage with Transparent Swift Dzire (Enlarged) */
.hero-car-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-car-stage {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ambient Radial Purple Glow behind car */
.hero-car-stage::before {
  content: '';
  position: absolute;
  top: 5%;
  left: 0%;
  width: 100%;
  height: 90%;
  background: radial-gradient(ellipse at 50% 50%, rgba(139, 44, 255, 0.32), rgba(168, 85, 247, 0.08) 45%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-car-transparent {
  width: 100%;
  height: auto;
  max-width: 820px;
  position: relative;
  z-index: 2;
  display: block;
  animation: heroFloat 5.5s ease-in-out infinite;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.9));
  transition: transform 0.4s var(--ease);
}

.hero-car-transparent:hover {
  transform: scale(1.02);
}

@keyframes heroFloat {

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

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

/* ============================================================
   CHOOSE BY STYLE / CATEGORIES GRID (Asymmetric Tabbed Card)
   ============================================================ */
.style-section {
  padding: 60px 0 80px;
  position: relative;
}

.style-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.style-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: #ffffff;
}

.style-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-bright);
  transition: all var(--dur-fast) var(--ease);
}

.style-view-all:hover {
  color: var(--purple-light);
  transform: translateX(4px);
}

/* ============================================================
   CHOOSE BY STYLE / CATEGORIES GRID (Reference Carvelle Layout)
   ============================================================ */
.style-section {
  padding: 60px 0 80px;
  position: relative;
}

.style-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.style-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.style-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-bright);
  transition: all var(--dur-fast) var(--ease);
}

.style-view-all:hover {
  color: var(--purple-light);
  transform: translateX(4px);
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.is-dragging {
  cursor: grabbing !important;
  cursor: -webkit-grabbing !important;
  user-select: none !important;
  scroll-snap-type: none !important;
  scroll-behavior: auto !important;
}

.is-dragging * {
  user-select: none !important;
  pointer-events: none !important;
}

/* Master Card Component (Header outside, Bordered Box below) */
.style-card,
.feature-card,
.service-card,
.step-card {
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
}

/* Top Header Bar (OUTSIDE the bordered card box) */
.style-card-header,
.card-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  padding: 0 2px;
}

/* Top-Left Pill Capsule Badge (OUTSIDE the border) */
.style-pill,
.card-pill-tag {
  background: #1c1d28;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 7px 18px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  transition: all var(--dur-fast) var(--ease);
}

.style-card:hover .style-pill,
.feature-card:hover .card-pill-tag,
.service-card:hover .card-pill-tag,
.step-card:hover .card-pill-tag {
  background: #282a3a;
  border-color: rgba(255, 255, 255, 0.16);
}

/* Top-Right Circular Arrow Button (OUTSIDE the border) */
.style-arrow-btn,
.card-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1c1d28;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all var(--dur-fast) var(--ease);
  flex-shrink: 0;
}

.style-arrow-btn svg,
.card-arrow-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
  transition: transform var(--dur-fast) var(--ease);
}

.style-card:hover .style-arrow-btn,
.feature-card:hover .card-arrow-btn,
.service-card:hover .card-arrow-btn,
.step-card:hover .card-arrow-btn {
  background: var(--purple-bright);
  border-color: var(--purple-bright);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.6);
}

.style-card:hover .style-arrow-btn svg,
.feature-card:hover .card-arrow-btn svg,
.service-card:hover .card-arrow-btn svg,
.step-card:hover .card-arrow-btn svg {
  transform: translate(2px, -2px);
}

/* The Bordered Card Box (Below the header) */
.style-card-box,
.card-box {
  background: #13141c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  height: 205px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 14px 12px 10px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  transition: all var(--dur-med) var(--ease);
}

.style-card:hover .style-card-box,
.feature-card:hover .card-box,
.service-card:hover .card-box,
.step-card:hover .card-box {
  background: #181924;
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.7), 0 0 28px rgba(139, 44, 255, 0.18);
  transform: translateY(-4px);
}

.style-card-transparent-car {
  width: 95%;
  height: 155px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 0.45s var(--ease);
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.9));
}

.style-card:hover .style-card-transparent-car {
  transform: scale(1.06);
}

.style-card-shadow {
  width: 76%;
  height: 14px;
  margin-top: -6px;
  background: radial-gradient(ellipse closest-side, rgba(0, 0, 0, 0.9), transparent 75%);
  filter: blur(5px);
  border-radius: 50%;
  z-index: 1;
}

/* Text Content Card Box for Feature / Service / Step Cards */
.card-box-text {
  background: #13141c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px 20px;
  min-height: 145px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  transition: all var(--dur-med) var(--ease);
}

.feature-card:hover .card-box-text,
.service-card:hover .card-box-text,
.step-card:hover .card-box-text {
  background: #181924;
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.7), 0 0 28px rgba(139, 44, 255, 0.18);
  transform: translateY(-4px);
}

/* ============================================================
   TRUST / FEATURES
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.5;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.5;
}

.center-cta {
  text-align: center;
  margin-top: 44px;
}

/* ============================================================
   DETAILED FLEET SECTION (Our Prime Lineup)
   ============================================================ */
.fleet-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.fleet-card {
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.fleet-card-box {
  background: #13141c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  transition: all var(--dur-med) var(--ease);
}

.fleet-card:hover .fleet-card-box {
  background: #181924;
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.7), 0 0 28px rgba(139, 44, 255, 0.18);
  transform: translateY(-4px);
}

.fleet-card .fleet-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 185px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #090a10;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fleet-card .fleet-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease);
}

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

.fleet-info-head {
  margin-bottom: 14px;
  min-height: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fleet-car-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
}

.fleet-car-subtitle {
  font-size: 13px;
  font-weight: 500;
  color: var(--purple-light);
  letter-spacing: 0.01em;
}

/* Specs Badges Grid */
.fleet-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.fleet-spec-badge {
  background: #1a1b26;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
}

.fleet-spec-badge svg,
.fleet-spec-badge i {
  font-size: 13px;
  width: 14px;
  height: 14px;
  stroke: var(--purple-bright);
  color: var(--purple-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Best For Use-Case Banner */
.fleet-best-for {
  background: rgba(168, 85, 247, 0.08);
  border: 1px dashed rgba(168, 85, 247, 0.25);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  margin-bottom: 16px;
  min-height: 52px;
  display: flex;
  align-items: center;
}

.fleet-best-for strong {
  color: #ffffff;
  font-weight: 700;
  margin-right: 4px;
}

.fleet-book-btn {
  margin-top: auto;
  width: 100%;
}

.fleet-pagination {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.fleet-pagination .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all var(--dur-fast) var(--ease);
}

.fleet-pagination .dot.active {
  background: var(--purple-bright);
  width: 20px;
  border-radius: 4px;
}

/* Fleet Details (Fleet Page Alternating Showcase) */
.fleet-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 52px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fleet-detail:last-child {
  border-bottom: none;
}

/* Proper Flex / Grid Order Zigzag — eliminates direction:rtl bugs */
.fleet-detail.reverse .fleet-detail-visual {
  order: 2;
}

.fleet-detail.reverse .fleet-detail-info {
  order: 1;
}

.fleet-detail-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0d0e14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-detail-visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease);
}

.fleet-detail:hover .fleet-detail-visual img {
  transform: scale(1.04);
}

.fleet-detail-info {
  display: flex;
  flex-direction: column;
}

.index-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-bright);
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 999px;
  padding: 4px 14px;
  width: fit-content;
  margin-bottom: 10px;
}

.fleet-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.fleet-detail-subtitle {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--purple-light);
  margin-bottom: 18px;
}

.fleet-detail-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.fleet-detail-spec-item {
  background: #14151e;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}

.fleet-detail-spec-item svg,
.fleet-detail-spec-item i {
  font-size: 14px;
  width: 15px;
  height: 15px;
  stroke: var(--purple-bright);
  color: var(--purple-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fleet-detail-bestfor {
  background: rgba(168, 85, 247, 0.08);
  border: 1px dashed rgba(168, 85, 247, 0.25);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  margin-bottom: 22px;
}

.fleet-detail-bestfor strong {
  color: #ffffff;
  font-weight: 700;
  margin-right: 4px;
}

/* Subpage Alternating Rows (Services & About) */
.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 52px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.alt-row:last-child {
  border-bottom: none;
}

/* Modern CSS Grid Order — eliminates direction:rtl layout bugs */
.alt-row.reverse .alt-visual {
  order: 2;
}

.alt-row.reverse .alt-content {
  order: 1;
}

.alt-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: #0d0e14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.alt-visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease);
}

.alt-row:hover .alt-visual img {
  transform: scale(1.04);
}

.alt-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-feature-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 16px;
}

.service-pill {
  background: #14151e;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-pill svg,
.service-pill i {
  font-size: 13px;
  width: 13px;
  height: 13px;
  stroke: var(--purple-bright);
  color: var(--purple-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-list {
  list-style: none;
  margin: 8px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.benefit-list svg,
.benefit-list i {
  font-size: 14px;
  width: 18px;
  height: 18px;
  stroke: var(--purple-bright);
  color: var(--purple-bright);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Founder Showcase Box */
.founder-box {
  position: relative;
  width: 100%;
  background: #0e0f17;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 44px 48px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.founder-row {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 52px;
  align-items: center;
}

.founder-photo {
  width: 290px;
  height: 350px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(139, 44, 255, 0.15);
  background: #08090f;
  flex-shrink: 0;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s var(--ease);
}

.founder-photo:hover img {
  transform: scale(1.04);
}

.founder-quote {
  font-size: clamp(1.2rem, 1.75vw, 1.5rem);
  font-family: var(--font-display);
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.founder-quote .quote-mark {
  color: #c084fc;
  font-family: Georgia, serif;
  font-size: 1.25em;
  line-height: 0;
  vertical-align: -0.1em;
}

.founder-bio {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 22px;
}

.founder-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3px;
  letter-spacing: 0.01em;
}

.founder-title {
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   ABOUT PAGE PILLARS & STANDARDS GRID
   ============================================================ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  background: #0f1019;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  transition: all var(--dur-med) var(--ease);
}

.pillar-card:hover {
  background: #141522;
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.75), 0 0 28px rgba(139, 44, 255, 0.16);
}

.pillar-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.pillar-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-bright);
}

.pillar-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--purple-bright);
  stroke-width: 2;
  fill: none;
}

.pillar-tag {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c084fc;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.pillar-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.pillar-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.pillar-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #c084fc;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pillar-benefit svg {
  width: 15px;
  height: 15px;
  stroke: var(--purple-bright);
  fill: none;
  stroke-width: 2.2;
}

/* About Stats Counter Bar */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
  width: 100%;
  max-width: 100%;
}

.about-stat-card {
  background: #13141c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  min-width: 0;
  overflow: hidden;
}

.about-stat-num {
  font-family: var(--font-accent), 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--purple-bright);
  margin-bottom: 4px;
  line-height: 1.1;
}

.about-stat-label {
  font-size: 12.5px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.35;
}

/* ============================================================
   BANNER & CTA
   ============================================================ */
.banner-section {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.2), rgba(5, 5, 8, 0.92)),
    radial-gradient(70% 60% at 70% 20%, rgba(139, 44, 255, 0.22), transparent 60%),
    var(--surface);
  border: 1px solid var(--glass-border);
  padding: 50px;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.banner-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 32px;
}

.pill-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
}

/* ============================================================
   STEPS GRID & CONNECTING FLOW SYSTEM
   ============================================================ */
/* Animated Dotted Flow Line Across Steps */
@keyframes dottedFlow {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 20px 0;
  }
}

@keyframes flowCometPulse {
  0% {
    left: 8%;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    left: 88%;
    opacity: 0;
  }
}

/* Animated Vertical Dotted Flow Line Across Steps */
@keyframes dottedFlowVertical {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 18px;
  }
}

/* Luminous Flowing Pulse Particle Downward */
@keyframes flowCometPulseVertical {
  0% {
    transform: translateY(0) translateX(-50%);
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    transform: translateY(28px) translateX(-50%);
    opacity: 0;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

/* Horizontal Animated Dotted Line Connecting Steps */
.steps-grid::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 60px;
  right: 60px;
  height: 3px;
  background-image: radial-gradient(circle, rgba(168, 85, 247, 0.95) 2px, transparent 2px);
  background-size: 14px 3px;
  background-repeat: repeat-x;
  z-index: 1;
  pointer-events: none;
  animation: dottedFlow 0.9s linear infinite;
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.75));
}

/* Luminous Flowing Pulse Particle */
.steps-grid::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 44px;
  height: 7px;
  background: radial-gradient(ellipse at center, #ffffff 0%, #c084fc 50%, rgba(168, 85, 247, 0.3) 80%, transparent 100%);
  border-radius: 50%;
  filter: blur(1px) drop-shadow(0 0 10px #c084fc);
  z-index: 2;
  pointer-events: none;
  animation: flowCometPulse 2.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.step-card {
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.step-card .card-header-bar {
  position: relative;
  z-index: 3;
}

.step-card .card-pill-tag {
  background: #141522;
  border: 1px solid rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 16px rgba(139, 44, 255, 0.3);
  position: relative;
  z-index: 3;
}

/* ============================================================
   TESTIMONIALS SECTION (Continuous Automatic Marquee)
   ============================================================ */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 14px 0 26px;
  border-radius: 28px;
}

/* Left and Right Black Shadow Gradients */
.testimonials-marquee-wrapper::before,
.testimonials-marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 10;
  pointer-events: none;
}

.testimonials-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #08090e 0%, rgba(8, 9, 14, 0.88) 40%, rgba(8, 9, 14, 0) 100%);
}

.testimonials-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #08090e 0%, rgba(8, 9, 14, 0.88) 40%, rgba(8, 9, 14, 0) 100%);
}

.testimonials-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
  animation: marqueeRightToLeft 36s linear infinite;
}

.testimonials-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeRightToLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

/* Exactly 3 cards visible rule */
.testimonial-card {
  width: 368px;
  max-width: 368px;
  min-width: 368px;
  flex: 0 0 368px;
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.testimonial-box {
  background: #13141c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  transition: all var(--dur-med) var(--ease);
}

.testimonial-card:hover .testimonial-box {
  background: #181924;
  border-color: rgba(168, 85, 247, 0.45);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.7), 0 0 28px rgba(139, 44, 255, 0.18);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fbbf24;
  font-size: 13px;
  margin-bottom: 12px;
}

.testimonial-quote {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.6;
  font-style: normal;
  margin-bottom: 18px;
  flex: 1;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(168, 85, 247, 0.5);
  box-shadow: 0 0 14px rgba(139, 44, 255, 0.25);
  flex-shrink: 0;
  background: #1a1b26;
}

.testimonial-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.testimonial-author-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.testimonial-author-desc {
  font-size: 12px;
  color: var(--purple-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonial-author-desc i {
  color: #22c55e;
  font-size: 11px;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 70px 40px;
  background:
    radial-gradient(50% 60% at 50% 50%, rgba(139, 44, 255, 0.15), transparent 70%),
    var(--glass-bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
}

.final-cta .btn-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Route Visual */
.route-visual {
  position: relative;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(60% 80% at 30% 40%, rgba(139, 44, 255, 0.14), transparent 70%), var(--surface);
  border: 1px solid var(--glass-border);
}

.route-visual svg {
  width: 100%;
  height: 100%;
}

.route-dash {
  stroke-dasharray: 6 8;
  animation: dashMove 3s linear infinite;
}

@keyframes dashMove {
  to {
    stroke-dashoffset: -140;
  }
}

/* ============================================================
   PAGE HERO & SUBPAGE HEADERS
   ============================================================ */
.page-hero {
  position: relative;
  padding: 30px 0 50px;
}

/* Icon Badges */
.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(139, 44, 255, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--purple-bright);
}

.icon-badge svg,
.icon-badge i {
  font-size: 22px;
  width: 24px;
  height: 24px;
  stroke: var(--purple-bright);
  color: var(--purple-bright);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   CONTACT PAGE & FORMS (Harmonized CAB4U List Layout)
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 56px;
  align-items: start;
  margin-top: 10px;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.contact-clean-item {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-clean-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-clean-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--purple-light);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-clean-label svg {
  width: 17px;
  height: 17px;
  stroke: var(--purple-bright);
  fill: none;
  flex-shrink: 0;
}

.contact-clean-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.contact-clean-value a {
  color: #ffffff;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

.contact-clean-value a:hover {
  color: var(--purple-bright);
}

.contact-clean-sub {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-clean-follow {
  margin-top: 8px;
  padding-top: 8px;
}

.contact-follow-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.contact-follow-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #14151e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none;
}

.contact-circle-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform var(--dur-fast) var(--ease);
}

.contact-circle-btn:hover {
  background: #1a1b28;
  border-color: rgba(168, 85, 247, 0.5);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 44, 255, 0.25);
}

.contact-circle-btn.facebook:hover {
  color: #1877F2;
  border-color: rgba(24, 119, 242, 0.5);
}

.contact-circle-btn.instagram:hover {
  color: #E4405F;
  border-color: rgba(228, 64, 95, 0.5);
}

.contact-circle-btn.whatsapp:hover {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.5);
}

.contact-circle-btn.maps:hover {
  color: #EA4335;
  border-color: rgba(234, 67, 53, 0.5);
}

/* Form Sections */
.form-section {
  padding: 38px 36px;
  border-radius: var(--radius-xl);
  background: rgba(16, 17, 26, 0.85);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

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

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(8, 9, 14, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14.5px;
  color: #ffffff;
  transition: all var(--dur-fast) var(--ease);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23a855f7' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option {
  background: #0f1017;
  color: #ffffff;
  padding: 10px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-bright);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.25);
  background: rgba(12, 13, 20, 0.9);
  outline: none;
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.form-error {
  font-size: 12px;
  color: #f87171;
  display: none;
}

.form-error.visible {
  display: block;
}

/* ============================================================
   INTELLIGENT LOCATION AUTOCOMPLETE (Google Map / Geocoded)
   ============================================================ */
.form-group:has(input[name="pickup"]),
.form-group:has(input[name="destination"]),
.form-group.has-autocomplete {
  position: relative;
}

.loc-autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: rgba(13, 14, 23, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(168, 85, 247, 0.45);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.85), 0 0 28px rgba(139, 44, 255, 0.22);
  z-index: 10000;
  max-height: 270px;
  overflow-y: auto;
  padding: 6px;
  display: none;
  animation: locDropdownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.loc-autocomplete-dropdown.open {
  display: block;
}

@keyframes locDropdownFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

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

.loc-autocomplete-dropdown::-webkit-scrollbar {
  width: 5px;
}

.loc-autocomplete-dropdown::-webkit-scrollbar-thumb {
  background: rgba(168, 85, 247, 0.4);
  border-radius: 6px;
}

.loc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}

.loc-item:hover,
.loc-item.active {
  background: rgba(168, 85, 247, 0.2);
}

.loc-item-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: rgba(139, 44, 255, 0.16);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: var(--purple-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.loc-item-content {
  flex: 1;
  min-width: 0;
}

.loc-item-primary {
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.loc-item-primary mark {
  background: transparent;
  color: var(--purple-bright);
  font-weight: 800;
}

.loc-item-secondary {
  font-size: 11.5px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.loc-item-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  flex-shrink: 0;
}

.loc-item-tag.airport {
  background: rgba(56, 189, 248, 0.18);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.loc-item-tag.station {
  background: rgba(251, 146, 60, 0.18);
  color: #fb923c;
  border: 1px solid rgba(251, 146, 60, 0.3);
}

.loc-item-tag.campus {
  background: rgba(168, 85, 247, 0.22);
  color: #c084fc;
  border: 1px solid rgba(168, 85, 247, 0.4);
}

.loc-item-tag.destination {
  background: rgba(34, 197, 94, 0.18);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.loc-item-tag.area {
  background: rgba(148, 163, 184, 0.15);
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.loc-no-results {
  padding: 12px;
  font-size: 12.5px;
  color: var(--text-tertiary);
  text-align: center;
}

.form-actions {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 50px 24px;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* ============================================================
   OFFICE LOCATION MAP INTEGRATION (Compact & Clean)
   ============================================================ */
.map-container-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #13141c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 350px;
}

.map-embed-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(110%);
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   FOOTER (Rich, Informative & Modern)
   ============================================================ */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 48px 0 24px;
  margin-top: 32px;
  background: #040407;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 24px;
}

.footer-logo {
  margin-bottom: 20px;
  display: inline-block;
  text-decoration: none;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  display: block;
  transition: all 0.35s var(--ease);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 18px rgba(168, 85, 247, 0.85)) drop-shadow(0 0 32px rgba(139, 44, 255, 0.55));
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 340px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 44, 255, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-light);
}

/* Footer Social Media Buttons */
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #14151e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none;
}

.footer-social-btn svg,
.footer-social-btn i {
  font-size: 16px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: currentColor;
  transition: transform var(--dur-fast) var(--ease);
}

.footer-social-btn:hover {
  background: #1a1b28;
  border-color: rgba(168, 85, 247, 0.5);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 44, 255, 0.25);
}

.footer-social-btn.facebook:hover {
  color: #1877F2;
  border-color: rgba(24, 119, 242, 0.5);
}

.footer-social-btn.instagram:hover {
  color: #E4405F;
  border-color: rgba(228, 64, 95, 0.5);
}

.footer-social-btn.whatsapp:hover {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.5);
}

.footer-social-btn.maps:hover {
  color: #EA4335;
  border-color: rgba(234, 67, 53, 0.5);
}

.footer-col h5 {
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 12px;
  transition: all var(--dur-fast) var(--ease);
}

.footer-col a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.5;
}

.footer-contact-item svg,
.footer-contact-item i {
  font-size: 15px;
  width: 18px;
  height: 18px;
  stroke: var(--purple-bright);
  color: var(--purple-bright);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-item a {
  color: #ffffff;
  font-weight: 600;
  margin: 0;
}

.footer-contact-item a:hover {
  color: var(--purple-light);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-top: 1px solid var(--glass-border);
  padding-top: 14px;
  padding-bottom: 8px;
  color: var(--text-tertiary);
  font-size: 13.5px;
  line-height: 1.5;
}

.footer-bottom p {
  margin: 0;
  color: var(--text-tertiary);
}

.footer-credit-sep {
  margin: 0 6px;
  display: inline;
  color: var(--text-tertiary);
  opacity: 0.6;
}

.footer-credit {
  display: inline;
}

.footer-bottom a {
  color: var(--purple-light);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--dur-fast) var(--ease);
}

.footer-bottom a:hover {
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 0 12px rgba(168, 85, 247, 0.9), 0 0 24px rgba(139, 44, 255, 0.6);
}

/* Mobile Action Bar */
.mobile-actionbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(10, 11, 18, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 14px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
}

.mobile-actionbar a {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: #ffffff;
  background: #181924;
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 42px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: all var(--dur-fast) var(--ease);
  flex: 1 1 0px;
  min-width: 0;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
}

.mobile-actionbar a i {
  font-size: 14px;
  color: var(--purple-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease);
}

.mobile-actionbar a:hover,
.mobile-actionbar a:active {
  background: #222434;
  border-color: rgba(168, 85, 247, 0.5);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(139, 44, 255, 0.25);
}

.mobile-actionbar a:hover i {
  transform: scale(1.1);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* ============================================================
   BOOKING POPUP MODAL (Glassmorphism & Interactive)
   ============================================================ */
body.modal-open .steps-grid::before,
body.modal-open .steps-grid::after,
body.modal-open .step-card:not(:last-child)::after,
body.modal-open .step-card:not(:last-child)::before,
body.modal-open .route-dash,
body.modal-open .hero-car-stage::before {
  display: none !important;
  animation: none !important;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 10, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  isolation: isolate;
  -webkit-overflow-scrolling: touch;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #10111a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 34px 30px 30px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8), 0 0 32px rgba(139, 44, 255, 0.2);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  isolation: isolate;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.modal-backdrop.open .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.08);
}

.modal-header {
  margin-bottom: 22px;
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.modal-card::-webkit-scrollbar {
  width: 6px;
}

.modal-card::-webkit-scrollbar-thumb {
  background: rgba(168, 85, 247, 0.3);
  border-radius: 6px;
}

/* ============================================================
   SHARED CAB OPT-IN CARD & BADGES
   ============================================================ */
.shared-cab-optin-box {
  grid-column: 1 / -1;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(135deg, rgba(139, 44, 255, 0.08), rgba(20, 21, 33, 0.85));
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: 16px;
  padding: 16px 20px;
  margin: 14px 0;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.shared-cab-optin-box:hover {
  border-color: rgba(168, 85, 247, 0.5);
  background: linear-gradient(135deg, rgba(139, 44, 255, 0.12), rgba(20, 21, 33, 0.95));
}

.shared-cab-optin-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  user-select: none;
}

.shared-cab-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(168, 85, 247, 0.4);
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  margin-top: 2px;
  transition: all 0.2s ease;
}

.shared-cab-checkbox:checked {
  background: var(--purple-main);
  border-color: var(--purple-light);
  box-shadow: 0 0 12px rgba(139, 44, 255, 0.6);
}

.shared-cab-checkbox:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.shared-cab-optin-content {
  flex: 1;
}

.shared-cab-optin-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

.shared-fare-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shared-cab-optin-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.shared-cab-terms-link {
  color: var(--purple-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.shared-cab-terms-link:hover {
  color: #ffffff;
}

/* ============================================================
   LEGAL PAGES (Terms of Service & Privacy Policy)
   ============================================================ */
.legal-page-header {
  text-align: center;
  padding: 40px 0 20px;
  max-width: 780px;
  margin: 0 auto;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 60px;
}

.legal-toc-sidebar {
  position: sticky;
  top: 100px;
  background: #13141c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 24px;
}

.legal-toc-sidebar h4 {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.legal-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-toc-nav a {
  font-size: 13.5px;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.legal-toc-nav a:hover,
.legal-toc-nav a.active {
  color: #ffffff;
  background: rgba(139, 44, 255, 0.18);
  border-left: 2px solid var(--purple-bright);
}

.legal-content-card {
  background: #13141c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 36px;
}

.legal-section-block {
  margin-bottom: 42px;
  scroll-margin-top: 110px;
}

.legal-section-block:last-child {
  margin-bottom: 0;
}

.legal-section-block h3 {
  font-size: 1.4rem;
  font-family: var(--font-display);
  color: #ffffff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-section-block h3 i {
  color: var(--purple-light);
  font-size: 1.15rem;
}

.legal-section-block p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-section-block ul {
  list-style: none;
  padding-left: 0;
  margin: 12px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-section-block li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

.legal-section-block li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.65);
}

.legal-section-block li strong {
  color: #f1f5f9;
}

.legal-highlight-box {
  background: rgba(139, 44, 255, 0.08);
  border-left: 4px solid var(--purple-main);
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  margin: 18px 0;
}

.legal-highlight-box p {
  color: #e2e8f0;
  margin-bottom: 0;
  font-size: 14px;
}

.legal-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: var(--purple-light);
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* ============================================================
   CAB4U — ERROR PAGES (404, 403, 500, 502, 503, 408)
   Single Screen Zero-Scroll Command Layout
   ============================================================ */

body.error-page-body {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: var(--bg-primary);
}

.error-main {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 85px 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  overflow: hidden;
}

.error-stage-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}

/* Automotive Number Stage */
.error-visual-stage {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto clamp(10px, 2vh, 22px);
  display: flex;
  justify-content: center;
  align-items: center;
  isolation: isolate;
  z-index: 2;
  flex-shrink: 1;
}

.error-visual-stage::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(139, 44, 255, 0.4),
    rgba(168, 85, 247, 0.14) 50%,
    transparent 75%
  );
  filter: blur(48px);
  pointer-events: none;
  z-index: -1;
}

.error-visual-card {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  z-index: 1;
}

.error-automotive-art {
  width: 100%;
  max-height: clamp(170px, 26vh, 260px);
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.95));
}

/* Content Area */
.error-content-area {
  max-width: 660px;
  margin: 0 auto;
  flex-shrink: 0;
}

.error-h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: clamp(6px, 1vh, 12px);
}

.error-h1 span.highlight {
  background: linear-gradient(135deg, #ffffff 0%, var(--purple-light) 50%, var(--purple-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 20px var(--purple-glow));
}

.error-desc {
  font-family: var(--font-body);
  font-size: clamp(13.5px, 1.1vw, 15.5px);
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 520px;
  margin: 0 auto clamp(14px, 2vh, 24px);
}

.error-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 0;
}

.error-cta-row .hero-btn-primary,
.error-cta-row .hero-btn-glass {
  padding: clamp(11px, 1.4vh, 14px) clamp(24px, 2.4vw, 30px);
  font-size: clamp(13px, 0.95vw, 14.5px);
}

/* ============================================================
   SHARED CAB PROMOTIONAL BOOT POPUP
   ============================================================ */
.ad-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  isolation: isolate;
  overflow-x: hidden;
  box-sizing: border-box;
}

.ad-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.ad-modal-card {
  background: #0f1019;
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 24px;
  width: 100%;
  max-width: min(560px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  position: relative;
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.85), 0 0 50px rgba(139, 44, 255, 0.28);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  isolation: isolate;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.ad-modal-backdrop.open .ad-modal-card {
  transform: scale(1) translateY(0);
}

.ad-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(16, 17, 26, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 25;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ad-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
  border-color: var(--purple-bright);
  color: #ffffff;
}

.ad-modal-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: radial-gradient(circle at center, rgba(139, 44, 255, 0.3) 0%, rgba(15, 16, 25, 0.9) 75%, #0f1019 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
  box-sizing: border-box;
}

.ad-modal-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(168, 85, 247, 0.4), transparent 70%);
  filter: blur(36px);
  pointer-events: none;
}

.ad-modal-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.75));
  display: block;
}

.ad-modal-body {
  padding: 20px 24px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}

.ad-modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
  width: 100%;
  word-break: break-word;
}

.ad-modal-title span {
  background: linear-gradient(135deg, #ffffff 0%, var(--purple-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ad-modal-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 100%;
  word-break: break-word;
}

.ad-modal-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.ad-modal-pill {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  line-height: 1.2;
  box-sizing: border-box;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.ad-modal-pill:hover {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.35);
}

.ad-modal-pill i {
  color: var(--purple-bright);
  font-size: 11px;
  flex-shrink: 0;
}

.ad-modal-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
}

.ad-modal-actions .btn {
  flex: 1;
  padding: 12px 18px;
  font-size: 14px;
  text-align: center;
  justify-content: center;
  box-sizing: border-box;
}

/* ============================================================
   PAGE PRELOADER (Instant Booting Screen with Purple Glow)
   ============================================================ */
#page-preloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: #06070b;
  background-image: radial-gradient(circle at 50% 48%, rgba(139, 44, 255, 0.14) 0%, rgba(6, 7, 11, 0.98) 70%);
  z-index: 99999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: all;
  user-select: none;
}

#page-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.preloader-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
}

.preloader-glow {
  position: absolute;
  width: 320px;
  height: 160px;
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.7) 0%, rgba(139, 44, 255, 0.4) 45%, transparent 75%);
  border-radius: 50%;
  filter: blur(36px);
  animation: preloaderAura 2.2s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

.preloader-logo {
  position: relative;
  z-index: 2;
  height: 104px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(168, 85, 247, 0.8)) drop-shadow(0 0 56px rgba(139, 44, 255, 0.5));
  animation: preloaderPulseLogo 2.2s ease-in-out infinite alternate;
}

.preloader-track {
  width: 320px;
  height: 4.5px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

.preloader-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #8b2cff 0%, #c084fc 65%, #ffffff 100%);
  border-radius: 999px;
  box-shadow: 0 0 12px #c084fc, 0 0 24px rgba(168, 85, 247, 0.95);
  transition: width 0.26s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Mobile & Tablet Responsive Preloader (Preserved Exactly) */
@media (max-width: 768px) {
  .preloader-logo-wrap {
    margin-bottom: 26px;
  }

  .preloader-glow {
    width: 180px;
    height: 100px;
    filter: blur(22px);
  }

  .preloader-logo {
    height: clamp(48px, 6.5vh, 66px);
    max-width: 220px;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.75)) drop-shadow(0 0 40px rgba(139, 44, 255, 0.45));
  }

  .preloader-track {
    width: min(200px, 60vw);
    height: 3.5px;
  }
}

@keyframes preloaderAura {
  0% {
    transform: scale(0.92);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.18);
    opacity: 0.95;
  }
}

@keyframes preloaderPulseLogo {
  0% {
    transform: scale(0.98);
    filter: drop-shadow(0 0 16px rgba(168, 85, 247, 0.6)) drop-shadow(0 0 30px rgba(139, 44, 255, 0.3));
  }
  100% {
    transform: scale(1.02);
    filter: drop-shadow(0 0 24px rgba(168, 85, 247, 0.9)) drop-shadow(0 0 50px rgba(139, 44, 255, 0.6));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .testimonials-marquee-track {
    animation: none !important;
    overflow-x: auto;
  }
}