/* ==========================================================================
   Mana Saarathi — Mobile-First Luxury Dark Theme System
   ========================================================================== */

:root {
  --primary-gold: #D4AF37;
  --primary-gold-light: #E5C158;
  --primary-gold-dark: #B89228;
  --gold: #D4AF37;
  --gold-soft: #E5C158;
  --gold-dim: transparent;
  --gold-glow: 0 12px 32px rgba(212, 175, 55, 0.25);

  --bg-main: #060605;
  --bg: #060605;
  --bg-2: #0E0D0B;
  --bg-3: #13120E;
  --bg-card: #0E0D0B;
  --bg-card-hover: #161510;
  --bg-input: #13120E;
  --border-powder: transparent;
  --line: transparent;

  --text-white: #FFFFFF;
  --white: #FFFFFF;
  --text-gold: #F5D77F;
  --text-muted: #9E988A;
  --muted: #9E988A;
  --success: #16A34A;

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

  --font-sans: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: 'Inter', 'Plus Jakarta Sans', sans-serif;
  --sans: 'Inter', 'Plus Jakarta Sans', sans-serif;

  --tracking-tight: -0.035em;
  --tracking-tighter: -0.045em;
  --leading-tight: 1.05;
  --leading-relaxed: 1.65;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  color: var(--text-white);
  background-color: var(--bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--bg-main);
  color: var(--text-white);
  font-family: var(--font-sans);
  line-height: var(--leading-relaxed);
  letter-spacing: -0.015em;
  overflow-x: hidden;
}

/* Global Regular Text Color Token */
p,
.section-head p,
.card-body p,
.feature-image-card .card-body p,
.section-desc,
.text-zinc-400,
.text-zinc-300,
.text-zinc-500,
.text-muted,
.faq-card-body,
.footer-grid p,
span.text-zinc-400,
span.text-zinc-300 {
  color: #9E988A !important;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: var(--tracking-tighter);
  line-height: var(--leading-tight);
}

.city-pill {
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  color: #9CA3AF;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.city-pill:hover,
.city-pill.active {
  color: #0A0A0A;
  background: #D4AF37;
  border-color: #D4AF37;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
  background: #333333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gold);
}

gap: 20px !important;
}

@media (max-width: 900px) {
  .services-grid-wrapper {
    grid-template-cols: 1fr !important;
  }
}

.service-pill-card {
  background: #141416 !important;
  border-radius: var(--radius-lg) !important;
  border: none !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

/* Driver Partner Banner Section Mobile Responsive */
.partner-banner-section {
  background: linear-gradient(135deg, #141416 0%, #1C1C20 100%) !important;
  color: #FFFFFF !important;
  border-radius: var(--radius-lg) !important;
  border: none !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 36px 20px !important;
  display: grid !important;
  grid-template-cols: 1fr 1fr !important;
  gap: 24px !important;
  align-items: center !important;
}

@media (max-width: 900px) {
  .partner-banner-section {
    grid-template-cols: 1fr !important;
  }
}

/* FAQ Accordion Mobile Responsive */
.faq-container {
  max-width: 900px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.accordion-header-custom {
  padding: 16px 20px !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.accordion-body-custom {
  padding: 0 20px 16px !important;
  font-size: 13.5px !important;
  color: var(--text-muted) !important;
}

/* Footer Mobile Grid */
.site-footer-main {
  background: #050505 !important;
  color: #A1A1AA !important;
  padding: 60px 16px 24px !important;
  font-size: 13px !important;
  border-top: none !important;
}

.footer-container {
  max-width: 1280px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-cols: 2.2fr 1fr 1fr 1fr 1.5fr !important;
  gap: 30px !important;
  margin-bottom: 40px !important;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-cols: 1fr 1fr !important;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-cols: 1fr !important;
  }
}

/* Mobile Nav Toggle Icon */
.mobile-nav-toggle {
  display: none;
  font-size: 22px;
  color: #FFFFFF;
  cursor: pointer;
}

@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: block !important;
  }
}

/* Powder Style Pills */
.cat-pill-btn {
  background-color: rgba(255, 255, 255, 0.05);
  color: #D1D5DB;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.cat-pill-btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2);
}

.cat-pill-btn.active {
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   Home Landing Page Styles & Components
   ========================================================================== */

/* Buttons & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  transition: background .4s ease, padding .4s ease;
  border-bottom: none !important;
}

header.solid {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  padding: 8px 5vw;
  border-bottom: none !important;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.logo span {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .03em;
}

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

nav.links a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  color: #A1A1AA;
  position: relative;
  transition: color 0.3s ease;
  text-decoration: none;
}

nav.links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #D4AF37;
  transition: width 0.3s ease;
  border-radius: 2px;
}

nav.links a:hover,
nav.links a.active {
  color: #FFFFFF !important;
}

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

/* Hide mobile-only elements on desktop screens (> 900px) */
@media (min-width: 901px) {
  .mobile-only,
  .md\:hidden,
  nav.links a.mobile-only,
  nav.links a.contact-link {
    display: none !important;
  }
}

@media (max-width: 900px) {
  nav.links a.mobile-only,
  nav.links a.contact-link {
    display: flex !important;
  }
}

@media (max-width: 900px) {
  header {
    padding: 12px 16px !important;
    background: rgba(6, 6, 5, 0.95) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    z-index: 9999 !important;
  }

  nav.links {
    position: fixed;
    top: 68px;
    margin-top: 48px !important;
    left: 12px;
    right: 12px;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-radius: 0 !important;
    flex-direction: column !important;
    padding: 0 !important;
    gap: 14px !important;
    display: none;
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: none !important;
    z-index: 10000 !important;
  }

  nav.links.active-mobile {
    display: flex !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }

  nav.links a {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #F3F4F6 !important;
    padding: 16px 20px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  nav.links a::after {
    content: '›' !important;
    font-size: 22px !important;
    font-weight: 300 !important;
    color: rgba(212, 175, 55, 0.8) !important;
    margin-left: auto !important;
    transition: transform 0.2s ease !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    line-height: 1 !important;
  }

  nav.links a:hover,
  nav.links a:active,
  nav.links a.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05)) !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
    color: #D4AF37 !important;
    transform: translateX(4px) !important;
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.2) !important;
  }

  nav.links a:hover::after,
  nav.links a:active::after,
  nav.links a.active::after {
    transform: translateX(4px) !important;
    color: #D4AF37 !important;
  }

  nav.links a.contact-link {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #D1D5DB !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    padding: 4px 4px !important;
    margin-top: -6px !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    word-break: break-all !important;
    opacity: 0.95;
  }

  nav.links a.contact-link:first-of-type {
    margin-top: 14px !important;
    padding-top: 14px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  nav.links a.contact-link:hover,
  nav.links a.contact-link:active {
    background: transparent !important;
    border-color: transparent !important;
    color: #D4AF37 !important;
    transform: none !important;
    box-shadow: none !important;
  }

  nav.links a.contact-link::after {
    display: none !important;
  }
}

/* Mobile Navigation Full-Screen Backdrop Overlay */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 990 !important;
}

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

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

.btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, background .3s ease, border-color .3s ease;
  text-decoration: none;
}

.btn-gold {
  background: #D4AF37;
  color: #0A0A0E !important;
  font-weight: 700;
}

.btn-gold:hover {
  background: #E5C158;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(212, 175, 55, 0.45);
}

.btn-ghost {
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #D4AF37;
  background: transparent;
}

.btn-ghost:hover {
  background: #D4AF37;
  color: #0A0A0E !important;
}

.btn-outline-gold {
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #D4AF37;
  background: transparent;
}

.btn-outline-gold:hover {
  background: #D4AF37;
  color: #0A0A0E !important;
}

/* Container & Section Base */
.section {
  position: relative;
  width: 100%;
}

.container-1150 {
  max-width: 1150px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-head {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
  text-align: center;
}

.section-head .eyebrow {
  justify-content: center;
}

.section-head h2 {
  font-size: clamp(28px, 3.8vw, 44px);
  margin-top: 14px;
  line-height: 1.15;
}

.section-head p {
  color: var(--muted);
  margin: 14px auto 0 auto;
  font-size: 15px;
  max-width: 520px;
}

.eyebrow {
  font-family: var(--sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: none;
}

/* Hero Section */
.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 210px 8vw 180px;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(212, 175, 55, 0.10), transparent 55%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.6) 55%, rgba(10, 10, 10, 0.98) 100%),
    linear-gradient(120deg, #151312, #0A0A0A 60%);
  overflow: hidden;
}

.hero-container {
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 980px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
}

.hero-content h1 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(40px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 18px 0 18px;
  background: linear-gradient(100deg, #ffffff 40%, #f2e4b8 70%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content .sub {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-badges .badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
}

.dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, .6);
  animation: pulse 2s infinite;
}

/* Feature Cards & Grids */
.grid-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .grid-feature-cards {
    grid-template-columns: 1fr;
  }
}

.feature-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.feature-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .8, .2, 1);
  z-index: 0;
}

.feature-image-card:hover img {
  transform: scale(1.05);
}

.feature-image-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.95) 100%);
  z-index: 1;
}

/* Services Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), border-color .4s ease, background .4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dim);
  background: rgba(212, 175, 55, 0.04);
}

.service-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.09);
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 16px;
}

.service-card h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.service-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.service-card .top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Why Choose Us Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.why-item {
  background: var(--bg);
  padding: 32px 24px;
}

.why-item .icon {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 20px;
}

.why-item h4 {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 6px;
}

.why-item p {
  color: var(--muted);
  font-size: 12.5px;
}

/* Driver Showcase */
.driver-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

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

@media (max-width: 600px) {
  .driver-scroll {
    grid-template-columns: 1fr;
  }
}

.driver-card {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s ease, border-color .4s ease;
}

.driver-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dim);
}

.driver-photo {
  height: 190px;
  background: linear-gradient(160deg, #1c1c1c, #0d0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.driver-photo .verified {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(22, 163, 74, 0.15);
  border: 1px solid rgba(22, 163, 74, 0.5);
  color: var(--success);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
  font-weight: 600;
}

.driver-info {
  padding: 20px;
}

.driver-info h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
}

.driver-info .meta {
  color: var(--muted);
  font-size: 12px;
  margin: 8px 0 14px;
  display: flex;
  justify-content: space-between;
}

.driver-info .star {
  color: var(--gold);
}

.driver-info .btn {
  width: 100%;
  justify-content: center;
  padding: 10px;
  font-size: 12px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}

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

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

.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  background: var(--bg-2);
  position: relative;
  transition: transform .4s ease, border-color .3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card:hover {
  transform: translateY(-6px);
}

.price-card.popular {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), var(--bg-2) 60%);
}

.price-card .tag {
  position: absolute;
  top: -13px;
  left: 24px;
  background: var(--gold);
  color: #0A0A0A;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

.price-card h3 {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.price-card .amount {
  font-family: var(--serif);
  font-size: 38px;
  margin: 14px 0 4px;
  color: var(--white);
}

.price-card .amount span {
  font-size: 13.5px;
  color: var(--muted);
  font-family: var(--sans);
}

.price-card ul {
  list-style: none;
  margin: 22px 0 26px;
}

.price-card li {
  color: var(--muted);
  font-size: 13px;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Testimonials */
#testimonials,
#about-testimonials,
.testimonials-section {
  display: none !important;
}

.testi-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: 100%;
}

@media (max-width: 900px) {
  .testi-track {
    grid-template-columns: 1fr;
  }
}

.testi-card {
  background: #121216;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .4s ease, border-color .4s ease;
}

.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.35);
}

/* FAQ */
.faq-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  padding: 20px 0;
  cursor: pointer;
  width: 100%;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.faq-q {
  display: flex;
}

/* Powder Style FAQ Accordion Cards */
.faq-card {
  transition: all 0.3s cubic-bezier(.2, .8, .2, 1);
}

.faq-card.open {
  border-color: rgba(212, 175, 55, 0.4) !important;
  background-color: #181820 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.faq-card.open .chevron-icon {
  transform: rotate(180deg);
  border-color: #D4AF37 !important;
  color: #D4AF37 !important;
  background-color: rgba(212, 175, 55, 0.15);
}

.faq-card.open .faq-card-body {
  max-height: 800px !important;
  opacity: 1 !important;
  margin-top: 14px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes iconScalePulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.85;
  }
  50% {
    transform: translateY(-6px) scale(1.38);
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.95));
  }
}

.animate-icon-pulse {
  animation: iconScalePulse 1.6s ease-in-out infinite;
  display: inline-block;
  transform-origin: center center;
}

  /* Footer */
  footer {
    border-top: 1px solid rgba(212, 175, 55, 0.16);
    padding: 70px 0 36px;
    background: #050505;
    width: 100%;
  }

  .footer-container {
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    width: 100%;
  }

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

  .footer-grid h5 {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 18px;
  }

  .footer-grid a {
    display: block;
    font-size: 13px;
    color: #cfcfcf;
    margin-bottom: 10px;
    transition: color .3s;
  }

  .footer-grid a:hover {
    color: var(--primary-gold);
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(212, 175, 55, 0.16);
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
  }

  .footer-bottom p {
    color: var(--text-muted);
    font-size: 12px;
  }

  /* Reveal Animation */
  .reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1);
  }

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

  /* Continuous Horizontal Marquee Animation */
  @keyframes smoothMarquee {
    0% {
      transform: translate3d(0, 0, 0);
    }

    100% {
      transform: translate3d(-100%, 0, 0);
    }
  }

  .animate-marquee-loop {
    display: flex !important;
    flex-shrink: 0 !important;
    animation: smoothMarquee 25s linear infinite !important;
    will-change: transform;
  }

  .marquee-wrapper:hover .animate-marquee-loop {
    animation-play-state: paused !important;
  }

  /* ==========================================================================
   Full Site Light / Dark Theme Overrides & System
   ========================================================================== */
  [data-theme="light"] {
    --bg-main: #FAFAFA;
    --bg: #FAFAFA;
    --bg-2: #F4F4F5;
    --bg-3: #E4E4E7;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FAFAFA;
    --bg-input: #FFFFFF;
    --border-powder: rgba(0, 0, 0, 0.08);
    --line: rgba(0, 0, 0, 0.08);
    --text-white: #18181B;
    --white: #18181B;
    --text-muted: #52525B;
    --muted: #52525B;
  }

  [data-theme="light"] body {
    background-color: #FAFAFA !important;
    color: #18181B !important;
  }

  [data-theme="light"] header.solid {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  }

  [data-theme="light"] nav.links a {
    color: #52525B !important;
  }

  [data-theme="light"] nav.links a:hover,
  [data-theme="light"] nav.links a.active {
    color: #18181B !important;
  }

  [data-theme="light"] section,
  [data-theme="light"] footer,
  [data-theme="light"] .bg-\[\#08080A\],
  [data-theme="light"] .bg-\[\#050507\],
  [data-theme="light"] .bg-\[\#0C0C10\] {
    background-color: #FAFAFA !important;
  }

  [data-theme="light"] .bg-\[\#121216\],
  [data-theme="light"] .bg-\[\#181820\],
  [data-theme="light"] .bg-\[\#16161E\],
  [data-theme="light"] .bg-\[\#14141C\],
  [data-theme="light"] .faq-card,
  [data-theme="light"] .service-card,
  [data-theme="light"] .price-card,
  [data-theme="light"] .why-item {
    background-color: #FFFFFF !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  }

  [data-theme="light"] .hero {
    background:
      radial-gradient(120% 90% at 80% 0%, rgba(212, 175, 55, 0.12), transparent 55%),
      linear-gradient(180deg, rgba(250, 250, 250, 0.2) 0%, rgba(250, 250, 250, 0.8) 60%, #FAFAFA 100%),
      linear-gradient(120deg, #F4F4F5, #FAFAFA 60%) !important;
  }

  [data-theme="light"] .hero-content h1 {
    background: linear-gradient(100deg, #18181B 40%, #854D0E 75%, #D4AF37 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
  }

  [data-theme="light"] .text-white,
  [data-theme="light"] h1,
  [data-theme="light"] h2,
  [data-theme="light"] h3,
  [data-theme="light"] h4 {
    color: #18181B !important;
  }

  [data-theme="light"] .text-zinc-300,
  [data-theme="light"] .text-zinc-400 {
    color: #52525B !important;
  }

  [data-theme="light"] .border-white\/10,
  [data-theme="light"] .border-white\/8,
  [data-theme="light"] .border-white\/15,
  [data-theme="light"] .border-white\/20 {
    border-color: rgba(0, 0, 0, 0.08) !important;
  }

  [data-theme="light"] .btn-ghost {
    border-color: rgba(24, 24, 27, 0.2) !important;
    color: #18181B !important;
  }

  [data-theme="light"] .btn-ghost:hover {
    border-color: #D4AF37 !important;
    color: #D4AF37 !important;
  }

  /* ==========================================================================
   Footer Component Base Styles
   ========================================================================== */
  footer {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    padding: 90px 0 40px;
    width: 100%;
    position: relative;
    z-index: 20;
  }

  .footer-container {
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.8fr repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    width: 100%;
  }

  @media (max-width: 900px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
  }

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

  .footer-grid h5 {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .footer-grid a {
    display: block;
    color: var(--text-muted);
    font-size: 13.5px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: color 0.25s ease;
  }

  .footer-grid a:hover {
    color: var(--gold);
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--line);
    color: var(--text-muted);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
  }

  .socials {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-3);
    border: 1px solid var(--line);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .socials a:hover {
    background: var(--gold);
    color: #0A0A0E;
    border-color: var(--gold);
    transform: translateY(-2px);
  }

  /* ==========================================================================
   Feature Image Cards Component Styles
   ========================================================================== */
  .grid-feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
  }

  @media (max-width: 900px) {
    .grid-feature-cards {
      grid-template-columns: 1fr;
    }
  }

  .feature-image-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
    background: var(--bg-card);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .feature-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
  }

  .feature-image-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-center: center;
    z-index: 0;
    transition: transform 0.6s ease;
  }

  .feature-image-card:hover img {
    transform: scale(1.06);
  }

  .feature-image-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 6, 5, 0.3) 0%, rgba(6, 6, 5, 0.95) 80%);
    z-index: 1;
  }

  .feature-image-card .card-top {
    position: relative;
    z-index: 2;
  }

  .feature-image-card .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(14, 13, 11, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  .feature-image-card .card-body {
    position: relative;
    z-index: 2;
  }

  .feature-image-card .card-body h3 {
    font-family: var(--sans);
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF !important;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }

  .feature-image-card .card-body p {
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.6;
    color: #E4E4E7 !important;
    margin-bottom: 20px;
  }

  .feature-image-card .card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .feature-image-card .action-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.25s ease;
  }

  .feature-image-card .action-link:hover {
    opacity: 0.8;
  }

  .feature-image-card .action-plus {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
  }

  .feature-image-card:hover .action-plus {
    background: var(--gold);
    color: #0E0D0B;
    transform: rotate(90deg);
  }

  /* ==========================================================================
   Footer Component Explicit Styles
   ========================================================================== */
  footer {
    background: #0E0D0B !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 80px 0 40px !important;
    width: 100% !important;
    position: relative !important;
    z-index: 20 !important;
  }

  .footer-container {
    max-width: 1150px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .footer-grid {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr !important;
    gap: 40px !important;
    margin-bottom: 60px !important;
    width: 100% !important;
  }

  @media (max-width: 900px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr !important;
      gap: 30px !important;
    }
  }

  @media (max-width: 500px) {
    .footer-grid {
      grid-template-columns: 1fr !important;
    }
  }

  .footer-grid h5 {
    font-family: var(--sans) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    margin-bottom: 20px !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
  }

  .footer-grid a {
    display: block !important;
    color: #9E988A !important;
    font-size: 13.5px !important;
    margin-bottom: 12px !important;
    text-decoration: none !important;
    transition: color 0.25s ease !important;
  }

  .footer-grid a:hover {
    color: #D4AF37 !important;
  }

  .footer-bottom {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding-top: 30px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #9E988A !important;
    font-size: 13px !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    width: 100% !important;
  }

  .socials {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .socials a {
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: #13120E !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #FFFFFF !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
  }

  .socials a:hover {
    background: #D4AF37 !important;
    color: #0A0A0E !important;
    border-color: #D4AF37 !important;
    transform: translateY(-2px) !important;
  }

/* Mobile View Book a Driver Form Margin/Padding Reduction */
@media (max-width: 640px) {
  #bookingModal {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  #bookingModal > div.relative,
  #bookingModal .flex.items-center.justify-between,
  #bookingModal form,
  #bookingForm,
  .booking-widget,
  .dr-form-card,
  .b2b-form-card {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
}

/* Core Layout & Deployment Fallback Utilities */
.fixed.inset-0 {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.backdrop-blur-xl {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.bg-black\/75 {
  background-color: rgba(0, 0, 0, 0.75);
}

.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.bg-white\/5 {
  background-color: rgba(255, 255, 255, 0.05);
}

.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}