:root {
  --bg: #f7f4ef;
  --bg-soft: #efe9e1;
  --surface: #ffffff;
  --surface-2: #f3eee8;
  --ink: #1f2320;
  --ink-soft: #5d625f;
  --accent: #c46a3b;
  --accent-2: #1f8773;
  --accent-3: #d6a56c;
  --border: rgba(31, 35, 32, 0.12);
  --shadow: 0 18px 40px rgba(33, 28, 22, 0.12);
  --radius: 18px;
  --font-body: "Work Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-head: "Cormorant Garamond", "Georgia", serif;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: radial-gradient(120% 120% at 10% 10%, rgba(196, 106, 59, 0.08), transparent 40%), var(--bg);
  line-height: 1.7;
}

img { max-width: 100%; display: block; border-radius: 14px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

p { margin: 0 0 0.9rem; color: var(--ink-soft); }

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

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #0f1110;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo img { width: 44px; height: 44px; border-radius: 50%; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  font-size: 0.95rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(196, 106, 59, 0.2);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 520px;
  text-align: left;
  justify-self: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--accent-2);
  margin-bottom: 0.6rem;
}

.hero h1 { font-size: clamp(2.4rem, 4vw, 3.6rem); }

.hero-card {
  background: var(--surface);
  padding: 1.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card .note { font-size: 0.95rem; color: var(--ink-soft); }

.hero-intro {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
  color: #fff;
}

.hero-intro .hero-grid {
  position: relative;
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 12, 12, 0.68), rgba(10, 12, 12, 0.2));
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy h1,
.hero-copy p,
.hero-copy .eyebrow {
  color: #fff;
}

.hero-copy p {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.hero-intro .hero-actions {
  margin-top: calc(6rem + 190px);
}

.hero-search {
  display: flex;
  justify-content: flex-end;
}

.search-card {
  width: min(420px, 100%);
  background: linear-gradient(160deg, rgba(28, 33, 43, 0.92), rgba(52, 47, 41, 0.88));
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 28px 60px rgba(9, 12, 18, 0.5);
  position: relative;
  overflow: hidden;
  animation: floatIn 0.9s ease forwards;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.search-card::before {
  content: "";
  position: absolute;
  inset: -60% -40% auto;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.search-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 80px rgba(9, 12, 18, 0.55);
}

.search-card-header {
  padding: 1rem 1.6rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(26, 82, 138, 0.98), rgba(17, 53, 94, 0.98));
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #fff;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.search-card-body {
  padding: 1.6rem 1.6rem 1.8rem;
  display: grid;
  gap: 1.1rem;
}

.search-card label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.search-card input,
.search-card select {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(245, 245, 245, 0.98);
  padding: 0.7rem 1rem;
  font-weight: 600;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.search-card input:focus,
.search-card select:focus {
  outline: none;
  border-color: rgba(232, 162, 94, 0.75);
  box-shadow: 0 0 0 3px rgba(232, 162, 94, 0.25);
  transform: translateY(-1px);
}

.search-card select,
.car-page .car-search-card select {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.9rem;
}

.search-address-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
}

.search-datetime-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.9rem;
}

.search-card .btn.primary {
  width: 100%;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.95rem;
  background: linear-gradient(90deg, #c06d3c, #d79b59);
  border: none;
  box-shadow: 0 16px 35px rgba(192, 109, 60, 0.35);
}

@keyframes floatIn {
  from { transform: translateY(20px) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .search-card {
    animation: none;
    transition: none;
  }
  .search-card:hover {
    transform: none;
  }
  .search-card input,
  .search-card select {
    transition: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #fff;
  box-shadow: 0 14px 30px rgba(196, 106, 59, 0.25);
}

.btn.outline {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn.lime {
  background: #9bbf2b;
  color: #fff;
  box-shadow: 0 12px 30px rgba(155, 191, 43, 0.35);
}

.btn.lime:hover {
  transform: translateY(-2px);
}

.btn.dark {
  background: #151815;
  color: #fff;
}

.btn.small { padding: 0.5rem 0.9rem; font-size: 0.9rem; }

.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: var(--bg-soft);
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.about-page .section {
  padding: 4.5rem 0;
}

.about-page .section + .section {
  border-top: 1px solid var(--border);
}

.about-page .section.alt {
  background: linear-gradient(180deg, rgba(239, 233, 225, 0.85), rgba(239, 233, 225, 0.55));
}

.about-page .section-header {
  max-width: 720px;
}

.about-page .section-header h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
}

.about-page .section-header p {
  max-width: 65ch;
}

.about-page .about-copy {
  max-width: 520px;
}

.about-page .about-copy h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

.about-page .split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(31, 35, 32, 0.18);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.about-page .split img:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 60px rgba(31, 35, 32, 0.22);
}

.about-page .about-list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.about-page .about-list li {
  margin-bottom: 0.4rem;
}

.about-page .about-list li::marker {
  color: var(--accent);
}

.about-page .grid.three .card {
  padding: 1.6rem;
}

.contact-page .section-header {
  max-width: 760px;
}

.contact-page .section-header h1 {
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
}

.contact-page .contact-subtitle {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.contact-page .contact-intro {
  max-width: 65ch;
}

.contact-page .contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

.contact-page .contact-cards .card {
  padding: 1.8rem;
  box-shadow: 0 18px 40px rgba(31, 35, 32, 0.12);
}

.contact-page .contact-support {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.contact-page .contact-support-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 50px rgba(31, 35, 32, 0.16);
}

.contact-page .contact-support-body {
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.contact-page .contact-support-body .btn {
  margin-top: 0.4rem;
}

.contact-page .contact-reassurance {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.contact-page .contact-reassurance ul {
  margin: 0.4rem 0 0.8rem;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.contact-page .contact-reassurance li {
  margin-bottom: 0.4rem;
}

.contact-page .contact-footnote {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0;
}

.paynow-page .paynow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.paynow-page .section-header h1 {
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
}

.paynow-page .paynow-subtitle {
  color: var(--ink);
  font-size: 1.05rem;
}

.paynow-page .paynow-content {
  display: grid;
  gap: 1.4rem;
}

.paynow-page .paynow-steps {
  display: grid;
  gap: 1rem;
}

.paynow-page .paynow-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  animation: fadeUp 0.7s ease forwards;
}

.paynow-page .paynow-step:nth-child(2) { animation-delay: 0.1s; }
.paynow-page .paynow-step:nth-child(3) { animation-delay: 0.2s; }

.paynow-page .step-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(31, 135, 115, 0.12);
  color: var(--accent-2);
  display: grid;
  place-items: center;
}

.paynow-page .step-icon svg {
  width: 18px;
  height: 18px;
}

.paynow-page .paynow-card {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.paynow-page .paynow-qr-card {
  text-align: center;
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 22px 48px rgba(31, 35, 32, 0.14);
  animation: fadeUp 0.7s ease forwards;
}

.paynow-page .paynow-qr-card img {
  width: min(320px, 100%);
  margin: 1rem auto 0.8rem;
  border-radius: 16px;
  box-shadow: 0 18px 35px rgba(31, 35, 32, 0.16);
}

.paynow-page .paynow-qr-note {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.paynow-page .paynow-support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.paynow-page .paynow-support .card {
  padding: 1.6rem;
  box-shadow: 0 20px 45px rgba(31, 35, 32, 0.12);
}

@media (max-width: 960px) {
  .paynow-page .paynow-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .paynow-page .paynow-support {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .paynow-page .paynow-step,
  .paynow-page .paynow-qr-card {
    animation: none;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .footer-map iframe {
    min-height: 180px;
  }
}

.about-page .about-copy .grid.three {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-page .about-copy .grid.three .card:last-child {
  grid-column: 1 / -1;
}

.about-page .about-copy .card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-page .about-copy .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(31, 35, 32, 0.16);
}

.about-page .section-header,
.about-page .split > * {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s ease forwards;
}

.about-page .split > *:nth-child(1) { animation-delay: 0.15s; }
.about-page .split > *:nth-child(2) { animation-delay: 0.25s; }

.about-page .section-header { animation-delay: 0.05s; }

@media (prefers-reduced-motion: reduce) {
  .about-page .section-header,
  .about-page .split > * {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .about-page .about-copy .card,
  .about-page .split img {
    transition: none;
  }
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * { direction: ltr; }

.card {
  background: var(--surface);
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.why-vrooms {
  position: relative;
  overflow: visible;
}

.why-vrooms::before,
.why-vrooms::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 106, 59, 0.18), transparent 70%);
  z-index: 0;
}

.why-vrooms::before { top: -80px; left: -60px; }
.why-vrooms::after { bottom: -120px; right: -80px; }

.why-vrooms .container { position: relative; z-index: 1; }

.why-road {
  margin: 2rem 0 2.5rem;
  position: relative;
  height: 60px;
}

.why-lane {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(31, 135, 115, 0.18), rgba(196, 106, 59, 0.12));
  border: 1px dashed rgba(31, 35, 32, 0.2);
  overflow: hidden;
}

.why-lane::after {
  content: none;
}

.why-car-run {
  position: absolute;
  top: 90px;
  left: -20vw;
  width: min(96px, 15vw);
  z-index: 3;
  animation: driveAcross 14s linear infinite;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

.why-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.why-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(31, 35, 32, 0.08);
  box-shadow: 0 20px 40px rgba(31, 35, 32, 0.12);
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 55px rgba(31, 35, 32, 0.18);
  border-color: rgba(31, 135, 115, 0.3);
}

.why-card:hover .why-icon {
  transform: rotate(-6deg) scale(1.05);
  transition: transform 0.3s ease;
}

.why-card:hover h3 {
  color: #1f8773;
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #1f8773;
  background: rgba(31, 135, 115, 0.12);
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}

.why-icon svg {
  width: 22px;
  height: 22px;
}

.curated-fleet {
  position: relative;
  overflow: hidden;
}

.curated-fleet::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 135, 115, 0.12), transparent 70%);
}

.fleet-visual {
  position: relative;
}

.fleet-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(31, 35, 32, 0.18);
  transform: translateY(0);
  animation: fleetFloat 4.5s ease-in-out infinite;
}

.fleet-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.fleet-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.fleet-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  box-shadow: 0 12px 26px rgba(31, 35, 32, 0.12);
  animation: badgeGlow 3.5s ease-in-out infinite;
}

.fleet-badge:nth-child(2) { animation-delay: 0.4s; }
.fleet-badge:nth-child(3) { animation-delay: 0.8s; }

.fleet-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.fleet-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.9rem;
  align-items: center;
  background: var(--surface);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(31, 35, 32, 0.08);
  box-shadow: 0 20px 40px rgba(31, 35, 32, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(31, 35, 32, 0.18);
  border-color: rgba(196, 106, 59, 0.28);
}

.fleet-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(196, 106, 59, 0.12);
  color: #c46a3b;
  transition: transform 0.35s ease;
}

.fleet-card:hover .fleet-icon {
  transform: rotate(-6deg) scale(1.05);
}

.fleet-icon svg {
  width: 24px;
  height: 24px;
}

.fleet-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.smarter-rentals {
  position: relative;
  overflow: hidden;
}

.smarter-rentals::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 20%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 106, 59, 0.15), transparent 70%);
}

.smarter-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.smarter-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(31, 35, 32, 0.08);
  box-shadow: 0 20px 40px rgba(31, 35, 32, 0.12);
  animation: fadeUp 0.9s ease forwards;
  opacity: 0;
  transform: translateY(16px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.smarter-card:nth-child(2) { animation-delay: 0.1s; }
.smarter-card:nth-child(3) { animation-delay: 0.2s; }
.smarter-card:nth-child(4) { animation-delay: 0.3s; }

.smarter-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 55px rgba(31, 35, 32, 0.18);
  border-color: rgba(31, 135, 115, 0.3);
}

.smarter-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(31, 135, 115, 0.12);
  color: #1f8773;
  margin-bottom: 0.9rem;
  transition: transform 0.35s ease;
}

.smarter-card:hover .smarter-icon {
  transform: rotate(-6deg) scale(1.05);
}

.smarter-icon svg {
  width: 26px;
  height: 26px;
}

.testimonials {
  background: linear-gradient(180deg, rgba(246, 243, 239, 0.2), rgba(239, 233, 225, 0.6));
}

.testimonial-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.testimonial-card {
  background: #fffdf9;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(31, 35, 32, 0.08);
  box-shadow: 0 20px 40px rgba(31, 35, 32, 0.12);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card.accent {
  background: #f8f1e6;
}

.testimonial-card.highlight {
  background: #f6efe8;
  transform: rotate(-1deg);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 55px rgba(31, 35, 32, 0.18);
}

.testimonial-rating {
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #c46a3b;
  margin-bottom: 0.6rem;
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 1rem;
}

.blog-preview .section-header,
.testimonials .section-header {
  margin-bottom: 1.8rem;
}

.blog-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.blog-card {
  background: #fffdf9;
  border-radius: 18px;
  padding: 1.4rem;
  border: 1px solid rgba(31, 35, 32, 0.08);
  box-shadow: 0 20px 40px rgba(31, 35, 32, 0.1);
  display: grid;
  gap: 0.8rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card img {
  border-radius: 16px;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 55px rgba(31, 35, 32, 0.18);
}

.blog-meta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.blog-actions {
  margin-top: 1.4rem;
  display: flex;
  justify-content: flex-end;
}

.blog-detail {
  margin-bottom: 2rem;
}

.blog-detail-card {
  background: #fffdf9;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(31, 35, 32, 0.08);
  box-shadow: 0 24px 50px rgba(31, 35, 32, 0.12);
  display: grid;
  gap: 1rem;
}

.blog-detail-card img {
  border-radius: 18px;
  max-height: 380px;
  width: 100%;
  object-fit: cover;
}

.blog-content p {
  margin-bottom: 1rem;
}

.blog-content h3 {
  margin-top: 1.4rem;
  margin-bottom: 0.6rem;
}

.blog-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.car-showcase {
  background: #f4efe8;
}

.showcase-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.showcase-slider {
  position: relative;
}

.showcase-track {
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  grid-template-columns: unset;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  padding: 0 2.6rem;
}

.showcase-track::-webkit-scrollbar {
  display: none;
}

.showcase-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: #9bbf2b;
  color: #fff;
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(155, 191, 43, 0.35);
  cursor: pointer;
  z-index: 2;
}

.showcase-arrow.prev { left: 0; }
.showcase-arrow.next { right: 0; }

@media (max-width: 820px) {
  .showcase-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .showcase-card {
    scroll-snap-align: start;
  }
  .showcase-arrow {
    display: none;
  }
}

.showcase-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.2rem;
  border: 1px solid rgba(31, 35, 32, 0.12);
  box-shadow: 0 18px 40px rgba(31, 35, 32, 0.1);
  text-align: center;
  display: grid;
  gap: 0.8rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 55px rgba(31, 35, 32, 0.18);
}

.showcase-image {
  background: #f8f6f2;
  border-radius: 16px;
  padding: 0.6rem;
}

.showcase-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.showcase-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  background: #efe9e1;
  color: #7a7a74;
  font-size: 0.9rem;
  border-radius: 12px;
}

.showcase-price {
  font-weight: 600;
  color: #1f2320;
  margin: 0;
}

.showcase-actions {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
}

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

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 12px 26px rgba(31, 35, 32, 0.12); }
  50% { box-shadow: 0 20px 40px rgba(31, 135, 115, 0.2); }
}

@keyframes driveAcross {
  0% { transform: translateX(0); opacity: 0; }
  10% { transform: translateX(30vw); opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(140vw); opacity: 0; }
}

@keyframes laneMove {
  from { transform: translateY(-50%) translateX(0); }
  to { transform: translateY(-50%) translateX(-80px); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.grid {
  display: grid;
  gap: 1.2rem;
}

.grid.three { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.grid.two { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  background: #131513;
  color: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
}

.stat-strip p { color: rgba(255, 255, 255, 0.7); margin: 0; }

.stats-band {
  background: transparent;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  background: linear-gradient(135deg, #2a2a27, #3a322c);
  color: #fff;
  padding: 2.2rem;
  border-radius: 30px;
  box-shadow: 0 24px 55px rgba(49, 43, 35, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.stats-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 50%);
  pointer-events: none;
}

.stats-item {
  display: grid;
  gap: 0.45rem;
  position: relative;
  z-index: 1;
  animation: statsReveal 0.8s ease forwards;
  opacity: 0;
  transform: translateY(14px);
}

.stats-item:nth-child(2) { animation-delay: 0.15s; }
.stats-item:nth-child(3) { animation-delay: 0.3s; }
.stats-item:nth-child(4) { animation-delay: 0.45s; }

.stats-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  color: #f6f3ef;
  transition: transform 0.35s ease;
}

.stats-icon svg {
  width: 24px;
  height: 24px;
}

.stats-item h3 {
  margin: 0;
  font-size: 1.6rem;
  color: #fff;
}

.stats-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.stats-item:hover .stats-icon {
  transform: translateY(-4px) scale(1.05);
}

@keyframes statsReveal {
  to { opacity: 1; transform: translateY(0); }
}

.footer {
  padding: 3.5rem 0 3rem;
  background: #060606;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer h4 {
  color: #9bbf2b;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.footer a { color: #fff; }

.footer .muted { color: rgba(255, 255, 255, 0.6); }

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.6rem;
  align-items: start;
  color: rgba(255, 255, 255, 0.85);
}

.footer-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #9bbf2b;
}

.footer-icon svg {
  width: 18px;
  height: 18px;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
  border-color: rgba(155, 191, 43, 0.6);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-map .map-embed {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.footer-map iframe {
  width: 100%;
  min-height: 200px;
  border: 0;
  display: block;
}

.policy-page .policy-container {
  max-width: 860px;
}

.policy-page .section-header h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
}

.policy-page .policy-block {
  margin-bottom: 2rem;
}

.policy-page .policy-block h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  margin-bottom: 0.6rem;
}

.policy-page .policy-block ul {
  margin: 0.6rem 0 0.8rem;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.policy-page .policy-block li {
  margin-bottom: 0.4rem;
}

.policy-page .policy-divider {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.car-detail-page .car-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  align-items: start;
}

.car-detail-page .car-detail-left {
  display: grid;
  gap: 1.5rem;
}

.car-detail-page .car-detail-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(31, 35, 32, 0.18);
}

.car-detail-page .car-detail-info {
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1.5rem;
}

.car-detail-page .car-detail-header h3 {
  font-size: clamp(2rem, 2.6vw, 2.6rem);
}

.car-detail-page .car-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.6rem 0 1.2rem;
}

.car-detail-page .car-detail-features {
  margin: 0 0 0.4rem;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.car-detail-page .car-detail-features li {
  margin-bottom: 0.4rem;
}

.car-detail-page .car-detail-features li::marker {
  color: var(--accent);
}

.car-detail-page .car-detail-price-card {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 120px;
}

.car-detail-page .car-detail-price-card .price-note {
  margin: -0.3rem 0 0.3rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.car-detail-page .price-meta {
  display: grid;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
}

.car-detail-page .price-meta-item span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.car-detail-page .price-meta-item strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.4;
}

.car-detail-page .car-detail-total {
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.car-detail-page .price-breakdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  background: var(--surface-2);
  border-radius: 14px;
  padding: 0.9rem;
  color: var(--ink-soft);
}

.car-detail-page .price-breakdown span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}

.car-detail-page .price-breakdown strong {
  display: block;
  color: var(--ink);
  margin-top: 0.2rem;
  font-size: 0.95rem;
  line-height: 1.35;
  word-break: break-word;
}

.car-detail-page .price-breakdown div {
  display: grid;
  gap: 0.35rem;
}

.car-booking-page .car-booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.car-booking-page .car-booking-summary img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
}

.car-booking-page .car-booking-summary h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.car-booking-page .car-booking-price {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 14px;
  background: var(--surface-2);
}

.car-booking-page .car-booking-price strong {
  display: block;
  font-size: 1.6rem;
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  margin-top: 0.2rem;
}

.car-booking-page .car-booking-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

.car-booking-page .policy-check {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 18px auto;
  align-items: center;
  gap: 0.4rem 0.6rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.car-booking-page .policy-check span,
.car-booking-page .policy-check .policy-link {
  line-height: 1.4;
}

.car-booking-page .policy-check input {
  margin: 0;
}

.car-booking-page .policy-link {
  border: none;
  background: none;
  color: var(--accent);
  padding: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.policy-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
}

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

.policy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 16, 0.65);
}

.policy-modal-card {
  position: relative;
  background: var(--surface);
  border-radius: 18px;
  padding: 1.6rem;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(31, 35, 32, 0.22);
  max-width: 520px;
  width: min(90vw, 520px);
  z-index: 1;
  animation: fadeUp 0.3s ease forwards;
}

.policy-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.policy-close {
  border: none;
  background: var(--surface-2);
  color: var(--ink);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
}

.policy-links {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.local-places-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
}

.local-places-modal.open {
  display: flex;
}

.local-places-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 12, 0.55);
  backdrop-filter: blur(4px);
}

.local-places-card {
  position: relative;
  background: var(--surface);
  border-radius: 20px;
  padding: 1.6rem;
  border: 1px solid var(--border);
  box-shadow: 0 26px 60px rgba(31, 35, 32, 0.2);
  max-width: 620px;
  width: min(92vw, 620px);
  z-index: 1;
  animation: fadeUp 0.3s ease forwards;
}

.local-places-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.6rem;
}

.local-places-close {
  border: none;
  background: var(--surface-2);
  color: var(--ink);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
}

.local-places-body {
  margin-top: 0.8rem;
}

.local-places-loading {
  background: var(--surface-2);
  padding: 0.8rem 1rem;
  border-radius: 12px;
  color: var(--ink-soft);
}

.local-places-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.local-places-list li strong {
  display: block;
  color: var(--ink);
}

.local-places-list li span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-top: 0.2rem;
}

.local-places-actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .local-places-card {
    padding: 1.2rem;
  }
  .local-places-actions {
    justify-content: stretch;
  }
  .local-places-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .policy-modal-card {
    animation: none;
  }
}

@media (max-width: 960px) {
  .car-detail-page .car-detail-layout {
    grid-template-columns: 1fr;
  }

  .car-detail-page .car-detail-price-card {
    position: static;
  }

  .car-booking-page .car-booking-grid {
    grid-template-columns: 1fr;
  }
}

.car-page .car-search-card {
  background: linear-gradient(165deg, rgba(45, 43, 42, 0.95), rgba(38, 41, 47, 0.92));
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 1.2rem;
  color: #fff;
  box-shadow: 0 28px 60px rgba(12, 12, 12, 0.4);
}

.car-page .car-search-header {
  padding: 0.95rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #1f5a99 0%, #12416b 100%);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  margin-bottom: 1.2rem;
}

.car-page .car-search-card .form-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 1.2rem;
}

.car-page .car-search-card .form-grid label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.car-page .car-search-card .form-grid label:nth-child(1),
.car-page .car-search-card .form-grid label:nth-child(2) {
  grid-column: span 2;
}

.car-page .car-search-card .form-grid .full-span {
  grid-column: 1 / -1;
}

.car-page .car-search-card input,
.car-page .car-search-card select {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(245, 245, 245, 0.98);
  padding: 0.7rem 1rem;
  font-weight: 600;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.car-page .car-search-card input:focus,
.car-page .car-search-card select:focus {
  outline: none;
  border-color: rgba(232, 162, 94, 0.75);
  box-shadow: 0 0 0 3px rgba(232, 162, 94, 0.25);
}

.car-page .car-search-actions {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.car-page .car-search-actions .btn.primary {
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.9rem;
  background: linear-gradient(90deg, #c6733f, #e0a15a);
  border: none;
  box-shadow: 0 18px 40px rgba(198, 115, 63, 0.35);
}

.car-page .car-search-actions .badge {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.car-page .ai-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

.car-page .ai-search-panel {
  margin-top: 1.5rem;
  padding: 1.4rem;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(18, 22, 30, 0.95), rgba(45, 42, 40, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 55px rgba(9, 12, 18, 0.45);
  display: grid;
  gap: 0.8rem;
}

.car-page .ai-search-header {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.8rem;
  align-items: center;
  color: #fff;
}

.car-page .ai-search-header h4 {
  margin: 0;
  font-size: 1.2rem;
}

.car-page .ai-search-header p {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.car-page .ai-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(155, 191, 43, 0.18);
  display: grid;
  place-items: center;
  color: #c7df6b;
}

.car-page .ai-icon svg {
  width: 22px;
  height: 22px;
}

.car-page .ai-search-panel textarea {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(245, 245, 245, 0.95);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  resize: vertical;
}

.car-page .ai-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.car-page .ai-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.car-page .ai-clarify {
  margin: 0;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .car-page .car-search-card .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .car-page .car-search-card .form-grid label:nth-child(1),
  .car-page .car-search-card .form-grid label:nth-child(2) {
    grid-column: span 2;
  }
}

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

  .car-page .car-search-card .form-grid label:nth-child(1),
  .car-page .car-search-card .form-grid label:nth-child(2) {
    grid-column: auto;
  }
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

input, select, textarea {
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: var(--font-body);
}

textarea { resize: vertical; }

.notice {
  background: rgba(31, 135, 115, 0.12);
  border: 1px solid rgba(31, 135, 115, 0.3);
  padding: 1rem;
  border-radius: 12px;
  color: #1f5f53;
}

.results-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.car-card img { height: 180px; width: 100%; object-fit: cover; }

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--surface-2);
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.booking-panel {
  margin-top: 2rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.floating-actions {
  position: fixed;
  bottom: 24px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 30;
}

.floating-actions a {
  background: #1f8773;
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

@media (max-width: 720px) {
  .about-page .section {
    padding: 3.5rem 0;
  }

  .about-page .section-header {
    margin-bottom: 1.6rem;
  }

  .about-page .about-copy {
    max-width: none;
  }

  .about-page .about-copy .grid.three {
    grid-template-columns: 1fr;
  }

  .about-page .about-copy .grid.three .card:last-child {
    grid-column: auto;
  }
}

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

@media (max-width: 720px) {
  .contact-page .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-support-body {
    padding: 1.4rem;
  }
}

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    background: #0f1110;
    padding: 1rem;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: inline-flex; }
}
