/* ==========================================================================
   FOXC RIDE — Premium Mobility Landing Page Styles (css/ride.css)
   Colors: #07070F (Bg), #11161E (Cards), #D4AF37 (Gold), #1B8DFF (Electric Blue)
   ========================================================================== */

:root {
  --rd-bg: #07070F;
  --rd-card-bg: rgba(17, 22, 30, 0.85);
  --rd-card-border: rgba(212, 175, 55, 0.2);
  --rd-gold: #D4AF37;
  --rd-gold-light: #F5D77F;
  --rd-blue: #1B8DFF;
  --rd-blue-light: #4FC3FF;
  --rd-text: #FFFFFF;
  --rd-text-muted: #C8C8C8;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-cinzel: 'Cinzel', serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
}

body {
  background-color: var(--rd-bg);
  color: var(--rd-text);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* Color Utility Helpers */
.text-blue-accent {
  color: var(--rd-blue) !important;
}

/* Buttons — Responsive Single-Line Text */
.btn-gold {
  font-size: clamp(0.7rem, 1.2vw, 0.85rem) !important;
  letter-spacing: 0.08em;
  padding: clamp(10px, 1.2vw, 14px) clamp(18px, 2.5vw, 30px);
  white-space: nowrap;
  gap: clamp(6px, 0.8vw, 10px);
}

.btn-gold--lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 0.8vw, 10px);
  background: var(--gold-gradient, linear-gradient(135deg, #F5D77F 0%, #D4AF37 50%, #997A15 100%));
  color: #07070f !important;
  font-weight: 700;
  font-family: var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(0.72rem, 1.2vw, 0.88rem);
  padding: clamp(12px, 1.4vw, 16px) clamp(20px, 2.5vw, 36px);
  border-radius: 50px;
  border: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.btn-gold--lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
  color: #000 !important;
}

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: clamp(5px, 0.7vw, 8px);
  border: 1px solid var(--rd-gold);
  color: var(--rd-gold);
  background: transparent;
  padding: clamp(10px, 1.2vw, 12px) clamp(16px, 2.2vw, 26px);
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-gold-outline:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--rd-gold-light);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   1. NAVIGATION OVERRIDES
   -------------------------------------------------------------------------- */
.rd-navbar {
  background: rgba(7, 7, 15, 0.75) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

/* --------------------------------------------------------------------------
   2. HERO SECTION (EXACT MATCHING REFERENCE DESIGN)
   -------------------------------------------------------------------------- */
.rd-hero {
  position: relative;
  min-height: 100vh;
  padding-top: 110px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #05060b;
  z-index: 1;
}

.rd-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.rd-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.65;
  filter: brightness(0.85) contrast(1.1);
}

.rd-hero__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #05060b 0%, rgba(5, 6, 11, 0.88) 35%, rgba(5, 6, 11, 0.25) 60%, transparent 100%);
  pointer-events: none;
}

.rd-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: clamp(20px, 5vw, 75px);
  padding-right: 0;
}

.rd-hero__grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 30px;
  align-items: center;
  width: 100%;
}

@media (max-width: 1200px) {
  .rd-hero__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991.98px) {
  .rd-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .rd-hero__container {
    padding-right: 20px;
  }
}

.rd-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cinzel);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--rd-gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.rd-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rd-gold);
  box-shadow: 0 0 8px var(--rd-gold);
}

.rd-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

.rd-hero__desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 460px;
}

@media (max-width: 991.98px) {
  .rd-hero__desc {
    margin-left: auto;
    margin-right: auto;
  }
}

.rd-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 991.98px) {
  .rd-hero__actions {
    justify-content: center;
  }
}

/* Stats Row (Matching Reference Screenshot: Gold Icons & Gold Values) */
.rd-hero__stats {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0;
  margin-top: 10px;
  background: transparent;
  border: none;
  backdrop-filter: none;
}

@media (max-width: 991.98px) {
  .rd-hero__stats {
    justify-content: center;
  }
}

.rd-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

@media (max-width: 991.98px) {
  .rd-stat-item {
    align-items: center;
  }
}

.rd-stat-icon {
  width: auto;
  height: auto;
  background: none;
  border: none;
  color: var(--rd-gold);
  font-size: 1.5rem;
  padding: 0;
  margin-bottom: 2px;
}

.rd-stat-val {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--rd-gold);
  line-height: 1;
}

.rd-stat-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: capitalize;
  letter-spacing: 0.03em;
}

.rd-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero Showcase (Zero Margin Right Column Image with Clean Transparency) */
.rd-hero__showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.rd-pedestal-wrap {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.rd-hero-car-img {
  width: 100%;
  max-width: 980px;
  height: auto;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain;
  object-position: right center;
  filter: contrast(1.1) brightness(1.05) drop-shadow(0 25px 45px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 50px rgba(27, 141, 255, 0.45));
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes floatCar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --------------------------------------------------------------------------
   3 & 4. DUAL EXPERIENCES (RIDER & DRIVER PANELS)
   -------------------------------------------------------------------------- */
.rd-experiences {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.rd-experiences__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 991.98px) {
  .rd-experiences__grid {
    grid-template-columns: 1fr;
  }
}

.rd-exp-card {
  background: var(--rd-card-bg);
  border: 1px solid var(--rd-card-border);
  border-radius: 28px;
  padding: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  align-items: stretch;
  min-height: 430px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.rd-exp-card--driver {
  grid-template-columns: 1.2fr 1fr;
}

@media (max-width: 767.98px) {
  .rd-exp-card, .rd-exp-card--driver {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }
}

.rd-exp-card:hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(27, 141, 255, 0.25);
}

.rd-exp-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  height: 100%;
  min-height: 430px;
}

.rd-phone-img {
  width: auto;
  height: 100%;
  max-height: 430px;
  object-fit: contain;
  object-position: center center;
  filter: none;
  transition: transform 0.4s ease;
}

.rd-exp-card:hover .rd-phone-img {
  transform: scale(1.04) translateY(-5px);
}

.rd-chauffeur-img {
  max-height: 420px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: contrast(1.1) brightness(1.05) drop-shadow(0 20px 35px rgba(0, 0, 0, 0.9));
  transition: transform 0.4s ease;
}

.rd-exp-card:hover .rd-chauffeur-img {
  transform: scale(1.05) translateY(-5px);
}

.rd-tag {
  font-family: var(--font-cinzel);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--rd-blue-light);
  margin-bottom: 10px;
  display: block;
}

/* Info column gets its own padding since card padding was removed */
.rd-exp-card__info {
  padding: 40px 40px 40px 30px;
}

.rd-exp-card--driver .rd-exp-card__info {
  padding: 40px 30px 40px 40px;
}

@media (max-width: 767.98px) {
  .rd-exp-card__info,
  .rd-exp-card--driver .rd-exp-card__info {
    padding: 30px 24px;
  }
}

.rd-exp-card__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 25px;
}

.rd-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rd-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}

.rd-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--rd-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.rd-feature-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.rd-feature-desc {
  font-size: 0.82rem;
  color: var(--rd-text-muted);
  line-height: 1.5;
  margin: 0;
}

.rd-app-badges {
  display: flex;
  gap: clamp(8px, 1.2vw, 12px);
  flex-wrap: nowrap;
}

@media (max-width: 767.98px) {
  .rd-app-badges {
    justify-content: center;
  }
}

.rd-app-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  padding: clamp(8px, 1vw, 10px) clamp(12px, 1.8vw, 18px);
  border-radius: 12px;
  text-decoration: none;
  font-size: clamp(0.72rem, 1.2vw, 0.85rem);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: clamp(5px, 0.7vw, 8px);
  transition: all 0.3s ease;
}

/* Override Bootstrap fs-3 / fs-4 icon sizes inside badge buttons */
.rd-app-badge .bi {
  font-size: clamp(1rem, 1.8vw, 1.4rem) !important;
  flex-shrink: 0;
}

.rd-app-badge:hover {
  background: var(--rd-gold);
  color: #07070f;
  border-color: var(--rd-gold);
  transform: translateY(-2px);
}

/* Mobile: tighter padding */
@media (max-width: 768px) {
  .rd-app-badge {
    font-size: 0.72rem;
    padding: 8px 12px;
    gap: 5px;
  }
  .rd-app-badge .bi {
    font-size: 1rem !important;
  }
}

@media (max-width: 480px) {
  .rd-app-badge {
    font-size: 0.7rem;
    padding: 7px 10px;
    gap: 4px;
  }
  .rd-app-badge .bi {
    font-size: 0.9rem !important;
  }
}


.rd-driver-trust {
  font-size: 0.78rem;
  color: var(--rd-text-muted);
  margin-top: 15px;
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   5. PREMIUM FLEET CAROUSEL
   -------------------------------------------------------------------------- */
.rd-fleet {
  padding: 100px 0;
  background: rgba(17, 22, 30, 0.3);
  position: relative;
  z-index: 1;
}

.rd-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.rd-section-header__tag {
  font-family: var(--font-cinzel);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--rd-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.rd-section-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.rd-section-header__desc {
  color: var(--rd-text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.rd-fleet__carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.rd-fleet__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  width: 100%;
}

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

@media (max-width: 767.98px) {
  .rd-fleet__track {
    grid-template-columns: 1fr;
  }
}

.rd-carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(17, 22, 30, 0.9);
  border: 1px solid var(--rd-card-border);
  color: var(--rd-gold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
}

.rd-carousel-btn:hover {
  background: var(--rd-gold);
  color: #07070F;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.rd-carousel-btn--prev { left: -25px; }
.rd-carousel-btn--next { right: -25px; }

.rd-car-card {
  background: var(--rd-card-bg);
  border: 1px solid var(--rd-card-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: max-content; /* Size according to content */
}

.rd-car-card:hover {
  transform: translateY(-8px);
  border-color: var(--rd-blue);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(27, 141, 255, 0.3);
}

.rd-car-card__visual {
  position: relative;
  background: radial-gradient(circle at center, rgba(27, 141, 255, 0.15) 0%, rgba(7, 7, 15, 0.9) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-car-card__badge {
  position: absolute;
  top: 15px;
  left: 15px;
  font-family: var(--font-cinzel);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--rd-gold);
  background: rgba(7, 7, 15, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 3px 10px;
  border-radius: 20px;
}

.rd-car-img {
  max-height: 150px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: contrast(1.1) brightness(1.05) drop-shadow(0 15px 25px rgba(0, 0, 0, 0.95));
  transition: transform 0.4s ease;
}

.rd-car-card:hover .rd-car-img {
  transform: scale(1.06) translateY(-4px);
}

.rd-car-card__content {
  padding: 0;
  position: relative;
}

.rd-car-card__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  padding-right: 45px; /* Prevent overlap with the absolute button */
}

.rd-car-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--rd-text-muted);
  margin-bottom: 20px;
}

.rd-car-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rd-car-card__rate {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rd-gold-light);
}

.rd-car-card__rate small {
  font-size: 0.75rem;
  color: var(--rd-text-muted);
  font-weight: 400;
}

.rd-car-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--rd-gold);
  color: var(--rd-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: absolute;
  top: 18px; /* Aligns center with the car name text */
  right: 25px;
}

.rd-car-btn:hover {
  background: var(--rd-gold);
  color: #07070F;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* --------------------------------------------------------------------------
   6. WHY FOXC
   -------------------------------------------------------------------------- */
.rd-why {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.rd-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

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

@media (max-width: 575.98px) {
  .rd-why__grid {
    grid-template-columns: 1fr;
  }
}

.rd-why-card {
  background: var(--rd-card-bg);
  border: 1px solid var(--rd-card-border);
  border-radius: 20px;
  padding: 35px 25px;
  transition: all 0.3s ease;
}

.rd-why-card:hover {
  transform: translateY(-6px);
  border-color: var(--rd-blue);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(27, 141, 255, 0.2);
}

.rd-why-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(27, 141, 255, 0.1);
  border: 1px solid rgba(27, 141, 255, 0.3);
  color: var(--rd-blue-light);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.rd-why-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.rd-why-card__desc {
  color: var(--rd-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   7. HOW IT WORKS (TIMELINE)
   -------------------------------------------------------------------------- */
.rd-how {
  padding: 100px 0;
  background: rgba(17, 22, 30, 0.4);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  z-index: 1;
}

.rd-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.rd-timeline__line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.rd-timeline__line-progress {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--rd-gold), var(--rd-blue), var(--rd-gold));
  box-shadow: 0 0 15px var(--rd-blue);
}

.rd-timeline__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .rd-timeline__line { display: none; }
  .rd-timeline__grid { grid-template-columns: 1fr; }
}

.rd-timeline-item {
  text-align: center;
}

.rd-timeline-item__circle {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #07070F;
  border: 2px solid var(--rd-blue);
  color: var(--rd-blue-light);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 0 25px rgba(27, 141, 255, 0.4);
}

.rd-timeline-item__step {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--rd-gold);
  color: #07070F;
  font-family: var(--font-cinzel);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-timeline-item__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.rd-timeline-item__desc {
  color: var(--rd-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8. TESTIMONIALS
   -------------------------------------------------------------------------- */
.rd-testimonials {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.rd-testi-card {
  background: var(--rd-card-bg);
  border: 1px solid var(--rd-card-border);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rd-testi-text {
  color: var(--rd-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
}

.rd-testi-stars {
  color: var(--rd-gold);
  margin-bottom: 20px;
}

.rd-testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rd-testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rd-blue), #0d5bb5);
  color: #FFFFFF;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-testi-name {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 0.9rem;
}

.rd-testi-location {
  color: var(--rd-blue-light);
  font-size: 0.78rem;
}

/* --------------------------------------------------------------------------
   9. DOWNLOAD APP BANNER
   -------------------------------------------------------------------------- */
.rd-download {
  padding: 80px 0 100px;
  position: relative;
  z-index: 1;
}

.rd-download__banner {
  background: radial-gradient(circle at 75% 50%, rgba(27, 141, 255, 0.2) 0%, var(--rd-card-bg) 70%);
  border: 1px solid var(--rd-card-border);
  border-radius: 28px;
  padding: 60px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

@media (max-width: 991.98px) {
  .rd-download__banner {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    text-align: center;
  }
}

.rd-download__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-download__car-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: contrast(1.1) brightness(1.05) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 35px rgba(27, 141, 255, 0.45));
}

.rd-download__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 15px;
}

.rd-download__desc {
  color: var(--rd-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 480px;
}

.rd-download__btns {
  display: flex;
  gap: 15px;
}

@media (max-width: 991.98px) {
  .rd-download__btns {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.rd-app-store-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.rd-app-store-btn:hover {
  background: var(--rd-gold);
  color: #07070F;
  border-color: var(--rd-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.rd-app-store-btn small {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.rd-app-store-btn strong {
  display: block;
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   10. FOOTER
   -------------------------------------------------------------------------- */
.rd-footer {
  background: #05060b;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 80px 0 35px;
  position: relative;
  z-index: 10;
}

.rd-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 35px;
  margin-bottom: 60px;
}

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

@media (max-width: 767.98px) {
  .rd-footer__grid {
    grid-template-columns: 1fr;
  }
}

.rd-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 18px;
}

.rd-footer__brand-img {
  height: 38px;
  width: auto;
}

.rd-footer__brand-desc {
  color: var(--rd-text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 300px;
}

.rd-footer__socials {
  display: flex;
  gap: 10px;
}

.rd-footer__social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--rd-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.rd-footer__social:hover {
  background: var(--rd-gold);
  color: #07070F;
  border-color: var(--rd-gold);
  transform: translateY(-3px);
}

.rd-footer__col-title {
  font-family: var(--font-cinzel);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--rd-gold);
  margin-bottom: 22px;
}

.rd-footer__links, .rd-footer__contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rd-footer__links a {
  color: var(--rd-text-muted);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.rd-footer__links a:hover {
  color: var(--rd-blue-light);
  transform: translateX(4px);
}

.rd-footer__contact-info li {
  color: var(--rd-text-muted);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
}

.rd-footer__bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.825rem;
  color: var(--rd-text-muted);
}

@media (max-width: 575.98px) {
  .rd-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   DRIVER REGISTRATION MODAL
   -------------------------------------------------------------------------- */
.rd-modal {
  background: rgba(17, 22, 30, 0.95);
  border: 1px solid var(--rd-card-border);
  border-radius: 24px;
  padding: 25px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.rd-form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rd-text-muted);
  margin-bottom: 6px;
}

.rd-form-input {
  width: 100%;
  background: rgba(7, 7, 15, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

.rd-form-input:focus {
  border-color: var(--rd-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* --------------------------------------------------------------------------
   REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0ms);
}

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

/* --------------------------------------------------------------------------
   RESPONSIVE BUTTON OVERRIDES — Single-Line Text Across All Screens
   -------------------------------------------------------------------------- */

/* Tablet */
@media (max-width: 1024px) {
  .btn-gold {
    font-size: 0.78rem !important;
    padding: 10px 20px;
    letter-spacing: 0.06em;
  }
  .btn-gold--lg {
    font-size: 0.78rem;
    padding: 12px 22px;
    letter-spacing: 0.06em;
  }
  .btn-gold-outline {
    font-size: 0.78rem;
    padding: 10px 18px;
  }
}

/* Mobile landscape / small tablet */
@media (max-width: 768px) {
  .btn-gold {
    font-size: 0.74rem !important;
    padding: 9px 16px;
    letter-spacing: 0.04em;
    gap: 5px;
  }
  .btn-gold--lg {
    font-size: 0.74rem;
    padding: 11px 18px;
    letter-spacing: 0.04em;
  }
  .btn-gold-outline {
    font-size: 0.74rem;
    padding: 9px 14px;
    gap: 5px;
  }
  .rd-hero__actions {
    gap: 10px;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .btn-gold {
    font-size: 0.7rem !important;
    padding: 9px 14px;
    letter-spacing: 0.03em;
    gap: 4px;
  }
  .btn-gold--lg {
    font-size: 0.7rem;
    padding: 10px 16px;
    letter-spacing: 0.03em;
  }
  .btn-gold-outline {
    font-size: 0.7rem;
    padding: 9px 12px;
    gap: 4px;
  }
}
