*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --off-white: #f7f8fa;
  --grey-100: #f0f1f5;
  --grey-200: #e2e4ea;
  --grey-400: #9ca3af;
  --grey-600: #6b7280;
  --grey-800: #1f2937;
  --black: #0d0d0d;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-light: #eff6ff;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--grey-800);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-200);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo svg { display: block; flex-shrink: 0; }

.logo-text {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
  font-style: normal;
}

.logo-text em {
  color: var(--accent);
  font-style: normal;
}

.footer-logo .logo-text { color: #fff; }
.footer-logo .logo-text em { color: #60a5fa; }

.footer-brand .nav-logo { display: inline-flex; margin-bottom: 1rem; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--grey-600);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--black); }

.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--accent-dark); color: #fff !important; }

/* ── HERO ── */
#hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1e3a8a 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 5% 5%;
  position: relative;
  overflow: hidden;
}

#hero::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");
}

.hero-content {
  position: relative;
  max-width: 620px;
}

.hero-badge {
  display: inline-block;
  background: rgba(37,99,235,0.25);
  border: 1px solid rgba(37,99,235,0.4);
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.2rem;
}

.hero-content h1 span { color: #60a5fa; }

.hero-content p {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.hero-stats {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 1.2rem 1.8rem;
  text-align: center;
}

.stat-card .num {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-card .label {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 500;
  margin-top: 0.3rem;
}

/* ── SEARCH BAR ── */
.search-bar-wrapper {
  background: var(--white);
  padding: 2rem 5%;
  box-shadow: var(--shadow-lg);
}

.search-bar {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.search-field {
  flex: 1;
  min-width: 160px;
}

.search-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--grey-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.search-field input, .search-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--grey-200);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--off-white);
  color: var(--grey-800);
  transition: border-color 0.2s;
  outline: none;
}

.search-field input:focus, .search-field select:focus {
  border-color: var(--accent);
  background: #fff;
}

.search-bar .btn-primary { padding: 0.77rem 2rem; font-size: 0.9rem; white-space: nowrap; }

/* ── SECTION BASE ── */
section { padding: 6rem 5%; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--grey-600);
  font-size: 1rem;
  max-width: 540px;
  margin-bottom: 3rem;
}

/* ── FLEET ── */
#fleet { background: var(--off-white); }

.filter-tabs {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  border: 1.5px solid var(--grey-200);
  background: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey-600);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.car-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid var(--grey-200);
}

.car-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── CAROUSEL ── */
.car-carousel {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--grey-100);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-track img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

/* prev / next arrow buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  color: var(--grey-800);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s, transform 0.2s;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

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

.carousel-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.car-card:hover .carousel-btn { opacity: 1; }

/* dot indicators */
.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s, transform 0.2s;
  cursor: default;
}

.dot.active {
  background: #fff;
  transform: scale(1.3);
}

.car-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.car-info { padding: 1.2rem 1.4rem 1.4rem; }

.car-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.3rem;
}

.car-specs {
  display: flex;
  gap: 1.2rem;
  margin: 0.8rem 0 1.2rem;
}

.spec {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--grey-600);
  font-weight: 500;
}

.spec svg { width: 14px; height: 14px; flex-shrink: 0; }

.car-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-100);
}

.car-price { font-size: 1.2rem; font-weight: 800; color: var(--black); }
.car-price span { font-size: 0.78rem; font-weight: 400; color: var(--grey-400); }

.btn-rent {
  background: var(--accent-light);
  color: var(--accent);
  border: none;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}

.btn-rent:hover { background: var(--accent); color: #fff; }

/* ── BOOKING ── */
#booking { background: var(--white); }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.booking-form-card {
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--grey-200);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  background: #fff;
  color: var(--grey-800);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }

.form-group textarea { resize: vertical; min-height: 90px; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}

.form-submit:hover { background: var(--accent-dark); transform: translateY(-1px); }

.booking-info { padding-top: 1rem; }

.booking-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.booking-info p { color: var(--grey-600); margin-bottom: 2rem; line-height: 1.7; }

.why-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon svg { width: 20px; height: 20px; color: var(--accent); }

.why-text h4 { font-size: 0.95rem; font-weight: 700; color: var(--black); margin-bottom: 0.2rem; }
.why-text p { font-size: 0.85rem; color: var(--grey-600); margin: 0; }

/* ── ABOUT ── */
#about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  border-radius: 20px;
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.about-stat-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 1.4rem;
  text-align: center;
}

.about-stat-card .num { font-size: 2rem; font-weight: 800; color: #fff; }
.about-stat-card .label { font-size: 0.78rem; color: rgba(255,255,255,0.65); margin-top: 0.3rem; }

.about-content .section-sub { margin-bottom: 1.5rem; }

.about-content p { color: var(--grey-600); line-height: 1.8; margin-bottom: 1.2rem; }

/* ── TESTIMONIALS ── */
#testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testi-card {
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: box-shadow 0.2s;
}

.testi-card:hover { box-shadow: var(--shadow); }

.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }

.testi-text {
  font-size: 0.92rem;
  color: var(--grey-800);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-style: italic;
}

.testi-author { display: flex; align-items: center; gap: 0.8rem; }

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.author-name { font-size: 0.9rem; font-weight: 700; color: var(--black); }
.author-role { font-size: 0.78rem; color: var(--grey-400); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  color: #94a3b8;
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}


.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 260px; }

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.open { display: flex; }

.modal {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.modal-icon {
  width: 64px;
  height: 64px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.modal h3 { font-size: 1.4rem; font-weight: 800; color: var(--black); margin-bottom: 0.5rem; }
.modal p { color: var(--grey-600); margin-bottom: 1.5rem; font-size: 0.95rem; }
.modal-close { padding: 0.7rem 2rem; }

/* ── CAR DETAIL MODAL ── */
.car-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 600;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
  overflow-y: auto;
}

.car-modal-overlay.open {
  display: flex;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* modal box — gallery left | details right */
.car-modal {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 1120px;
  max-height: 92vh;
  margin: auto;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  box-shadow: 0 32px 100px rgba(0,0,0,0.3);
  animation: slideUp 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(32px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

/* ── close button — fixed to viewport corner ── */
.modal-close-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  color: var(--grey-800);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: background 0.2s, transform 0.15s;
}

.modal-close-btn:hover { background: #fff; transform: scale(1.1); }

/* ── gallery — left column ── */
.modal-gallery {
  width: 56%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: var(--grey-100);
}

.modal-carousel {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: var(--grey-100);
}

.modal-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-track img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}

.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  color: var(--grey-800);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

.modal-arrow.prev { left: 12px; }
.modal-arrow.next { right: 12px; }
.modal-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }

.modal-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 2;
}

.modal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background 0.2s, transform 0.2s;
}

.modal-dot.active { background: #fff; transform: scale(1.35); }

/* thumbnail strip */
.modal-thumbs {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  background: var(--grey-100);
  flex-shrink: 0;
}

.modal-thumb {
  flex: 1;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  border: 2.5px solid transparent;
  cursor: pointer;
  padding: 0;
  background: #fff;
  transition: border-color 0.2s, opacity 0.2s, transform 0.15s;
  opacity: 0.6;
}

.modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-thumb.active { border-color: var(--accent); opacity: 1; }
.modal-thumb:hover  { opacity: 0.9; transform: scale(1.03); }

/* ── details — right column, scrollable ── */
.modal-details {
  flex: 1;
  overflow-y: auto;
  padding: 2.2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  min-width: 0;
}

.modal-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  align-self: flex-start;
}

.modal-car-name {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.modal-description {
  font-size: 0.88rem;
  color: var(--grey-600);
  line-height: 1.8;
}

.modal-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.modal-spec {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
}

.modal-spec svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.modal-spec > div { display: flex; flex-direction: column; }

.spec-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.12rem;
}

.spec-value {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--grey-800);
  display: block;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  margin-top: auto;
  border-top: 1px solid var(--grey-200);
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1.5px;
}

.price-label {
  font-size: 0.82rem;
  color: var(--grey-400);
  margin-left: 3px;
  vertical-align: bottom;
  padding-bottom: 0.25rem;
}

.modal-rent-btn { padding: 0.85rem 1.8rem; font-size: 0.92rem; white-space: nowrap; }

/* responsive modal */
@media (max-width: 780px) {
  .car-modal { flex-direction: column; max-height: 94vh; }
  .modal-gallery { width: 100%; height: 260px; }
  .modal-carousel { flex: none; height: 100%; }
  .modal-details { padding: 1.5rem; }
  .modal-specs-grid { grid-template-columns: 1fr 1fr; }
  .modal-car-name { font-size: 1.4rem; }
  .modal-thumb { height: 64px; }
}

@media (max-width: 480px) {
  .modal-gallery { height: 210px; }
  .modal-thumbs { padding: 8px 10px; gap: 8px; }
  .modal-thumb { height: 54px; }
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--black);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 500;
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ── RESPONSIVE ── */
/* ── HAMBURGER BUTTON ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--grey-100); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--grey-800);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-stats { display: none; }
  .booking-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  /* Nav */
  nav {
    padding: 0 5%;
    height: 60px;
    position: relative;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--grey-200);
    padding: 1rem 5% 1.5rem;
    gap: 0;
    list-style: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 99;
  }
  .nav-links.mobile-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { border-bottom: 1px solid var(--grey-100); }
  .nav-links li:last-child { border-bottom: none; margin-top: 0.5rem; }
  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1rem;
    color: var(--grey-800);
  }
  .nav-links .nav-cta {
    display: block;
    text-align: center;
    padding: 0.75rem;
    border-radius: 10px;
    background: var(--accent);
    color: #fff !important;
  }
  .nav-toggle { display: flex; }

  /* Logo */
  .logo-text { font-size: 1.15rem; }
  .nav-logo svg { width: 30px; height: 30px; }

  /* Hero */
  #hero { min-height: auto; padding: 3rem 5% 2.5rem; }
  .hero-content h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .hero-content p { font-size: 0.95rem; margin-bottom: 1.8rem; }
  .hero-buttons { flex-direction: column; gap: 0.75rem; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline { width: 100%; text-align: center; }

  /* Sections */
  section { padding: 2.8rem 5%; }

  /* Cars grid */
  .cars-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Search bar */
  .search-bar { flex-direction: column; }
  .search-field { min-width: 0; width: 100%; }
  .search-bar .btn-primary { width: 100%; }

  /* Booking form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 400px) {
  .logo-text { font-size: 1rem; }
  .nav-logo svg { width: 26px; height: 26px; }
  section { padding: 2.2rem 4%; }
  .filter-btn { font-size: 0.78rem; padding: 0.4rem 0.9rem; }
}
