.hero-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    padding: 5rem 0;
}
.hero-section .lead {
    color: rgba(255,255,255,.85);
}
.section-title {
    margin-bottom: 2rem;
}
.info-strip {
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
.car-card {
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
    height: 100%;
}
.car-card .car-image-wrap {
    aspect-ratio: 16 / 10;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}
.car-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature-pill {
    display: inline-block;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    padding: .2rem .6rem;
    margin-right: .35rem;
    margin-bottom: .35rem;
    font-size: .85rem;
}
.service-card, .metric-card, .contact-card {
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    background: #fff;
    height: 100%;
}
.cta-band {
    background: #111827;
    color: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
}
footer.site-footer {
    background: #0f172a;
    color: rgba(255,255,255,.85);
}
footer.site-footer a {
    color: rgba(255,255,255,.9);
}
.navbar-brand {
    font-weight: 700;
}
.booking-form {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.car-card {
  overflow: visible;
}

.car-image-wrap {
  position: relative !important;
  overflow: hidden;
}

.car-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  transition: filter 0.25s ease;
}

.car-hover-actions {
  position: absolute !important;
  left: 50% !important;
  bottom: 16px !important;
  transform: translateX(-50%) translateY(12px) !important;

  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;

  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;

  z-index: 20 !important;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease !important;
}

.car-card:hover .car-hover-actions,
.car-image-wrap:hover .car-hover-actions {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}

.car-card:hover .car-image-wrap img,
.car-image-wrap:hover img {
  filter: brightness(0.85);
}

.car-hover-actions .btn {
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  margin: 0;
}

.compare-popup {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 20px;
  padding: 1rem;
  z-index: 10;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.compare-popup-header {
  margin-bottom: 0.75rem;
}

.compare-popup-body {
  max-height: 420px;
  overflow-y: auto;
}

.compare-option-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 0.75rem;
  height: 100%;
  background: #fff;
}

.compare-option-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.compare-option-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0.5rem 0 0.75rem;
}

.compare-option-meta span {
  font-size: 0.8rem;
  background: #f5f5f5;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.like-btn.liked {
  background: #212529;
  color: #fff;
  border-color: #212529;
}
