:root {
  --primary: #e51a23;
  --primary-dark: #c1121c;
  --primary-rgb: 229, 26, 35;
  --dark: #1a1a1a;
  --dark-2: #2d2d2d;
  --text: #5a6475;
  --light: #f7f8fa;
  --white: #ffffff;
  --border: #e6e8ec;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

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

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

h1,
h2,
h3,
h4 {
  color: var(--dark);
  line-height: 1.25;
}

.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--light);
}

.section-peach {
  background: #fff8f3;
}

.section-dark {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: 2.2rem;
  margin: 12px 0 10px;
}

.section-head-light h2 {
  color: #fff;
}

.section-head-light p {
  color: rgba(255, 255, 255, 0.75);
}

.badge {
  display: inline-block;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}

.badge-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary);
}

.highlight {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}

.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-fleet {
  position: relative;
  overflow: hidden;
  margin-top: auto;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), #9e1017);
  color: #fff;
  padding: 13px;
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 8px 18px rgba(var(--primary-rgb), 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, gap 0.25s ease;
}

.btn-fleet i {
  transition: transform 0.3s ease;
}

/* shine sweep */
.btn-fleet::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.btn-fleet:hover {
  transform: translateY(-3px);
  gap: 12px;
  box-shadow: 0 14px 26px rgba(var(--primary-rgb), 0.42);
}

.btn-fleet:hover i {
  transform: translateX(4px);
}

.btn-fleet:hover::after {
  transform: translateX(130%);
}

/* Unified premium CTA button (matches Choose Your Ride "Book Now") */
.btn-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), #9e1017);
  color: #fff;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(var(--primary-rgb), 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, gap 0.25s ease, background 0.3s ease, color 0.3s ease;
}

.btn-cta i {
  transition: transform 0.3s ease;
}

.btn-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.btn-cta:hover {
  transform: translateY(-3px);
  gap: 12px;
  box-shadow: 0 14px 26px rgba(var(--primary-rgb), 0.42);
  color: #fff;
}

.btn-cta:hover i.cta-arrow {
  transform: translateX(4px);
}

.btn-cta:hover::after {
  transform: translateX(130%);
}

/* Ghost (outline) variant — same premium family, secondary emphasis */
.btn-cta-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-cta-ghost:hover {
  background: linear-gradient(135deg, var(--primary), #9e1017);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 26px rgba(var(--primary-rgb), 0.42);
}

.btn-connect {
  margin-top: 26px;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  margin-top: 24px;
}

.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.header .container {
  max-width: 100%;
  padding-left: clamp(20px, 5vw, 80px);
  padding-right: clamp(20px, 5vw, 80px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 48px);
  height: 86px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  background: var(--primary);
  color: #fff;
  font-size: 1.1rem;
  overflow: hidden;
}

.logo-mark-img {
  background: transparent;
  padding: 0;
  width: 200px;
}

.logo-mark-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

.logo-text em {
  font-style: normal;
  color: var(--primary);
}

.nav {
  display: flex;
  gap: clamp(24px, 2.6vw, 44px);
  margin: 0 auto;
}

.nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 0.97rem;
  letter-spacing: 0.2px;
  position: relative;
  padding: 6px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

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

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

.nav-desktop-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.btn-nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.2s ease;
  animation: buttonPulse 2.5s infinite;
}

.btn-nav-phone i {
  color: var(--primary);
  display: inline-block;
  transform-origin: center;
  animation: phoneRingContinuous 2.5s ease-in-out infinite;
}

.btn-nav-phone:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(var(--primary-rgb), 0.22);
  background: rgba(var(--primary-rgb), 0.06);
}

@keyframes phoneRingContinuous {

  0%,
  10% {
    transform: rotate(0) scale(1);
  }

  12% {
    transform: rotate(-18deg) scale(1.15);
  }

  15% {
    transform: rotate(18deg) scale(1.15);
  }

  18% {
    transform: rotate(-18deg) scale(1.15);
  }

  21% {
    transform: rotate(18deg) scale(1.15);
  }

  24% {
    transform: rotate(-12deg) scale(1.1);
  }

  27% {
    transform: rotate(12deg) scale(1.1);
  }

  30% {
    transform: rotate(0) scale(1);
  }

  100% {
    transform: rotate(0) scale(1);
  }
}

@keyframes buttonPulse {
  0% {
    border-color: var(--border);
    box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
  }

  15% {
    border-color: var(--primary);
    box-shadow: 0 0 0 5px rgba(var(--primary-rgb), 0.15);
  }

  30% {
    border-color: var(--primary);
    box-shadow: 0 0 0 8px rgba(var(--primary-rgb), 0);
  }

  100% {
    border-color: var(--border);
    box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
  }
}

.btn-nav-primary {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary), #9e1017);
  color: #fff !important;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, gap 0.25s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 8px 18px rgba(var(--primary-rgb), 0.28);
}

.btn-nav-primary *,
.btn-nav-primary i,
.btn-nav-primary span {
  color: #fff !important;
}

.btn-nav-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.btn-nav-primary:hover {
  transform: translateY(-2px);
  gap: 11px;
  box-shadow: 0 12px 24px rgba(var(--primary-rgb), 0.4);
}

.btn-nav-primary:hover::after {
  transform: translateX(130%);
}

.nav-mobile-actions {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* Hero Slider */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 88% -10%, rgba(var(--primary-rgb), 0.12), transparent 60%),
    linear-gradient(135deg, #fafbfc 0%, #eef1f6 100%);
}

.hero-slider {
  position: relative;
  overflow: hidden;
}

/* Slides stack in one cell and cross-fade (no horizontal sliding) */
.hero-track {
  display: grid;
}

.hero-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.hero-pad {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: calc(100vh - 86px);
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(32px, 5vh, 72px) clamp(20px, 3vw, 40px);
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 650px;
  color: #ffffff;
  position: relative;
  z-index: 4;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 22px;
  line-height: 1.12;
  letter-spacing: -0.5px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  color: #ffffff;
}

.hero p {
  max-width: 520px;
  margin-bottom: 34px;
  font-size: 1.05rem;
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  color: rgba(255, 255, 255, 0.95);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active transitions */
.hero-slide.is-active h1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.hero-slide.is-active p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.hero-slide.is-active .hero-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

.hero-art {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-art::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 45%, rgba(15, 23, 42, 0.25) 100%);
  z-index: 2;
}

.hero-art img {
  width: 100%;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.is-active .hero-art img {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.2s;
}

/* Slider arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  font-size: 0.95rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero-nav:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.hero-prev {
  left: clamp(10px, 2vw, 28px);
}

.hero-next {
  right: clamp(10px, 2vw, 28px);
}

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 5;
}

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

.hero-dot.active {
  width: 30px;
  background: var(--primary);
}

/* Scroll reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* About */
.section-about {
  position: relative;
  overflow: hidden;
}

.section-about::before,
.section-about::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.section-about::before {
  top: -140px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.18), transparent 70%);
}

.section-about::after {
  bottom: -160px;
  left: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.13), transparent 70%);
}

.section-about .container {
  position: relative;
  z-index: 1;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-img-frame img {
  width: 100%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.28) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-img-frame:hover img {
  transform: scale(1.08);
}

.about-img-frame:hover::after {
  opacity: 1;
}

.about-content h2 {
  font-size: 2.1rem;
  margin: 12px 0 16px;
}

.about-content p {
  margin-bottom: 14px;
}

.about-features {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-features li:hover {
  background: var(--white);
  transform: translateX(8px);
  border-color: var(--border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease;
}

.about-features li:hover .feature-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(-8deg) scale(1.08);
}

.about-features strong {
  display: block;
  color: var(--dark);
  font-size: 0.95rem;
}

.about-features span {
  font-size: 0.85rem;
  color: #8a8f98;
}

/* Grid */
.grid {
  display: grid;
  gap: 32px;
}

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

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

/* Services section accents */
.section-services {
  position: relative;
  overflow: hidden;
}

.section-services::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.14), transparent 70%);
  pointer-events: none;
}

.section-services .container {
  position: relative;
  z-index: 1;
}

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

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

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

/* Service Cards */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  background: var(--white);
  border-radius: 20px;
  padding: 44px 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  animation: floatCard 5s ease-in-out infinite;
}

/* Top gradient bar reveal */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #9e1017);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

/* Shine sweep */
.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 32%, rgba(255, 255, 255, 0.55) 50%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 0.75s ease;
  pointer-events: none;
}

.service-card:hover {
  animation: none;
  transform: translateY(-15px);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(var(--primary-rgb), 0.35);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  transform: translateX(130%);
}

.service-icon {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.85rem;
  margin-bottom: 24px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(-10deg) scale(1.12);
  box-shadow: 0 12px 24px rgba(var(--primary-rgb), 0.4);
}

/* Continuous gentle float on the icon when hovering the card */
.service-card:hover .service-icon i {
  animation: iconBob 1.2s ease-in-out infinite;
}

@keyframes iconBob {

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

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

.service-card h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card p {
  font-size: 0.98rem;
  margin-bottom: 24px;
}

.read-more {
  margin-top: auto;
  align-self: flex-start;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--primary-rgb), 0.1);
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 11px 22px;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease, gap 0.25s ease, box-shadow 0.3s ease;
}

.read-more i {
  transition: transform 0.25s ease;
}

.service-card:hover .read-more,
.read-more:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.35);
}

.service-card:hover .read-more i {
  transform: translateX(4px);
}

/* Fleet section accents */
.section-fleet {
  position: relative;
  overflow: hidden;
}

.section-fleet::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.16), transparent 70%);
  pointer-events: none;
}

.section-fleet::after {
  content: "";
  position: absolute;
  bottom: -160px;
  right: -130px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 115, 181, 0.14), transparent 70%);
  pointer-events: none;
}

.section-fleet .container {
  position: relative;
  z-index: 1;
}

/* Fleet Cards */
.fleet-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

/* Top gradient bar reveal */
.fleet-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #9e1017);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 3;
}

.fleet-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 56px rgba(0, 0, 0, 0.14);
  border-color: rgba(var(--primary-rgb), 0.35);
}

.fleet-card:hover::before {
  transform: scaleX(1);
}

.fleet-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #f4f6fa;
}

/* subtle dark gradient at the bottom for a premium finish */
.fleet-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

.fleet-card:hover .fleet-img::after {
  opacity: 1;
}

.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(-80px) scale(0.95);
  transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 1.2s ease;
  will-change: transform, opacity;
}

/* When the wrapper is revealed, the car drives in from the left and registers an elastic bounce */
.reveal.in-view .fleet-img img {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* On hover, the car drives forward slightly */
.fleet-card:hover .fleet-img img {
  transform: translateX(12px) scale(1.05);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.fleet-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 26px 28px;
}

.fleet-body h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.fleet-card:hover .fleet-body h3 {
  color: var(--primary);
}

.fleet-price {
  color: var(--primary);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.fleet-price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 0.82rem;
  color: #6b7280;
}

.fleet-specs span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(var(--primary-rgb), 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
}

.fleet-card:hover .fleet-specs span {
  background: rgba(var(--primary-rgb), 0.14);
}

.fleet-specs i {
  color: var(--primary);
}

/* Routes section accents */
.section-routes {
  position: relative;
  overflow: hidden;
}

.section-routes::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.16), transparent 70%);
  pointer-events: none;
}

.section-routes::after {
  content: "";
  position: absolute;
  bottom: -160px;
  right: -130px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 115, 181, 0.14), transparent 70%);
  pointer-events: none;
}

.section-routes .container {
  position: relative;
  z-index: 1;
}

/* Routes */
.routes-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: stretch;
}

.routes-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.route-card {
  position: relative;
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 24px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  cursor: pointer;
  outline: none;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

/* active/selected route */
.route-card.active {
  border-color: rgba(var(--primary-rgb), 0.55);
  box-shadow: 0 18px 38px rgba(var(--primary-rgb), 0.18);
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), var(--white));
}

.route-card.active::before {
  transform: scaleY(1);
}

.route-card.active .route-icon {
  background: linear-gradient(135deg, var(--primary), #9e1017);
  color: #fff;
  box-shadow: 0 8px 18px rgba(var(--primary-rgb), 0.4);
}

.route-card.active h4 {
  color: var(--primary);
}

.route-card.active .route-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--primary);
}

.route-card:focus-visible {
  border-color: rgba(var(--primary-rgb), 0.6);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.25);
}

/* left gradient bar reveal */
.route-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), #9e1017);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s ease;
}

.route-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
  border-color: rgba(var(--primary-rgb), 0.35);
}

.route-card:hover::before {
  transform: scaleY(1);
}

.route-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.route-card:hover .route-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(-8deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.4);
}

.route-info {
  flex: 1;
}

.route-card h4 {
  font-size: 1.08rem;
  margin-bottom: 3px;
  transition: color 0.3s ease;
}

.route-card:hover h4 {
  color: var(--primary);
}

.route-card p {
  font-size: 0.88rem;
  color: #8a8f98;
}

.route-arrow {
  font-size: 1.5rem;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.route-card:hover .route-arrow {
  opacity: 1;
  transform: translateX(0);
}

.routes-map {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  min-height: 480px;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.routes-map:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.2);
}

.routes-map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.routes-map iframe.is-swapping {
  opacity: 0;
  transform: scale(1.02);
}

/* animated loader shown while the route path is drawn */
.routes-map-loader {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.routes-map.is-loading .routes-map-loader {
  opacity: 1;
  visibility: visible;
}

.routes-map-loader span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid rgba(var(--primary-rgb), 0.25);
  border-top-color: var(--primary);
  animation: routeSpin 0.8s linear infinite;
}

@keyframes routeSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Dark Section Cards */
/* Experience (dark) section accents */
.section-experience {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #090a0f 0%, #12131a 50%, #1e190e 100%);
  border-top: 1px solid rgba(var(--primary-rgb), 0.08);
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
}

.experience-curve {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, transparent 60%, rgba(var(--primary-rgb), 0.03) 70%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.experience-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.experience-particles .particle {
  position: absolute;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.25) 0%, rgba(var(--primary-rgb), 0) 70%);
  border-radius: 50%;
  opacity: 0.25;
  animation: floatParticles 10s ease-in-out infinite;
}

.experience-particles .p-1 {
  width: 12px;
  height: 12px;
  top: 20%;
  left: 15%;
  animation-duration: 14s;
}

.experience-particles .p-2 {
  width: 8px;
  height: 8px;
  top: 60%;
  left: 85%;
  animation-duration: 11s;
  animation-delay: 2s;
}

.experience-particles .p-3 {
  width: 16px;
  height: 16px;
  top: 80%;
  left: 20%;
  animation-duration: 17s;
  animation-delay: 1s;
}

.experience-particles .p-4 {
  width: 10px;
  height: 10px;
  top: 30%;
  left: 75%;
  animation-duration: 12s;
  animation-delay: 3s;
}

@keyframes floatParticles {

  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.15;
  }

  50% {
    transform: translateY(-35px) translateX(20px);
    opacity: 0.35;
  }
}

.section-experience::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.section-experience::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 148, 0, 0.06) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.section-experience .container {
  position: relative;
  z-index: 1;
}

.experience-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.experience-left h2 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 16px 0 20px;
  background: linear-gradient(135deg, #ffffff 40%, #ffe082 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.experience-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.experience-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Timeline features (Right Side) */
.features-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 20px;
}

.features-timeline::before {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 58px;
  width: 1px;
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.25) 0%, rgba(var(--primary-rgb), 0.05) 100%);
}

.timeline-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}

.timeline-icon {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  backdrop-filter: blur(8px);
}

.timeline-content {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 24px 28px;
  flex: 1;
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-content h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Hover effects */
.timeline-item:hover .timeline-icon {
  background: linear-gradient(135deg, var(--primary) 0%, #b87333 100%);
  color: #000;
  border-color: var(--primary);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.25);
}

.timeline-item:hover .timeline-content {
  background: rgba(var(--primary-rgb), 0.03);
  border-color: rgba(var(--primary-rgb), 0.3);
  transform: translateX(6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.timeline-item:hover .timeline-content h3 {
  color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .experience-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .features-timeline::before {
    left: 48px;
  }
}

@media (max-width: 576px) {
  .experience-inner {
    gap: 30px;
  }

  .experience-left h2 {
    font-size: 1.8rem;
  }

  .experience-subtitle {
    margin-bottom: 24px;
  }

  .experience-stats {
    gap: 16px;
    padding-top: 20px;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .features-timeline {
    padding-left: 0;
    gap: 24px;
  }

  .features-timeline::before {
    display: none;
  }

  .timeline-item {
    flex-direction: column;
    gap: 12px;
  }

  .timeline-icon {
    width: 54px;
    height: 54px;
    font-size: 1.3rem;
    border-radius: 14px;
  }

  .timeline-content {
    padding: 20px 22px;
    border-radius: 16px;
    width: 100%;
  }

  .timeline-item:hover .timeline-content {
    transform: translateY(-4px);
  }

  .testimonial-pendant {
    flex: 0 0 calc(100vw - 40px);
    padding: 30px 24px;
  }
}

/* Testimonials section accents */
.section-testimonials {
  position: relative;
  overflow: hidden;
  background: #faf5ff;
  border-top: 1px solid #f3e8ff;
  border-bottom: 1px solid #e9d5ff;
}

.section-testimonials::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05), transparent 70%);
  pointer-events: none;
}

.section-testimonials::after {
  content: "";
  position: absolute;
  bottom: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.04), transparent 70%);
  pointer-events: none;
}

.section-testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 60px 0 30px;
  margin-bottom: 50px;
}

.testimonials-slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  padding: 0 clamp(20px, 5vw, 80px);
}

.testimonial-pendant {
  flex: 0 0 360px;
  position: relative;
  border-radius: 24px;
  padding: 44px 34px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  margin-top: 30px;
  transform-origin: top center;
  animation: swingPendant 6s ease-in-out infinite alternate;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s, box-shadow 0.5s, background-color 0.5s;
}

/* Staggered pendant swinging */
.testimonial-pendant:nth-child(even) {
  animation-name: swingPendantAlt;
  animation-duration: 7s;
}

/* Distinct curated background colors with highly readable text */
.testimonial-pendant:nth-child(3n+1) {
  background: #fffbf5;
  /* Soft Peach-Gold */
  border: 1px solid #ffe8cc;
}

.testimonial-pendant:nth-child(3n+1):hover {
  border-color: #ffd8a8;
  box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.08);
}

.testimonial-pendant:nth-child(3n+2) {
  background: #f4f8fd;
  /* Soft Light Blue */
  border: 1px solid #e1f0ff;
}

.testimonial-pendant:nth-child(3n+2):hover {
  border-color: #cbebff;
  box-shadow: 0 20px 40px rgba(0, 122, 255, 0.06);
}

.testimonial-pendant:nth-child(3n+3) {
  background: #f6fcf9;
  /* Soft Mint-Green */
  border: 1px solid #e2f9f0;
}

.testimonial-pendant:nth-child(3n+3):hover {
  border-color: #c3fae8;
  box-shadow: 0 20px 40px rgba(46, 204, 113, 0.06);
}

.testimonial-pendant:hover {
  transform: scale(1.03) rotate(0deg);
  animation-play-state: paused;
}

@keyframes swingPendant {
  0% {
    transform: rotate(-2.2deg);
  }

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

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

  100% {
    transform: rotate(-2.2deg);
  }
}

/* Suspended thin string */
.testimonial-pendant::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.12) 100%);
  transition: background 0.5s;
}

.testimonial-pendant:hover::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(var(--primary-rgb), 0.4) 100%);
}

/* Suspension hook */
.testimonial-pendant::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/* Testimonial slider navigation buttons */
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.t-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.t-nav-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.testimonial-pendant .quote-mark {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.2rem;
  color: rgba(var(--primary-rgb), 0.12);
  transition: color 0.35s ease, transform 0.35s ease;
}

.testimonial-pendant:hover .quote-mark {
  color: rgba(var(--primary-rgb), 0.28);
  transform: scale(1.1);
}

.testimonial-pendant .stars {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.testimonial-pendant .stars .fa-regular {
  color: rgba(0, 0, 0, 0.15);
}

.testimonial-pendant p {
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
  color: #2d3748;
  margin-bottom: 24px;
}

.testimonial-pendant footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-pendant .t-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #9e1017);
  box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.25);
}

.testimonial-pendant .t-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-pendant .t-meta strong {
  color: #1a202c;
  font-size: 0.95rem;
}

.testimonial-pendant .t-meta span {
  color: #718096;
  font-size: 0.8rem;
}

.testimonial footer strong {
  display: block;
  color: var(--dark);
}

.testimonial footer .t-meta span {
  font-size: 0.82rem;
  color: #8a8f98;
}

/* Share Your Experience Grid */
.share-experience-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: 40px 0;
}

.share-experience-left {
  text-align: left;
}

.share-experience-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin: 16px 0 20px;
}

.share-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 40px;
  max-width: 580px;
}

/* Vector/Interactive Illustration */
.illustration-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 380px;
  margin: 0 auto;
}

.illustration-phone {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 360px;
  background: #111;
  border: 8px solid #2d2d2d;
  border-radius: 36px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, #2a2c35 0%, #16181f 100%);
  padding: 30px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.traveler-avatar-large {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #9e1017 100%);
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  color: #000;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
  animation: avatarPulse 3s ease-in-out infinite alternate;
}

@keyframes avatarPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.2);
  }

  100% {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(var(--primary-rgb), 0.4);
  }
}

.phone-stars {
  display: flex;
  gap: 4px;
  color: var(--primary);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.phone-text {
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* Floating Elements around phone */
.floating-item {
  position: absolute;
  z-index: 3;
  animation: floatItem 5s ease-in-out infinite alternate;
  will-change: transform;
}

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

  100% {
    transform: translateY(-15px) rotate(3deg);
  }
}

.float-card-1 {
  top: 15%;
  left: 2%;
  background: #ffffff;
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  animation-delay: 0.5s;
  animation-duration: 6s;
}

.float-card-1 .f-stars {
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.float-card-1 .f-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
}

.float-bubble {
  top: 60%;
  left: -5%;
  background: var(--primary);
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
  animation-delay: 1.2s;
  animation-duration: 4.5s;
}

.float-camera {
  top: 10%;
  right: 5%;
  background: #ffffff;
  color: #718096;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  animation-delay: 0.2s;
  animation-duration: 5.5s;
}

.float-luggage {
  bottom: 12%;
  left: 15%;
  background: #ffffff;
  color: #a0aec0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border);
  animation-delay: 1.8s;
  animation-duration: 6.5s;
}

.float-taxi {
  bottom: 8%;
  right: 12%;
  background: linear-gradient(135deg, var(--primary) 0%, #9e1017 100%);
  color: #000;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.25);
  animation-delay: 0.9s;
  animation-duration: 5s;
}

.float-badge {
  top: 45%;
  right: -8%;
  background: #e6fcf5;
  color: #0ca678;
  border: 1px solid #c3fae8;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(12, 166, 120, 0.05);
  animation-delay: 1.5s;
  animation-duration: 5.8s;
}

/* Glassmorphism Review Form */
.review-form-wrap {
  position: relative;
  z-index: 1;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04), inset 0 0 15px rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.review-form-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(var(--primary-rgb), 0.08), inset 0 0 20px rgba(255, 255, 255, 0.8);
}

.review-form .form-group {
  text-align: left;
  margin-bottom: 20px;
}

.review-form .form-group label {
  font-weight: 600;
  font-size: 0.88rem;
  color: #2d3748;
  margin-bottom: 8px;
  display: inline-block;
}

.review-form .form-group input[type="text"] {
  width: 100%;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 0.95rem;
  color: #1a202c;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02);
}

.review-form .form-group input[type="text"]:focus {
  background: #ffffff;
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.15), inset 0 1px 3px rgba(0, 0, 0, 0.02);
}

/* Emoji Rating Cards */
.emoji-rating-group {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.emoji-card {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  border-radius: 16px;
  padding: 14px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.emoji-card .emoji {
  font-size: 1.8rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.emoji-card .emoji-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.emoji-card:hover {
  background: rgba(var(--primary-rgb), 0.03);
  border-color: rgba(var(--primary-rgb), 0.3);
  transform: translateY(-2px);
}

.emoji-card:hover .emoji {
  transform: scale(1.18);
}

.emoji-card.active {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.12);
}

.emoji-card.active .emoji {
  transform: scale(1.22) rotate(4deg);
}

.emoji-card.active .emoji-label {
  color: var(--primary);
}

/* Floating Label Textarea */
.floating-group {
  position: relative;
  margin-top: 26px !important;
}

.floating-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: 14px;
  padding: 22px 16px 8px;
  font-size: 0.95rem;
  color: #1a202c;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02);
  resize: vertical;
}

.floating-group textarea:focus {
  background: #ffffff;
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.15), inset 0 1px 3px rgba(0, 0, 0, 0.02);
}

.floating-group label {
  position: absolute;
  left: 16px;
  top: 15px;
  color: #718096;
  font-size: 0.9rem;
  font-weight: 500;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-group textarea:focus~label,
.floating-group textarea:not(:placeholder-shown)~label {
  top: 4px;
  left: 14px;
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 700;
}

.field-error {
  display: block;
  color: #e03e3e;
  font-size: 0.78rem;
  margin-top: 5px;
  min-height: 12px;
}

.review-form .form-group input.invalid,
.review-form .form-group textarea.invalid {
  border-color: #e03e3e;
}

.btn-review-submit {
  position: relative;
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--primary) 0%, #9e1017 100%) !important;
  color: #000 !important;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.25);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow: hidden;
}

.btn-review-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-review-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(var(--primary-rgb), 0.4);
}

.btn-review-submit:hover::before {
  transform: translateX(100%);
}

.btn-review-submit:active {
  transform: translateY(1px);
}

.btn-review-submit .btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #000;
  border-radius: 50%;
  margin-left: 10px;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}

.btn-review-submit.is-loading {
  opacity: 0.85;
  pointer-events: none;
}

.btn-review-submit.is-loading .btn-spinner {
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-feedback {
  margin-top: 18px;
  font-size: 0.92rem;
  font-weight: 500;
  min-height: 20px;
}

.form-feedback.is-success {
  color: #157a3f;
  background: rgba(21, 122, 63, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
}

.form-feedback.is-error {
  color: #c0392b;
  background: rgba(192, 57, 43, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
}

/* Responsive Experience Section */
@media (max-width: 991px) {
  .share-experience-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .share-experience-left {
    text-align: center;
  }

  .share-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .illustration-wrapper {
    height: 300px;
    transform: scale(0.85);
    transform-origin: center center;
  }

  .illustration-phone {
    width: 170px;
    height: 310px;
  }

  .float-badge {
    right: 0%;
  }
}

@media (max-width: 480px) {
  .illustration-wrapper {
    transform: scale(0.76);
    height: 270px;
  }

  .emoji-rating-group {
    gap: 6px;
  }

  .emoji-card {
    padding: 10px 4px;
    border-radius: 12px;
  }

  .emoji-card .emoji {
    font-size: 1.5rem;
  }

  .emoji-card .emoji-label {
    font-size: 0.6rem;
    letter-spacing: 0px;
  }
}

@media (max-width: 360px) {
  .illustration-wrapper {
    transform: scale(0.66);
    height: 230px;
  }

  .emoji-card .emoji-label {
    display: none;
  }

  .emoji-card {
    padding: 12px 6px;
  }
}

/* Contact Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-card>i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.contact-card a {
  display: block;
  color: var(--dark);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: var(--primary);
}

.contact-card p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* Left Side Animation */
.float-left-anim {
  position: fixed;
  left: 20px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.anim-car {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  animation: carBounce 2s ease-in-out infinite;
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
}

@keyframes carBounce {

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

  50% {
    transform: translateY(-10px) rotate(-5deg);
  }
}

.anim-road {
  display: flex;
  gap: 6px;
  overflow: hidden;
  width: 60px;
}

.anim-road span {
  display: block;
  width: 14px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  animation: roadMove 1.2s linear infinite;
}

.anim-road span:nth-child(2) {
  animation-delay: 0.2s;
}

.anim-road span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes roadMove {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(20px);
    opacity: 0;
  }
}

.anim-call {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.anim-call i {
  display: inline-block;
  transform-origin: center;
  animation: callShake 2s ease-in-out infinite;
}

@keyframes callShake {

  0%,
  45%,
  100% {
    transform: rotate(0);
  }

  5%,
  15%,
  25%,
  35% {
    transform: rotate(-18deg);
  }

  10%,
  20%,
  30% {
    transform: rotate(18deg);
  }
}

.anim-call:hover {
  background: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 8px 22px rgba(var(--primary-rgb), 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .anim-call i {
    animation: none;
  }
}

.anim-call .pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }

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

/* Right Bottom Ride Widget */
.ride-widget {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 1000;
}

.ride-widget-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  animation: widgetPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.ride-widget-toggle i {
  font-size: 1.3rem;
}

.ride-widget-toggle:hover {
  transform: scale(1.05);
}

@keyframes widgetPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.7);
  }
}

.ride-widget-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 440px;
  max-width: calc(100vw - 32px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.ride-widget-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.ride-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #25d366;
  color: #fff;
}

.ride-widget-header h4 {
  color: #fff;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ride-widget-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}

.ride-widget-form {
  padding: 26px 28px;
  max-height: min(66vh, 620px);
  overflow-y: auto;
}

.ride-widget-form .form-group {
  margin-bottom: 18px;
}

.ride-widget-form .form-row {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ride-widget-form .form-group label {
  font-size: 0.9rem;
  margin-bottom: 7px;
}

.ride-widget-form input,
.ride-widget-form select {
  padding: 13px 15px;
  font-size: 0.95rem;
}

.ride-widget-form .btn {
  padding: 14px 20px;
  font-size: 1rem;
}

/* Booking Card */
/* Contact section accents */
.section-contact {
  position: relative;
  overflow: hidden;
}

.section-contact::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.14), transparent 70%);
  pointer-events: none;
}

.section-contact::after {
  content: "";
  position: absolute;
  bottom: -160px;
  right: -120px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 115, 181, 0.12), transparent 70%);
  pointer-events: none;
}

.section-contact .container {
  position: relative;
  z-index: 1;
}

.booking-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.booking-contact {
  position: relative;
  background: linear-gradient(150deg, #1a1a1a, #2d2d2d);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 36px;
  overflow: hidden;
}

.booking-contact-inner {
  position: relative;
  z-index: 1;
}

.booking-contact h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 28px;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

/* staggered entrance when the panel reveals */
.reveal.booking-contact .contact-details li {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.5s ease var(--d, 0s), transform 0.5s ease var(--d, 0s), background 0.35s ease, border-color 0.35s ease;
}

.reveal.booking-contact.in-view .contact-details li {
  opacity: 1;
  transform: translateX(0);
}

.contact-details li:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(var(--primary-rgb), 0.4);
}

.contact-details li .cd-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--primary);
  font-size: 1.1rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-details li:hover .cd-icon {
  background: linear-gradient(135deg, var(--primary), #9e1017);
  border-color: transparent;
  color: #fff;
  transform: rotate(-8deg) scale(1.1);
  box-shadow: 0 8px 18px rgba(var(--primary-rgb), 0.4);
}

.contact-details strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-details span {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-details span a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-details span a:hover {
  color: var(--primary);
}

.booking-form-wrap {
  background: var(--light);
  padding: 48px 36px;
}

.booking-form-wrap h3 {
  font-size: 1.5rem;
  margin-bottom: 28px;
}

/* Forms */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #e03e3e;
  box-shadow: 0 0 0 3px rgba(224, 62, 62, 0.12);
}

.review-form .form-group label {
  text-align: left;
}

/* Input with leading icon + custom select styling */
.input-wrap {
  position: relative;
}

.input-wrap .input-ico {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 0.95rem;
  pointer-events: none;
  z-index: 1;
}

.input-wrap input,
.input-wrap select {
  padding-left: 40px;
}

.select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #8a8f98;
  border-bottom: 2px solid #8a8f98;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
  transition: border-color 0.2s ease;
}

.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 36px;
  cursor: pointer;
}

.select-wrap:hover::after {
  border-color: var(--primary);
}

/* nicer native date/time picker indicator */
.input-wrap input[type="date"],
.input-wrap input[type="time"] {
  cursor: pointer;
}

.input-wrap input[type="date"]::-webkit-calendar-picker-indicator,
.input-wrap input[type="time"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.7;
}

/* Flatpickr theme — matches site UI (orange accent) */
.flatpickr-calendar {
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
  font-family: inherit;
  overflow: hidden;
}

.flatpickr-months {
  background: linear-gradient(135deg, var(--primary), #9e1017);
  padding: 6px 0 10px;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month input.cur-year,
.flatpickr-current-month .flatpickr-monthDropdown-months {
  color: #fff;
  fill: #fff;
}

.flatpickr-monthDropdown-months {
  background: var(--primary);
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  fill: #fff;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #fff2d6;
}

.flatpickr-weekdays {
  background: transparent;
  margin-top: 6px;
}

span.flatpickr-weekday {
  color: var(--primary);
  font-weight: 600;
}

.flatpickr-day {
  border-radius: 10px;
  color: #3a3f47;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
  background: rgba(var(--primary-rgb), 0.12);
  border-color: transparent;
}

.flatpickr-day.today {
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}

.flatpickr-day.today:hover {
  background: var(--primary);
  color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
  background: linear-gradient(135deg, var(--primary), #9e1017);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 14px rgba(var(--primary-rgb), 0.4);
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: #c7ccd3;
}

.flatpickr-time input:hover,
.flatpickr-time input:focus {
  background: rgba(var(--primary-rgb), 0.08);
}

.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time .flatpickr-am-pm:focus {
  background: rgba(var(--primary-rgb), 0.08);
}

.flatpickr-calendar.arrowTop::before {
  border-bottom-color: var(--primary);
}

.flatpickr-calendar.arrowTop::after {
  border-bottom-color: var(--primary);
}

.flatpickr-calendar.arrowBottom::before,
.flatpickr-calendar.arrowBottom::after {
  border-top-color: #fff;
}

/* Footer */
.footer {
  position: relative;
  background: #090d16;
  /* Deepest luxurious dark blue-grey */
  color: #94a3b8;
  /* Cool slate text for premium readability */
  padding-top: 5px;
  overflow: hidden;
}

/* Luxury Top Accent Line */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, #ef4444 50%, #b91c1c 100%);
  z-index: 2;
}

/* Beautiful ambient backing glows */
.footer::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -50px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 26, 35, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.footer-glow-left {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 26, 35, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.footer .container {
  position: relative;
  z-index: 3;
}

.pwdby {
  color: #64748b;
  text-decoration: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 1.1fr 1.4fr;
  gap: 40px;
  padding-bottom: 5px;
  position: relative;
  z-index: 1;
}

/* Brand Column Premium Card */
.footer-card {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 10px 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: visible;
  box-shadow: none;
}

.footer-card::before {
  display: none !important;
}

.footer-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.footer-logo-card {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 8px 16px;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.footer-logo-card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(229, 26, 35, 0.25);
}

.footer-logo-card img {
  max-width: 170px;
  height: auto;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 24px;
}

/* Social icons with premium hover */
.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--primary), #9e1017);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 20px rgba(229, 26, 35, 0.35);
}

/* Footer Column Headers */
.footer h4 {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 26px;
  position: relative;
  padding-left: 14px;
}

.footer h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 14px;
  border-radius: 2px;
  background: var(--primary);
}

/* Premium Link List Hover */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-col ul a {
  color: #94a3b8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-col ul a::before {
  content: "→";
  color: var(--primary);
  font-size: 0.85rem;
  opacity: 0;
  width: 0;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-col ul a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.footer-col ul a:hover::before {
  opacity: 1;
  width: 14px;
  margin-right: 6px;
}

/* Contact Info Layout */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #94a3b8;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-contact li i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact li a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #060910;
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}

.footer-bottom-inner p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

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

.footer-bottom-links a {
  font-size: 0.82rem;
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

/* Showroom / Trusted Brands additions */
.footer-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 0 28px;
  padding-left: clamp(20px, 5vw, 80px);
  padding-right: clamp(20px, 5vw, 80px);
}

.footer-hero-left {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-hero .hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.6rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.footer-hero h2 {
  color: #fff;
  font-size: 1.6rem;
  margin: 0;
}

.footer-hero .muted {
  color: #9aa4b3;
  margin-top: 6px;
}

.footer-hero-right .btn-cta {
  /* make the Browse button slightly larger */
  padding: 12px 20px;
}

/* Ensure hero looks stunning and centered on mobile screens */
@media (max-width: 640px) {
  .footer-hero {
    flex-direction: column !important;
    text-align: center !important;
    gap: 18px !important;
    padding: 28px 16px 24px !important;
  }

  .footer-hero-left {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px !important;
  }

  .footer-hero h2 {
    font-size: 1.35rem !important;
    line-height: 1.3 !important;
  }

  .footer-hero .muted {
    font-size: 0.88rem !important;
    margin-top: 4px !important;
  }

  .footer-hero-right {
    margin-left: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .footer-hero-right .btn-cta {
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
  }
}

/* Mobile Responsive Styling for Footer Columns & Copyright Bar */
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    text-align: center !important;
  }

  .footer-brand-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .footer-logo-card {
    margin: 0 auto 16px !important;
  }

  .footer-brand {
    text-align: center !important;
    font-size: 0.85rem !important;
  }

  .social-links {
    justify-content: center !important;
  }

  .footer-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .footer-col h4 {
    text-align: center !important;
  }

  .footer-col ul,
  .footer-contact,
  .brands-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 !important;
  }

  .footer-contact li {
    justify-content: center !important;
    text-align: center !important;
  }

  .footer-bottom-inner {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
    align-items: center !important;
  }

  .footer-bottom-links {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
  }
}

.footer-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.9), transparent);
  margin: 8px 0 28px;
  border-radius: 2px;
}

.brands-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.brands-list li {
  margin-bottom: 14px;
}

.brands-list a {
  color: #94a3b8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brands-list a::before {
  content: "→";
  color: var(--primary);
  font-size: 0.85rem;
  opacity: 0;
  width: 0;
  display: inline-block;
  transition: all 0.3s ease;
}

.brands-list a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.brands-list a:hover::before {
  opacity: 1;
  width: 14px;
  margin-right: 6px;
}

.brand-logo {
  max-height: 28px;
  width: auto;
  display: block;
  filter: grayscale(100%);
  opacity: 0.95;
}

/* subtle fade-in animation for footer cards */
.footer-card {
  opacity: 0;
  transform: translateY(8px);
  animation: footerFade 0.7s ease forwards;
}

.footer-card:nth-child(1) {
  animation-delay: 0.05s;
}

.footer-card:nth-child(2) {
  animation-delay: 0.12s;
}

.footer-card:nth-child(3) {
  animation-delay: 0.18s;
}

.footer-card:nth-child(4) {
  animation-delay: 0.22s;
}

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

/* Responsive */
/* Tablet & below: single-column layouts + collapsed navigation */
@media (max-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .about-inner,
  .routes-inner,
  .booking-card {
    grid-template-columns: 1fr;
  }

  .hero-pad {
    display: flex !important;
    align-items: center;
    justify-content: center !important;
    text-align: center;
    min-height: calc(100vh - 86px) !important;
    padding: 80px 24px !important;
  }

  .hero-content {
    max-width: 100% !important;
  }

  .hero-art {
    position: absolute !important;
    max-width: 100% !important;
    margin: 0 !important;
    height: 100% !important;
    width: 100% !important;
    top: 0;
    left: 0;
  }

  .hero-art::after {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.75) 60%, rgba(15, 23, 42, 0.9) 100%);
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-nav {
    display: none;
  }

  .about-inner {
    gap: 40px;
  }

  .about-img-frame {
    max-width: 560px;
    margin: 0 auto;
  }

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

  /* Collapsed mobile navigation */
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 10px clamp(20px, 5vw, 40px) 22px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border);
    display: none;
    margin: 0;
    z-index: 99;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 2px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1rem;
  }

  .nav a::after {
    display: none;
  }

  .nav-desktop-actions {
    display: none;
  }

  .nav-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    margin-top: 12px;
    border-top: 1px solid var(--border);
  }

  .nav-mobile-actions .btn-nav-phone,
  .nav-mobile-actions .btn-nav-primary {
    justify-content: center;
    width: 100%;
    padding: 13px 16px;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .float-left-anim {
    left: 12px;
    bottom: 16px;
  }

  .ride-widget {
    right: 12px;
    bottom: 16px;
  }

  .ride-widget-panel {
    width: calc(100vw - 24px);
    right: 0;
    max-width: 440px;
  }

  .ride-widget-form {
    padding: 20px;
  }

  .ride-widget-toggle span {
    display: none;
  }

  .ride-widget-toggle {
    padding: 14px 16px;
    border-radius: 50%;
  }

  .nav-inner {
    height: 74px;
  }

  .hero-art img {
    height: clamp(220px, 60vw, 340px);
  }

  .section {
    padding: 64px 0;
  }

  .section-head h2 {
    font-size: 1.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Large phones - Hero Slider & Search Widget Adjustments */
@media (max-width: 600px) {

  .hero-slider,
  .hero-slide {
    min-height: 380px !important;
    max-height: 480px !important;
  }

  .hero-pad {
    min-height: 380px !important;
    max-height: 480px !important;
    padding: 30px 16px 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .hero-art img {
    object-position: center bottom !important;
  }

  .hero-art::after {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.85) 100%) !important;
  }

  .hero h1 {
    font-size: 1.45rem !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
    font-weight: 800 !important;
  }

  .hero p {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
    margin-bottom: 16px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 92% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-actions {
    width: 100% !important;
    justify-content: center !important;
    gap: 10px !important;
  }

  .hero-actions .btn {
    flex: 0 1 auto !important;
    padding: 10px 22px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    width: auto !important;
    max-width: 240px !important;
  }

  /* Search Widget Mobile Full-Width Clean Aligned Filter Pills */
  .search-widget-card {
    padding: 16px 14px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  .search-widget-row {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .search-pill-bar {
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 12px !important;
  }

  .quick-filters-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .filter-dropdown-btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px 14px !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .filter-ico {
    font-size: 0.9rem !important;
    flex-shrink: 0 !important;
  }

  .filter-select {
    width: 100% !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
  }

  .select-arrow {
    right: 12px !important;
    font-size: 0.75rem !important;
  }

  .filter-btn-all {
    width: 100% !important;
    justify-content: center !important;
    padding: 11px 16px !important;
    font-size: 0.9rem !important;
    border-radius: 12px !important;
    margin-top: 2px !important;
    box-sizing: border-box !important;
  }

  .about-content h2 {
    font-size: 1.7rem;
  }

  .about-features li {
    gap: 12px;
    padding: 10px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 520px) {

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .hero-actions .btn {
    flex: 1 1 100%;
  }
}

/* Welcome Popup (Luxury Dark Modal) */
body.modal-open {
  overflow: hidden;
  height: 100vh;
}

.welcome-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
}

.welcome-popup.open {
  opacity: 1;
  visibility: visible;
}

.welcome-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 140vh;
}

.luxury-dark-modal {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 40px auto;
  background: linear-gradient(135deg, #090a0f 0%, #15161f 50%, #1a150e 100%);
  border-radius: 28px;
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  color: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(var(--primary-rgb), 0.08);
  transform: scale(0.92) translateY(30px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  z-index: 10;
}

.welcome-popup.open .luxury-dark-modal {
  transform: scale(1) translateY(0);
}

/* Glass Close Button */
.welcome-popup-close-glass {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.welcome-popup-close-glass:hover {
  background: rgba(230, 70, 70, 0.8);
  border-color: transparent;
  transform: rotate(90deg) scale(1.05);
}

/* Modal Hero Header with Map & Illustration */
.welcome-modal-hero {
  position: relative;
  height: 180px;
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.08) 0%, transparent 100%);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.welcome-map-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(var(--primary-rgb), 0.04) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.8;
}

.welcome-pins {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.welcome-pin {
  position: absolute;
  font-size: 1.3rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.pickup-pulse {
  top: 30%;
  left: 20%;
  color: #3182ce;
  animation: pinPulseBlue 2.5s infinite;
}

.drop-pulse {
  top: 45%;
  right: 25%;
  color: #e53e3e;
  animation: pinPulseRed 2.5s infinite;
}

@keyframes pinPulseBlue {

  0%,
  100% {
    transform: translateY(0);
    filter: drop-shadow(0 4px 8px rgba(49, 130, 206, 0.4));
  }

  50% {
    transform: translateY(-8px);
    filter: drop-shadow(0 12px 16px rgba(49, 130, 206, 0.2));
  }
}

@keyframes pinPulseRed {

  0%,
  100% {
    transform: translateY(0);
    filter: drop-shadow(0 4px 8px rgba(229, 62, 62, 0.4));
  }

  50% {
    transform: translateY(-8px);
    filter: drop-shadow(0 12px 16px rgba(229, 62, 62, 0.2));
  }
}

.welcome-taxi-art {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4.8rem;
  color: var(--primary);
  filter: drop-shadow(0 12px 24px rgba(var(--primary-rgb), 0.3));
}

.animate-taxi-drift {
  display: inline-block;
  animation: taxiDrift 4s ease-in-out infinite;
}

@keyframes taxiDrift {

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

  50% {
    transform: translateY(-5px) rotate(2deg);
  }
}

/* Modal Body Content */
.welcome-modal-content {
  padding: 30px;
}

.welcome-modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.welcome-modal-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.welcome-modal-subtitle {
  font-size: 0.92rem;
  color: #a0aec0;
  line-height: 1.5;
  max-width: 440px;
  margin: 0 auto;
}

/* Feature Cards Stack */
.welcome-feature-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.welcome-card-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 12px 16px;
  transition: all 0.3s;
}

.welcome-card-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
}

.card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.card-orange .card-icon-wrap {
  background: rgba(var(--primary-rgb), 0.15);
  color: var(--primary);
}

.card-green .card-icon-wrap {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.card-blue .card-icon-wrap {
  background: rgba(49, 130, 206, 0.15);
  color: #3182ce;
}

.card-text-wrap {
  text-align: left;
}

.card-text-wrap h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.card-text-wrap p {
  font-size: 0.8rem;
  color: #a0aec0;
}

/* Trust Badges Grid */
.welcome-trust-badges-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
  padding: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.06);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.trust-badge-item {
  font-size: 0.78rem;
  font-weight: 700;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.trust-badge-item i {
  color: var(--primary);
}

/* CTA Buttons */
.welcome-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.welcome-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.welcome-cta-btn:hover {
  transform: translateY(-2px);
}

.btn-wa-gradient {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

.btn-wa-gradient:hover {
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.btn-phone-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #9e1017 100%);
  color: #000;
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.25);
}

.btn-phone-gradient:hover {
  box-shadow: 0 12px 30px rgba(var(--primary-rgb), 0.45);
}

/* Toggle Switch & Footer */
.welcome-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.modern-toggle-control {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.modern-toggle-control input {
  display: none;
}

.toggle-slider {
  width: 40px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  position: relative;
  transition: background 0.3s;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

.modern-toggle-control input:checked+.toggle-slider {
  background: var(--primary);
}

.modern-toggle-control input:checked+.toggle-slider::before {
  transform: translateX(20px);
}

.toggle-txt {
  font-size: 0.8rem;
  color: #a0aec0;
  font-weight: 600;
}

.welcome-maybe-later {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}

.welcome-maybe-later:hover {
  color: #ffffff;
}

/* Remove icons in footer-bottom so links look plain text (user requested) */
.footer-bottom-links a i {
  display: none;
}

.footer-bottom-links a {
  padding-left: 0;
}

@media (max-width: 576px) {
  .welcome-popup {
    align-items: flex-start;
    padding: 10px;
  }

  .luxury-dark-modal {
    border-radius: 22px;
    margin: 15px auto;
  }

  .welcome-modal-hero {
    height: 120px;
  }

  .welcome-taxi-art {
    font-size: 3.4rem;
    bottom: 5px;
  }

  .welcome-pin {
    font-size: 1.1rem;
  }

  .welcome-modal-content {
    padding: 18px;
  }

  .welcome-modal-header {
    margin-bottom: 16px;
  }

  .welcome-modal-header h2 {
    font-size: 1.35rem;
  }

  .welcome-modal-subtitle {
    font-size: 0.82rem;
  }

  .welcome-feature-cards {
    gap: 8px;
    margin-bottom: 16px;
  }

  .welcome-card-item {
    padding: 10px 12px;
    gap: 10px;
  }

  .card-icon-wrap {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .card-text-wrap h4 {
    font-size: 0.82rem;
  }

  .card-text-wrap p {
    font-size: 0.72rem;
  }

  .welcome-trust-badges-grid {
    gap: 10px;
    margin-bottom: 16px;
    padding: 8px;
  }

  .trust-badge-item {
    font-size: 0.7rem;
  }

  .welcome-cta-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 16px;
  }

  .welcome-cta-btn {
    padding: 12px;
    font-size: 0.88rem;
  }

  .welcome-modal-footer {
    padding-top: 12px;
  }

  .toggle-txt {
    font-size: 0.72rem;
  }

  .welcome-maybe-later {
    font-size: 0.75rem;
  }
}

/* Landscape mode or very short viewports */
@media (max-height: 640px) {
  .welcome-popup {
    align-items: flex-start;
  }

  .luxury-dark-modal {
    margin: 10px auto;
  }

  .welcome-modal-hero {
    height: 90px;
  }

  .welcome-taxi-art {
    font-size: 2.8rem;
    bottom: 2px;
  }

  .welcome-pins {
    display: none;
  }
}

/* ==========================================================================
   Cinematic Premium Highway Animation Divider
   ========================================================================== */
.highway-divider {
  position: relative;
  width: 100%;
  height: 240px;
  background: linear-gradient(to bottom, #02040a 0%, #080c18 100%);
  overflow: hidden;
  border-bottom: 5px solid var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Top Mesh Blending Layer (tesla/audi luxury feel) */
.divider-mesh-blend {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, var(--bg-dark) 0%, rgba(2, 4, 10, 0.3) 60%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

.divider-mesh-blend::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30%;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
  filter: blur(10px);
}

.divider-sky-night {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Twinkling Stars */
.stars-twinkle {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, #ffffff, transparent),
    radial-gradient(1px 1px at 25% 35%, #ffffff, transparent),
    radial-gradient(1.5px 1.5px at 45% 20%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1px 1px at 60% 40%, #ffffff, transparent),
    radial-gradient(1.5px 1.5px at 75% 15%, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1px 1px at 85% 30%, #ffffff, transparent);
  background-size: 550px 240px;
  opacity: 0.7;
  animation: starsGlow 2.5s infinite ease-in-out alternate;
}

@keyframes starsGlow {
  0% {
    opacity: 0.3;
    filter: brightness(0.5) drop-shadow(0 0 1px #fff);
  }

  50% {
    opacity: 0.95;
    filter: brightness(1.5) drop-shadow(0 0 3px #fff);
  }

  100% {
    opacity: 0.4;
    filter: brightness(0.7) drop-shadow(0 0 1px #fff);
  }
}

/* Luxury Moon */
.luxury-moon {
  position: absolute;
  top: 30px;
  right: 12%;
  width: 32px;
  height: 32px;
  background: radial-gradient(circle, #fef08a 0%, #fde047 60%, rgba(253, 224, 71, 0) 100%);
  border-radius: 50%;
  box-shadow: 0 0 35px rgba(253, 224, 71, 0.35);
  opacity: 0.85;
}

/* Floating Clouds */
.cloud-layer {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  filter: blur(8px);
}

.cloud-layer.layer-1 {
  width: 300px;
  height: 100px;
  top: 15px;
  left: -200px;
  animation: floatCloud 55s linear infinite;
}

.cloud-layer.layer-2 {
  width: 400px;
  height: 120px;
  top: 30px;
  left: -300px;
  animation: floatCloud 80s linear infinite;
  animation-delay: -30s;
}

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

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

/* Distant Mountains */
.mountain-layer {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  height: 80px;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0 120 L180 35 L350 90 L580 10 L820 95 L1020 25 L1140 80 L1200 120 Z' fill='%23f59e0b'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* Skyline Layers & Dynamic Windows Glow */
.skyline-layer {
  position: absolute;
  bottom: 56px;
  width: 200%;
  height: 90px;
  background-repeat: repeat-x;
}

.skyline-distant {
  opacity: 0.06;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Crect x='0' y='60' width='8' height='40' fill='%23f59e0b'/%3E%3Crect x='10' y='40' width='12' height='60' fill='%23f59e0b'/%3E%3Crect x='25' y='50' width='6' height='50' fill='%23f59e0b'/%3E%3Crect x='35' y='30' width='10' height='70' fill='%23f59e0b'/%3E%3Crect x='50' y='65' width='12' height='35' fill='%23f59e0b'/%3E%3Crect x='65' y='45' width='8' height='55' fill='%23f59e0b'/%3E%3Crect x='76' y='25' width='8' height='75' fill='%23f59e0b'/%3E%3Crect x='88' y='55' width='10' height='45' fill='%23f59e0b'/%3E%3C/svg%3E");
  background-size: 200px 90px;
  animation: none;
}

.skyline-near {
  opacity: 0.12;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Crect x='0' y='70' width='10' height='30' fill='%23f59e0b'/%3E%3Crect x='12' y='55' width='14' height='45' fill='%23f59e0b'/%3E%3Crect x='30' y='65' width='8' height='35' fill='%23f59e0b'/%3E%3Crect x='42' y='40' width='12' height='60' fill='%23f59e0b'/%3E%3Crect x='58' y='75' width='10' height='25' fill='%23f59e0b'/%3E%3Crect x='70' y='50' width='12' height='50' fill='%23f59e0b'/%3E%3Crect x='85' y='60' width='10' height='40' fill='%23f59e0b'/%3E%3C/svg%3E");
  background-size: 320px 90px;
  animation: none;
}

/* Ground Fog */
.ground-fog {
  position: absolute;
  bottom: 45px;
  left: 0;
  width: 100%;
  height: 25px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
  filter: blur(2px);
  z-index: 3;
  pointer-events: none;
}

/* Highway Road Perspective */
.highway-road-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #090e18;
  overflow: hidden;
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.6);
}

.highway-road {
  width: 200%;
  height: 100%;
  background: #111724;
  position: absolute;
  left: 0;
  top: 0;
  border-top: 3px solid rgba(var(--primary-rgb), 0.25);
  display: flex;
  align-items: center;
}

.lane-markings {
  width: 100%;
  height: 4px;
  background-image: linear-gradient(to right, #d97706 0%, #d97706 50%, transparent 50%, transparent 100%);
  background-size: 100px 4px;
  animation: none;
}

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

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

/* Dynamic Streetlights Passing Effect */
.streetlights-container {
  position: absolute;
  bottom: 48px;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
  z-index: 4;
}

.streetlight {
  position: relative;
  width: 4px;
  height: 80px;
  background: linear-gradient(to top, #1e293b, #334155);
}

.streetlight::before {
  content: "";
  position: absolute;
  top: 0;
  right: -8px;
  width: 12px;
  height: 6px;
  background: #0f172a;
  border-radius: 4px 4px 0 0;
  transform: rotate(-15deg);
}

.light-beam {
  position: absolute;
  top: 4px;
  right: -68px;
  width: 150px;
  height: 170px;
  background: linear-gradient(to bottom, rgba(254, 240, 138, 0.75) 0%, rgba(253, 224, 71, 0) 90%);
  clip-path: polygon(42% 0%, 58% 0%, 100% 100%, 0% 100%);
  transform-origin: top center;
  opacity: 0.85;
  filter: blur(4px);
}

/* Disable Car Lights (Headlights, headlight beams, and taillights) */
.car-unit .headlight-reflection,
.suv-vehicle .headlight-reflection,
.led-headlight-glow,
.tail-light-glow {
  display: none !important;
}

/* Multiple Distinct Cars Running Across Highway */
.car-unit,
.suv-vehicle {
  position: absolute;
  left: -240px;
  z-index: 10;
  pointer-events: auto;
  cursor: pointer;
}

@keyframes driveCarRight {
  0% {
    left: -240px;
  }

  100% {
    left: calc(100% + 240px);
  }
}

@keyframes driveSUV {
  0% {
    left: -240px;
  }

  100% {
    left: calc(100% + 240px);
  }
}

/* Lane 1 (Front Lane - closer to camera, crisp & prominent) */
.car-lane-front {
  bottom: 8px;
  z-index: 10;
  transform: scale(1);
}

/* Lane 2 (Rear Lane - slightly farther back on the road, slightly smaller & darker) */
.car-lane-back {
  bottom: 18px;
  z-index: 8;
  transform: scale(0.86);
  filter: brightness(0.92);
}

/* Individual Car Dimensions */
.car-sedan {
  width: 155px;
  height: 52px;
}

.car-ertiga {
  width: 165px;
  height: 54px;
}

.car-innova {
  width: 172px;
  height: 56px;
}

.car-vip {
  width: 152px;
  height: 50px;
}

/* Asphalt Headlight Reflection (moves with car) */
.car-unit .headlight-reflection,
.suv-vehicle .headlight-reflection {
  position: absolute;
  top: 40px;
  right: -230px;
  width: 230px;
  height: 25px;
  background: radial-gradient(ellipse at center, rgba(254, 240, 138, 0.42) 0%, rgba(254, 240, 138, 0) 80%);
  transform: skewX(-20deg);
  pointer-events: none;
  filter: blur(4px);
  z-index: 9;
}

.car-shadow,
.suv-shadow {
  position: absolute;
  bottom: -4px;
  left: 10px;
  width: calc(100% - 20px);
  height: 10px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  filter: blur(3px);
  z-index: 1;
}

.car-body,
.suv-body {
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: calc(100% - 14px);
  background: none;
  border-radius: 0;
  box-shadow: none;
  z-index: 2;
  animation: bounceSuspension 0.25s linear infinite alternate;
}

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

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

.sedan-svg,
.ertiga-svg,
.innova-svg,
.vip-svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.6)) drop-shadow(0 4px 6px rgba(var(--primary-rgb), 0.35));
}

/* Roof signs */
.car-sign,
.suv-sign {
  position: absolute;
  top: -4px;
  left: 62px;
  background: #f59e0b;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 5px;
  padding: 1px 4px;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(var(--primary-rgb), 0.6);
  border: 1px solid #d97706;
  text-align: center;
  letter-spacing: 0.5px;
  z-index: 5;
}

.car-ertiga .suv-sign {
  left: 66px;
}

.car-innova .suv-sign {
  left: 70px;
}

.car-vip .suv-sign {
  left: 60px;
}

/* LED Headlights Projection Cone */
.led-headlight-glow {
  position: absolute;
  top: 24px;
  right: -5px;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-right: 220px solid rgba(254, 243, 199, 0.38);
  transform: rotate(180deg);
  transform-origin: right center;
  pointer-events: none;
  filter: blur(2px);
}

.car-ertiga .led-headlight-glow {
  top: 25px;
}

.car-innova .led-headlight-glow {
  top: 26px;
}

.tail-light-glow {
  position: absolute;
  top: 22px;
  left: -2px;
  width: 4px;
  height: 8px;
  background: #ef4444;
  box-shadow: -4px 0 10px rgba(239, 68, 68, 0.8);
  border-radius: 2px;
}

.car-ertiga .tail-light-glow {
  top: 24px;
  height: 10px;
}

.car-innova .tail-light-glow {
  top: 25px;
  height: 11px;
}

/* Alloy Wheels & Spokes */
.car-wheels,
.suv-wheels {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  box-sizing: border-box;
  z-index: 3;
}

.car-ertiga .suv-wheels {
  padding: 0 26px;
}

.car-innova .suv-wheels {
  padding: 0 28px;
}

.car-vip .suv-wheels {
  padding: 0 22px;
}

.wheel {
  width: 22px;
  height: 22px;
  background: #0f172a;
  border: 2px solid #475569;
  border-radius: 50%;
  position: relative;
  animation: rotateWheel 0.45s linear infinite;
}

.alloy-rim {
  position: absolute;
  inset: 2px;
  border: 1px solid #94a3b8;
  border-radius: 50%;
}

.wheel .spoke {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #e2e8f0;
  transform-origin: center;
}

.wheel .spoke:nth-child(1) {
  transform: translateY(-50%) rotate(0deg);
}

.wheel .spoke:nth-child(2) {
  transform: translateY(-50%) rotate(30deg);
}

.wheel .spoke:nth-child(3) {
  transform: translateY(-50%) rotate(60deg);
}

.wheel .spoke:nth-child(4) {
  transform: translateY(-50%) rotate(90deg);
}

.wheel .spoke:nth-child(5) {
  transform: translateY(-50%) rotate(120deg);
}

.wheel .spoke:nth-child(6) {
  transform: translateY(-50%) rotate(150deg);
}

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

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

/* Dust Trail */
.dust-trail {
  position: absolute;
  bottom: -4px;
  left: 12px;
  width: 35px;
  height: 8px;
  pointer-events: none;
}

.dust-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: puff 0.45s ease-out infinite;
}

.dust-particle.p1 {
  width: 6px;
  height: 6px;
  bottom: 0;
  left: 0;
  animation-delay: 0s;
}

.dust-particle.p2 {
  width: 8px;
  height: 8px;
  bottom: 1px;
  left: -10px;
  animation-delay: 0.12s;
}

.dust-particle.p3 {
  width: 5px;
  height: 5px;
  bottom: 0;
  left: -5px;
  animation-delay: 0.24s;
}

.dust-particle.p4 {
  width: 4px;
  height: 4px;
  bottom: 1px;
  left: -14px;
  animation-delay: 0.36s;
}

@keyframes puff {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(2.2) translate(-14px, -3px);
    opacity: 0;
  }
}

/* Responsiveness */
@media (max-width: 768px) {
  .highway-divider {
    height: 180px;
  }

  .mountain-layer {
    bottom: 45px;
    height: 55px;
  }

  .skyline-layer {
    bottom: 42px;
    height: 60px;
  }

  .streetlight {
    height: 60px;
  }

  .light-beam {
    height: 100px;
    width: 32px;
    right: -16px;
  }

  .highway-road-container {
    height: 48px;
  }

  .car-unit,
  .suv-vehicle {
    width: 120px;
    height: 42px;
  }

  .car-lane-front {
    bottom: 6px;
    transform: scale(0.95);
  }

  .car-lane-back {
    bottom: 14px;
    transform: scale(0.8);
  }

  .car-sedan {
    width: 120px;
    height: 40px;
  }

  .car-ertiga {
    width: 128px;
    height: 42px;
  }

  .car-innova {
    width: 134px;
    height: 44px;
  }

  .car-vip {
    width: 118px;
    height: 38px;
  }

  .car-body,
  .suv-body {
    position: absolute;
    bottom: 5px;
    height: 28px;
  }

  .car-sign,
  .suv-sign {
    top: -3px;
    left: 48px;
    font-size: 4px;
  }

  .car-sedan .suv-sign {
    left: 46px;
  }

  .car-ertiga .suv-sign {
    left: 50px;
  }

  .car-innova .suv-sign {
    left: 54px;
  }

  .car-vip .suv-sign {
    left: 44px;
  }

  .led-headlight-glow {
    top: 17px;
    border-right-width: 60px;
  }

  .car-ertiga .led-headlight-glow,
  .car-innova .led-headlight-glow {
    top: 18px;
  }

  .wheel {
    width: 16px;
    height: 16px;
  }

  .car-wheels,
  .suv-wheels {
    padding: 0 18px;
    bottom: 0px;
  }

  .car-ertiga .suv-wheels {
    padding: 0 20px;
  }

  .car-innova .suv-wheels {
    padding: 0 22px;
  }

  .car-vip .suv-wheels {
    padding: 0 17px;
  }
}



.journey-highway-section {
  position: relative;
  background: radial-gradient(circle at 50% 10%, #0c111e 0%, #03050a 100%);
  padding: 100px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.journey-bg-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.04) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.highway-journey-board {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 60px auto 0 auto;
  height: 1650px;
  z-index: 2;
}

.journey-highway-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.road-dashed-line {
  stroke-dasharray: 12, 16;
  animation: journeyRoadFlow 1.2s linear infinite;
}

@keyframes journeyRoadFlow {
  to {
    stroke-dashoffset: -28;
  }
}

.journey-taxi {
  position: absolute;
  width: 60px;
  height: 25px;
  z-index: 10;
  /* Align exactly to the center of the path point */
  transform: translate(-30px, -12px);
  offset-path: path("M 400 0 C 400 80, 340 120, 320 200 C 300 280, 460 370, 480 450 C 500 530, 340 620, 320 700 C 300 780, 460 870, 480 950 C 500 1030, 340 1120, 320 1200 C 300 1280, 460 1370, 480 1450 C 500 1520, 400 1560, 400 1600");
  offset-distance: var(--car-offset, 0%);
  offset-rotate: auto;
  transition: offset-distance 0.3s cubic-bezier(0.1, 0.8, 0.2, 1);
  pointer-events: none;
}

.taxi-vehicle-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.milestones-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.milestone-node {
  position: absolute;
  width: 290px;
  pointer-events: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.milestone-left {
  left: 0;
}

.milestone-right {
  right: 0;
}

/* Marker Dot matching the curve position */
.milestone-dot {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  background: #090d16;
  border: 3px solid #3b4252;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 4;
  transition: all 0.4s ease;
}

.milestone-left .milestone-dot {
  right: -38px;
}

.milestone-right .milestone-dot {
  left: -38px;
}

.milestone-dot .dot-inner {
  width: 4px;
  height: 4px;
  background: transparent;
  border-radius: 50%;
  margin: 3px auto 0 auto;
  transition: all 0.4s ease;
}

/* Glassmorphism Cards */
.milestone-card {
  position: relative;
  background: rgba(14, 20, 32, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-glow-border {
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.4), transparent 40%);
  pointer-events: none;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.milestone-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.milestone-icon i {
  font-size: 18px;
  color: var(--primary);
  transition: all 0.4s ease;
}

.milestone-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: #ffffff;
}

.milestone-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 14px 0;
}

.milestone-content .btn {
  padding: 6px 12px;
  font-size: 12px;
}

/* Active State (Triggered when the Innova gets close) */
.milestone-node.active {
  transform: scale(1.02);
}

.milestone-node.active .milestone-card {
  border-color: rgba(var(--primary-rgb), 0.35);
  box-shadow: 0 15px 35px rgba(var(--primary-rgb), 0.18);
  background: rgba(20, 27, 43, 0.85);
}

.milestone-node.active .card-glow-border {
  opacity: 1;
}

.milestone-node.active .milestone-dot {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 0 12px rgba(var(--primary-rgb), 0.6);
}

.milestone-node.active .milestone-dot .dot-inner {
  background: #ffffff;
}

.milestone-node.active .milestone-icon {
  background: var(--primary);
  border-color: var(--primary);
}

.milestone-node.active .milestone-icon i {
  color: #000000;
  transform: rotate(6deg) scale(1.1);
}

/* Responsive Scaling for Winding Highway */
@media (max-width: 768px) {
  .highway-journey-board {
    height: auto;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .journey-highway-svg,
  .journey-taxi {
    display: none;
  }

  .milestones-container {
    position: relative;
    inset: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .milestone-node {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
  }

  .milestone-dot {
    display: none;
  }

  .milestone-card {
    width: 100%;
  }
}

/* ==========================================================================
   Luxury Contact Details Cards Redesign
   ========================================================================== */
.luxury-contact-card {
  position: relative;
  background: linear-gradient(135deg, #090d16 0%, #030509 100%) !important;
  border: 1px solid rgba(var(--primary-rgb), 0.15) !important;
  border-radius: 24px !important;
  padding: 40px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
  overflow: hidden;
}

.luxury-card-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 75%);
  pointer-events: none;
  filter: blur(20px);
}

.contact-header {
  margin-bottom: 30px;
}

.contact-header h3 {
  font-size: 26px !important;
  font-weight: 800 !important;
  background: linear-gradient(90deg, #ffffff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px !important;
}

.contact-header .subtitle {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.elegant-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

.elegant-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.elegant-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(var(--primary-rgb), 0.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.elegant-card .card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.card-call .card-icon {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.card-whatsapp .card-icon {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.card-address .card-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.card-email .card-icon {
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
}

.elegant-card .card-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
}

.elegant-card .card-info p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0 0 10px 0;
  word-break: break-word;
}

.elegant-card .card-action {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.elegant-card:hover .card-action {
  gap: 10px;
}

/* Trust Badges */
.luxury-trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 30px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-emoji {
  font-size: 18px;
}

.badge-txt {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

.badge-txt strong {
  color: #ffffff;
}

/* Premium WhatsApp CTA Button */
.premium-whatsapp-cta {
  display: block;
  text-decoration: none;
  background: linear-gradient(90deg, #128c7e 0%, #25d366 100%);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
  transition: all 0.3s ease;
}

.premium-whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
  filter: brightness(1.05);
}

.premium-whatsapp-cta .cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
}

.premium-whatsapp-cta .cta-inner i {
  font-size: 20px;
}

.premium-whatsapp-cta .cta-arrow {
  transition: transform 0.2s ease;
}

.premium-whatsapp-cta:hover .cta-arrow {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .elegant-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .luxury-contact-card {
    padding: 24px !important;
  }

  .luxury-trust-badges {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.btn-gold {
  border: 1px solid #f0a80a;
  color: #f0a80a;
}

/* Interactive Car Honk Indicator */
.honk-bubble {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #e51a23;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(251, 191, 36, 0.5), 0 0 0 2px #000000;
  pointer-events: none;
  z-index: 999;
  animation: honkPop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  white-space: nowrap;
}

@keyframes honkPop {
  0% {
    opacity: 0;
    transform: translate(-50%, 10px) scale(0.6);
  }

  20% {
    opacity: 1;
    transform: translate(-50%, -10px) scale(1.1);
  }

  80% {
    opacity: 1;
    transform: translate(-50%, -18px) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -30px) scale(0.8);
  }
}

.car-unit.is-honking .car-body {
  animation: honkWobble 0.08s linear infinite !important;
}

@keyframes honkWobble {

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

  50% {
    transform: translateY(-2px) scale(1.02);
  }
}

/* ==========================================================================
   CARWALA MODERN FRONTEND STYLES (MATCHING IMAGES 1, 2, 3, 4)
   ========================================================================== */

/* 1. SEARCH WIDGET CARD (Image 1) */
.car-search-section {
  padding: 40px 0;
  background: #f8fafc;
}

.search-widget-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.search-widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.search-widget-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.city-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}

.city-selector i {
  color: var(--primary);
}

.city-select {
  border: none;
  background: transparent;
  font-weight: 700;
  color: #0f172a;
  font-size: 0.95rem;
  cursor: pointer;
  outline: none;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.search-pill-bar {
  display: flex;
  align-items: center;
  border: 1.5px solid #cbd5e1;
  border-radius: 999px;
  padding: 6px 12px;
  background: #ffffff;
  margin-bottom: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-pill-bar:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.15);
}

.toggle-pill-group {
  display: flex;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}

.pill-btn {
  border: none;
  background: transparent;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pill-btn.active {
  background: linear-gradient(135deg, var(--primary), #9e1017);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.35);
}

.search-input-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  margin-left: 14px;
}

.search-input-wrap input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: #0f172a;
  background: transparent;
  font-family: inherit;
  padding: 8px 12px;
}

.search-input-wrap input::placeholder {
  color: #94a3b8;
}

.search-icon-btn {
  border: none;
  background: transparent;
  color: #475569;
  font-size: 1.15rem;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}

.search-icon-btn:hover {
  color: var(--primary);
}

.quick-filters-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-dropdown-btn {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 8px 16px;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #334155;
  transition: all 0.2s ease;
}

.filter-dropdown-btn:hover,
.filter-dropdown-btn:focus-within {
  border-color: var(--primary);
  background: #fff8f3;
}

.filter-ico {
  color: var(--primary);
  font-size: 0.95rem;
}

.filter-select {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  appearance: none;
  padding-right: 18px;
}

.select-arrow {
  position: absolute;
  right: 12px;
  font-size: 0.75rem;
  color: #64748b;
  pointer-events: none;
}

.filter-btn-all {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.filter-btn-all:hover {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.2);
  transform: translateY(-1px);
}

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

.filter-btn-all i {
  font-size: 0.95rem;
}

.filter-btn-reset {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 12px;
  padding: 9px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-btn-reset:hover {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

/* 2. POPULAR CARS BY BUDGET (Image 2) */
.popular-cars-section {
  padding: 60px 0;
}

.section-title-wrap {
  margin-bottom: 28px;
}

.title-with-bar {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  position: relative;
  padding-left: 16px;
}

.title-with-bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 5px;
  background: var(--primary);
  border-radius: 999px;
}

.budget-subtabs-row {
  margin-bottom: 20px;
}

.budget-tabs-group {
  display: flex;
  gap: 24px;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 10px;
  flex-wrap: wrap;
}

.budget-tab-btn {
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  padding: 6px 4px;
  position: relative;
  transition: color 0.2s;
}

.budget-tab-btn.active,
.budget-tab-btn:hover {
  color: var(--primary);
}

.budget-tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 999px;
}

.category-pills-row {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cat-pill-btn {
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cat-pill-btn.active,
.cat-pill-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.12);
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.clean-car-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.clean-car-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: #94a3b8;
}

.clean-card-img-wrap {
  position: relative;
  width: 100%;
  height: 190px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.clean-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.clean-car-card:hover .clean-card-img-wrap img {
  transform: scale(1.05);
}

.card-brand-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #ffffff;
  backdrop-filter: blur(4px);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.card-gallery-count {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.clean-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.clean-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;

  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clean-card-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}

.clean-card-specs {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 8px 12px;
  align-items: start;
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 16px;
}

.clean-card-specs span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fef2f2;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.78rem;
  min-width: 0;
}

.clean-card-specs i {
  color: #64748b;
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  font-size: 0.9rem;
  line-height: 1;
}

/* Ensure icons in spec badges don't push text and stay visually centered */
.clean-card-specs span svg,
.clean-card-specs span img {
  max-width: 18px;
  max-height: 18px;
  display: block;
}

@media (max-width: 520px) {
  .clean-card-specs {
    grid-template-columns: 1fr;
    /* stack badges on small screens */
  }
}

.clean-card-vendor {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.clean-card-btn {
  margin-top: auto;
  width: 100%;
  border: none;
  background: #e2e8f0;
  color: #334155;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s ease;
  text-decoration: none !important;
}

.clean-card-btn:hover {
  background: #cbd5e1;
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-decoration: none !important;
}

.clean-card-btn:active {
  background: #94a3b8;
  color: #0f172a;
  text-decoration: none !important;
}

.no-results-msg {
  text-align: center;
  padding: 48px 24px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

/* 3. ALL BRANDS SECTION (Image 3) */
.all-brands-section {
  padding: 50px 0;
  background: #ffffff;
}

.brands-section-head {
  margin-bottom: 18px;
}

.brands-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.brands-card-wrapper {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: #ffffff;
}

.brand-tile-card {
  border: none;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 24px 12px 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 112px;
  cursor: pointer;
  transition: background 0.2s ease;
  box-sizing: border-box;
}

.brand-tile-card:nth-child(6n) {
  border-right: none;
}

.brand-tile-card:hover,
.brand-tile-card.active {
  background: #f8fafc;
}

.brand-tile-icon {
  width: 60px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #374151;
  border-radius: 0;
}

.brand-tile-icon svg {
  max-width: 100%;
  max-height: 100%;
}

.brand-initial-fallback {
  font-size: 1.1rem;
  font-weight: 800;
  color: #374151;
  letter-spacing: 0.5px;
}

.brand-tile-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #374151;
  text-align: center;
}

.brands-footer-bar {
  text-align: center;
  padding: 16px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.brands-footer-bar {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-top: 32px;
  text-align: center;
}

.btn-link-more,
#viewAllBrandsBtn {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.btn-link-more:hover,
#viewAllBrandsBtn:hover {
  color: var(--primary-dark) !important;
  text-decoration: underline !important;
  background: transparent !important;
}

/* 4. FIND THE CARS OF YOUR CHOICE (Image 4) */
.find-choice-section {
  padding: 60px 0;
}

.choice-box-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 36px;
}

.choice-box-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 24px;
}

.choice-group-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.choice-label {
  min-width: 140px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #64748b;
}

.choice-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.choice-chip-btn {
  border: 1px solid #cbd5e1;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.choice-chip-btn i {
  color: var(--primary);
}

.choice-chip-btn:hover,
.choice-chip-btn.active {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary), #9e1017);
  color: #ffffff;
}

.choice-chip-btn:hover i,
.choice-chip-btn.active i {
  color: #ffffff;
}

.choice-footer-row {
  margin-top: 24px;
  padding-top: 16px;

  border-top: 1px dashed #cbd5e1;
}

.view-more-filters-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.view-more-filters-link:hover {
  text-decoration: underline;
}

/* 5. CAR DETAILS & PRICE BREAKUP MODAL */
.car-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  z-index: 9999999 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.car-modal-dialog {
  background: #ffffff;
  border-radius: 24px;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.car-modal-overlay.open .car-modal-dialog {
  transform: scale(1);
}

.car-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: none;
  background: #f1f5f9;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  color: #475569;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, color 0.2s;
}

.car-modal-close:hover {
  background: #ef4444;
  color: #ffffff;
}

.car-modal-body {
  padding: 32px;
}

.modal-header-flex {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.modal-car-img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.modal-car-title-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
}

.modal-car-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-top: 6px;
}

.modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.modal-spec-item {
  color: #334155;
}

.modal-spec-item strong {
  color: #0f172a;
}

.modal-gallery-sec h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.modal-gallery-grid img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

.modal-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.modal-whatsapp-btn:hover {
  background: #1ebc57;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .search-widget-card {
    padding: 24px 20px;
  }

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

  .choice-group-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .choice-label {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .brands-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .brand-tile-card {
    padding: 14px 6px !important;
    gap: 6px !important;
  }

  .brand-tile-card:nth-child(6n) {
    border-right: 1px solid #e2e8f0 !important;
  }

  .brand-tile-card:nth-child(4n) {
    border-right: none !important;
  }

  .brand-tile-icon {
    width: 38px !important;
    height: 26px !important;
  }

  .brand-tile-name {
    font-size: 0.68rem !important;
  }

  .toggle-pill-group {
    width: 100%;
    margin-bottom: 8px;
  }

  .search-pill-bar {
    flex-direction: column;
    border-radius: 16px;
    padding: 8px;
  }

  .search-input-wrap {
    margin-left: 0;
    width: 100%;
  }

  .modal-specs-grid {
    grid-template-columns: 1fr;
  }
}

/* Top-Level Full-Width Budget Sections (Matching Compare Cars edge-to-edge layout) */
.budget-section {
  padding: 50px 0;
  border-radius: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}

.section-around-7lakh {
  background: #fffbf5 !important;
  /* Soft Light Peach-Amber */
  border-top: 1px solid #ffe8cc !important;
  border-bottom: 1px solid #ffe8cc !important;
}

.section-around-5lakh {
  background: #f4f8fd !important;
  /* Soft Light Sky-Blue */
  border-top: 1px solid #e1f0ff !important;
  border-bottom: 1px solid #e1f0ff !important;
}

.section-around-2lakh {
  background: #f6fcf9 !important;
  /* Soft Light Mint-Green */
  border-top: 1px solid #e2f9f0 !important;
  border-bottom: 1px solid #e2f9f0 !important;
}

.budget-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f1f5f9;
  flex-wrap: wrap;
  gap: 12px;
}

.budget-section-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.budget-badge {
  background: rgba(var(--primary-rgb), 0.12);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

/* 5. COMPARE CARS SECTION (Image 5) */
.compare-cars-section {
  padding: 50px 0;
  background: #fff8f0;
  border-top: 1px solid #ffe8cc;
  border-bottom: 1px solid #ffe8cc;
}

.compare-section-head {
  margin-bottom: 24px;
}

.compare-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.compare-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.compare-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.compare-vs-body {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}

.compare-car-col {
  flex: 1;
  text-align: center;
  padding: 0 8px;
}

.compare-car-col:first-child {
  border-right: 1px solid #f1f5f9;
}

.compare-car-img-wrap {
  height: 100px;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
}

.compare-car-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-brand-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: #64748b;
  display: block;
}

.compare-car-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.compare-car-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1f2937;
}

.compare-car-price span {
  font-weight: 400;
  color: #64748b;
  font-size: 0.78rem;
}

.compare-vs-badge-wrap {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.vs-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  font-size: 0.72rem;
  font-weight: 700;
  color: #f97316;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  text-transform: lowercase;
}

.compare-btn {
  width: 100%;
  border: 1.5px solid #0284c7;
  background: #ffffff;
  color: #0284c7;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: auto;
  transition: all 0.2s ease;
}

.compare-btn:hover {
  background: #0284c7;
  color: #ffffff;
}

/* 6. ALL BRANDS TICKER SECTION */
.all-brands-section {
  padding: 48px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

/* 7. LATEST CAR UPDATES / BLOGS SECTION */
.news-updates-section {
  padding: 50px 0 70px 0;
  background: #f1f5f9;
  border-bottom: 1px solid #cbd5e1;
}

.news-section-head {
  margin-bottom: 24px;
}

.news-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 14px;
}

.news-tabs-group {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 8px;
}

.news-tab-btn {
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  padding-bottom: 8px;
  position: relative;
  transition: color 0.2s ease;
}

.news-tab-btn.active,
.news-tab-btn:hover {
  color: var(--primary);
}

.news-tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 999px;
}

.news-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.news-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.news-card-img-wrap {
  width: 100%;
  height: 185px;
  overflow: hidden;
  background: #f8fafc;
}

.news-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card-img-wrap img {
  transform: scale(1.04);
}

.news-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
  line-height: 1.4;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 10px;
}

.news-snippet {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
  margin-top: auto;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 992px) {

  .compare-cards-grid,
  .news-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  /* Compare Cards - Single Column full width on mobile to prevent overflow */
  .compare-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .compare-card {
    padding: 16px 12px !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }

  .compare-car-img-wrap {
    height: 95px !important;
  }

  .compare-car-name {
    font-size: 0.88rem !important;
    line-height: 1.3 !important;
  }

  .compare-car-price {
    font-size: 0.82rem !important;
  }

  .compare-btn {
    padding: 10px 14px !important;
    font-size: 0.85rem !important;
    border-radius: 10px !important;
  }

  /* Blogs Grid - 2 Cards per row on mobile */
  .news-cards-grid,
  .blogs-list-wrap {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .news-card {
    border-radius: 12px !important;
  }

  .news-card-img-wrap {
    height: 110px !important;
  }

  .news-card-body {
    padding: 10px !important;
  }

  .news-card-title {
    font-size: 0.82rem !important;
    line-height: 1.3 !important;
    margin-bottom: 4px !important;
    font-weight: 700 !important;
    -webkit-line-clamp: 2 !important;
  }

  .news-meta-row {
    font-size: 0.68rem !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
    margin-bottom: 6px !important;
    color: #94a3b8 !important;
  }

  .news-snippet {
    font-size: 0.72rem !important;
    line-height: 1.35 !important;
    color: #64748b !important;
    -webkit-line-clamp: 2 !important;
  }

  /* 2 Review Cards at a time on mobile */
  .testimonials-slider {
    padding: 20px 0 10px !important;
    margin-bottom: 20px !important;
  }

  .testimonials-slider-track {
    gap: 10px !important;
    padding: 0 10px !important;
  }

  .testimonial-pendant {
    flex: 0 0 calc((100vw - 36px) / 2) !important;
    padding: 14px 10px !important;
    border-radius: 14px !important;
    margin-top: 10px !important;
    animation: none !important;
    transform: none !important;
  }

  .testimonial-pendant::before,
  .testimonial-pendant::after {
    display: none !important;
  }

  .testimonial-pendant .quote-mark {
    font-size: 1rem !important;
    top: 8px !important;
    right: 8px !important;
  }

  .testimonial-pendant .stars {
    font-size: 0.72rem !important;
    margin-bottom: 6px !important;
    letter-spacing: 0px !important;
  }

  .testimonial-pendant p {
    font-size: 0.75rem !important;
    line-height: 1.35 !important;
    margin-bottom: 10px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .testimonial-pendant footer {
    gap: 6px !important;
  }

  .testimonial-pendant .t-avatar {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.75rem !important;
  }

  .testimonial-pendant .t-meta strong {
    font-size: 0.75rem !important;
    line-height: 1.2 !important;
  }

  .testimonial-pendant .t-meta span {
    font-size: 0.65rem !important;
  }

  .testimonials-nav {
    margin-top: 20px !important;
    gap: 12px !important;
  }

  .t-nav-btn {
    width: 38px !important;
    height: 38px !important;
    font-size: 0.85rem !important;
  }
}

/* Side-by-side search bar and quick filters styling */
.search-widget-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

.search-pill-bar {
  flex: 1 1 300px;
  max-width: 320px;
  margin-bottom: 0 !important;
}

.quick-filters-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 2 1 auto;
  flex-wrap: wrap;
}

/* Force side-by-side layout on desktop to prevent wrapping and jumping */
@media (min-width: 992px) {
  .search-widget-row {
    flex-wrap: nowrap !important;
  }

  .search-pill-bar {
    flex: 0 0 280px !important;
  }

  .quick-filters-row {
    flex-wrap: nowrap !important;
    flex: 1 1 auto !important;
  }
}

/* Filters Popup Modal Styles */
.filters-popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.filters-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
}

.filters-popup-box {
  position: relative;
  width: 90%;
  max-width: 500px;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  z-index: 10;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(30px);
  transition: transform 0.3s ease;
}

.filters-popup-modal.open .filters-popup-box {
  transform: translateY(0);
}

.filters-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: #f1f5f9;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #475569;
  transition: all 0.2s ease;
}

.filters-popup-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.filters-popup-header {
  margin-bottom: 24px;
}

.filters-popup-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filters-popup-header p {
  color: #64748b;
  font-size: 0.9rem;
  margin-top: 4px;
}

.filters-popup-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

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

.filter-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #334155;
}

.popup-select-wrap {
  position: relative;
  width: 100%;
}

.popup-select-wrap select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.92rem;
  color: #0f172a;
  outline: none;
  cursor: pointer;
  background: #f8fafc;
  appearance: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.popup-select-wrap select:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.popup-select-wrap::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 0.75rem;
  pointer-events: none;
}

.filters-popup-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
}

.btn-popup-reset {
  padding: 12px 20px;
  background: #f1f5f9;
  color: #475569;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-popup-reset:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.btn-popup-apply {
  padding: 12px 24px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-popup-apply:hover {
  background: var(--primary-dark);
}

/* =========================================================================
   PREMIUM TIRE BURNOUT LOADER
   ========================================================================= */
.tyre-loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  /* White background */
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
  pointer-events: all;
}

.tyre-wrapper {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tyre-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tire high speed spinning animation (spins counter-clockwise immediately) */
.tyre-svg {
  width: 150px;
  height: 150px;
  animation: spin-tyre-ccw 0.18s infinite linear;
}

@keyframes spin-tyre-ccw {
  0% {
    transform: rotate(360deg);
  }

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

/* Anticonsipatory launch animation directly to the LEFT (no pullback) */
.tyre-container.zoom-off {
  animation: zoom-away-left-direct 0.8s ease-in-out forwards;
}

@keyframes zoom-away-left-direct {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: blur(0px);
  }

  100% {
    transform: translate(calc(-50% - 650px), -50%) scale(0.85);
    filter: blur(5px);
    opacity: 0;
  }
}

/* Sparks underneath the spinning tyre (flies to the RIGHT, visible by default) */
.sparks-container {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 30px;
  overflow: visible;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.spark {
  position: absolute;
  bottom: 0;
  opacity: 0;
}

/* Dot Sparkle (twinkling star/dot effect) */
.spark.dot {
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 30%, #fec309 70%, #ff8800 100%);
  box-shadow: 0 0 15px rgba(254, 195, 9, 0.95), 0 0 30px rgba(255, 136, 0, 0.8), 0 0 45px rgba(255, 85, 0, 0.5);
}

/* Star Sparkle (twinkling 4-point cross star) */
.spark.star {
  background: radial-gradient(circle, #ffffff 35%, #ffb703 70%, #d97706 100%);
  clip-path: polygon(50% 0%, 56% 44%, 100% 50%, 56% 56%, 50% 100%, 44% 56%, 0% 50%, 44% 44%);
  filter: drop-shadow(0 0 12px rgba(255, 183, 3, 0.95)) drop-shadow(0 0 24px rgba(251, 133, 0, 0.7));
}

/* Fly animations - one low, one high/arced, one middle */
.s1,
.s4,
.s7,
.s10,
.s13,
.s16,
.s19,
.s22 {
  animation: spark-fly-right-down 0.45s infinite ease-out;
}

.s2,
.s5,
.s8,
.s11,
.s14,
.s17,
.s20,
.s23 {
  animation: spark-fly-right-up 0.55s infinite ease-out;
}

.s3,
.s6,
.s9,
.s12,
.s15,
.s18,
.s21,
.s24 {
  animation: spark-fly-right-mid 0.5s infinite ease-out;
}

/* Individual spark configurations */
.s1 {
  left: 45%;
  width: 8px;
  height: 8px;
  animation-delay: 0.02s;
}

.s2 {
  left: 47%;
  width: 18px;
  height: 18px;
  animation-delay: 0.08s;
}

.s3 {
  left: 49%;
  width: 9px;
  height: 9px;
  animation-delay: 0.15s;
}

.s4 {
  left: 51%;
  width: 14px;
  height: 14px;
  animation-delay: 0.22s;
}

.s5 {
  left: 53%;
  width: 7px;
  height: 7px;
  animation-delay: 0.05s;
}

.s6 {
  left: 55%;
  width: 22px;
  height: 22px;
  animation-delay: 0.11s;
}

.s7 {
  left: 46%;
  width: 6px;
  height: 6px;
  animation-delay: 0.28s;
}

.s8 {
  left: 48%;
  width: 16px;
  height: 16px;
  animation-delay: 0.35s;
}

.s9 {
  left: 50%;
  width: 10px;
  height: 10px;
  animation-delay: 0.03s;
}

.s10 {
  left: 52%;
  width: 20px;
  height: 20px;
  animation-delay: 0.19s;
}

.s11 {
  left: 54%;
  width: 8px;
  height: 8px;
  animation-delay: 0.26s;
}

.s12 {
  left: 47%;
  width: 15px;
  height: 15px;
  animation-delay: 0.07s;
}

.s13 {
  left: 49%;
  width: 5px;
  height: 5px;
  animation-delay: 0.38s;
}

.s14 {
  left: 51%;
  width: 12px;
  height: 12px;
  animation-delay: 0.14s;
}

.s15 {
  left: 53%;
  width: 9px;
  height: 9px;
  animation-delay: 0.21s;
}

.s16 {
  left: 45%;
  width: 17px;
  height: 17px;
  animation-delay: 0.31s;
}

.s17 {
  left: 48%;
  width: 6px;
  height: 6px;
  animation-delay: 0.09s;
}

.s18 {
  left: 50%;
  width: 19px;
  height: 19px;
  animation-delay: 0.17s;
}

.s19 {
  left: 52%;
  width: 7px;
  height: 7px;
  animation-delay: 0.25s;
}

.s20 {
  left: 54%;
  width: 13px;
  height: 13px;
  animation-delay: 0.33s;
}

.s21 {
  left: 46%;
  width: 8px;
  height: 8px;
  animation-delay: 0.04s;
}

.s22 {
  left: 49%;
  width: 24px;
  height: 24px;
  animation-delay: 0.13s;
}

.s23 {
  left: 51%;
  width: 10px;
  height: 10px;
  animation-delay: 0.27s;
}

.s24 {
  left: 53%;
  width: 16px;
  height: 16px;
  animation-delay: 0.01s;
}

@keyframes spark-fly-right-up {
  0% {
    transform: translate(0, 0) scale(0.2) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
    transform: translate(20px, -8px) scale(1) rotate(30deg);
  }

  85% {
    opacity: 0.95;
  }

  100% {
    transform: translate(270px, -55px) scale(0.15) rotate(180deg);
    opacity: 0;
  }
}

@keyframes spark-fly-right-mid {
  0% {
    transform: translate(0, 0) scale(0.2) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
    transform: translate(15px, -2px) scale(1) rotate(15deg);
  }

  85% {
    opacity: 0.95;
  }

  100% {
    transform: translate(250px, -20px) scale(0.15) rotate(90deg);
    opacity: 0;
  }
}

@keyframes spark-fly-right-down {
  0% {
    transform: translate(0, 0) scale(0.2) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
    transform: translate(10px, 4px) scale(1) rotate(-15deg);
  }

  85% {
    opacity: 0.95;
  }

  100% {
    transform: translate(230px, 12px) scale(0.15) rotate(-90deg);
    opacity: 0;
  }
}

/* Orange/Red fire glow underneath the tyre (visible by default) */
.fire-glow {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 14px;
  background: radial-gradient(ellipse, rgba(251, 133, 0, 0.65) 20%, rgba(239, 68, 68, 0.4) 55%, transparent 85%);
  filter: blur(3px);
  pointer-events: none;
  opacity: 0.9;
  transition: opacity 0.25s ease;
  animation: flicker 0.12s infinite alternate;
}

@keyframes flicker {
  0% {
    transform: translateX(-50%) scale(0.9);
    opacity: 0.7;
  }

  100% {
    transform: translateX(-50%) scale(1.1);
    opacity: 0.95;
  }
}

/* Mobile Responsive Adjustments for Car Cards (2 Cars Per Row Layout) */
@media (max-width: 576px) {
  .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .cars-grid,
  .cars-list-wrap,
  .explore-cars-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 !important;
  }

  .clean-car-card {
    border-radius: 14px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
  }

  .clean-card-img-wrap {
    height: 125px !important;
  }

  .card-brand-badge {
    top: 6px !important;
    left: 6px !important;
    font-size: 0.62rem !important;
    padding: 3px 8px !important;
    border-radius: 999px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) !important;
  }

  .clean-card-body {
    padding: 10px 10px 12px !important;
  }

  .clean-card-title {
    font-size: 0.9rem !important;
    margin-bottom: 4px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    color: #0f172a !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .clean-card-price {
    font-size: 0.98rem !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
    margin-bottom: 8px !important;
  }

  .clean-card-specs {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px 6px !important;
    margin-bottom: 10px !important;
    grid-template-columns: none !important;
  }

  .clean-card-specs span {
    padding: 3px 7px !important;
    font-size: 0.68rem !important;
    border-radius: 6px !important;
    gap: 4px !important;
    min-width: 0 !important;
    font-weight: 600 !important;
    background: #fef2f2 !important;
    color: var(--primary) !important;
  }

  .clean-card-specs i {
    font-size: 0.72rem !important;
    width: auto !important;
    height: auto !important;
    color: #64748b !important;
  }

  .clean-card-vendor {
    font-size: 0.7rem !important;
    margin-bottom: 8px !important;
    padding-top: 6px !important;
    border-top: 1px solid #f1f5f9 !important;
    gap: 4px !important;
    margin-top: auto !important;
    color: #64748b !important;
  }

  .clean-card-btn {
    padding: 8px 10px !important;
    font-size: 0.78rem !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    white-space: nowrap !important;
    width: 100% !important;
    margin-top: 0 !important;
  }

  width: 100% !important;
  margin-top: 0 !important;
}

/* Brands Marquee Mobile Adjustments */
.brands-marquee-track {
  gap: 12px !important;
}

.brand-marquee-item {
  width: 90px !important;
  height: 76px !important;
  padding: 6px !important;
  border-radius: 12px !important;
}

.brand-marquee-icon {
  width: 32px !important;
  height: 20px !important;
  margin-bottom: 4px !important;
}

.brand-marquee-icon svg {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
}

.brand-marquee-icon .brand-initial-fallback {
  font-size: 0.8rem !important;
}

.brand-marquee-name {
  font-size: 0.7rem !important;
  text-align: center !important;
  line-height: 1.1 !important;
}

.ltr-track {
  animation: scroll-ltr-mobile 20s linear infinite !important;
}

.rtl-track {
  animation: scroll-rtl-mobile 20s linear infinite !important;
}
}

.clean-car-card {
  cursor: pointer;
}

/* Dynamic Infinite Brand Marquee (Ticker) */
.brands-marquee-container {
  position: relative;
  overflow: hidden;
  padding: 16px 0;
  width: 100%;
  /* Edge fade mask on both sides */
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.brands-marquee-row {
  display: flex;
  overflow: hidden;
  width: 100%;
  user-select: none;
}

.brands-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

/* LTR Scrolling Animation */
.ltr-track {
  animation: scroll-ltr 30s linear infinite;
}

/* RTL Scrolling Animation */
.rtl-track {
  animation: scroll-rtl 30s linear infinite;
}

/* Base marquee item style */
.brand-marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1.5px solid #f1f5f9;
  border-radius: 16px;
  padding: 16px;
  width: 150px;
  height: 96px;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
  cursor: default;
}

.brand-marquee-icon {
  width: 54px;
  height: 32px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-marquee-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-marquee-icon svg {
  width: 100%;
  height: 100%;
}

.brand-marquee-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

@keyframes scroll-ltr {
  0% {
    transform: translateX(calc(-50% - 10px));
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes scroll-rtl {
  0% {
    transform: translateX(0);
  }

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

@keyframes scroll-ltr-mobile {
  0% {
    transform: translateX(calc(-50% - 6px));
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes scroll-rtl-mobile {
  0% {
    transform: translateX(0);
  }

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

/* ==========================================================================
   GLOBAL PREMIUM SHIMMER HOVER ANIMATION (LIKE WHATSAPP HEADER BUTTON)
   ========================================================================== */

.clean-card-btn,
.compare-btn,
#detailsCompareNowBtn,
.btn-about-primary,
.btn-submit-inquiry,
.blog-card-btn {
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, gap 0.25s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease !important;
}

.clean-card-btn::after,
.compare-btn::after,
#detailsCompareNowBtn::after,
.btn-about-primary::after,
.btn-submit-inquiry::after,
.blog-card-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.clean-card-btn:hover,
.compare-btn:hover,
#detailsCompareNowBtn:hover,
.btn-about-primary:hover,
.btn-submit-inquiry:hover,
.blog-card-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
}

.clean-card-btn:hover::after,
.compare-btn:hover::after,
#detailsCompareNowBtn:hover::after,
.btn-about-primary:hover::after,
.btn-submit-inquiry:hover::after,
.blog-card-btn:hover::after {
  transform: translateX(130%) !important;
}

/* Premium Centered Light Page Header Banner with Background Watermark Overlay & Glass Breadcrumbs */
.premium-page-header {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 50%, #f1f5f9 100%);
  padding: 55px 0 45px;
  text-align: center;
  border-bottom: 1px solid #cbd5e1;
  overflow: hidden;
}

.premium-page-header .header-bg-watermark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.8;
  pointer-events: none;
}

.premium-page-header .header-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 30%, rgba(var(--primary-rgb), 0.08), transparent 75%);
  pointer-events: none;
}

.relative-z {
  position: relative;
  z-index: 2;
}

.badge-header-pill {
  background: rgba(var(--primary-rgb), 0.08) !important;
  color: var(--primary) !important;
  border: 1px solid rgba(var(--primary-rgb), 0.18) !important;
  font-weight: 700 !important;
  padding: 6px 16px !important;
  border-radius: 999px !important;
  font-size: 0.78rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.6px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.page-header-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.page-header-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 620px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.header-breadcrumb-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

/* Breathtaking Ultra-Premium Floating Breadcrumb Styling */
.site-breadcrumb-wrapper {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 14px 0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  z-index: 10;
}

.site-breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  padding: 6px 18px 6px 12px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  font-size: 0.86rem;
  font-weight: 600;
}

.breadcrumb-home-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #475569;
  text-decoration: none !important;
  padding: 4px 12px;
  border-radius: 999px;
  background: #f1f5f9;
  transition: all 0.25s ease;
  font-weight: 600;
}

.breadcrumb-home-link i {
  color: var(--primary);
  font-size: 0.8rem;
  transition: color 0.25s ease;
}

.breadcrumb-home-link:hover {
  background: var(--primary);
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.25);
}

.breadcrumb-home-link:hover i {
  color: #ffffff;
}

.breadcrumb-item a:not(.breadcrumb-home-link) {
  color: #475569;
  text-decoration: none !important;
  transition: all 0.2s ease;
  padding: 3px 8px;
  border-radius: 8px;
}

.breadcrumb-item a:not(.breadcrumb-home-link):hover {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
}

.breadcrumb-separator {
  color: #cbd5e1;
  font-size: 0.65rem;
  display: inline-flex;
  align-items: center;
}

.active-crumb-badge {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.12), rgba(var(--primary-rgb), 0.05));
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
  display: inline-block;
}

@media (max-width: 576px) {
  .site-breadcrumb-wrapper {
    padding: 10px 0;
  }
  
  .site-breadcrumb-nav {
    padding: 5px 12px;
    border-radius: 14px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .active-crumb-badge {
    max-width: 160px;
    padding: 4px 10px;
    font-size: 0.78rem;
  }
}

/* State-of-the-Art Ultra-Modern Showroom Light Gradient Footer Styling */
.footer-modern-wrapper {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 40%, #f1f5f9 80%, rgba(var(--primary-rgb), 0.05) 100%);
  color: #475569;
  font-size: 0.92rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #cbd5e1;
}

.footer-modern-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 20%, rgba(var(--primary-rgb), 0.04) 0%, transparent 60%),
              radial-gradient(circle at 90% 80%, rgba(var(--primary-rgb), 0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* Top Floating CTA Banner (Light Gradient Theme) */
.footer-cta-banner {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.04) 0%, #ffffff 50%, #f1f5f9 100%);
  border-bottom: 1px solid #cbd5e1;
  padding: 42px 0;
  position: relative;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-left-content {
  max-width: 650px;
}

.badge-cta-pill {
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.cta-left-content h2 {
  color: #0f172a;
  font-size: 1.85rem;
  font-weight: 800;
  margin: 4px 0 8px;
  letter-spacing: -0.5px;
}

.cta-left-content .text-highlight {
  color: var(--primary);
}

.cta-left-content p {
  color: #64748b;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
}

.cta-right-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-cta-primary-link {
  background: linear-gradient(135deg, var(--primary), #9e1017);
  color: #ffffff !important;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 12px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.25);
  transition: all 0.25s ease;
}

.btn-cta-primary-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(var(--primary-rgb), 0.4);
}

.btn-cta-secondary-link {
  background: #ffffff;
  color: #0f172a !important;
  border: 1px solid #cbd5e1;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 12px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.btn-cta-secondary-link:hover {
  background: #f1f5f9;
  border-color: var(--primary);
  color: var(--primary) !important;
  transform: translateY(-3px);
}

/* Main Footer Body */
.footer-main-body {
  padding: 60px 0 30px;
}

.footer-5col-grid {
  display: grid;
  grid-template-columns: 2.2fr 1.6fr 1.6fr 1.6fr 1.6fr;
  gap: 36px;
}

.footer-widget .widget-title {
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget .widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: var(--primary);
  border-radius: 999px;
}

.brand-info-widget .footer-brand-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.brand-info-widget .footer-brand-logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-info-widget .brand-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #64748b;
  margin-bottom: 22px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.footer-social-icons a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.35);
}

.footer-seo-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-seo-links li a {
  color: #475569;
  text-decoration: none !important;
  font-size: 0.88rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.footer-seo-links li a i {
  font-size: 0.75rem;
  color: #94a3b8;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-seo-links li a:hover {
  color: var(--primary);
  font-weight: 600;
  transform: translateX(4px);
}

.footer-seo-links li a:hover i {
  color: var(--primary);
}

/* Trust Strip */
.footer-trust-strip {
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px dashed #cbd5e1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.trust-text h5 {
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0 0 2px;
}

.trust-text span {
  font-size: 0.78rem;
  color: #64748b;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  padding: 20px 0;
  border-top: 1px solid #cbd5e1;
  font-size: 0.85rem;
}

.bottom-bar-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.copyright-text {
  margin: 0;
  color: #64748b;
}

.copyright-text strong {
  color: #0f172a;
}

.pwdby-link {
  color: var(--primary) !important;
  text-decoration: none !important;
  font-weight: 700;
}

.pwdby-link:hover {
  text-decoration: underline !important;
}

.bottom-quick-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bottom-quick-links a {
  color: #64748b;
  text-decoration: none !important;
  transition: color 0.2s ease;
  font-weight: 500;
}

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

.bottom-quick-links span {
  color: #cbd5e1;
  font-size: 0.7rem;
}

@media (max-width: 1024px) {
  .footer-5col-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .footer-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-right-actions {
    justify-content: center;
    width: 100%;
  }

  .footer-5col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .bottom-bar-flex {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-5col-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .brand-info-widget {
    grid-column: 1 / -1;
  }

  .footer-trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-item {
    flex-direction: column;
    text-align: center;
    padding: 14px 12px;
  }
}