/* home.css - Homepage Specific Styles */

/* -------------------- Hero Section -------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 100%;
  z-index: 0;
  /* FIX: ensure slides sit below overlay/content */
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* show first slide before JS kicks in */
.hero-slider .hero-slide:first-child {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, .7), rgba(255, 107, 53, .3));
  z-index: 1;
  /* FIX: overlay below content & spotlight */
}

.hero-content {
  position: relative;
  z-index: 5;
  /* FIX: above overlay/slides */
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  padding-top: 100px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: .9;
}

/* Demo image for slide-1 */
.hero-slide.slide-1 {
  background-image: url('https://picsum.photos/1920/800?random=1');
}

/* -------------------- Booking Form -------------------- */
.booking-form-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, .1);
  z-index: 6;
  /* FIX: above spotlight dots, but at page bottom */
}

.booking-form {
  display: flex;
  gap: 15px;
  padding: 30px 0;
  align-items: flex-end;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: .3s;
}

.form-group input:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, .1);
}

/* -------------------- Features -------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
  transition: .3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  transition: .3s;
}

.feature-card:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #222;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* -------------------- Fleet Grid -------------------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.fleet-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  transition: .3s;
}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .2);
}

.fleet-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.fleet-card:hover .fleet-image img {
  transform: scale(1.1);
}

.fleet-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff6b35;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.fleet-details {
  padding: 25px;
}

.fleet-details h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #222;
}

.fleet-specs {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.fleet-specs span {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
}

.fleet-specs span:before {
  content: '✓';
  color: #ff6b35;
  margin-right: 5px;
}

.fleet-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 20px;
}

.fleet-price .price {
  font-size: 2rem;
  font-weight: 700;
  color: #ff6b35;
}

.fleet-price .period {
  color: #666;
  font-size: 1rem;
}

/* -------------------- Promo Strip -------------------- */
.promo-strip {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.promo-strip:before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
  background-size: 100px 100px;
  animation: float 20s linear infinite;
}

@keyframes float {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(50%)
  }
}

.promo-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.promo-text h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.promo-text p {
  color: rgba(255, 255, 255, .9);
  font-size: 1.2rem;
}

/* -------------------- About / Stats -------------------- */
.about-content {
  padding-right: 50px;
}

.about-content h2 {
  margin-bottom: 25px;
}

.about-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.stat-card {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  transition: .3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ff6b35;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
}

/* -------------------- Testimonials -------------------- */
.testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: slideIn .5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px)
  }

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

.testimonial-card {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
  text-align: center;
}

.testimonial-rating {
  font-size: 24px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
  font-style: italic;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 5px;
  color: #222;
}

.testimonial-author span {
  color: #666;
  font-size: 14px;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-prev,
.carousel-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ff6b35;
  color: #ff6b35;
  font-size: 24px;
  cursor: pointer;
  transition: .3s;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: #ff6b35;
  color: #fff;
  transform: scale(1.1);
}

/* -------------------- Blog -------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  transition: .3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff6b35;
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: #222;
}

.blog-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-link {
  color: #ff6b35;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: .3s;
}

.blog-link:hover {
  transform: translateX(5px);
}

/* -------------------- Partners -------------------- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
}

.partner-logo {
  text-align: center;
  opacity: .7;
  transition: .3s;
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

.partner-logo img {
  filter: grayscale(100%);
  transition: filter .3s;
}

.partner-logo:hover img {
  filter: grayscale(0%);
}

/* ===================================================== */
/* ===== Featured Cars — AutoDune-like arch cards ===== */
/* ===================================================== */
.featured-cars-arch {
  --radius: 28px;
  --floor-h: 22%;
}

.car-arch-grid {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #eee;
}

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

@media (max-width:640px) {
  .car-arch-grid {
    grid-template-columns: 1fr;
  }
}

.car-arch-card {
  padding: clamp(18px, 2vw, 24px);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04), 0 8px 24px rgba(0, 0, 0, .06);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}

.car-arch-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
}

.car-arch-title {
  text-align: center;
  font-weight: 800;
  font-size: clamp(18px, 2.1vw, 22px);
  margin: 6px 0 4px;
}

.car-arch-sub {
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  margin: 0 0 16px;
}

.car-arch-figure {
  position: relative;
  aspect-ratio: 16/12;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}

.arch-bg::before,
.arch-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  clip-path: ellipse(75% 60% at 50% 0%);
  transition: opacity .45s ease, filter .35s ease;
}

.arch-bg::before {
  background-image: var(--bg);
}

.arch-bg::after {
  background-image: var(--bg-hover);
  opacity: 0;
}

.car-arch-card:hover .arch-bg::after {
  opacity: 1;
}

.arch-floor {
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: calc(var(--floor-h) * -0.2);
  height: calc(var(--floor-h) + 2%);
  background: linear-gradient(180deg, #0b2740 0%, #091b2c 100%);
  border-radius: 6px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .28);
  z-index: 1;
}

.arch-car {
  position: absolute;
  inset: auto 8% 0 8%;
  height: 64%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, .30)) drop-shadow(0 6px 12px rgba(0, 0, 0, .18));
  transition: transform .3s ease, filter .3s ease;
  -webkit-mask-image: linear-gradient(to top, #000 88%, rgba(0, 0, 0, 0) 98%);
  mask-image: linear-gradient(to top, #000 88%, rgba(0, 0, 0, 0) 98%);
}

.car-arch-card:hover .arch-car {
  transform: translateY(-6px) scale(1.02);
}

.arch-price {
  position: absolute;
  right: clamp(10px, 2vw, 16px);
  top: clamp(10px, 2vw, 16px);
  width: 98px;
  height: 98px;
  border-radius: 999px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  color: #0a1224;
  background: radial-gradient(120% 110% at 32% 22%, #fff 0%, #f5f7fb 55%, #e8ecf3 100%);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .18), 0 3px 10px rgba(15, 23, 42, .12),
    inset 0 1px 0 rgba(255, 255, 255, .95), inset 0 -10px 18px rgba(12, 18, 32, .08);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.arch-price::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from 220deg, #a0c8ff, #7dd3fc, #a7f3d0, #fde68a, #a0c8ff);
  opacity: .38;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 0);
  mask: radial-gradient(farthest-side, transparent calc(100% - 8px), #000 0);
}

.arch-price::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  background: radial-gradient(120% 100% at 32% 22%, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .4) 55%, rgba(255, 255, 255, 0) 72%);
}

.arch-price-amount {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: .1px;
  font-variant-numeric: tabular-nums;
}

.arch-price-amount::first-letter {
  font-size: 14px;
  margin-right: 1px;
  position: relative;
  top: -1px;
  opacity: .9;
}

.arch-price-per {
  font-size: 12px;
  opacity: .85;
  transform: translateY(-1px);
}

.car-arch-card:hover .arch-price {
  transform: translateY(-2px) rotate(5deg);
  background: radial-gradient(120% 110% at 32% 22%, #fff 0%, #eef6ff 55%, #e6f6ff 100%);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .22), 0 6px 14px rgba(15, 23, 42, .14),
    inset 0 1px 0 rgba(255, 255, 255, .96), inset 0 -12px 20px rgba(12, 18, 32, .10);
}

/* Theme images */
.car-arch-figure.arch-theme-1 {
  --bg: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?q=80&w=1600&auto=format&fit=crop');
  --bg-hover: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1600&auto=format&fit=crop');
}

.car-arch-figure.arch-theme-2 {
  --bg: url('https://images.unsplash.com/photo-1482192505345-5655af888cc4?q=80&w=1600&auto=format&fit=crop');
  --bg-hover: url('https://images.unsplash.com/photo-1483729558449-99ef09a8c325?q=80&w=1600&auto=format&fit=crop');
}

.car-arch-figure.arch-theme-3 {
  --bg: url('https://images.unsplash.com/photo-1541976076758-347942db1979?q=80&w=1600&auto=format&fit=crop');
  --bg-hover: url('https://images.unsplash.com/photo-1518306727298-4c1e0b1e6c7a?q=80&w=1600&auto=format&fit=crop');
}

/* ===================================================== */
/* ===== WHY CHOOSE US — simple, clean layout ===== */
/* ===================================================== */
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  column-gap: clamp(24px, 3vw, 40px);
  row-gap: clamp(12px, 2vw, 20px);
  align-items: start;
}

.why-head {
  grid-column: 1;
  grid-row: 1;
  margin: 0 0 clamp(10px, 1.6vw, 14px);
}

.why-title {
  margin: 0;
  color: #0f172a;
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.18;
}

.why-title em {
  color: #0b74e5;
  font-style: italic;
}

.why-card {
  grid-column: 1;
  grid-row: 2;
  background: #0f2435;
  color: #eaf2f9;
  border-radius: 14px;
  padding: clamp(20px, 3vw, 40px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .10);
}

.why-list {
  margin: 16px 0 0;
  padding: 0;
}

.why-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  padding: 14px 0;
}

.why-item+.why-item {
  border-top: 1px dashed rgba(255, 255, 255, .14);
}

.why-text h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.why-text p {
  margin: 0;
  font-size: 14px;
  color: #d7e5f2;
  line-height: 1.6;
}

.why-media {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  min-height: clamp(420px, 56vh, 560px);
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  /* section photo only */
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.why-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0) scale(1.02);
  transition: transform .5s cubic-bezier(.2, .7, .2, 1), filter .5s cubic-bezier(.2, .7, .2, 1);
}

.why-media:hover .why-img {
  transform: translateZ(0) scale(1.06);
  filter: brightness(1.02) saturate(1.02);
}

.why-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  background: none;
  cursor: pointer;
}

.why-stats {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
  margin-top: clamp(40px, 6vw, 60px);
  padding-top: clamp(20px, 3vw, 30px);
  border-top: 1px solid #e5e7eb;
}

.why-xp {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.1;
}

.xp-number {
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px #0f2435;
  text-stroke: 2px #0f2435;
  position: relative;
}

.xp-number::after {
  content: attr(data-target);
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #4b5563, #111827);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.xp-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  opacity: .9;
}

.why-copy {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  max-width: 600px;
}

/* ================= Hero Spotlight (foreground carousel) ================= */
/* FIX: HERO SPOTLIGHT — transparent, correct stacking, centered images */
.hero-spotlight {
  position: relative;
  z-index: 8;
  /* above overlay/slides */
  width: min(72vw, 720px);
  margin: clamp(24px, 6vh, 48px) auto 0;
  display: grid;
  place-items: center;
}

/* “car name” / big split title */
.spotlight-title {
  position: absolute;
  /* anchor relative to spotlight wrapper so it never drifts */
  left: 50%;
  transform: translateX(-50%);
  bottom: 54%;
  /* sits over the upper half of oval */
  display: flex;
  gap: .08em;
  justify-content: center;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: .06em;
  font-size: clamp(56px, 12vw, 132px);
  line-height: .9;
  color: rgba(255, 255, 255, .95);
  text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
  pointer-events: none;
  z-index: 9;
  /* FIX: above frame & images */
  white-space: nowrap;
}

.spotlight-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 50% / 58%;
  overflow: hidden;
  /* FIX: remove painted background; keep rings only */
  background: transparent;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
}

/* dual ring (unchanged look) */
.spotlight-frame::before,
.spotlight-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.spotlight-frame::before {
  box-shadow: inset 0 0 0 6px #c5662a;
}

.spotlight-frame::after {
  inset: 12px;
  border-radius: inherit;
  box-shadow: inset 0 0 0 2px #0e5875;
}

/* inner carousel container */
.spotlight-carousel {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  /* FIX: transparent instead of black */
  background: transparent;
}

.spot-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .6s ease, transform .6s ease;
}

/* show first slide by default (before JS toggles .active) */
.spotlight-carousel .spot-slide:first-child {
  opacity: 1;
  transform: none;
}

.spot-slide.active {
  opacity: 1;
  transform: none;
}

.spot-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* FIX: keep full-cover */
  object-position: center;
  /* FIX: consistent centering for all images */
}

/* dots inside the oval, always above imagery */
.spotlight-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(10px, 2vh, 22px);
  z-index: 10;
  /* above slides, below booking */
  display: grid;
  grid-auto-flow: column;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .28);
  /* subtle glass over image */
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.spotlight-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .4) inset;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}

.spotlight-dots button:hover {
  transform: scale(1.15);
}

.spotlight-dots button[aria-current="true"] {
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .35) inset;
}

/* -------------------- Form message styles (no inline injection) ---------- */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0
  }

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

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1
  }

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

.form-message {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
  background: #28a745;
  color: #fff;
  padding: 15px 25px;
  border-radius: 5px;
  animation: slideInRight .5s ease;
}

.form-message.error {
  background: #dc3545;
}

.form-message.leaving {
  animation: slideOutRight .5s ease forwards;
}

input.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, .1) !important;
}

/* -------------------- Responsive -------------------- */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .booking-form {
    flex-direction: column;
  }

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

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

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

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

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

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

  .why-media {
    grid-column: 1;
    grid-row: 2;
    min-height: 360px;
  }

  .why-card {
    grid-column: 1;
    grid-row: 3;
  }

  .why-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why-xp {
    align-items: center;
  }

  /* hero spotlight/title scale */
  .spotlight-title {
    bottom: 58%;
    font-size: clamp(42px, 13vw, 108px);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .features-grid,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .promo-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .promo-text h2 {
    font-size: 2rem;
  }

  .about-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 1rem;
  }

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

@media (max-width: 480px) {
  .hero {
    min-height: 500px;
  }

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

  .hero-content {
    padding-top: 60px;
  }

  .booking-form-wrapper {
    position: relative;
    margin-top: -50px;
  }

  .feature-card {
    padding: 30px 15px;
  }

  .fleet-details {
    padding: 20px 15px;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* -------------------- FINAL hero desktop tuning -------------------- */
/* Make the spotlight clearly smaller on desktop, keep nav dots visible,
   and keep the default heading/subtitle visible */
@media (min-width: 992px) {

  .hero,
  .hero-content {
    height: 100vh;
  }

  .hero-content {
    padding-top: 0;
    justify-content: center;
    align-items: center;
  }

  .hero-title {
    margin-bottom: 12px;
  }

  .hero-subtitle {
    margin-bottom: 16px;
  }

  .hero-spotlight {
    width: min(32vw, 340px);
    margin-bottom: 8px;
  }

  .spotlight-frame {
    max-height: min(58vh, 420px);
  }

  .spotlight-frame::before {
    box-shadow: inset 0 0 0 2px #c5662a;
  }

  .spotlight-frame::after {
    inset: 6px;
    box-shadow: inset 0 0 0 1px #0e5875;
  }

  .spotlight-title {
    bottom: 54%;
    font-size: clamp(28px, 6.2vw, 72px);
  }

  .spotlight-dots {
    bottom: clamp(14px, 3vh, 28px);
  }
}

@media (min-width: 1400px) {
  .hero-spotlight {
    width: min(28vw, 300px);
  }

  .spotlight-frame {
    max-height: min(52vh, 380px);
  }

  .spotlight-title {
    font-size: clamp(26px, 5.4vw, 64px);
  }
}


/* 1) Give the spotlight frame a real size */
.hero-spotlight {
  /* keep vertical centering but stretch horizontally so the frame gets width */
  align-items: center;
  justify-items: stretch;
}

.spotlight-frame {
  width: 100%;
  /* takes the width of .hero-spotlight */
  height: auto;
  /* resolved from aspect-ratio */
  aspect-ratio: 4 / 5;
  /* keeps the oval tall */
}

/* 2) On desktop, constrain by height but keep a definite inline size */
@media (min-width: 992px) {
  .hero-spotlight {
    width: min(32vw, 340px);
  }

  /* you already set this; repeat here if needed */
  .spotlight-frame {
    width: 100%;
    /* ensure it doesn’t shrink to 0 */
    height: min(58vh, 420px);
    /* use height instead of only max-height */
  }
}

/* 3) Make sure one spotlight slide is visible before JS */
.spotlight-carousel>.spot-slide:first-of-type {
  opacity: 1;
  transform: none;
}

/* 4) If you have multiple hero background slides, give them images */
.hero-slide.slide-1 {
  background-image: url('https://picsum.photos/1920/800?random=1');
}

.hero-slide.slide-2 {
  background-image: url('https://picsum.photos/1920/800?random=2');
}

.hero-slide.slide-3 {
  background-image: url('https://picsum.photos/1920/800?random=3');
}

/* 5) (Optional) Ensure spotlight images behave consistently */
.spot-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


/* ========= HERO SPOTLIGHT — force full image visibility on desktop ========= */

/* Give the spotlight a reasonable width that can shrink if needed */
.hero-spotlight {
  width: clamp(260px, 28vw, 380px);
  /* smaller cap so the whole car fits */
  justify-items: center;
  /* keep centered horizontally */
  align-items: center;
  /* keep centered vertically */
}

/* The oval frame must have a definite box to resolve aspect-ratio */
.spotlight-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  /* tall oval */
  height: auto;
  /* computed from aspect ratio */
  overflow: hidden;
  /* keep the oval mask */
  background: transparent;
  /* no black fill */
}

/* Slides: center their content and start slightly smaller (no cropping) */
.spot-slide {
  position: absolute;
  inset: 0;
  display: grid;
  /* enables place-items for child */
  place-items: center;
  /* hard-center each slide’s image */
  opacity: 0;
  transform: scale(.96);
  /* start a touch smaller (no edge clipping) */
  transition: opacity .6s ease, transform .6s ease;
}

.spotlight-carousel>.spot-slide:first-of-type {
  opacity: 1;
  transform: scale(1);
}

.spot-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* The image must ALWAYS fit entirely inside the oval */
.spot-slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  /* keep natural ratio */
  height: auto;
  object-fit: contain;
  /* key: show the FULL photo (no crop) */
  object-position: center center;
  /* remove any prior scale-up that could cause cropping */
}

/* Desktop tuning: also limit height so it never grows too tall */
@media (min-width: 992px) {
  .hero-spotlight {
    width: clamp(260px, 24vw, 340px);
    /* slightly smaller on wide screens */
  }

  .spotlight-frame {
    height: min(52vh, 380px);
    /* hard cap height to avoid overflow */
  }

  .spotlight-dots {
    bottom: clamp(12px, 3vh, 28px);
  }

  .spotlight-title {
    bottom: 56%;
    /* lift the title a bit so it
                                           doesn’t overlap the car top */
    font-size: clamp(26px, 5.6vw, 64px);
  }
}

/* If your background hero slides rotate, ensure each has an image */
.hero-slide.slide-1 {
  background-image: url('https://picsum.photos/1920/800?random=1');
}

.hero-slide.slide-2 {
  background-image: url('https://picsum.photos/1920/800?random=2');
}

.hero-slide.slide-3 {
  background-image: url('https://picsum.photos/1920/800?random=3');
}




/* =========================
   Contact Section (drop-in)
   ========================= */

:root {
  --contact-accent: #ff6b35;
  /* matches your brand */
  --contact-bg: transparent;
  /* no solid background */
  --contact-card: #ffffff;
  --contact-ink: #0f172a;
  --contact-ink-soft: #4b5563;
  --contact-line: #e5e7eb;
  --contact-ring: rgba(255, 107, 53, 0.25);
  --contact-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

@media (prefers-color-scheme: dark) {
  :root {
    --contact-card: #0b1220;
    --contact-ink: #e5e7eb;
    --contact-ink-soft: #a3aab8;
    --contact-line: #283143;
    --contact-shadow: 0 10px 34px rgba(0, 0, 0, .35);
    --contact-ring: rgba(255, 107, 53, 0.4);
  }
}

/* Layout */
.contact {
  background: var(--contact-bg);
  padding: clamp(48px, 6vw, 96px) 0;
}

.contact__container {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  /* info | form */
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
}

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

/* Info panel */
.contact__info {
  background: var(--contact-card);
  border: 1px solid var(--contact-line);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--contact-shadow);
}

.contact__title {
  margin: 0 0 8px;
  color: var(--contact-ink);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.contact__lead {
  margin: 0 0 16px;
  color: var(--contact-ink-soft);
  line-height: 1.7;
}

.contact__list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.contact__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  color: var(--contact-ink);
}

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

.contact__item a:hover {
  text-decoration: underline;
}

.contact__icon {
  width: 22px;
  height: 22px;
  fill: var(--contact-accent);
  opacity: .95;
}

/* Map */
.contact__map-wrap {
  margin-top: clamp(16px, 2.5vw, 24px);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--contact-line);
  box-shadow: var(--contact-shadow);
  background: transparent;
  /* no solid background */
}

.contact__map {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

@media (max-width: 480px) {
  .contact__map {
    height: 220px;
  }
}

/* Form card */
.contact__form {
  background: var(--contact-card);
  border: 1px solid var(--contact-line);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--contact-shadow);
}

.form__set {
  margin: 0;
  padding: 0;
  border: 0;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.form__field {
  display: grid;
  gap: 8px;
}

.form__field label {
  font-weight: 600;
  color: var(--contact-ink);
}

.form__field input,
.form__field textarea {
  width: 100%;
  border: 1px solid var(--contact-line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 16px;
  color: var(--contact-ink);
  background: transparent;
  transition: box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}

.form__field textarea {
  resize: vertical;
}

.form__field input::placeholder,
.form__field textarea::placeholder {
  color: #9aa3b2;
}

/* Accessible focus styles */
.form__field input:focus-visible,
.form__field textarea:focus-visible,
.btn:focus-visible {
  outline: 0;
  border-color: var(--contact-accent);
  box-shadow: 0 0 0 3px var(--contact-ring);
}

/* Hint text */
.form__hint {
  color: var(--contact-ink-soft);
  font-size: 0.9rem;
}

/* Actions */
.form__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}

.btn--accent {
  background: var(--contact-accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 107, 53, 0.25);
}

.btn--accent:hover {
  transform: translateY(-1px);
}

.form__note {
  color: var(--contact-ink-soft);
  margin: 0;
}

/* Status live region (for your JS) */
.form__status {
  margin-top: 10px;
  min-height: 1em;
  color: var(--contact-ink);
}

/* Honeypot (visually hidden but still in DOM) */
.contact__hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Utility for screen-reader-only content */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  overflow: hidden;
}



/* === Spotlight tweaks: no border, title up, carousel up === */

/* 1) Remove the oval ring/border around the carousel image */
.spotlight-frame::before,
.spotlight-frame::after {
  content: none !important;
  /* kills the ring layers */
  box-shadow: none !important;
}

/* 2) Move the entire carousel a bit up */
.hero-spotlight {
  /* keep centered, just nudge upward */
  margin-top: clamp(6px, 1.5vh, 12px);
  transform: translateY(-3vh);
}

/* 3) Lift the car name slightly */
.spotlight-title {
  bottom: 62% !important;
  /* was ~54–58%; a bit higher now */
}

/* Desktop: push a tad more on wide screens */
@media (min-width: 992px) {
  .hero-spotlight {
    transform: translateY(-5vh);
  }

  .spotlight-title {
    bottom: 64% !important;
  }
}

/* Small screens: keep it balanced so it doesn't clash with the image */
@media (max-width: 768px) {
  .hero-spotlight {
    transform: translateY(-2vh);
  }

  .spotlight-title {
    bottom: 60% !important;
  }
}


/* --- Prevent slide stacking (spotlight & hero) --- */

/* Spotlight: kill the first-child fallback when it's not the active one */
.spotlight-carousel .spot-slide:first-child:not(.active),
.spotlight-carousel>.spot-slide:first-of-type:not(.active) {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Ensure only the active spotlight slide is interactive and on top */
.spotlight-carousel .spot-slide {
  z-index: 0;
  pointer-events: none;
}

.spotlight-carousel .spot-slide.active {
  z-index: 2;
  pointer-events: auto;
}

/* Hero background: same idea */
.hero-slider .hero-slide:first-child:not(.active) {
  opacity: 0 !important;
}

.hero-slider .hero-slide {
  pointer-events: none;
}

.hero-slider .hero-slide.active {
  pointer-events: auto;
}



/* ===== Booking Form: new selects + price inputs ===== */

/* Make selects look like your inputs */
.booking-form .form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: .3s;
  background-color: #fff;
}

.booking-form .form-group select:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, .1);
}

/* Optional: keep number inputs clean (hide spinners where supported) */
.booking-form .form-group input[type="number"]::-webkit-outer-spin-button,
.booking-form .form-group input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.booking-form .form-group input[type="number"] {
  -moz-appearance: textfield;
}

/* Ensure the submit button spans full width when using .btn-block */
.booking-form .btn-block {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Slightly stabilize column widths on wide screens without breaking mobile */
@media (min-width: 992px) {
  .booking-form .form-group {
    min-width: 180px;
  }
}



/* 1) Let grid children stretch to equal heights */
.fleet-grid {
  align-items: stretch;
}

/* 2) Give each card a real height context */
.fleet-card {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  /* image | details that can grow */
}

/* 3) Make the details a column so the button can stick to bottom */
.fleet-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  /* avoid overflow pushing things around */
}

/* 4) Normalize heading impact (long titles won’t push the button) */
.fleet-details h3 {
  line-height: 1.25;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* clamp to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 5) Reserve vertical space for price (some cars don’t have price) */
.fleet-price {
  margin: 4px 0 0;
  min-height: 32px;
  /* ~1 line block reserved */
  display: flex;
  align-items: baseline;
  gap: 5px;
}

/* 6) PIN the button row at the bottom of the card */
.fleet-details .btn.btn-block {
  margin-top: auto;
  /* <-- key line: pushes button to bottom */
  width: 100%;
  text-align: center;
}

/* (optional) tighten specs so variability is smaller */
.fleet-specs {
  gap: 10px;
  margin: 0;
  flex-wrap: wrap;
}


.car-arch-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.car-arch-cta {
  margin-top: auto;
  /* pins CTA to the bottom across all arch cards */
  display: grid;
}

.car-arch-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Browse by Body Type (hero strip) ===== */
.bodytype-strip {
  padding: 28px 0;
}

.bodytype-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.bodytype-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 10px;
  border: 1px solid #ececec;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.bodytype-card img {
  width: 110px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .12));
}

.bodytype-card span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  color: #0f172a;
  text-transform: uppercase;
}

.bodytype-card:hover,
.bodytype-card:focus-visible {
  transform: translateY(-6px);
  border-color: #ff6b35;
  box-shadow: 0 16px 36px rgba(255, 107, 53, 0.22);
  outline: none;
}

/* Responsive */
@media (max-width: 992px) {
  .bodytype-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

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

  .bodytype-card img {
    width: 100px;
    height: 64px;
  }
}

/* ===== Body type section BELOW hero ===== */
.bodytype-section {
  padding: clamp(18px, 3vh, 28px) 0;
  background: transparent;
}

.bodytype-shell {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  padding: clamp(10px, 1.8vw, 16px);
}

/* Grid of cards */
.bodytype-section .bodytype-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.bodytype-section .bodytype-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 10px;
  border: 1px solid #ececec;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.bodytype-section .bodytype-card img {
  width: 110px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .12));
}

.bodytype-section .bodytype-card span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  color: #0f172a;
  text-transform: uppercase;
}

.bodytype-section .bodytype-card:hover,
.bodytype-section .bodytype-card:focus-visible {
  transform: translateY(-6px);
  border-color: #ff6b35;
  box-shadow: 0 16px 32px rgba(255, 107, 53, .22);
  outline: none;
}

/* Responsive */
@media (max-width: 992px) {
  .bodytype-section .bodytype-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .bodytype-section .bodytype-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .bodytype-section .bodytype-card img {
    width: 96px;
    height: 60px;
  }
}

/* Force horizontal layout for ANY bodytype list, anywhere */
.bodytype-list {
  display: flex !important;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  /* ensure no default ul padding */
  margin: 0;
}

.bodytype-list>li {
  list-style: none;
  flex: 0 0 15%;
  /* ~6 per row on desktop */
}

.bodytype-list .bodytype-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  /* make the card fill its li */
}

/* Responsive widths */
@media (max-width: 992px) {
  .bodytype-list>li {
    flex-basis: 30%;
  }

  /* 3 per row */
}

@media (max-width: 600px) {
  .bodytype-list>li {
    flex-basis: 48%;
  }

  /* 2 per row */
}

/* ================================
   Browse by Body Type – Visual Polish
   Append below existing rules
   ================================ */

:root {
  --brand-1: #ff6b35;
  /* existing brand orange */
  --brand-2: #f7931e;
  /* secondary orange */
  --ink-strong: #0f172a;
  /* deep slate */
  --bt-ring: rgba(255, 107, 53, .28);
}

/* Soft background accents behind the shell */
.bodytype-section {
  background:
    radial-gradient(1200px 400px at -10% 0%, rgba(255, 107, 53, .06), transparent 60%),
    radial-gradient(900px 300px at 120% 30%, rgba(247, 147, 30, .05), transparent 60%);
}

/* Subtle glassy surface for the white container */
.bodytype-shell {
  border: 1px solid rgba(15, 23, 42, .06);
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: saturate(140%) blur(3px);
  backdrop-filter: saturate(140%) blur(3px);
}

/* Gradient border, depth and snappy hover */
.bodytype-section .bodytype-card {
  position: relative;
  border: 1px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--brand-1), var(--brand-2)) border-box;
  /* gradient border */
  box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
  transform: translateZ(0);
  transition:
    transform .25s cubic-bezier(.2, .7, .2, 1),
    box-shadow .25s ease,
    background .25s ease,
    filter .25s ease;
}

/* Soft ambient glow on hover */
.bodytype-section .bodytype-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  pointer-events: none;
  background:
    radial-gradient(120% 120% at 50% 0%,
      rgba(255, 107, 53, .18), rgba(247, 147, 30, .12), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease;
}

.bodytype-section .bodytype-card:hover::before {
  opacity: .9;
}

/* Quick “shine” sweep */
.bodytype-section .bodytype-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .35) 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .6s ease;
  pointer-events: none;
}

.bodytype-section .bodytype-card:hover::after {
  transform: translateX(120%);
}

.bodytype-section .bodytype-card:hover,
.bodytype-section .bodytype-card:focus-visible {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .16);
}

/* Image lift + subtle pop */
.bodytype-section .bodytype-card img {
  transition: transform .35s ease, filter .35s ease;
  will-change: transform, filter;
}

.bodytype-section .bodytype-card:hover img {
  transform: translateY(-6px) scale(1.03);
  filter: saturate(1.05) drop-shadow(0 12px 18px rgba(15, 23, 42, .15));
}

/* Gradient text label */
.bodytype-section .bodytype-card span {
  background-image: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: letter-spacing .2s ease, opacity .2s ease;
}

.bodytype-section .bodytype-card:hover span {
  letter-spacing: .04em;
}

/* Accessible focus ring */
.bodytype-section .bodytype-card:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 4px var(--bt-ring),
    0 18px 40px rgba(15, 23, 42, .16);
}

/* Staggered entrance for the 6 tiles */
@keyframes bt-fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.98);
  }

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

.bodytype-section .bodytype-list>li {
  animation: bt-fadeUp .5s ease both;
}

.bodytype-section .bodytype-list>li:nth-child(1) {
  animation-delay: .02s;
}

.bodytype-section .bodytype-list>li:nth-child(2) {
  animation-delay: .06s;
}

.bodytype-section .bodytype-list>li:nth-child(3) {
  animation-delay: .10s;
}

.bodytype-section .bodytype-list>li:nth-child(4) {
  animation-delay: .14s;
}

.bodytype-section .bodytype-list>li:nth-child(5) {
  animation-delay: .18s;
}

.bodytype-section .bodytype-list>li:nth-child(6) {
  animation-delay: .22s;
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {

  .bodytype-section .bodytype-card,
  .bodytype-section .bodytype-card img,
  .bodytype-section .bodytype-card::after,
  .bodytype-section .bodytype-list>li {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

/* ================================
   Optional: Hero micro-polish
   (keeps your hero visible; just a nicer blend)
   ================================ */
.hero-overlay {
  background:
    radial-gradient(70% 60% at 30% 20%, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .25) 60%, transparent 100%),
    linear-gradient(135deg, rgba(15, 23, 42, .62), rgba(255, 107, 53, .22));
}

.hero-spotlight .spotlight-frame {
  transition: box-shadow .3s ease, transform .3s ease;
}

.hero-spotlight .spotlight-frame:hover {
  box-shadow: 0 22px 60px rgba(15, 23, 42, .28), 0 0 0 3px rgba(255, 107, 53, .16) inset;
  transform: translateY(-2px);
}

/* ==== Mobile: hide spotlight carousel completely ==== */
@media (max-width: 768px) {
  .hero-spotlight {
    display: none !important;
  }
}

/* =========================
   Mobile-only hero quick links
   ========================= */

.hero-mobile-links {
  display: none;
  /* hidden by default (desktop/tablet) */
}

@media (max-width: 768px) {
  .hero-mobile-links {
    display: block;
    padding: 12px 0 20px;
    background: #ffffff;
  }

  .hero-mobile-links-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-mobile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  }

  /* Primary “location” pill */
  .hero-mobile-link--rent {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(255, 107, 53, 0.35);
  }

  .hero-mobile-link--used {
    background: #ffffff;
    color: #0f172a;
  }

  .hero-mobile-link:hover,
  .hero-mobile-link:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
    outline: none;
  }
}

/* ===== Mobile-only: make hero title a bit smaller (fit 1 sentence) ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.55rem, 6.2vw, 2.15rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
  }
}


/* ===========================
   FIX: Hero image not showing on mobile
   (keeps first slide visible until an active slide exists)
   =========================== */

/* Always show the first hero slide as a fallback */


/* ===========================
   MOBILE: show full background image (no crop)
   =========================== */



/* =========================
   MOBILE FIX: show spotlight + full image visible
   Put this at the VERY END of home.css
   ========================= */

/* =========================================================
   MOBILE HERO FIX (append at VERY END of home.css)
   Goal: hero image fully visible (no crop), hero may shrink
   ========================================================= */

/* =========================================================
   ULTIMATE: ONE HERO IMAGE ONLY (no slider, no crop)
   ========================================================= */




/* =========================================================
   ULTIMATE HERO FIX
   - ONE image only (kills slide-2/3)
   - Mobile: FULL image visible (no crop) + hero shrinks
   ========================================================= */

/* Hero background: only hide the first fallback when slider is actually running */
.hero-slider.is-running .hero-slide:first-child:not(.active) {
  opacity: 0 !important;
}

.hero-slider .hero-slide { pointer-events: none; }
.hero-slider .hero-slide.active { pointer-events: auto; }


/* ===========================
   MOBILE HERO: full image + hero height follows image ratio
   =========================== */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 0;
  }

  /* make the slider define the hero height */
  .hero-slider {
    height: auto;
    aspect-ratio: var(--hero-ar, 16 / 9); /* fallback */
    position: relative;
  }

  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: contain;       /* FULL image visible */
    background-repeat: no-repeat;
    background-position: center top; /* nicer framing */
  }

  /* keep content overlayed on top of the image */
  .hero-content {
    position: absolute;
    inset: 0;
    height: 100%;
    padding-top: 72px;
    padding-bottom: 18px;
    justify-content: flex-end;
  }

  /* booking form should be below, not covering the image */
  .booking-form-wrapper {
    position: relative;
  }
}






