@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap");

:root {
  --navy: #0a1220;
  --navy-soft: #1c2740;
  --blue: #0461fe;
  --blue-dark: #0349c9;
  --bg: #f6f8fc;
  --surface: #ffffff;
  --line: #e4e9f2;
  --text: #0a1220;
  --text-muted: #5b6478;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 20px 40px -24px rgba(10, 18, 32, 0.25);
  --container: 1180px;
  --font-display: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

/* -------- Header -------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 248, 252, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  height: 46px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  color: var(--navy-soft);
}

.nav-menu a:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-actions .header-call-btn {
  display: none;
  gap: 8px;
  white-space: nowrap;
}

.phone-link {
  display: none;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: var(--blue-dark);
  white-space: nowrap;
  background: rgba(4, 97, 254, 0.1);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.15s ease;
}

.phone-link:hover {
  background: rgba(4, 97, 254, 0.16);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(4, 97, 254, 0.55);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

/* -------- Hero -------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 96px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 520px;
  background: radial-gradient(60% 60% at 30% 20%, rgba(4, 97, 254, 0.14), transparent 70%);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--navy);
}

.hero-sub {
  font-size: 18px;
  color: #2b2d42;
  max-width: 46ch;
  margin: 0 0 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-photo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 34px rgba(10, 18, 32, 0.2));
}

/* -------- Section shell -------- */

section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 38px);
  margin: 0;
  color: var(--navy);
}

.section-note {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* -------- Trust strip -------- */

.trust-strip {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: space-between;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-soft);
}

.trust-item svg {
  flex-shrink: 0;
  color: var(--blue);
}

/* -------- Fleet grid -------- */

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.van-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px 22px;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.van-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.van-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--navy);
}

.van-card__photo {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.van-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.van-card__label {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

.van-card__price {
  margin: 2px 0 16px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
}

.van-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.van-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-soft);
}

.van-card__meta-item svg {
  color: var(--blue);
}

/* -------- Size guide -------- */

.size-guide {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.size-guide-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.size-guide-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

/* -------- Booking -------- */

.booking .wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.booking-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
}

.booking-intro p {
  color: var(--text-muted);
  margin: 0 0 24px;
  max-width: 42ch;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-line svg {
  color: var(--blue);
}

.booking-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

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

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-soft);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
}

.field textarea {
  min-height: 90px;
  padding: 12px 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  border-color: var(--blue);
}

.booking-form button {
  width: 100%;
  margin-top: 4px;
}

.booking-status {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--text-muted);
  min-height: 18px;
}

/* -------- Footer -------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  background: var(--navy);
  color: #cfd7ea;
}

.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-brand img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.footer-links a {
  text-decoration: none;
  color: #cfd7ea;
}

.footer-links a:hover {
  color: #fff;
}

.footer-note {
  font-size: 13px;
  color: #8b96b3;
  width: 100%;
  padding-top: 20px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* -------- Responsive -------- */

@media (min-width: 1021px) {
  .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
}

@media (max-width: 980px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

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

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

@media (max-width: 1020px) {
  .nav-menu {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 16px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .header-book-btn {
    display: none;
  }

  .header-actions .header-call-btn {
    display: inline-flex;
  }
}

@media (min-width: 1021px) {
  .nav-toggle {
    display: none;
  }
}

@media (max-width: 420px) {
  .brand img {
    height: 34px;
  }

  .header-actions {
    gap: 10px;
  }

  .header-call-btn {
    padding: 0 14px;
  }
}

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

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

  section {
    padding: 56px 0;
  }

  .trust-strip .wrap {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
