:root {
  --primary: #f0a500;
  --primary-dark: #d89400;
  --primary-rgb: 240, 165, 0;
  --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), #ff8c00);
  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), #ff8c00);
  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), #ff8c00);
  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(240, 165, 0, 0);
  }

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

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

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

.btn-nav-primary {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary), #ff8c00);
  color: #fff;
  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::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);
}

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

.hero-pad {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  min-height: calc(100vh - 86px);
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(32px, 5vh, 72px) clamp(20px, 5vw, 80px);
}

.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);
}

.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);
}

.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: relative;
}

.hero-art img {
  width: 100%;
  height: clamp(280px, 38vw, 440px);
  object-fit: contain;
  opacity: 0;
  transform: scale(0.9) translateX(50px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.is-active .hero-art img {
  opacity: 1;
  transform: scale(1) translateX(0);
  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), #ff8c00);
  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), #ff8c00);
  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), #ff8c00);
  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), #ff8c00);
  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(240, 165, 0, 0.08);
  border-bottom: 1px solid rgba(240, 165, 0, 0.08);
}

.experience-curve {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, transparent 60%, rgba(240, 165, 0, 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(240, 165, 0, 0.25) 0%, rgba(240, 165, 0, 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(240, 165, 0, 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(240, 165, 0, 0.25) 0%, rgba(240, 165, 0, 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(240, 165, 0, 0.08);
  border: 1px solid rgba(240, 165, 0, 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(240, 165, 0, 0.25);
}

.timeline-item:hover .timeline-content {
  background: rgba(240, 165, 0, 0.03);
  border-color: rgba(240, 165, 0, 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: #ffffff;
  border-top: 1px solid var(--border);
}

.section-testimonials::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 165, 0, 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(240, 165, 0, 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(240, 165, 0, 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(240, 165, 0, 0.12);
  transition: color 0.35s ease, transform 0.35s ease;
}

.testimonial-pendant:hover .quote-mark {
  color: rgba(240, 165, 0, 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), #ff8c00);
  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%, #ff8c00 100%);
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  color: #000;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(240, 165, 0, 0.3);
  animation: avatarPulse 3s ease-in-out infinite alternate;
}

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

  100% {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(240, 165, 0, 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(240, 165, 0, 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(240, 165, 0, 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%, #ff8c00 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(240, 165, 0, 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(240, 165, 0, 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(240, 165, 0, 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(240, 165, 0, 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(240, 165, 0, 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(240, 165, 0, 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(240, 165, 0, 0.03);
  border-color: rgba(240, 165, 0, 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(240, 165, 0, 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(240, 165, 0, 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(240, 165, 0, 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%, #ff8c00 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(240, 165, 0, 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(240, 165, 0, 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), #ff8c00);
  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), #ff8c00);
  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), #ff8c00);
  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: linear-gradient(180deg, #161616 0%, #1a1a1a 100%);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 74px;
  overflow: hidden;
}

/* premium accent line + glows */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), #ff8c00, transparent);
}

.footer::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12), transparent 70%);
  pointer-events: none;
}

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

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

/* Only the brand column is a card */
.footer-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 30px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  animation: footerCardIn 0.7s ease both;
  overflow: hidden;
}

.footer-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.22), transparent 70%);
  pointer-events: none;
}

@keyframes footerCardIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

.footer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--primary-rgb), 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.footer-col {
  padding-top: 6px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.05rem;
  position: relative;
  padding-left: 14px;
}

.footer h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: var(--primary);
}

.footer ul {
  list-style: none;
}

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

.footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-brand>* {
  position: relative;
  z-index: 1;
}

.footer-logo-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 18px;
  margin-bottom: 20px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-logo-card:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 28px rgba(var(--primary-rgb), 0.3);
}

.footer-logo-card .logo-mark {
  width: 44px;
  font-size: 0.95rem;
}

.footer-logo-card .logo-mark-img {
  width: 200px;
}

.footer-logo-card .logo-text {
  color: #1a1a1a;
  font-size: 1.15rem;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--primary), #ff8c00);
  border-color: transparent;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.4);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

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

.footer-contact a:hover {
  padding-left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

/* 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;
  }

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

  .hero-pad {
    text-align: center;
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 80px;
  }

  .hero-content {
    order: 1;
  }

  .hero-art {
    order: 2;
    max-width: 520px;
    margin: 24px auto 0;
  }

  .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 */
@media (max-width: 600px) {
  .hero-pad {
    padding-top: 40px;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.96rem;
  }

  .hero-actions {
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    flex: 1 1 140px;
  }

  .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(240, 165, 0, 0.15);
  color: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(240, 165, 0, 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(240, 165, 0, 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(240, 165, 0, 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(240, 165, 0, 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(240, 165, 0, 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%, #ff8c00 100%);
  color: #000;
  box-shadow: 0 8px 24px rgba(240, 165, 0, 0.25);
}

.btn-phone-gradient:hover {
  box-shadow: 0 12px 30px rgba(240, 165, 0, 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;
}

@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(245, 158, 11, 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(245, 158, 11, 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(245, 158, 11, 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(245, 158, 11, 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 with Durga Cabs Winding Highway Section
   ========================================================================== */
.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(245, 158, 11, 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(245, 158, 11, 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(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 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(245, 158, 11, 0.35);
  box-shadow: 0 15px 35px rgba(245, 158, 11, 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(245, 158, 11, 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(245, 158, 11, 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(245, 158, 11, 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%, #fbbf24 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(245, 158, 11, 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(245, 158, 11, 0.1);
  color: #f59e0b;
}

.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: #fbbf24;
  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); }
}