/* ---------- Tokens ---------- */
:root {
  --green-50:  #ecfdf3;
  --green-100: #d1fadf;
  --green-200: #a6f4c5;
  --green-300: #6ce9a6;
  --green-400: #32d583;
  --green-500: #12b76a;
  --green-600: #039855;
  --green-700: #027a48;
  --green-800: #05603a;
  --green-900: #054f31;

  --yellow-400: #fdb022;
  --yellow-500: #f79009;

  --ink-900: #0c111d;
  --ink-800: #1a1f2c;
  --ink-700: #344054;
  --ink-600: #475467;
  --ink-500: #667085;
  --ink-400: #98a2b3;
  --ink-300: #d0d5dd;
  --ink-200: #e4e7ec;
  --ink-100: #f2f4f7;
  --ink-50:  #f9fafb;

  --bg: #ffffff;
  --bg-soft: #f7faf8;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  --shadow-sm: 0 1px 2px rgba(16,24,40,.06), 0 1px 3px rgba(16,24,40,.08);
  --shadow-md: 0 4px 8px -2px rgba(16,24,40,.08), 0 12px 24px -8px rgba(16,24,40,.10);
  --shadow-lg: 0 12px 32px -8px rgba(16,24,40,.14), 0 24px 56px -12px rgba(16,24,40,.18);
  --shadow-xl: 0 24px 64px -12px rgba(2, 122, 72, .25), 0 8px 24px -8px rgba(16,24,40,.16);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-800);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

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

h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -.02em; color: var(--ink-900); }
h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

p { margin: 0; color: var(--ink-600); }

ul, ol { padding: 0; margin: 0; list-style: none; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 rgba(16,24,40,.06), 0 8px 24px -16px rgba(16,24,40,.16);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  transition: color .35s var(--ease);
}
.site-header.is-scrolled .logo,
.logo--dark { color: var(--ink-900); }

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff;
  font-weight: 900;
  font-size: 1.15rem;
  box-shadow: 0 6px 18px -6px rgba(5, 96, 58, .55), inset 0 1px 0 rgba(255,255,255,.25);
}

.logo-text { font-size: 1.1rem; }
.logo-text span { color: var(--green-400); }
.site-header.is-scrolled .logo-text span,
.logo--dark .logo-text span { color: var(--green-600); }

.nav {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav a:hover { background: rgba(255,255,255,.12); color: #fff; }
.site-header.is-scrolled .nav a { color: var(--ink-700); }
.site-header.is-scrolled .nav a:hover { background: var(--ink-100); color: var(--ink-900); }

.btn-wa-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green-500);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  box-shadow: 0 8px 22px -8px rgba(18, 183, 106, .55);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.btn-wa-header:hover { transform: translateY(-1px); background: var(--green-600); box-shadow: 0 14px 28px -10px rgba(18, 183, 106, .65); }

@media (max-width: 860px) {
  .nav { display: none; }
  .btn-wa-header span { display: none; }
  .btn-wa-header { padding: 10px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute; inset: 0;
  background: #0c2a1c url("./bg.jpg") center/cover no-repeat;
  transform: scale(1.04);
  z-index: -2;
  animation: heroZoom 18s var(--ease) infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 20% 30%, rgba(2, 122, 72, .35), transparent 60%),
    linear-gradient(180deg, rgba(12, 17, 29, .55) 0%, rgba(12, 17, 29, .35) 40%, rgba(12, 17, 29, .85) 100%);
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr minmax(380px, 480px);
  gap: 64px;
  align-items: center;
}

.hero-copy { color: #fff; }

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 18px;
}

.hero-copy h1 {
  color: #fff;
  margin-bottom: 18px;
}
.hero-copy h1 span {
  background: linear-gradient(135deg, var(--green-300), var(--green-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  font-size: 1.08rem;
  color: rgba(255,255,255,.82);
  max-width: 52ch;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: .9rem;
  color: #fff;
}

/* ---------- Booking card ---------- */
.booking-card {
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: var(--radius-2xl);
  padding: 28px;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--green-300), var(--yellow-400));
}

.booking-header h2 {
  font-size: 1.55rem;
  margin-bottom: 4px;
}

.booking-sub {
  font-size: .9rem;
  color: var(--ink-500);
  margin-bottom: 18px;
}

.progress {
  height: 6px;
  background: var(--ink-100);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}
.progress-bar {
  height: 100%;
  width: 33.333%;
  background: linear-gradient(90deg, var(--green-500), var(--green-400));
  border-radius: 999px;
  transition: width .5s var(--ease);
}

.steps-indicator {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}
.steps-indicator li {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-400);
  text-align: center;
  padding: 6px 0;
  position: relative;
  transition: color .3s var(--ease);
}
.steps-indicator li::before {
  content: attr(data-step-label);
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink-100);
  color: var(--ink-400);
  margin-right: 8px;
  font-size: .72rem;
  transition: all .3s var(--ease);
}
.steps-indicator li.is-active { color: var(--green-700); }
.steps-indicator li.is-active::before {
  background: var(--green-500);
  color: #fff;
  box-shadow: 0 0 0 4px var(--green-100);
}
.steps-indicator li.is-done::before {
  content: "✓";
  background: var(--green-600);
  color: #fff;
}

@media (max-width: 540px) {
  .steps-indicator li { font-size: 0; padding: 0; }
  .steps-indicator li::before { margin: 0 auto; }
  .steps-indicator li.is-active { font-size: .78rem; padding: 4px 0; }
  .steps-indicator li.is-active::before { margin: 0 8px 0 0; }
}

/* ---------- Steps ---------- */
.steps { position: relative; }

.step {
  border: 0; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
  animation: stepIn .45s var(--ease-out);
}
.step[hidden] { display: none; }

@keyframes stepIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Auto-deduced vehicle card */
.vehicle-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--green-50), #fff);
  border: 1.5px solid var(--green-200);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.vehicle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 183, 106, .08), transparent 60%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.vehicle-card.is-changing::before { opacity: 1; }

.vehicle-card-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  font-size: 1.8rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease);
}
.vehicle-card.is-changing .vehicle-card-icon {
  transform: scale(1.08) rotate(-4deg);
}

.vehicle-card-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.vehicle-card-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-700);
}
.vehicle-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -.01em;
}
.vehicle-card-meta {
  font-size: .82rem;
  color: var(--ink-600);
}

/* Fields */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-700);
}
.field .optional {
  font-weight: 500;
  color: var(--ink-400);
  font-size: .75rem;
  margin-left: 4px;
}
.field .hint {
  font-size: .78rem;
  color: var(--ink-500);
}

.step-intro {
  font-size: .9rem;
  color: var(--ink-500);
  margin: -4px 0 0;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 14px;
  font-size: 1rem;
  pointer-events: none;
  opacity: .85;
}
.input-status {
  position: absolute;
  right: 14px;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--ink-200);
  border-top-color: var(--green-500);
  animation: spin .7s linear infinite;
  pointer-events: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
.input-status.is-success {
  border: 0;
  background: var(--green-500);
  animation: none;
  position: relative;
}
.input-status.is-success::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-size: 11px;
  color: #fff;
  font-weight: 800;
}

/* Places autocomplete */
.places-field { position: relative; }

.places-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 300px;
  overflow-y: auto;
  z-index: 20;
  padding: 6px;
  animation: dropIn .18s var(--ease-out);
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.places-option {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s var(--ease);
}
.places-option:hover,
.places-option.is-active {
  background: var(--green-50);
}
.places-option-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--ink-100);
  display: grid; place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.places-option.is-active .places-option-icon {
  background: var(--green-200);
}
.places-option-text { min-width: 0; }
.places-option-main {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink-900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.places-option-main mark {
  background: transparent;
  color: var(--green-700);
  font-weight: 800;
}
.places-option-secondary {
  display: block;
  font-size: .8rem;
  color: var(--ink-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

.places-message {
  padding: 14px 12px;
  text-align: center;
  font-size: .86rem;
  color: var(--ink-500);
}
.places-message.is-error { color: #b42318; }

.places-attribution {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  padding: 6px 10px 4px;
  border-top: 1px solid var(--ink-100);
  margin-top: 4px;
  font-size: .7rem;
  color: var(--ink-400);
}

.field input[type="text"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="time"],
.field input[type="number"],
.field textarea {
  width: 100%;
  padding: 13px 14px;
  font: inherit;
  font-size: .95rem;
  color: var(--ink-900);
  background: #fff;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius-md);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  outline: none;
}
.input-wrap:has(.input-icon) input { padding-left: 40px; }

.field textarea { resize: vertical; min-height: 76px; font-family: inherit; }

.field input:focus,
.field textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px var(--green-100);
}

.field input.is-invalid,
.field textarea.is-invalid {
  border-color: #f04438;
  box-shadow: 0 0 0 4px #fee4e2;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Stepper */
.stepper {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: stretch;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.stepper:focus-within { border-color: var(--green-500); box-shadow: 0 0 0 4px var(--green-100); }
.stepper-btn {
  background: var(--ink-50);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink-700);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.stepper-btn:hover { background: var(--green-100); color: var(--green-700); }
.stepper-btn:disabled { opacity: .4; cursor: not-allowed; }
.stepper input {
  text-align: center;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  -moz-appearance: textfield;
  appearance: textfield;
}
.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Summary */
.summary {
  margin-top: 4px;
  padding: 14px 16px;
  background: var(--green-50);
  border: 1px dashed var(--green-300);
  border-radius: var(--radius-md);
}
.summary h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.summary dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 4px 14px;
  font-size: .88rem;
  margin: 0;
}
.summary dt { color: var(--ink-500); font-weight: 500; }
.summary dd { margin: 0; color: var(--ink-900); font-weight: 600; text-align: right; }

/* Form actions */
.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--ink-100);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.005em;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid var(--green-300); outline-offset: 2px; }

.btn-primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(2, 122, 72, .65), inset 0 1px 0 rgba(255,255,255,.25);
  flex: 1;
}
.btn-primary:hover { background: linear-gradient(135deg, var(--green-600), var(--green-700)); box-shadow: 0 14px 32px -12px rgba(2, 122, 72, .75); }

.btn-ghost {
  background: var(--ink-100);
  color: var(--ink-700);
}
.btn-ghost:hover:not(:disabled) { background: var(--ink-200); color: var(--ink-900); }
.btn-ghost:disabled { opacity: .5; cursor: not-allowed; }

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border: 1.5px solid var(--green-500);
}
.btn-outline:hover { background: var(--green-50); }

.btn-submit { flex: 1; }
.btn[hidden] { display: none !important; }

.form-error {
  margin: 12px 0 0;
  font-size: .85rem;
  color: #b42318;
  min-height: 1.2em;
}

/* ---------- Sections ---------- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-header .eyebrow {
  background: var(--green-100);
  border: 1px solid var(--green-200);
  color: var(--green-800);
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 8px; }

.features { padding: 96px 0; background: var(--bg-soft); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--ink-100);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green-100), var(--green-200));
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.feature h3 { margin-bottom: 6px; }
.feature p { font-size: .94rem; }

@media (max-width: 980px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }

/* Fleet */
.fleet { padding: 96px 0; }

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.vehicle {
  position: relative;
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--ink-100);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.vehicle:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.vehicle.is-featured {
  background: linear-gradient(160deg, var(--green-700), var(--green-800));
  border-color: transparent;
  color: #fff;
}
.vehicle.is-featured h3,
.vehicle.is-featured .vehicle-desc { color: #fff; }
.vehicle.is-featured .vehicle-desc { color: rgba(255,255,255,.85); }
.vehicle.is-featured .vehicle-specs li { color: rgba(255,255,255,.92); border-color: rgba(255,255,255,.15); }
.vehicle.is-featured .vehicle-specs strong { color: #fff; }

.badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--yellow-400);
  color: var(--ink-900);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.vehicle-emoji {
  font-size: 3rem;
  margin-bottom: 14px;
}
.vehicle h3 { font-size: 1.6rem; margin-bottom: 6px; }
.vehicle-desc { font-size: .98rem; margin-bottom: 18px; }

.vehicle-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin-bottom: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}
.vehicle-specs li {
  font-size: .9rem;
  color: var(--ink-700);
}
.vehicle-specs strong {
  font-weight: 800;
  color: var(--green-700);
  margin-right: 4px;
}

.vehicle .btn { width: 100%; }
.vehicle.is-featured .btn-primary {
  background: var(--yellow-400);
  color: var(--ink-900);
  box-shadow: 0 10px 24px -10px rgba(247, 144, 9, .55);
}
.vehicle.is-featured .btn-primary:hover { background: var(--yellow-500); }

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

/* How it works */
.how { padding: 96px 0; background: var(--bg-soft); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: how;
}
.how-steps li {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--ink-100);
  position: relative;
}

.how-num {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.1rem;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px -6px rgba(2, 122, 72, .5);
}
.how-steps h3 { margin-bottom: 6px; }

@media (max-width: 860px) { .how-steps { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,.7);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-grid h4 { color: #fff; margin-bottom: 14px; font-size: .95rem; }
.site-footer .logo { color: #fff; margin-bottom: 12px; }
.site-footer .logo-text span { color: var(--green-400); }
.footer-tagline { font-size: .92rem; max-width: 38ch; }

.footer-list { display: flex; flex-direction: column; gap: 8px; font-size: .92rem; }
.footer-list a { transition: color .2s var(--ease); }
.footer-list a:hover { color: var(--green-400); }

.footer-bottom { padding-top: 24px; font-size: .82rem; color: rgba(255,255,255,.5); }

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

/* ---------- FAB WhatsApp ---------- */
.fab-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 32px -10px rgba(37, 211, 102, .65), 0 6px 14px -4px rgba(16,24,40,.18);
  z-index: 40;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  animation: fabPulse 2.4s var(--ease) infinite;
}
.fab-wa:hover { transform: translateY(-3px) scale(1.05); }

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 14px 32px -10px rgba(37, 211, 102, .65), 0 0 0 0 rgba(37, 211, 102, .5); }
  50%      { box-shadow: 0 14px 32px -10px rgba(37, 211, 102, .65), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ---------- Responsive hero ---------- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: auto;
  }
}

@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .booking-card { padding: 22px; border-radius: var(--radius-xl); }
  .row { grid-template-columns: 1fr; }
  .hero { padding-top: 100px; }
  .hero-copy h1 { font-size: 2.25rem; }
  .form-actions { flex-wrap: wrap; }
  .form-actions .btn { padding: 12px 16px; font-size: .9rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
