/* ── HERO ── */
.hero-section {
  position: relative;
  background: linear-gradient(160deg, #db2020 0%, #8b0000 60%, #4a0000 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 5% 60px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 80px;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-title {
  font-size: clamp(42px, 7vw, 40px);
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 32px;
  max-width: 700px;
  letter-spacing: -3px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
}
.hero-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

/* ── SEARCH CARD ── */
.search-card {
  background: #fff;
  border-radius: 20px;
  padding: 8px;
  display: flex;
  align-items: stretch;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  max-width: 900px;
}
.sc-field {
  flex: 1;
  padding: 14px 20px;
  position: relative;
  border-radius: 14px;
  transition: background 0.15s;
  cursor: pointer;
  min-width: 0;
}
.sc-field:hover {
  background: #f9f9f9;
}
.sc-field--location {
  flex: 1.8;
  cursor: default;
}
.sc-field--date {
  flex: 1.2;
}
.sc-field--time {
  flex: 1;
}
.sc-field--error {
  animation: errorShake 0.4s ease;
  background: #fff5f5 !important;
}
@keyframes errorShake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-6px);
  }
  40%,
  80% {
    transform: translateX(6px);
  }
}
.sc-field label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #aaa;
  margin-bottom: 5px;
  pointer-events: none;
  font-family: 'DM Sans', sans-serif;
}
.sc-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sc-input-wrap > svg {
  width: 15px;
  height: 15px;
  stroke: #999;
  flex-shrink: 0;
}
.sc-input-wrap input {
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  background: transparent;
  width: 100%;
}
.sc-input-wrap input::placeholder {
  color: #ccc;
  font-weight: 500;
}
.sc-value {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
}
.sc-placeholder {
  color: #ccc !important;
  font-weight: 500 !important;
}
.sc-divider {
  width: 1px;
  background: #eee;
  margin: 8px 0;
  flex-shrink: 0;
}
.sc-search-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  border: none;
  padding: 0 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
}
.sc-search-btn svg {
  width: 18px;
  height: 18px;
}
.sc-search-btn:hover {
  background: #222;
  transform: scale(1.02);
}

/* ── CALENDAR ── */
.custom-calendar {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid #eee;
  padding: 20px;
  width: 320px;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}
.custom-calendar.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal-header span {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  font-family: 'DM Sans', sans-serif;
}
.cal-header button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.cal-header button:hover {
  background: #eee;
}
.cal-header button svg {
  width: 15px;
  height: 15px;
  stroke: #444;
}
.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 8px;
}
.cal-days-header span {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: #111;
  transition: all 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.cal-day:hover:not(.cal-day--past):not(.cal-day--empty) {
  background: #f0f0f0;
}
.cal-day--empty {
  pointer-events: none;
}
.cal-day--past {
  color: #ddd;
  cursor: not-allowed;
}
.cal-day--today {
  font-weight: 800;
  color: #db2020;
}
.cal-day--selected {
  background: #111 !important;
  color: #fff !important;
  font-weight: 700;
}

/* ── TIME PICKER ── */
.time-picker {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid #eee;
  width: 200px;
  max-height: 280px;
  overflow: hidden;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}
.time-picker.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.time-picker-inner {
  max-height: 280px;
  overflow-y: auto;
  padding: 8px;
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
}
.time-picker-inner::-webkit-scrollbar {
  width: 4px;
}
.time-picker-inner::-webkit-scrollbar-track {
  background: transparent;
}
.time-picker-inner::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 4px;
}
.time-slot {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: #333;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.12s;
}
.time-slot:hover {
  background: #f5f5f5;
  color: #111;
}
.time-slot--selected {
  background: #111 !important;
  color: #fff !important;
  font-weight: 700;
}

/* ── SELECT CAR POPUP ── */
.select-car-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.select-car-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.select-car-modal {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px 40px;
  width: 100%;
  max-width: 460px;
  text-align: center;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
}
.select-car-overlay.open .select-car-modal {
  transform: translateY(0) scale(1);
}
.scm-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f5f5f5;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.scm-close:hover {
  background: #eee;
}
.scm-close svg {
  width: 15px;
  height: 15px;
}
.scm-icon {
  width: 64px;
  height: 64px;
  background: #fff5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.scm-icon svg {
  width: 30px;
  height: 30px;
  stroke: #db2020;
}
.scm-step {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #db2020;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}
.scm-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  font-family: 'DM Sans', sans-serif;
}
.scm-sub {
  font-size: 0.88rem;
  color: #888;
  margin-bottom: 24px;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}
.scm-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.scm-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8f8f8;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #333;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
}
.scm-tag svg {
  width: 16px;
  height: 16px;
  stroke: #888;
  flex-shrink: 0;
}
.scm-btn {
  width: 100%;
  padding: 16px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.scm-btn:hover {
  background: #222;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ── FLEET ── */
.fleet-section {
  padding: 80px 0;
  background: #fff;
}
.fleet-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #db2020;
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #111;
}
.cat-tabs {
  display: flex;
  gap: 6px;
  background: #f5f5f5;
  padding: 4px;
  border-radius: 50px;
}
.cat-tab {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: #888;
  cursor: pointer;
  transition: all 0.18s;
  font-family: 'DM Sans', sans-serif;
}
.cat-tab.active,
.cat-tab:hover {
  background: #fff;
  color: #111;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* ── VEHICLE CARDS ── */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.vehicle-card {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.22s ease;
}
.vehicle-card:hover {
  transform: translateY(-4px);
}
.vehicle-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 16px;
  background: #f5f5f5;
  position: relative;
}
.vehicle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.vehicle-card:hover .vehicle-img-wrap img {
  transform: scale(1.05);
}
.vehicle-badge {
  display: none;
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #111;
  font-family: 'DM Sans', sans-serif;
}
.vehicle-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.vehicle-wishlist:hover {
  transform: scale(1.1);
}
.vehicle-wishlist svg {
  width: 16px;
  height: 16px;
}
.vehicle-info {
  padding: 12px 4px 4px;
}
.vehicle-row1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.vehicle-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: #111;
  font-family: 'DM Sans', sans-serif;
}
.vehicle-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}
.vehicle-meta {
  font-size: 0.8rem;
  color: #888;
  margin-top: 2px;
  font-family: 'DM Sans', sans-serif;
}
.vehicle-price {
  margin-top: 6px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
}
.vehicle-price strong {
  font-weight: 700;
  font-size: 1rem;
}
.vehicle-price span {
  color: #888;
  font-weight: 400;
}
.vcard-skeleton {
  aspect-ratio: 4/3;
  border-radius: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ── WHY SECTION ── */
.why-section {
  padding: 80px 0;
  background: #f9f9f9;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-body {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.75;
  margin: 16px 0 28px;
  font-family: 'DM Sans', sans-serif;
}
.why-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.why-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.why-link:hover {
  color: #db2020;
}
.why-link:hover svg {
  transform: translateX(3px);
}
.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #eee;
  transition: all 0.2s;
}
.why-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.why-icon {
  width: 40px;
  height: 40px;
  background: #fff5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.why-icon svg {
  width: 18px;
  height: 18px;
  stroke: #db2020;
}
.why-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111;
  font-family: 'DM Sans', sans-serif;
}
.why-card p {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}

/* ── REVIEWS ── */
.reviews-section {
  padding: 80px 0;
}
.reviews-header {
  margin-bottom: 40px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #eee;
  transition: all 0.2s;
}
.review-card--dark {
  background: #111;
  border-color: transparent;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.review-stars {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #111;
}
.review-text {
  font-size: 0.9rem;
  line-height: 1.72;
  color: #444;
  margin-bottom: 20px;
  font-style: italic;
  font-family: 'DM Sans', sans-serif;
}
.review-card--dark .review-text {
  color: rgba(255, 255, 255, 0.65);
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffe5e5;
  color: #db2020;
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}
.review-author strong {
  display: block;
  font-size: 0.88rem;
  color: #111;
  font-family: 'DM Sans', sans-serif;
}
.review-author span {
  font-size: 0.78rem;
  color: #888;
  font-family: 'DM Sans', sans-serif;
}
.review-card--dark .review-author span {
  color: rgba(255, 255, 255, 0.4);
}

/* ── CTA ── */
.cta-section {
  padding: 80px 0;
  background: #111;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.15;
  margin: 8px 0 12px;
}
.cta-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cta-btn-primary {
  padding: 14px 28px;
  background: #fff;
  color: #111;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.cta-btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}
.cta-btn-secondary {
  padding: 14px 28px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}
.cta-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .vehicles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 30px;
  }
  .search-card {
    flex-direction: column;
    max-width: 100%;
  }
  .sc-field {
    border-radius: 12px;
  }
  .sc-divider {
    width: auto;
    height: 1px;
    margin: 0 8px;
  }
  .sc-search-btn {
    border-radius: 12px;
    justify-content: center;
    padding: 16px;
  }
  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .fleet-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
  }
  .why-right {
    grid-template-columns: 1fr;
  }
  .custom-calendar {
    width: 290px;
  }
}
@media (max-width: 500px) {
  .vehicles-grid {
    grid-template-columns: 1fr;
  }
}
