:root {
  --green-950: #06241b;
  --green-900: #0a3528;
  --green-800: #0e513d;
  --green-700: #147356;
  --green-600: #17966e;
  --green-100: #e7f7ef;
  --green-50: #f2fbf6;
  --ink: #101820;
  --ink-soft: #344149;
  --muted: #6f7b75;
  --paper: #fbfcf8;
  --panel: #ffffff;
  --line: rgba(10, 53, 40, 0.13);
  --danger: #b6323b;
  --warning: #9b6a12;
  --shadow: 0 24px 70px rgba(10, 53, 40, 0.12);
  --header-h: 88px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.5;
  margin: 0;
  min-width: 320px;
}

body.nav-open,
body.admin-route {
  overflow-x: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

[data-lucide],
svg {
  display: inline-block;
  flex: 0 0 auto;
  height: 1.05rem;
  width: 1.05rem;
}

.site-header {
  align-items: center;
  background: rgba(251, 252, 248, 0.86);
  border-bottom: 1px solid rgba(10, 53, 40, 0.09);
  backdrop-filter: blur(20px);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
  inset: 0 0 auto 0;
  min-height: var(--header-h);
  padding: 0 4vw;
  position: fixed;
  z-index: 80;
}

.site-header.is-scrolled {
  box-shadow: 0 18px 50px rgba(10, 53, 40, 0.08);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
  justify-self: start;
  min-width: 0;
}

.brand-logo {
  display: block;
  height: 58px;
  object-fit: contain;
  width: min(260px, 46vw);
}

.brand-mark {
  background:
    linear-gradient(135deg, rgba(23, 150, 110, 0.95), rgba(14, 81, 61, 0.96)),
    var(--green-900);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.12),
    0 12px 26px rgba(10, 53, 40, 0.2);
  display: inline-block;
  height: 42px;
  position: relative;
  width: 42px;
}

.brand-mark::before {
  background: #fff;
  border-radius: 999px 999px 4px 4px;
  content: "";
  height: 12px;
  left: 11px;
  position: absolute;
  top: 15px;
  transform: skewX(-16deg);
  width: 20px;
}

.brand-mark::after {
  background: var(--green-100);
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 9px;
  position: absolute;
  top: 27px;
  width: 24px;
}

.brand span:last-child {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--green-700);
  font-size: 0.73rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: inline-flex;
  gap: 0.16rem;
  justify-self: center;
}

.site-nav a {
  border-radius: 8px;
  color: #34433d;
  font-size: 1rem;
  font-weight: 840;
  padding: 0.76rem 0.98rem;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--green-100);
  color: var(--green-800);
}

.nav-customer-link {
  display: none;
}

.site-nav a:active,
.button:active,
.fleet-filters button:active {
  transform: translateY(1px);
}

.header-controls {
  align-items: center;
  display: inline-flex;
  gap: 0.65rem;
  justify-self: end;
  min-width: 0;
}

.language-switcher {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(10, 53, 40, 0.07);
  display: inline-flex;
  gap: 0.12rem;
  padding: 0.18rem;
}

.language-switcher button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: #496159;
  font-size: 0.82rem;
  font-weight: 860;
  min-height: 32px;
  padding: 0 0.55rem;
}

.language-switcher button.is-active {
  background: var(--green-800);
  color: #fff;
}

.header-action {
  align-items: center;
  background: var(--green-800);
  border: 1px solid var(--green-800);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 880;
  gap: 0.48rem;
  min-height: 42px;
  padding: 0.72rem 0.95rem;
}

.icon-button {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-900);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.nav-toggle {
  display: none;
  justify-self: end;
}

.hero {
  align-items: center;
  background:
    radial-gradient(circle at 28% 0%, rgba(23, 150, 110, 0.28), transparent 28rem),
    linear-gradient(180deg, #0a3528 0%, #06241b 64%, #04130f 100%);
  display: grid;
  grid-template-columns: 1fr;
  min-height: 83svh;
  overflow: visible;
  padding: calc(var(--header-h) + 1.45rem) 4vw 2.35rem;
  position: relative;
}

.hero::after {
  background: linear-gradient(90deg, rgba(187, 242, 219, 0.35), rgba(187, 242, 219, 0));
  bottom: 0;
  content: "";
  height: 1px;
  left: 4vw;
  position: absolute;
  right: 4vw;
}

.hero-booking-shell {
  display: grid;
  gap: 0.95rem;
  margin: 0 auto;
  max-width: 1180px;
  min-width: 0;
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero-booking-top {
  align-items: end;
  color: #fff;
  display: block;
  gap: 1.3rem;
  min-width: 0;
}

.hero-booking-top .eyebrow {
  color: #bbf2db;
}

.hero-booking-top h1 {
  color: #fff;
  font-size: clamp(2.7rem, 5.8vw, 5.35rem);
  line-height: 0.9;
  margin: 0;
  max-width: none;
  white-space: nowrap;
}

.hero-booking-note {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  gap: 0.55rem;
  font-weight: 780;
  padding: 0.72rem 0.9rem;
}

.hero-booking-note [data-lucide] {
  color: #bbf2db;
}

.hero-search-card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
  min-width: 0;
  padding: clamp(0.9rem, 1.8vw, 1.35rem);
}

.hero-booking-layout {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.34fr) minmax(320px, 0.66fr);
}

.hero-reservation-form,
.hero-quote-panel {
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.hero-reservation-form textarea {
  min-height: 104px;
}

.vehicle-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 1.05rem;
}

.vehicle-tabs button {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(10, 53, 40, 0.18);
  color: #273a33;
  display: inline-flex;
  font-weight: 840;
  gap: 0.48rem;
  min-height: 44px;
  padding: 0.7rem 0.9rem;
}

.vehicle-tabs button:first-child {
  border-radius: 8px 0 0 8px;
}

.vehicle-tabs button:last-child {
  border-radius: 0 8px 8px 0;
}

.vehicle-tabs button + button {
  margin-left: -1px;
}

.vehicle-tabs button.is-active {
  background: var(--green-800);
  border-color: var(--green-800);
  color: #fff;
}

.quick-search-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: minmax(280px, 2fr) repeat(4, minmax(116px, 1fr));
}

.quick-location {
  min-width: 0;
}

.quick-search-details {
  align-items: end;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: minmax(190px, 1.1fr) repeat(3, minmax(150px, 1fr));
  margin-top: 0.9rem;
}

.quick-check {
  align-items: center;
  background: #f6faf7;
  border: 1px solid rgba(10, 53, 40, 0.1);
  border-radius: 8px;
  display: flex;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0 0.82rem;
}

.quick-check input {
  accent-color: var(--green-700);
  height: 18px;
  min-height: 18px;
  padding: 0;
  width: 18px;
}

.quick-check span {
  color: var(--green-900);
  font-size: 0.86rem;
  font-weight: 820;
}

.quick-search-footer {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1.25rem;
}

.quick-search-footer div {
  color: var(--muted);
  display: grid;
  gap: 0.1rem;
}

.quick-search-footer strong {
  color: var(--green-900);
  font-size: 1rem;
}

.quick-search-footer span,
.quick-search-status {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 680;
}

.quick-search-status {
  margin: 0.8rem 0 0;
  min-height: 1.2rem;
}

.hero-copy {
  max-width: 610px;
  position: relative;
  z-index: 3;
}

.eyebrow {
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 860;
  letter-spacing: 0.14em;
  margin: 0 0 0.85rem;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--green-950);
  font-size: clamp(3.8rem, 8vw, 8.6rem);
  letter-spacing: 0;
  line-height: 0.85;
  margin: 0;
  max-width: 8ch;
}

.hero .hero-booking-top h1 {
  color: #fff;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.9;
  max-width: none;
}

.hero-copy p:not(.eyebrow) {
  color: #354b43;
  font-size: clamp(1.03rem, 1.8vw, 1.28rem);
  margin: 1.45rem 0 0;
  max-width: 40rem;
}

.hero-actions,
.contact-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 840;
  gap: 0.52rem;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.06rem;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button.button-compact {
  min-height: 38px;
  padding: 0.55rem 0.72rem;
}

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

.button-primary {
  background: var(--green-800);
  box-shadow: 0 18px 44px rgba(14, 81, 61, 0.22);
  color: #fff;
}

.button-primary:hover {
  background: var(--green-700);
  box-shadow: 0 22px 54px rgba(14, 81, 61, 0.27);
}

.button-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--green-900);
}

.button-secondary:hover {
  border-color: rgba(20, 115, 86, 0.36);
  box-shadow: 0 12px 30px rgba(10, 53, 40, 0.08);
}

.button-danger {
  background: #fff;
  border-color: rgba(182, 50, 59, 0.24);
  color: var(--danger);
}

.button-danger:hover {
  border-color: rgba(182, 50, 59, 0.46);
  box-shadow: 0 12px 30px rgba(182, 50, 59, 0.12);
}

.hero-stage {
  height: min(58vh, 560px);
  min-height: 380px;
  position: relative;
  touch-action: pan-y;
  z-index: 2;
}

#hero-canvas {
  height: 100%;
  inset: 0;
  position: absolute;
  touch-action: pan-y;
  width: 100%;
}

.section {
  padding: clamp(5rem, 8vw, 8.2rem) 4vw;
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.section-heading {
  margin: 0 auto 2.35rem;
  max-width: 820px;
  text-align: center;
}

.section-heading h2,
.rules-copy h2 {
  color: var(--green-950);
  font-size: clamp(2.25rem, 5.2vw, 5.2rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin: 0;
}

.section-heading p:not(.eyebrow),
.rules-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  margin: 1rem auto 0;
  max-width: 45rem;
}

.fleet-section {
  background: #fff;
}

.offers-section {
  background: #fff;
  padding-top: clamp(1.25rem, 2.8vw, 2.8rem);
}

.featured-section {
  background: linear-gradient(180deg, #fff 0%, var(--green-50) 100%);
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.featured-grid {
  max-width: 1180px;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin: 1.35rem auto 0;
}

.fleet-page,
.customer-section[data-customer-page] {
  min-height: 100vh;
  padding-top: calc(var(--header-h) + clamp(3rem, 6vw, 5rem));
}

.offers-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.offer-card {
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 218, 61, 0.32), transparent 9rem),
    linear-gradient(135deg, rgba(10, 53, 40, 0.94), rgba(6, 36, 27, 0.98)),
    var(--green-900);
  border: 1px solid rgba(187, 242, 219, 0.2);
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 0.9rem;
  min-height: 238px;
  overflow: hidden;
  padding: 1rem;
  position: relative;
}

.offer-card::after {
  background: linear-gradient(90deg, rgba(187, 242, 219, 0.55), rgba(187, 242, 219, 0));
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
}

.offer-badge {
  align-self: start;
  background: #ffda3d;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  color: #050a08;
  display: inline-grid;
  gap: 0.12rem;
  justify-self: start;
  min-width: 132px;
  padding: 0.82rem 0.9rem;
}

.offer-badge small {
  color: rgba(5, 10, 8, 0.68);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-badge strong {
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: 0;
  line-height: 0.85;
  overflow-wrap: anywhere;
}

.offer-body {
  align-self: end;
}

.offer-body h3 {
  font-size: clamp(1.06rem, 1.45vw, 1.35rem);
  line-height: 1.08;
  margin: 0;
}

.offer-body p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.38;
  margin: 0;
}

.offer-expiry {
  color: #bbf2db;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 820;
  margin-top: 0.75rem;
}

.offer-card .button {
  align-self: end;
  justify-self: start;
}

.offer-card.is-applied {
  border-color: rgba(255, 218, 61, 0.78);
  box-shadow: 0 22px 56px rgba(10, 53, 40, 0.16);
}

.offer-card.is-applied .button {
  background: #ffda3d;
  border-color: #ffda3d;
  color: #050a08;
}

.empty-offers {
  border: 1px dashed rgba(10, 53, 40, 0.18);
  border-radius: 8px;
  color: var(--muted);
  grid-column: 1 / -1;
  margin: 0;
  padding: 1.2rem;
  text-align: center;
}

.fleet-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin: -0.6rem auto 1.5rem;
  max-width: 980px;
}

.fleet-filters button {
  background: var(--green-50);
  border: 1px solid rgba(10, 53, 40, 0.09);
  border-radius: 8px;
  color: #34433d;
  font-size: 0.88rem;
  font-weight: 820;
  min-height: 40px;
  padding: 0.55rem 0.82rem;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.fleet-filters button:hover,
.fleet-filters button.is-active {
  background: var(--green-800);
  border-color: var(--green-800);
  color: #fff;
}

.fleet-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1280px;
}

.fleet-card,
.booking-form,
.contact-form,
.contact-card,
.quote-panel,
.customer-login,
.customer-results,
.rule-card,
.terms-panel,
.admin-section,
.metric-card,
.admin-login-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fleet-card {
  box-shadow: none;
  min-height: 430px;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.fleet-card:hover,
.fleet-card.is-selected {
  border-color: rgba(20, 115, 86, 0.5);
  box-shadow: 0 24px 54px rgba(10, 53, 40, 0.12);
  transform: translateY(-4px);
}

.fleet-card.is-hidden {
  display: none;
}

.fleet-photo {
  background:
    radial-gradient(circle at 50% 100%, rgba(23, 150, 110, 0.16), transparent 46%),
    var(--green-50);
  height: 218px;
  overflow: hidden;
  position: relative;
}

.fleet-photo img {
  display: block;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 1rem;
  box-sizing: border-box;
  transition:
    opacity 180ms ease,
    transform 460ms ease;
  width: 100%;
}

.fleet-photo img.is-changing {
  opacity: 0.4;
}

.fleet-card:hover .fleet-photo img {
  transform: scale(1.045);
}

.fleet-body {
  padding: 1rem;
}

.fleet-top {
  align-items: start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.fleet-kind {
  background: var(--green-50);
  border-radius: 999px;
  color: var(--green-800);
  font-size: 0.74rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.55rem;
  text-transform: uppercase;
}

.fleet-card h3 {
  font-size: 1.22rem;
  line-height: 1.15;
  margin: 0;
}

.fleet-card p {
  color: var(--muted);
  margin: 0.48rem 0 0;
}

.fleet-meta {
  display: grid;
  gap: 0.48rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.fleet-meta div {
  background: #f6faf7;
  border: 1px solid rgba(10, 53, 40, 0.08);
  border-radius: 8px;
  padding: 0.7rem;
}

.fleet-meta span {
  color: var(--muted);
  display: block;
  font-size: 0.76rem;
  font-weight: 760;
}

.fleet-meta strong {
  color: var(--green-900);
  display: block;
  font-size: 1rem;
  margin-top: 0.12rem;
}

.fleet-credit {
  color: var(--muted);
  display: block;
  font-size: 0.72rem;
  margin-top: 0.7rem;
}

.fleet-select-button {
  margin-top: 1rem;
  width: 100%;
}

.fleet-progress-sticky {
  background: rgba(251, 252, 248, 0.96);
  border: 1px solid rgba(10, 53, 40, 0.08);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(10, 53, 40, 0.08);
  display: grid;
  gap: 0.42rem;
  margin: 0 auto clamp(2rem, 4vw, 3.4rem);
  max-width: 1320px;
  padding: 0.44rem;
  position: sticky;
  top: calc(var(--header-h) + 0.35rem);
  z-index: 36;
}

.fleet-progress-sticky.is-review {
  box-shadow: 0 12px 26px rgba(10, 53, 40, 0.06);
  position: static;
}

.fleet-search-steps {
  display: grid;
  gap: 0.42rem;
  grid-template-columns: 1.95fr 1fr 1.3fr 0.78fr;
  margin: 0;
  max-width: none;
}

.fleet-progress-summary {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(10, 53, 40, 0.1);
  border-radius: 8px;
  display: grid;
  gap: 0.72rem;
  grid-template-columns: minmax(0, 1fr) auto auto;
  padding: 0.48rem 0.64rem;
}

.fleet-progress-summary .eyebrow {
  font-size: 0.68rem;
  margin-bottom: 0.18rem;
}

.fleet-progress-summary h3 {
  color: #050a08;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
}

.fleet-progress-summary-total {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  min-width: 150px;
  text-align: right;
}

.fleet-progress-summary-total > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 860;
  text-transform: uppercase;
}

.fleet-progress-summary-total strong {
  color: #050a08;
  font-size: clamp(1.85rem, 3.1vw, 2.55rem);
  line-height: 1;
  white-space: nowrap;
}

.fleet-progress-summary .option-checkout-button {
  justify-self: end;
  min-height: 40px;
  min-width: 190px;
  padding: 0.55rem 0.85rem;
}

.fleet-step-card {
  background: #fff;
  border: 1px solid rgba(10, 53, 40, 0.1);
  border-radius: 8px;
  min-height: 84px;
  padding: 0.56rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.fleet-step-card.is-active {
  border-color: rgba(57, 155, 43, 0.72);
  box-shadow: inset 0 0 0 1px rgba(57, 155, 43, 0.18);
}

.fleet-step-card.is-complete .step-title span,
.fleet-step-card.is-active .step-title span {
  background: #3f9c35;
  color: #fff;
}

.fleet-step-card.is-muted {
  opacity: 0.58;
}

.step-title {
  align-items: center;
  color: #5e6562;
  display: flex;
  gap: 0.44rem;
  font-size: 0.76rem;
  font-weight: 920;
  min-width: 0;
  text-transform: uppercase;
}

.step-title strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.step-title span {
  align-items: center;
  background: #d6dbd8;
  border-radius: 4px;
  color: #fff;
  display: inline-flex;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.step-title a {
  align-items: center;
  color: #3f9c35;
  display: inline-flex;
  margin-left: auto;
  min-height: 22px;
  min-width: 22px;
  justify-content: center;
}

.step-route {
  display: grid;
  gap: 0.42rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.42rem;
}

.step-route small,
.fleet-step-card p,
.step-route em {
  color: #6f7b75;
}

.step-route small,
.step-route b,
.step-route em {
  display: block;
}

.step-route b {
  color: #111b17;
  font-size: 0.82rem;
  line-height: 1.12;
  margin-top: 0.15rem;
}

.step-route em {
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 720;
  margin-top: 0.12rem;
}

.fleet-step-card p {
  font-size: 0.8rem;
  font-weight: 760;
  margin: 0.54rem 0 0;
}

.step-price {
  color: #6f7b75;
  display: block;
  font-style: normal;
  font-weight: 820;
  margin-top: 0.22rem;
}

.step-split {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
  margin-top: 0.54rem;
}

.step-split > div + div {
  border-left: 2px solid #3f9c35;
  padding-left: 0.72rem;
}

.step-split b,
.step-split em,
.step-total small,
.step-total strong {
  display: block;
}

.step-split b {
  color: #111b17;
  font-size: 0.86rem;
  line-height: 1.15;
}

.step-split em {
  color: #6f7b75;
  font-style: normal;
  font-weight: 740;
  font-size: 0.78rem;
  margin-top: 0.12rem;
}

.step-total {
  margin-top: 0.68rem;
}

.step-total small {
  color: #111b17;
  font-size: 0.92rem;
  font-weight: 900;
}

.step-total strong {
  color: #6f7b75;
  font-size: 1.05rem;
  line-height: 1.1;
  margin-top: 0.28rem;
}

.fleet-results-layout {
  align-items: start;
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.4rem);
  grid-template-columns: 310px minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1320px;
}

.fleet-results-layout[hidden] {
  display: none;
}

.fleet-filter-panel {
  background: #fff;
  border: 1px solid rgba(10, 53, 40, 0.14);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(10, 53, 40, 0.08);
  padding: 1.2rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.filter-heading {
  align-items: center;
  border-bottom: 1px solid rgba(10, 53, 40, 0.1);
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
}

.filter-heading h3,
.filter-group h4 {
  color: #111b17;
  margin: 0;
}

.filter-heading h3 {
  font-size: 1.35rem;
}

.filter-heading button {
  background: none;
  border: 0;
  color: #3f9c35;
  font-weight: 860;
  padding: 0;
  text-decoration: underline;
}

.filter-group {
  border-bottom: 1px solid rgba(10, 53, 40, 0.1);
  padding: 1.2rem 0;
}

.filter-group:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.filter-group h4 {
  font-size: 0.96rem;
  margin-bottom: 0.8rem;
}

.filter-option {
  align-items: center;
  background: none;
  border: 0;
  color: #5d6762;
  display: flex;
  gap: 0.68rem;
  min-height: 36px;
  padding: 0.22rem 0;
  text-align: left;
  width: 100%;
}

.filter-option input,
.filter-option > span:first-child {
  appearance: none;
  border: 1px solid #c7cfca;
  border-radius: 50%;
  display: inline-block;
  height: 18px;
  margin: 0;
  position: relative;
  width: 18px;
}

.filter-option input:checked,
.filter-option.is-active > span:first-child {
  background: #3f9c35;
  border-color: #3f9c35;
}

.filter-option input:checked::after,
.filter-option.is-active > span:first-child::after {
  background: #fff;
  border-radius: 50%;
  content: "";
  height: 5px;
  inset: 5px;
  position: absolute;
  width: 5px;
}

.filter-option input:focus-visible {
  outline: 3px solid rgba(63, 156, 53, 0.22);
  outline-offset: 3px;
}

.seat-scale {
  color: #303a35;
  display: flex;
  font-size: 0.82rem;
  font-weight: 820;
  justify-content: space-between;
}

.seat-range {
  accent-color: #3f9c35;
  margin: 0.7rem 0 0.35rem;
  min-height: 28px;
  width: 100%;
}

.filter-value {
  color: #65726b;
  font-size: 0.78rem;
  font-weight: 760;
  margin: 0.15rem 0 0;
}

.filter-value strong {
  color: #17251f;
}

.price-filter {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-filter label span {
  color: #6f7b75;
  display: block;
  font-size: 0.76rem;
  font-weight: 820;
  margin-bottom: 0.25rem;
}

.price-filter input {
  background: #fff;
  border: 1px solid #d8dfdb;
  border-radius: 8px;
  color: #111b17;
  font-weight: 920;
  min-height: 46px;
  padding: 0.65rem;
  width: 100%;
}

.fleet-results {
  min-width: 0;
}

.fleet-results-toolbar {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.fleet-results-toolbar p {
  color: #5d6762;
  font-weight: 760;
  margin: 0;
}

.fleet-results-toolbar label {
  align-items: center;
  display: inline-flex;
  gap: 0.55rem;
  white-space: nowrap;
}

.fleet-results-toolbar span {
  color: #111b17;
  font-weight: 860;
  white-space: nowrap;
}

.fleet-results-toolbar select {
  background: #fff;
  border: 1px solid #d8dfdb;
  border-radius: 8px;
  color: #424c47;
  min-height: 48px;
  min-width: 178px;
  padding: 0 2rem 0 0.8rem;
}

.fleet-results-list {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  margin: 0;
  max-width: none;
}

.fleet-result-card {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(10, 53, 40, 0.13);
  border-radius: 0;
  box-shadow: none;
  display: grid;
  gap: clamp(1rem, 2.4vw, 2rem);
  grid-template-columns: minmax(210px, 300px) minmax(0, 1fr);
  min-height: 0;
  overflow: visible;
  padding: clamp(1.2rem, 2.5vw, 1.8rem) 0;
}

.fleet-result-card:hover {
  border-color: rgba(10, 53, 40, 0.13);
  box-shadow: none;
  transform: none;
}

.fleet-result-card.is-selected {
  background: #f7fbf8;
  border: 1px solid rgba(63, 156, 53, 0.42);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(10, 53, 40, 0.1);
  margin: 0.7rem 0;
  padding-left: 1rem;
  padding-right: 1rem;
}

.fleet-result-photo {
  background: transparent;
  height: 190px;
}

.fleet-result-photo img {
  filter: drop-shadow(0 16px 16px rgba(10, 53, 40, 0.13));
  padding: 0.35rem;
}

.fleet-result-card:hover .fleet-result-photo img {
  transform: none;
}

.fleet-result-content {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) 190px;
  min-width: 0;
}

.fleet-result-info h3 {
  color: #060b09;
  font-size: clamp(1.35rem, 2.2vw, 1.72rem);
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}

.fleet-similar {
  align-items: center;
  border: 1px solid #d3dbd6;
  border-radius: 999px;
  color: #111b17;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 920;
  margin-top: 0.85rem;
  padding: 0.32rem 0.58rem;
  text-transform: uppercase;
}

.fleet-specs,
.fleet-inclusions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
}

.fleet-specs li,
.fleet-inclusions li {
  align-items: center;
  display: inline-flex;
  gap: 0.28rem;
}

.fleet-specs {
  color: #5d6762;
  font-size: 0.83rem;
  font-weight: 850;
}

.fleet-specs [data-lucide] {
  color: #a3aca7;
  height: 0.92rem;
  width: 0.92rem;
}

.fleet-inclusions {
  color: #5d6762;
  flex-direction: column;
  gap: 0.25rem;
  font-weight: 760;
}

.fleet-inclusions [data-lucide],
.fleet-details-button {
  color: #3f9c35;
}

.fleet-details-button {
  align-items: center;
  background: none;
  border: 0;
  display: inline-flex;
  font-weight: 900;
  gap: 0.28rem;
  margin-top: 1rem;
  padding: 0;
}

.fleet-details-panel {
  background: #f7faf8;
  border: 1px solid rgba(10, 53, 40, 0.1);
  border-radius: 8px;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0.9rem;
  padding: 0.9rem;
}

.fleet-details-panel[hidden] {
  display: none;
}

.fleet-details-panel > div {
  display: grid;
  gap: 0.12rem;
}

.fleet-details-panel span,
.fleet-details-panel p {
  color: #64716a;
  font-size: 0.78rem;
  font-weight: 760;
}

.fleet-details-panel strong {
  color: #0d1a14;
}

.fleet-rate-list {
  border-top: 1px solid rgba(10, 53, 40, 0.1);
  display: grid;
  gap: 0.4rem;
  grid-column: 1 / -1;
  list-style: none;
  margin: 0.2rem 0 0;
  padding: 0.75rem 0 0;
}

.fleet-rate-list li {
  align-items: center;
  display: flex;
  font-size: 0.8rem;
  gap: 0.7rem;
  justify-content: space-between;
}

.fleet-details-panel p {
  grid-column: 1 / -1;
  line-height: 1.45;
  margin: 0;
}

.fleet-result-price {
  justify-self: end;
  min-width: 180px;
  text-align: center;
}

.fleet-result-price small,
.fleet-result-price em {
  color: #5d6762;
  display: block;
  font-style: normal;
  text-transform: uppercase;
}

.fleet-result-price small {
  font-size: 0.68rem;
  font-weight: 900;
  margin-bottom: 0.18rem;
}

.fleet-result-price strong {
  color: #050a08;
  display: block;
  font-size: clamp(1.55rem, 2.6vw, 2.12rem);
  line-height: 1.05;
}

.fleet-result-price strong span:last-child {
  font-size: 1.1rem;
  font-weight: 860;
}

.fleet-result-price em {
  font-size: 0.88rem;
  font-weight: 780;
  margin-top: 0.2rem;
}

.fleet-result-price .fleet-select-button {
  background: #ffda3d;
  border-color: #ffda3d;
  color: #050a08;
  margin: 1rem auto 0;
  max-width: 138px;
  min-height: 50px;
}

.fleet-result-price .fleet-select-button:hover {
  background: #f4cb20;
  border-color: #f4cb20;
  box-shadow: 0 14px 26px rgba(194, 150, 0, 0.2);
}

.booking-section,
.customer-section {
  background:
    linear-gradient(180deg, var(--green-50), #ffffff 52%, #f6faf7);
}

.booking-layout,
.customer-layout {
  align-items: start;
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: 1220px;
}

.booking-layout {
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
}

.reservation-panel {
  background: rgba(246, 250, 247, 0.78);
  border: 1px solid rgba(10, 53, 40, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(10, 53, 40, 0.1);
  margin: 0 auto 2rem;
  max-width: 1220px;
  padding: clamp(1rem, 2.4vw, 1.5rem);
}

.reservation-panel-heading {
  align-items: end;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.reservation-panel-heading h3 {
  color: var(--green-950);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 0.98;
  margin: 0;
}

.reservation-panel-heading p {
  color: var(--muted);
  margin: 0;
  max-width: 28rem;
}

.reservation-layout {
  max-width: none;
}

.customer-layout {
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-form,
.customer-login {
  padding: clamp(1rem, 2.4vw, 1.65rem);
}

.form-grid {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid.customer-login-grid {
  grid-template-columns: 1fr;
}

.form-pair {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
}

.span-2 {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 0.42rem;
  min-width: 0;
}

label span {
  color: #2b433a;
  font-size: 0.82rem;
  font-weight: 820;
}

input,
select,
textarea {
  background: #fbfdfb;
  border: 1px solid rgba(10, 53, 40, 0.15);
  border-radius: 8px;
  box-sizing: border-box;
  color: var(--ink);
  min-height: 48px;
  outline: none;
  padding: 0.78rem 0.82rem;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
  width: 100%;
}

input,
select {
  height: 48px;
}

.filter-option input,
.filter-option > span:first-child {
  flex: 0 0 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  width: 18px;
}

input[type="date"],
input[type="time"] {
  font-size: 0.9rem;
  padding-left: 0.68rem;
  padding-right: 0.68rem;
}

textarea {
  margin-top: 1rem;
  min-height: 128px;
  resize: vertical;
}

.terms-acceptance {
  background: rgba(23, 150, 110, 0.07);
  border: 1px solid rgba(23, 150, 110, 0.18);
  border-radius: 8px;
  margin-top: 1rem;
  padding: 0.9rem;
}

.terms-acceptance label {
  align-items: flex-start;
  display: flex;
  gap: 0.7rem;
}

.terms-acceptance input[type="checkbox"] {
  accent-color: var(--green-700);
  box-shadow: none;
  flex: 0 0 auto;
  height: 18px;
  margin-top: 0.16rem;
  min-height: 18px;
  padding: 0;
  width: 18px;
}

.terms-acceptance span {
  color: #2b433a;
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.45;
}

.terms-acceptance a {
  color: var(--green-800);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.quote-options-drawer {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(187, 242, 219, 0.2);
  border-radius: 8px;
  margin-top: 1rem;
  overflow: hidden;
}

.quote-options-drawer summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  list-style: none;
  min-height: 58px;
  padding: 0.85rem;
}

.quote-options-drawer summary::-webkit-details-marker {
  display: none;
}

.quote-options-drawer summary span,
.quote-options-drawer summary small {
  align-items: center;
  display: inline-flex;
  gap: 0.48rem;
}

.quote-options-drawer summary span {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 860;
}

.quote-options-drawer summary small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 760;
  text-align: right;
}

.quote-options-drawer summary [data-lucide] {
  color: #bbf2db;
  height: 1rem;
  width: 1rem;
}

.booking-options-grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
  padding: 0 0.85rem 0.85rem;
}

.booking-option {
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0.62rem;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.phone-field {
  align-items: center;
  background: #fbfdfb;
  border: 1px solid rgba(10, 53, 40, 0.15);
  border-radius: 8px;
  box-sizing: border-box;
  display: flex;
  min-height: 48px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.phone-field:focus-within {
  background: #fff;
  border-color: rgba(23, 150, 110, 0.78);
  box-shadow: 0 0 0 4px rgba(23, 150, 110, 0.13);
}

.phone-flag {
  align-items: center;
  border-right: 1px solid rgba(10, 53, 40, 0.11);
  display: inline-flex;
  flex: 0 0 50px;
  font-size: 1.35rem;
  height: 30px;
  justify-content: center;
  line-height: 1;
}

.phone-field input {
  background: transparent;
  border: 0;
  box-shadow: none;
  flex: 1;
  min-width: 0;
}

.phone-field input:focus {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.booking-option:hover,
.booking-option:has(input:checked) {
  border-color: rgba(187, 242, 219, 0.34);
}

.booking-option:has(input:checked) {
  background: rgba(187, 242, 219, 0.12);
}

.booking-option input {
  accent-color: #bbf2db;
  flex: 0 0 auto;
  height: 17px;
  margin: 0;
  min-height: 17px;
  padding: 0;
  width: 17px;
}

.booking-option span {
  display: grid;
  gap: 0.08rem;
}

.booking-option strong {
  color: #fff;
  font-size: 0.84rem;
  line-height: 1.15;
}

.booking-option small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
  font-weight: 760;
}

.protection-stage {
  background: #ffffff;
  border: 1px solid rgba(10, 53, 40, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(10, 53, 40, 0.08);
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
  padding: clamp(1rem, 2.4vw, 1.45rem);
}

.protection-stage-heading {
  align-items: start;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.protection-stage-heading h3,
.optional-extras-stage h3 {
  color: #050a08;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.protection-stage-heading p {
  color: var(--muted);
  font-weight: 680;
  margin: 0.4rem 0 0;
}

.protection-stage-total {
  align-items: end;
  display: grid;
  gap: 0.48rem;
  justify-items: end;
  min-width: 250px;
  text-align: right;
}

.protection-stage-total > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.protection-stage-total strong {
  color: #050a08;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.option-checkout-button {
  background: #ffda3d;
  border-color: #ffda3d;
  color: #050a08;
  min-height: 48px;
  min-width: 220px;
}

.option-checkout-button:hover {
  background: #f4cb20;
  border-color: #f4cb20;
}

.protection-plans {
  align-items: stretch;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.protection-plan {
  background: #fff;
  border: 1px solid rgba(10, 53, 40, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(10, 53, 40, 0.06);
  color: #050a08;
  cursor: pointer;
  display: grid;
  gap: 0.84rem;
  min-height: 0;
  padding: 0.9rem;
  position: relative;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.protection-plan:hover {
  border-color: rgba(58, 159, 48, 0.48);
  box-shadow: 0 20px 42px rgba(10, 53, 40, 0.1);
  transform: translateY(-2px);
}

.protection-plan.is-selected,
.protection-plan:has(.plan-control:checked) {
  border-color: #3a9f30;
  box-shadow: 0 20px 48px rgba(58, 159, 48, 0.14);
}

.plan-control {
  height: 1px;
  margin: 0;
  min-height: 1px;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.selected-pill,
.plan-ribbon {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.64rem;
  font-weight: 920;
  justify-content: center;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 0.4rem 0.58rem;
  text-transform: uppercase;
  width: fit-content;
}

.selected-pill {
  background: #3a9f30;
  color: #fff;
  left: 1rem;
  opacity: 0;
  position: absolute;
  top: -0.72rem;
  transform: translateY(4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.protection-plan.is-selected .selected-pill,
.protection-plan:has(.plan-control:checked) .selected-pill {
  opacity: 1;
  transform: translateY(0);
}

.plan-ribbon {
  background: #dc2f45;
  color: #fff;
  justify-self: end;
  margin-top: -0.25rem;
  position: static;
}

.plan-visual {
  align-items: center;
  background: #f1f7f3;
  border: 1px solid rgba(10, 53, 40, 0.08);
  border-radius: 8px;
  display: flex;
  height: 112px;
  justify-content: center;
  overflow: hidden;
}

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

.plan-copy {
  align-self: start;
  display: grid;
  gap: 0.3rem;
}

.plan-copy h4 {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: clamp(1.12rem, 1.65vw, 1.5rem);
  gap: 0.32rem;
  line-height: 1;
  margin: 0;
}

.plan-copy p {
  color: #111815;
  font-size: 0.82rem;
  font-weight: 820;
  margin: 0;
}

.plan-stars {
  display: inline-flex;
  gap: 0.08rem;
}

.plan-stars span {
  color: rgba(5, 10, 8, 0.26);
  font-size: 0.86rem;
}

.plan-stars span.is-filled {
  color: #d6bd73;
}

.plan-price {
  border-bottom: 1px solid rgba(10, 53, 40, 0.1);
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.95rem;
}

.plan-price strong,
.plan-price.is-included {
  color: #050a08;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  font-weight: 920;
  line-height: 1;
}

.plan-price span,
.plan-price small {
  color: #2c3c36;
  font-weight: 760;
}

.plan-price small {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.plan-features {
  display: grid;
  gap: 0.58rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.plan-features li {
  align-items: start;
  color: #17251f;
  display: grid;
  font-size: 0.82rem;
  font-weight: 760;
  gap: 0.58rem;
  grid-template-columns: 18px minmax(0, 1fr);
  line-height: 1.35;
}

.plan-features li span {
  color: #3a9f30;
  font-size: 1.05rem;
  font-weight: 940;
  line-height: 1;
}

.plan-features li.is-muted {
  color: rgba(23, 37, 31, 0.35);
}

.plan-features li.is-muted span {
  color: rgba(23, 37, 31, 0.28);
}

.protection-details-panel {
  background: #f7faf8;
  border: 1px solid transparent;
  border-radius: 8px;
  display: grid;
  grid-template-rows: 0fr;
  gap: 0.55rem;
  margin-top: -0.35rem;
  opacity: 0;
  overflow: hidden;
  padding: 0 0.8rem;
  transition:
    border-color 180ms ease,
    grid-template-rows 220ms ease,
    margin 220ms ease,
    opacity 180ms ease,
    padding 220ms ease;
}

.protection-details-panel.is-open {
  border-color: rgba(10, 53, 40, 0.1);
  grid-template-rows: 1fr;
  margin-top: 0;
  opacity: 1;
  padding: 0.8rem;
}

.protection-details-inner {
  display: grid;
  gap: 0.55rem;
  min-height: 0;
  overflow: hidden;
}

.protection-details-panel p {
  color: #39463f;
  font-size: 0.84rem;
  font-weight: 720;
  line-height: 1.45;
  margin: 0;
}

.protection-details-panel ul {
  color: #17251f;
  display: grid;
  font-size: 0.78rem;
  font-weight: 760;
  gap: 0.28rem;
  margin: 0;
  padding-left: 1rem;
}

.protection-card-actions {
  align-items: center;
  align-self: end;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: minmax(0, 1fr) minmax(108px, auto);
  margin-top: auto;
}

.details-link {
  background: none;
  border: 0;
  color: #050a08;
  cursor: pointer;
  font-weight: 880;
  padding: 0;
  text-align: left;
}

.plan-select-button {
  align-items: center;
  background: #ffda3d;
  border: 1px solid #ffda3d;
  border-radius: 8px;
  color: #050a08;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0.74rem 1rem;
  text-align: center;
}

.plan-select-button:disabled,
.protection-plan.is-selected .plan-select-button,
.protection-plan:has(.plan-control:checked) .plan-select-button {
  background: #e8ebe8;
  border-color: #e8ebe8;
  color: rgba(5, 10, 8, 0.34);
  cursor: default;
}

.optional-extras-stage {
  background: #f7faf8;
  border: 1px solid rgba(10, 53, 40, 0.08);
  border-radius: 8px;
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
}

.protection-stage .booking-options-grid {
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
}

.protection-stage .booking-option {
  background: #fff;
  border-color: rgba(10, 53, 40, 0.11);
  min-height: 0;
  overflow: hidden;
  padding: 0;
}

.protection-stage .booking-option:hover,
.protection-stage .booking-option:has(input:checked) {
  border-color: rgba(58, 159, 48, 0.55);
  box-shadow: 0 12px 28px rgba(10, 53, 40, 0.08);
}

.protection-stage .booking-option:has(input:checked) {
  background: rgba(58, 159, 48, 0.08);
}

.protection-stage .booking-option input {
  accent-color: #3a9f30;
}

.protection-stage .booking-option.extra-card {
  align-items: stretch;
  display: grid;
  gap: 0;
}

.booking-option .extra-photo {
  align-items: center;
  background: #edf5f0;
  display: flex;
  height: 128px;
  justify-content: center;
  overflow: hidden;
}

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

.booking-option .extra-copy {
  align-items: center;
  display: flex;
  gap: 0.72rem;
  padding: 0.85rem;
}

.booking-option .extra-check {
  display: flex;
  flex: 0 0 auto;
}

.booking-option .extra-text {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.protection-stage .booking-option strong {
  color: #050a08;
}

.protection-stage .booking-option small {
  color: var(--muted);
}

.quote-options-note {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(187, 242, 219, 0.2);
  border-radius: 8px;
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
  margin: 1rem 0 0;
  padding: 0.85rem;
}

.quote-options-note span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 780;
}

.quote-options-note strong {
  color: #fff;
  font-size: 0.86rem;
  text-align: right;
}

.review-stage {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.review-stage-heading {
  align-items: end;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.review-stage-heading h3,
.review-form-title,
.quote-panel-title {
  color: #050a08;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.review-stage-heading h3 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.review-stage-total {
  display: grid;
  gap: 0.16rem;
  justify-items: end;
  text-align: right;
}

.review-stage-total > span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 860;
  text-transform: uppercase;
}

.review-stage-total strong {
  color: #050a08;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.review-layout {
  align-items: stretch;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.55fr);
}

.review-stage .booking-form {
  background: #f5f6f4;
  border-color: transparent;
  box-shadow: none;
}

.review-form-heading {
  align-items: end;
  border-bottom: 1px solid rgba(10, 53, 40, 0.1);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 1.35rem;
  padding-bottom: 1.25rem;
}

.review-form-heading .eyebrow {
  margin-bottom: 0.5rem;
}

.review-form-heading h3 {
  color: #050a08;
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0;
}

.review-form-total {
  display: grid;
  gap: 0.18rem;
  justify-items: end;
  text-align: right;
}

.review-form-total span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 860;
  text-transform: uppercase;
}

.review-form-total strong {
  color: #050a08;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.review-form-title {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  margin-bottom: 1rem;
}

.review-stage .quote-panel {
  background: #fff;
  border-color: rgba(10, 53, 40, 0.16);
  box-shadow: none;
  color: #050a08;
  overflow: visible;
}

.review-stage .quote-panel::before {
  display: none;
}

.quote-panel-title {
  border-bottom: 1px solid rgba(10, 53, 40, 0.14);
  font-size: 1.35rem;
  padding-bottom: 0.72rem;
}

.review-stage .quote-empty {
  color: #050a08;
}

.review-stage .quote-empty [data-lucide] {
  color: var(--green-700);
}

.review-stage .quote-empty p,
.review-stage .quote-details p,
.review-stage .quote-vehicle small {
  color: var(--muted);
}

.quote-car-image {
  display: block;
  margin: 1rem auto 0;
  max-height: 150px;
  object-fit: contain;
  width: 100%;
}

.review-stage .quote-list div {
  border-top: 1px solid rgba(10, 53, 40, 0.12);
}

.review-stage .quote-list dt {
  color: var(--muted);
}

.review-stage .quote-list dd {
  color: #050a08;
}

.quote-route-summary {
  background: #f4f5f3;
  border: 1px solid rgba(10, 53, 40, 0.08);
  display: grid;
  margin-top: 0.9rem;
}

.quote-route-summary div {
  display: grid;
  gap: 0.16rem;
  padding: 0.9rem 1rem;
}

.quote-route-summary div + div {
  border-top: 1px solid rgba(10, 53, 40, 0.08);
}

.quote-route-summary small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 840;
  text-transform: uppercase;
}

.quote-route-summary strong {
  color: #050a08;
  font-size: 1.05rem;
  line-height: 1.1;
}

.quote-route-summary span {
  color: var(--muted);
  font-weight: 720;
}

.review-stage .quote-options-note {
  background: #f7faf8;
  border-color: rgba(10, 53, 40, 0.12);
  color: #050a08;
}

.review-stage .quote-options-note span {
  color: var(--muted);
}

.review-stage .quote-options-note strong {
  color: #050a08;
}

.review-stage .quote-total {
  border-top: 1px solid rgba(10, 53, 40, 0.14);
  margin-top: 1rem;
}

.review-stage .quote-total span {
  color: var(--muted);
}

.review-stage .quote-total strong {
  color: #050a08;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

input:focus,
select:focus,
textarea:focus {
  background: #fff;
  border-color: rgba(23, 150, 110, 0.78);
  box-shadow: 0 0 0 4px rgba(23, 150, 110, 0.13);
}

.submit-button {
  margin-top: 1rem;
  width: 100%;
}

.form-status {
  color: var(--green-700);
  font-weight: 780;
  margin: 0.85rem 0 0;
  min-height: 1.45rem;
}

.form-status.is-error {
  color: var(--danger);
}

.contact-float {
  align-items: center;
  bottom: 1.2rem;
  display: grid;
  gap: 0.75rem;
  justify-content: center;
  position: fixed;
  right: 1.2rem;
  justify-items: end;
  pointer-events: none;
  z-index: 90;
}

.contact-popup,
.support-popover,
.support-hint {
  pointer-events: auto;
}

.contact-popup {
  align-items: center;
  background: var(--green-900);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(10, 53, 40, 0.28);
  color: #fff;
  display: inline-flex;
  height: 58px;
  justify-content: center;
  padding: 0;
  width: 58px;
}

.contact-popup[hidden] {
  display: none;
}

.contact-popup:hover {
  background: var(--green-800);
  transform: translateY(-2px);
}

.contact-popup [data-lucide] {
  height: 1.5rem;
  width: 1.5rem;
}

.support-popover {
  background: #fff;
  border: 1px solid rgba(10, 53, 40, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(10, 53, 40, 0.2);
  color: #050a08;
  display: grid;
  gap: 0.78rem;
  max-width: calc(100vw - 2rem);
  padding: 1rem;
  width: 360px;
}

.support-popover[hidden] {
  display: none;
}

.support-hint {
  background: #fff;
  border: 1px solid rgba(10, 53, 40, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(10, 53, 40, 0.14);
  color: #050a08;
  display: grid;
  gap: 0.12rem;
  max-width: 220px;
  padding: 0.72rem 0.82rem;
  text-align: right;
}

.support-hint[hidden],
.contact-float.is-open .support-hint {
  display: none;
}

.support-hint strong {
  color: var(--green-900);
  font-size: 0.9rem;
  line-height: 1.05;
}

.support-hint span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.25;
}

.support-popover-heading {
  align-items: start;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.support-popover-heading h3 {
  font-size: 1.12rem;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0;
}

.support-popover-heading p {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0.22rem 0 0;
}

.support-close {
  align-items: center;
  background: #f1f7f3;
  border: 1px solid rgba(10, 53, 40, 0.1);
  border-radius: 999px;
  color: var(--green-900);
  display: inline-flex;
  height: 36px;
  justify-content: center;
  padding: 0;
  width: 36px;
}

.support-popover label {
  display: grid;
  gap: 0.32rem;
}

.support-popover label span {
  color: #26352f;
  font-size: 0.8rem;
  font-weight: 820;
}

.support-popover input,
.support-popover textarea {
  background: #fff;
  border: 1px solid rgba(10, 53, 40, 0.14);
  border-radius: 8px;
  min-height: 44px;
  padding: 0.72rem 0.8rem;
  width: 100%;
}

.support-popover textarea {
  min-height: 96px;
  resize: vertical;
}

.support-popover .button {
  min-height: 44px;
  width: 100%;
}

.support-popover .form-status {
  font-size: 0.82rem;
  margin: 0;
  min-height: 1.2rem;
}

.quote-panel {
  background:
    linear-gradient(160deg, rgba(10, 53, 40, 0.98), rgba(6, 36, 27, 0.96)),
    var(--green-950);
  color: #fff;
  overflow: hidden;
  padding: clamp(1.2rem, 2.6vw, 1.7rem);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.quote-panel::before {
  background: linear-gradient(90deg, #bbf2db, var(--green-600), #ffffff);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.quote-empty {
  align-content: center;
  display: grid;
  min-height: 340px;
}

.quote-empty [data-lucide] {
  color: #bbf2db;
  height: 2.1rem;
  margin-bottom: 1rem;
  width: 2.1rem;
}

.quote-empty strong {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
}

.quote-empty p,
.quote-details p {
  color: rgba(255, 255, 255, 0.64);
  margin: 1rem 0 0;
}

.quote-vehicle {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.quote-brand {
  align-items: center;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(187, 242, 219, 0.44);
  border-radius: 8px;
  color: var(--green-950);
  display: inline-flex;
  font-size: 0.66rem;
  font-weight: 920;
  height: 68px;
  justify-content: center;
  letter-spacing: 0.08em;
  line-height: 1;
  min-width: 68px;
  padding: 0.65rem;
  text-align: center;
  width: 68px;
}

.quote-brand img {
  display: block;
  max-height: 46px;
  max-width: 50px;
  object-fit: contain;
}

.quote-vehicle strong,
.quote-vehicle small {
  display: block;
}

.quote-vehicle small {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.2rem;
}

.quote-list {
  display: grid;
  gap: 0;
  margin: 1.5rem 0 0;
}

.quote-list div {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.quote-list dt {
  color: rgba(255, 255, 255, 0.64);
}

.quote-list dd {
  font-weight: 860;
  margin: 0;
  text-align: right;
  max-width: 56%;
}

.quote-total {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 0.35rem;
  padding-top: 1rem;
}

.quote-total span {
  color: rgba(255, 255, 255, 0.7);
}

.quote-total strong {
  color: #bbf2db;
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: 0;
  line-height: 0.9;
}

.quote-total strong span {
  color: inherit;
}

.customer-results {
  box-shadow: none;
  min-height: 320px;
  padding: 1rem;
}

.customer-empty {
  align-content: center;
  display: grid;
  min-height: 280px;
  text-align: left;
}

.customer-empty [data-lucide] {
  color: var(--green-700);
  height: 2rem;
  margin-bottom: 1rem;
  width: 2rem;
}

.customer-empty h3 {
  color: var(--green-950);
  font-size: 1.55rem;
  line-height: 1.1;
  margin: 0;
}

.customer-empty p {
  color: var(--muted);
  margin: 0.75rem 0 0;
}

.booking-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.booking-card + .booking-card {
  margin-top: 0.8rem;
}

.booking-notice {
  align-items: start;
  border-radius: 8px;
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem;
}

.booking-notice [data-lucide] {
  height: 1.25rem;
  margin-top: 0.12rem;
  width: 1.25rem;
}

.booking-notice strong,
.booking-notice span {
  display: block;
}

.booking-notice strong {
  color: var(--green-950);
}

.booking-notice span {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.18rem;
}

.booking-notice.is-accepted {
  background: var(--green-100);
  color: var(--green-800);
}

.booking-notice.is-pending {
  background: #fff8e8;
  color: var(--warning);
}

.booking-notice.is-rejected {
  background: #f8e3e5;
  color: var(--danger);
}

.booking-card h3 {
  color: var(--green-950);
  margin: 0;
}

.booking-card p {
  color: var(--muted);
  margin: 0.2rem 0 0;
}

.booking-card dl {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}

.booking-card dl div {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.booking-card dt {
  color: var(--muted);
}

.booking-card dd {
  font-weight: 820;
  margin: 0;
  text-align: right;
}

.booking-actions {
  display: grid;
  gap: 0.75rem;
}

.small-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rules-section {
  align-items: start;
  background: #fff;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.rules-copy {
  position: sticky;
  top: calc(var(--header-h) + 1.2rem);
}

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

.rule-card {
  box-shadow: none;
  min-height: 220px;
  padding: 1.2rem;
}

.rule-card [data-lucide] {
  color: var(--green-700);
  height: 1.7rem;
  width: 1.7rem;
}

.rule-card h3 {
  color: var(--green-950);
  font-size: 1.35rem;
  line-height: 1.05;
  margin: 1.4rem 0 0;
}

.rule-card p {
  color: var(--muted);
  margin: 0.8rem 0 0;
}

.terms-section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--green-50) 100%);
}

.terms-panel {
  box-shadow: none;
  margin: 0 auto;
  max-width: 1080px;
  padding: clamp(1rem, 2.6vw, 1.6rem);
}

.terms-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.terms-list details {
  background: #fbfdfb;
  border: 1px solid rgba(10, 53, 40, 0.11);
  border-radius: 8px;
  color: var(--muted);
  line-height: 1.6;
  overflow: hidden;
}

.terms-list summary {
  color: var(--green-950);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  list-style: none;
  padding: 1rem 1.1rem;
}

.terms-list summary::-webkit-details-marker {
  display: none;
}

.terms-list summary::after {
  color: var(--green-700);
  content: "+";
  float: right;
  font-weight: 900;
}

.terms-list details[open] summary::after {
  content: "-";
}

.terms-list p,
.terms-list ul {
  margin: 0 1.1rem 1rem;
}

.terms-list ul {
  padding-left: 1.1rem;
}

.terms-list li + li {
  margin-top: 0.35rem;
}

.terms-table-wrap {
  margin: 0 1.1rem 1rem;
  overflow-x: auto;
}

.terms-table {
  border-collapse: collapse;
  min-width: 560px;
  width: 100%;
}

.terms-table th,
.terms-table td {
  border-bottom: 1px solid rgba(10, 53, 40, 0.1);
  padding: 0.72rem 0.55rem;
  text-align: left;
  vertical-align: top;
}

.terms-table th {
  color: var(--green-950);
  font-weight: 860;
  width: 52%;
}

.contact-section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--green-50) 54%, #ffffff 100%);
}

.airport-map {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: clamp(340px, 46vw, 520px);
  margin: 0 auto 1rem;
  max-width: 1220px;
  overflow: hidden;
  position: relative;
}

.airport-map iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.airport-map-label {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 53, 40, 0.12);
  border-radius: 8px;
  bottom: 1rem;
  box-shadow: 0 18px 46px rgba(10, 53, 40, 0.14);
  display: inline-flex;
  gap: 0.8rem;
  left: 1rem;
  max-width: min(520px, calc(100% - 2rem));
  padding: 0.82rem 0.95rem;
  position: absolute;
}

.airport-map-label [data-lucide] {
  color: var(--green-700);
  height: 1.35rem;
  width: 1.35rem;
}

.airport-map-label strong,
.airport-map-label span {
  display: block;
}

.airport-map-label strong {
  color: var(--green-950);
}

.airport-map-label span {
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-layout {
  align-items: stretch;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  margin: 0 auto;
  max-width: 1220px;
}

.contact-form,
.contact-card {
  padding: clamp(1rem, 2.4vw, 1.65rem);
}

.contact-card {
  align-content: start;
  box-shadow: none;
  display: grid;
  gap: 1rem;
  min-height: 100%;
}

.contact-card > .button {
  align-self: end;
  margin-top: auto;
}

.contact-card > [data-lucide] {
  color: var(--green-700);
  height: 2rem;
  width: 2rem;
}

.contact-card h3 {
  color: var(--green-950);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.02;
  margin: 0;
}

.contact-card p {
  color: var(--muted);
  margin: 0;
}

.contact-direct {
  background: #f6faf7;
  border: 1px solid rgba(10, 53, 40, 0.1);
  border-radius: 8px;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
  padding: 0.75rem;
}

.contact-direct a,
.social-link {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(10, 53, 40, 0.1);
  border-radius: 8px;
  color: var(--green-950);
  display: inline-flex;
  gap: 0.55rem;
  min-height: 44px;
  min-width: 0;
  padding: 0.62rem 0.7rem;
}

.contact-direct a [data-lucide],
.social-link [data-lucide] {
  color: var(--green-700);
  height: 1rem;
  width: 1rem;
}

.contact-direct a span,
.social-link span {
  font-size: 0.86rem;
  font-weight: 820;
  min-width: 0;
  overflow-wrap: anywhere;
}

.social-links {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-link.is-placeholder {
  color: var(--muted);
}

.site-footer {
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  min-height: 82px;
  padding: 1.2rem 4vw;
}

.footer-logo {
  display: block;
  height: 46px;
  object-fit: contain;
  width: min(220px, 48vw);
}

.site-footer small {
  max-width: 620px;
  text-align: right;
}

.site-footer a {
  color: var(--green-800);
  font-weight: 820;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.admin-view {
  background:
    linear-gradient(180deg, var(--green-950), var(--green-900) 34%, var(--paper) 34%, var(--paper));
  min-height: 100vh;
  padding: calc(var(--header-h) + 2.4rem) 4vw 5rem;
}

.admin-login {
  align-items: center;
  display: grid;
  min-height: calc(100vh - var(--header-h) - 5rem);
}

.admin-login-card {
  margin: 0 auto;
  max-width: 460px;
  padding: 1.4rem;
  width: min(100%, 460px);
}

.admin-login-card h1 {
  color: var(--green-950);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.94;
  margin: 0;
}

.admin-login-card p:not(.eyebrow) {
  color: var(--muted);
  margin: 0.8rem 0 1.2rem;
}

.admin-hero {
  align-items: end;
  color: #fff;
  display: flex;
  gap: 1.4rem;
  justify-content: space-between;
  margin: 0 auto 1.4rem;
  max-width: 1220px;
}

.admin-hero h1 {
  font-size: clamp(2.8rem, 6vw, 6.4rem);
  letter-spacing: 0;
  line-height: 0.9;
  margin: 0;
}

.admin-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  margin: 0.9rem 0 0;
}

.admin-metrics {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1220px;
}

.metric-card {
  box-shadow: none;
  padding: 1rem;
}

.metric-card span {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  font-weight: 820;
}

.metric-card strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  margin-top: 0.65rem;
}

.metric-card small {
  color: var(--green-700);
  display: block;
  font-weight: 780;
  margin-top: 0.5rem;
}

.admin-section {
  box-shadow: none;
  margin: 1rem auto 0;
  max-width: 1220px;
  overflow: hidden;
}

.admin-calendar-section {
  background: #fff;
}

.admin-create-form {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
}

.admin-create-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.admin-create-actions .admin-action-status {
  padding: 0;
}

.admin-inline-check {
  align-items: center;
  display: inline-flex;
  gap: 0.55rem;
}

.admin-inline-check input {
  accent-color: var(--green-700);
  height: 18px;
  min-height: 18px;
  padding: 0;
  width: 18px;
}

.admin-offers-grid {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}

.admin-offer-card {
  align-items: center;
  background: #f8fbf9;
  border: 1px solid rgba(10, 53, 40, 0.1);
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.9rem;
}

.admin-offer-card h3 {
  color: var(--green-950);
  font-size: 1.04rem;
  margin: 0.5rem 0 0;
}

.admin-offer-card p {
  color: var(--muted);
  margin: 0.28rem 0 0;
}

.admin-offer-card small {
  color: #496159;
  display: block;
  font-weight: 720;
  margin-top: 0.45rem;
}

.admin-section-heading {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem;
}

.admin-heading-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.admin-calendar-heading {
  align-items: end;
}

.admin-calendar-heading > div:first-child {
  display: grid;
  gap: 0.3rem;
}

.calendar-controls {
  align-items: center;
  display: inline-flex;
  gap: 0.45rem;
}

.calendar-wrap {
  overflow-x: auto;
}

.calendar-grid {
  display: grid;
  grid-template-columns: 172px repeat(var(--calendar-days), minmax(104px, 1fr));
  min-width: 1560px;
}

.calendar-corner,
.calendar-date,
.calendar-vehicle,
.calendar-cell {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 66px;
}

.calendar-corner,
.calendar-date {
  background: #f7fbf8;
  color: var(--green-950);
  font-weight: 850;
  position: sticky;
  top: 0;
  z-index: 2;
}

.calendar-corner {
  align-items: center;
  border-left: 0;
  display: flex;
  left: 0;
  padding: 0.9rem 1rem;
  z-index: 4;
}

.calendar-date {
  display: grid;
  gap: 0.16rem;
  padding: 0.72rem 0.76rem;
}

.calendar-date span {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.calendar-date strong {
  font-size: 0.9rem;
}

.calendar-date.is-today {
  background: var(--green-100);
}

.calendar-vehicle {
  background: #fff;
  display: grid;
  left: 0;
  padding: 0.82rem 1rem;
  position: sticky;
  z-index: 3;
}

.calendar-vehicle strong {
  color: var(--green-950);
}

.calendar-vehicle span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
}

.calendar-vehicle small {
  color: var(--green-700);
  font-size: 0.68rem;
  font-weight: 820;
  margin-top: 0.12rem;
}

.calendar-cell {
  align-content: start;
  background: #fff;
  display: grid;
  gap: 0.3rem;
  padding: 0.48rem;
}

.calendar-cell.has-conflict {
  background: #fff5f6;
  box-shadow: inset 0 0 0 2px rgba(182, 50, 59, 0.18);
}

.calendar-chip {
  background: #eef8f2;
  border: 1px solid rgba(20, 115, 86, 0.18);
  border-radius: 6px;
  color: var(--green-800);
  display: block;
  font-size: 0.7rem;
  font-weight: 860;
  line-height: 1.1;
  overflow: hidden;
  padding: 0.36rem 0.42rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calendar-chip.is-warning {
  background: #fff8e8;
  border-color: rgba(155, 106, 18, 0.24);
  color: var(--warning);
}

.calendar-chip.is-accepted {
  background: var(--green-800);
  border-color: var(--green-800);
  color: #fff;
}

.calendar-chip.is-conflict {
  background: #fff;
  border-color: rgba(182, 50, 59, 0.45);
  color: var(--danger);
}

.admin-action-status {
  color: var(--green-700);
  font-weight: 780;
  margin: 0;
  min-height: 1.3rem;
  padding: 0.8rem 1rem 0;
}

.admin-action-status.is-error {
  color: var(--danger);
}

.admin-section-heading h2 {
  font-size: 1.05rem;
  margin: 0;
}

.admin-section-heading span {
  color: var(--muted);
  font-weight: 760;
}

.table-wrap {
  overflow-x: auto;
}

.admin-section table {
  border-collapse: collapse;
  min-width: 900px;
  width: 100%;
}

.admin-section th,
.admin-section td {
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 1rem;
  text-align: left;
  vertical-align: top;
}

.admin-section th {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-section td {
  color: #2d3b36;
  font-weight: 680;
}

.admin-section td small {
  color: var(--muted);
  display: block;
  font-weight: 650;
  margin-top: 0.18rem;
}

.status-pill {
  background: var(--green-100);
  border-radius: 999px;
  color: var(--green-800);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 820;
  padding: 0.4rem 0.58rem;
}

.status-pill.is-warning {
  background: #fff6df;
  color: var(--warning);
}

.status-pill.is-accepted {
  background: var(--green-800);
  color: #fff;
}

.status-pill.is-rejected {
  background: #f8e3e5;
  color: var(--danger);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  min-width: 190px;
}

.admin-actions .button[disabled] {
  cursor: not-allowed;
  opacity: 0.48;
}

.empty-row {
  color: var(--muted);
  padding: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .quick-search-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-location {
    grid-column: 1 / -1;
  }

  .offers-grid,
  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-search-steps {
    grid-template-columns: 1.45fr 0.85fr 1fr 0.64fr;
  }

  .protection-plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-results-layout {
    grid-template-columns: 270px minmax(0, 1fr);
  }

  .fleet-results-list {
    grid-template-columns: 1fr;
  }

  .admin-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    align-content: start;
    background: rgba(251, 252, 248, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    gap: 0.35rem;
    grid-template-columns: 1fr;
    inset: var(--header-h) 0 auto 0;
    padding: 1rem 4vw 1.3rem;
    position: fixed;
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .nav-customer-link {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-controls {
    gap: 0.45rem;
  }

  .header-action {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 2.35rem;
  }

  .hero-booking-top {
    align-items: start;
    flex-direction: column;
  }

  .hero .hero-booking-top h1 {
    max-width: none;
  }

  .quick-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-search-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-layout,
  .hero-booking-layout,
  .customer-layout,
  .contact-layout,
  .rules-section {
    grid-template-columns: 1fr;
  }

  .fleet-search-steps,
  .fleet-results-layout {
    grid-template-columns: 1fr;
  }

  .fleet-progress-sticky {
    position: static;
  }

  .fleet-progress-summary {
    grid-template-columns: 1fr;
  }

  .fleet-progress-summary-total {
    justify-items: start;
    text-align: left;
  }

  .fleet-progress-summary .option-checkout-button {
    justify-self: stretch;
  }

  .fleet-filter-panel {
    position: static;
  }

  .fleet-step-card {
    min-height: auto;
  }

  .protection-stage-heading {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .protection-stage-total {
    justify-items: stretch;
    min-width: 0;
    text-align: left;
  }

  .option-checkout-button {
    width: 100%;
  }

  .fleet-result-card {
    grid-template-columns: minmax(180px, 250px) minmax(0, 1fr);
  }

  .fleet-result-content {
    grid-template-columns: 1fr;
  }

  .fleet-result-price {
    justify-self: stretch;
    text-align: left;
  }

  .fleet-details-panel {
    grid-template-columns: 1fr;
  }

  .fleet-rate-list,
  .fleet-details-panel p {
    grid-column: auto;
  }

  .contact-float {
    bottom: 1rem;
    left: auto;
    right: 1rem;
  }

  .contact-popup {
    height: 54px;
    max-width: none;
    width: 54px;
  }

  .support-hint {
    max-width: 185px;
    padding: 0.66rem 0.74rem;
  }

  .fleet-result-price .fleet-select-button {
    margin-left: 0;
  }

  .quote-panel,
  .rules-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 76px;
  }

  .site-header,
  .section,
  .hero,
  .admin-view,
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand-mark {
    height: 38px;
    width: 38px;
  }

  .brand-logo {
    height: 46px;
    width: min(204px, 52vw);
  }

  .language-switcher button {
    font-size: 0.72rem;
    min-height: 30px;
    padding: 0 0.48rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-bottom: 1.25rem;
    padding-top: calc(var(--header-h) + 0.9rem);
  }

  .hero-booking-shell {
    gap: 0.65rem;
  }

  .hero-booking-top .eyebrow {
    font-size: 0.64rem;
    margin-bottom: 0.5rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.1rem);
  }

  .hero .hero-booking-top h1 {
    font-size: clamp(1.48rem, 6.45vw, 1.95rem);
    line-height: 0.98;
    white-space: nowrap;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-search-card {
    padding: 0.75rem;
  }

  .vehicle-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.38rem;
    margin-bottom: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.12rem;
    scrollbar-width: none;
    width: 100%;
  }

  .vehicle-tabs::-webkit-scrollbar {
    display: none;
  }

  .vehicle-tabs button,
  .vehicle-tabs button:first-child,
  .vehicle-tabs button:last-child {
    border-radius: 8px;
    flex: 0 0 auto;
    font-size: 0.88rem;
    justify-content: center;
    min-height: 40px;
    margin-left: 0;
    padding: 0.6rem 0.78rem;
  }

  .vehicle-tabs button + button {
    margin-left: 0;
  }

  .quick-search-grid {
    gap: 0.64rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-location {
    grid-column: 1 / -1;
  }

  .quick-search-grid label span,
  .quick-search-details label span {
    font-size: 0.73rem;
  }

  .quick-search-grid input,
  .quick-search-grid select,
  .quick-search-details input,
  .quick-search-details select {
    font-size: 0.86rem;
    height: 44px;
    min-height: 44px;
    padding: 0.62rem 0.6rem;
  }

  .quick-search-details,
  .reservation-panel-heading,
  .review-stage-heading,
  .review-form-heading {
    grid-template-columns: 1fr;
  }

  .quick-search-details {
    display: grid;
    gap: 0.64rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0.64rem;
  }

  .quick-check,
  .quick-search-details label:has([data-quick-promo-code]) {
    grid-column: 1 / -1;
  }

  .quick-check {
    min-height: 42px;
  }

  .reservation-panel-heading,
  .review-stage-heading {
    align-items: start;
    display: grid;
  }

  .review-stage-total,
  .review-form-total {
    justify-items: start;
    text-align: left;
  }

  .quick-search-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.9rem;
  }

  .quick-search-footer strong {
    font-size: 0.9rem;
  }

  .quick-search-footer span,
  .quick-search-status {
    font-size: 0.78rem;
  }

  .quick-search-footer .button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 1.35rem;
    max-width: 340px;
  }

  .hero-stage {
    aspect-ratio: auto;
    height: 218px;
    min-height: 218px;
    margin-top: -1rem;
  }

  .form-grid,
  .offers-grid,
  .fleet-grid,
  .rules-grid,
  .admin-metrics,
  .booking-options-grid,
  .protection-plans,
  .protection-stage .booking-options-grid,
  .contact-direct,
  .social-links,
  .small-grid {
    grid-template-columns: 1fr;
  }

  .protection-plan {
    min-height: auto;
  }

  .protection-card-actions {
    grid-template-columns: 1fr;
  }

  .plan-ribbon {
    justify-self: start;
    position: static;
  }

  .fleet-search-steps {
    gap: 0.65rem;
  }

  .step-route,
  .price-filter,
  .step-split {
    grid-template-columns: 1fr;
  }

  .step-split > div + div {
    border-left: 0;
    border-top: 1px solid rgba(10, 53, 40, 0.13);
    margin-top: 0.7rem;
    padding-left: 0;
    padding-top: 0.7rem;
  }

  .fleet-results-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .fleet-results-toolbar label,
  .fleet-results-toolbar select {
    width: 100%;
  }

  .fleet-result-card {
    gap: 0.65rem;
    grid-template-columns: 1fr;
    padding: 1.1rem 0;
  }

  .fleet-result-card.is-selected {
    padding: 1rem;
  }

  .fleet-result-photo {
    height: 150px;
  }

  .fleet-result-price {
    display: grid;
    gap: 0.18rem;
  }

  .admin-offer-card {
    align-items: stretch;
    flex-direction: column;
  }

  .form-pair {
    gap: 0.55rem;
  }

  .form-pair label span {
    font-size: 0.72rem;
  }

  .form-pair input {
    font-size: 0.78rem;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading p:not(.eyebrow) {
    margin-left: 0;
  }

  .terms-table-wrap {
    margin: 0 0.9rem 1rem;
    overflow: visible;
  }

  .terms-table,
  .terms-table tbody,
  .terms-table tr,
  .terms-table th,
  .terms-table td {
    display: block;
    min-width: 0;
    width: 100%;
  }

  .terms-table tr {
    border-bottom: 1px solid rgba(10, 53, 40, 0.1);
    padding: 0.65rem 0;
  }

  .terms-table th,
  .terms-table td {
    border-bottom: 0;
    padding: 0;
  }

  .terms-table th {
    color: var(--green-800);
    font-size: 0.78rem;
    width: 100%;
  }

  .terms-table td {
    color: var(--green-950);
    font-weight: 780;
    margin-top: 0.15rem;
  }

  .booking-form,
  .contact-form,
  .contact-card,
  .quote-panel,
  .customer-login,
  .customer-results {
    padding: 1rem;
  }

  .admin-hero {
    align-items: start;
    flex-direction: column;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .site-footer small {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
