﻿:root {
  --navy: #102a43;
  --navy-2: #183b5b;
  --blue: #dbeafe;
  --gold: #b98519;
  --gold-soft: #f7edcf;
  --ink: #1f2933;
  --muted: #5f6c7b;
  --line: #d8dee7;
  --panel: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(16, 42, 67, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img, svg { display: block; }
a { color: inherit; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}
.skip-link:focus-visible { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}
.brand strong, .brand small { display: block; }
.brand strong { color: var(--navy); font-size: 1.05rem; line-height: 1.15; }
.brand small { color: var(--muted); font-size: 0.82rem; }
.nav { display: flex; align-items: center; justify-content: flex-end; gap: 4px; flex-wrap: wrap; }
.nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 8px;
}
.nav a:hover, .nav a:focus-visible { background: var(--blue); }
.nav .nav-call { color: var(--white); background: var(--navy); margin-left: 6px; }
.nav .nav-call:hover, .nav .nav-call:focus-visible { background: var(--navy-2); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(34px, 6vw, 84px) clamp(18px, 5vw, 72px) clamp(28px, 5vw, 72px);
  background: linear-gradient(115deg, rgba(16, 42, 67, 0.07), rgba(219, 234, 254, 0.28) 50%, rgba(255, 255, 255, 0));
}
.hero-content { max-width: 720px; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; color: var(--navy); line-height: 1.12; }
h1 { max-width: 780px; font-size: clamp(2.45rem, 5.4vw, 5.2rem); }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
h3 { font-size: 1.2rem; }
.hero-copy { margin: 22px 0 0; max-width: 680px; color: var(--muted); font-size: clamp(1.1rem, 1.4vw, 1.32rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.button-primary { color: var(--white); background: var(--navy); }
.button-primary:hover, .button-primary:focus-visible { background: var(--navy-2); }
.button-secondary { color: var(--navy); background: var(--white); border-color: var(--navy); }
.button-secondary:hover, .button-secondary:focus-visible { background: var(--blue); }
.trust-panel { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 34px; }
.trust-panel div, .service-card, .steps article { border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.trust-panel div { display: flex; align-items: center; gap: 10px; min-height: 76px; padding: 14px; box-shadow: 0 10px 30px rgba(16, 42, 67, 0.07); }
.icon { flex: 0 0 auto; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 8px; color: var(--navy); background: var(--gold-soft); }
.icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero-visual { margin: 0; min-width: 0; }
.hero-visual img { width: 100%; min-height: 420px; max-height: 620px; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }

.section { padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 72px); }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.intro { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(24px, 5vw, 64px); align-items: start; background: var(--navy); }
.intro h2, .intro p:not(.eyebrow) { color: var(--white); }
.intro p:not(.eyebrow) { margin: 6px 0 0; font-size: 1.18rem; }
.split { display: grid; grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr); gap: clamp(24px, 6vw, 84px); }
.copy-stack p { margin: 0 0 18px; color: var(--muted); font-size: 1.09rem; }
.copy-stack p:last-child { margin-bottom: 0; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-card { padding: 24px; min-height: 230px; }
.service-card h3 { margin-top: 18px; }
.service-card p, .steps p, .rates p, .area-band p, .contact-copy p { color: var(--muted); font-size: 1.03rem; }
.area-band { background: var(--panel); }
.area-band p { max-width: 900px; }
.process { background: linear-gradient(180deg, var(--white), #f9fbfd); }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.steps article { padding: 24px; }
.steps span { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 18px; border-radius: 999px; color: var(--white); background: var(--navy); font-weight: 800; }
.rates { display: grid; grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr); gap: clamp(22px, 5vw, 72px); align-items: center; background: var(--gold-soft); border-block: 1px solid #eadcb9; }
.rates p { margin: 0; color: #3b3b35; font-size: 1.14rem; }
.contact { display: grid; grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr); gap: clamp(28px, 5vw, 70px); align-items: start; }
.contact-copy { position: sticky; top: 104px; }
.phone-link { display: inline-flex; margin-top: 12px; color: var(--navy); font-size: 1.35rem; font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.request-panel { display: grid; gap: 18px; padding: clamp(20px, 3vw, 32px); border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 18px 45px rgba(16, 42, 67, 0.1); }
.request-panel p, .pricing-detail p { margin: 0; color: var(--muted); font-size: 1.03rem; }
.ride-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding: clamp(20px, 3vw, 32px); border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 18px 45px rgba(16, 42, 67, 0.1); }
label { display: grid; gap: 8px; color: var(--navy); font-weight: 800; }
input, select, textarea { width: 100%; min-height: 48px; padding: 12px 13px; border: 1px solid #aeb8c5; border-radius: 8px; color: var(--ink); background: var(--white); font: inherit; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--navy); }
.full { grid-column: 1 / -1; }
.footer { display: flex; justify-content: space-between; gap: 24px; padding: 30px clamp(18px, 5vw, 72px); color: var(--white); background: var(--navy); }
.footer p { margin: 6px 0 0; color: #d7e2ee; }
.footer a { color: var(--white); font-weight: 800; }

@media (max-width: 1020px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .nav { justify-content: flex-start; width: 100%; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-visual img { min-height: 300px; max-height: 420px; }
  .intro, .split, .rates, .contact { grid-template-columns: 1fr; }
  .contact-copy { position: static; }
  .card-grid, .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .site-header { position: static; padding: 14px 16px; }
  .brand { min-width: 0; }
  .brand-mark { width: 42px; height: 42px; }
  .nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .nav a { justify-content: center; padding-inline: 8px; text-align: center; }
  .nav .nav-call { grid-column: 1 / -1; margin-left: 0; }
  .hero { padding: 28px 16px 42px; }
  .hero-visual { order: 0; }
  h1 { font-size: clamp(2.05rem, 11vw, 3.1rem); }
  .hero-actions, .button { width: 100%; }
  .trust-panel, .card-grid, .steps, .ride-form { grid-template-columns: 1fr; }
  .hero-visual img { min-height: 240px; }
  .section { padding: 44px 16px; }
  .service-card, .steps article { min-height: 0; padding: 20px; }
  .ride-form { padding: 18px; }
  .footer { flex-direction: column; }
}

