:root {
  --navy-950: #07111f;
  --navy-900: #0b1829;
  --navy-800: #11243a;
  --navy-700: #183451;
  --ink: #111827;
  --muted: #64748b;
  --line: #d9e1ec;
  --soft: #f4f7fb;
  --white: #ffffff;
  --accent: #d33b33;
  --accent-strong: #b92d28;
  --gold: #d6a85a;
  --success: #2bd4a7;
  --danger: #c83737;
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.18);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  background: var(--accent);
  color: var(--navy-950);
  font-weight: 800;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: 0.75rem;
  transform: translateY(-140%);
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.container,
.nav,
.hero-inner {
  margin: 0 auto;
  max-width: var(--container);
  padding-inline: 1.25rem;
}

.site-header {
  background: rgba(10, 20, 34, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  left: 0;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 900;
  gap: 0.85rem;
  letter-spacing: 0;
}

.brand-logo-frame {
  align-items: center;
  background: #060b12;
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  width: 92px;
}

.brand-logo {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.nav-menu {
  align-items: center;
  display: flex;
  gap: 1.35rem;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--white);
}

.nav-menu .nav-cta {
  background: var(--white);
  color: var(--navy-950);
  padding: 0.72rem 1.05rem;
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  padding: 0;
  width: 44px;
}

.nav-toggle span:not(.sr-only) {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 6px auto;
  width: 24px;
}

.hero {
  background: var(--navy-950);
  color: var(--white);
  min-height: calc(100vh - 76px);
  overflow: hidden;
  position: relative;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.97) 0%, rgba(7, 17, 31, 0.82) 44%, rgba(7, 17, 31, 0.28) 100%),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1800&q=80") center / cover;
  inset: 0;
  position: absolute;
}

.hero-bg::after {
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.04) 0%, rgba(7, 17, 31, 0.22) 64%, var(--white) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  min-height: calc(100vh - 76px);
  padding-block: 5.5rem 7rem;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: #f3c36e;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 0.85rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.75rem, 5.2vw, 4.9rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 1.3rem;
  max-width: 660px;
}

h2 {
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.65rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 1rem;
}

h3 {
  color: var(--navy-950);
  font-size: 1.15rem;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  max-width: 610px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.25rem;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus {
  background: #e04a42;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.62);
}

.hero-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2.4rem 0 0;
  max-width: 610px;
  padding-top: 1.4rem;
}

.hero-stats div {
  min-width: 0;
}

.hero-stats dt {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  margin: 0.35rem 0 0;
}

.hero-panel {
  align-self: center;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  color: var(--ink);
  padding: 0.85rem;
  width: min(100%, 390px);
}

.panel-top,
.panel-footer {
  align-items: center;
  display: flex;
  font-size: 0.92rem;
  font-weight: 800;
  justify-content: space-between;
}

.status-dot {
  background: var(--success);
  box-shadow: 0 0 0 7px rgba(43, 212, 167, 0.13);
  height: 10px;
  margin-right: 0.55rem;
  width: 10px;
}

.panel-top {
  justify-content: flex-start;
}

.route-card {
  background: #0a1422;
  color: var(--white);
  display: grid;
  gap: 0.85rem;
  margin: 1rem 0;
  padding: 1rem;
}

.route-card strong {
  display: block;
  font-size: 1rem;
  margin-top: 0.18rem;
}

.route-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.route-line {
  background: rgba(255, 255, 255, 0.16);
  display: block;
  height: 1px;
}

.vehicle-visual {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0), rgba(7, 17, 31, 0.54)),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=900&q=80") center / cover;
  margin-bottom: 1rem;
}

.panel-footer {
  color: var(--muted);
}

.panel-footer strong {
  color: var(--navy-950);
}

.section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

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

.section-dark {
  background: var(--navy-950);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-heading {
  margin-bottom: 2.2rem;
  max-width: 760px;
}

.section-heading-row {
  align-items: end;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  max-width: none;
}

.section-heading-row p:last-child,
.section-lead {
  color: var(--muted);
  font-size: 1.06rem;
  margin-bottom: 0;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.steps-grid,
.services-grid {
  display: grid;
  gap: 1rem;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step,
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.35rem;
}

.step-number {
  color: var(--accent-strong);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 2rem;
}

.step p,
.service-card p,
.trust-list p,
.faq-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 210px;
}

.service-icon {
  color: var(--accent-strong);
  display: inline-block;
  font-size: 0.75rem;
  margin-bottom: 1.3rem;
}

.trust-layout {
  align-items: start;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
}

.trust-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.trust-list article {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 1.25rem;
}

.trust-list p {
  color: rgba(255, 255, 255, 0.67);
}

.insurance-note {
  background: #eef3f8;
  border-block: 1px solid var(--line);
  color: #334155;
  padding-block: 1.25rem;
}

.insurance-note strong {
  color: var(--navy-950);
}

.faq-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.56fr) minmax(320px, 1fr);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.1rem 1.2rem;
}

summary {
  color: var(--navy-950);
  cursor: pointer;
  font-weight: 900;
}

details p {
  padding-top: 0.8rem;
}

.booking-section {
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.97), rgba(17, 36, 58, 0.95)),
    url("https://images.unsplash.com/photo-1542362567-b07e54358753?auto=format&fit=crop&w=1700&q=80") center / cover;
  color: var(--white);
}

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

.booking-copy h2 {
  color: var(--white);
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  gap: 0.4rem;
  margin-top: 2rem;
  padding: 1.25rem;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--white);
  font-weight: 900;
}

.booking-form {
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: clamp(1.2rem, 3vw, 2rem);
}

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

.field {
  margin-bottom: 1rem;
}

label {
  color: var(--navy-950);
  display: block;
  font-size: 0.9rem;
  font-weight: 900;
  margin-bottom: 0.45rem;
}

input,
select,
textarea {
  background: #f8fafc;
  border: 1px solid #cfd8e3;
  color: var(--ink);
  min-height: 50px;
  outline: none;
  padding: 0.84rem 0.9rem;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
  width: 100%;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(24, 52, 81, 0.12);
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: var(--danger);
}

.error-message {
  color: var(--danger);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  min-height: 1.15rem;
  padding-top: 0.28rem;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.form-submit {
  width: 100%;
}

.site-footer {
  background: var(--navy-950);
  color: var(--white);
  padding-block: 3rem 1.3rem;
}

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

.footer-brand {
  margin-bottom: 1rem;
}

.site-footer p,
.site-footer address,
.legal-line {
  color: rgba(255, 255, 255, 0.65);
}

.site-footer address {
  font-style: normal;
  line-height: 1.8;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--white);
}

.legal-line {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.85rem;
  gap: 0.7rem 1.2rem;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.2rem;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    background: var(--navy-950);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    inset: 76px 0 auto 0;
    padding: 1rem 1.25rem 1.4rem;
    position: fixed;
  }

  .nav-menu.is-open {
    display: grid;
    gap: 0.3rem;
  }

  .nav-menu a {
    color: var(--white);
    padding: 0.8rem 0;
  }

  .nav-menu .nav-cta {
    margin-top: 0.4rem;
    text-align: center;
  }

  .hero-inner,
  .section-heading-row,
  .trust-layout,
  .faq-layout,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 3.5rem;
  }

  .hero-panel {
    align-self: auto;
    max-width: 520px;
  }

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

@media (max-width: 640px) {
  .container,
  .nav,
  .hero-inner {
    padding-inline: 1rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding-block: 3rem 4.8rem;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(7, 17, 31, 0.94), rgba(7, 17, 31, 0.78)),
      url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1100&q=80") center / cover;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

  .steps-grid,
  .services-grid,
  .form-row,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .section {
    padding-block: 4rem;
  }

  .booking-form {
    margin-inline: -0.2rem;
  }

  .legal-line {
    display: grid;
  }
}

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