:root {
  --ink: #101923;
  --muted: #5f6b78;
  --paper: #f4f7fb;
  --panel: #ffffff;
  --line: rgba(18, 24, 22, 0.12);
  --green: #E56B02;
  --green-2: #0B428A;
  --green-dark: #082f63;
  --yellow: #E56B02;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(18, 24, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px clamp(18px, 4vw, 58px);
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 32px rgba(18, 24, 22, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(360px, 54vw);
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  width: 100%;
  height: auto;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.94rem;
  font-weight: 750;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-phone {
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(11, 66, 138, 0.35);
  border-radius: 8px;
  background: transparent;
  color: inherit;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 740px;
  padding: 128px clamp(18px, 5vw, 70px) 56px;
  display: grid;
  align-items: center;
  overflow: visible;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 35, 74, 0.82) 0%, rgba(5, 35, 74, 0.55) 38%, rgba(5, 35, 74, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 35, 74, 0.28), rgba(5, 35, 74, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ff8a1d;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5.6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.08;
}

h3 {
  margin: 0;
  font-size: 1.22rem;
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.booking-panel {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  width: min(1180px, calc(100% - 36px));
  transform: translate(-50%, 50%);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.booking-tabs {
  display: flex;
  gap: 0;
  padding: 12px 14px 0;
  background: #eef4fb;
}

.booking-tab {
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px 8px 0 0;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.booking-tab.active {
  color: var(--ink);
  background: var(--panel);
}

.booking-fields {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.85fr auto;
  gap: 12px;
  align-items: end;
  padding: 20px;
}

.booking-fields label {
  display: grid;
  gap: 7px;
}

.booking-fields span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.booking-fields input,
.booking-fields select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #f9fbf7;
}

.search-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  border: 0;
  color: var(--ink);
  background: var(--green);
  font-weight: 900;
  white-space: nowrap;
}

.search-button {
  width: 100%;
}

.quick-actions {
  width: min(1180px, calc(100% - 36px));
  margin: 94px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.quick-actions a {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.quick-actions strong,
.quick-actions span {
  display: block;
}

.quick-actions span {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  color: var(--green-2);
  font-weight: 900;
}

.campaign-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
}

.campaign-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-dark);
  overflow: hidden;
}

.campaign-card.green {
  color: var(--ink);
  background: var(--green);
}

.campaign-card.image {
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(5, 35, 74, 0.74), rgba(5, 35, 74, 0.26)),
    url("assets/hero-caravan.png") center/cover;
}

.campaign-card.dark {
  background: #111a16;
}

.campaign-card span {
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.campaign-card p {
  color: currentColor;
  opacity: 0.78;
}

.campaign-card a {
  font-weight: 900;
}

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

.fleet-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.fleet-card.featured {
  box-shadow: var(--shadow);
}

.fleet-visual {
  min-height: 170px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(229, 107, 2, 0.28), transparent 28%),
    linear-gradient(135deg, #eef4fb, #dbe7f5);
  position: relative;
  overflow: hidden;
}

.fleet-visual::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 10%;
  bottom: 34%;
  height: 54px;
  border-radius: 22px 22px 8px 8px;
  background: var(--white);
  box-shadow: 0 12px 18px rgba(18, 24, 22, 0.12);
}

.fleet-visual::after {
  content: "";
  position: absolute;
  left: 23%;
  right: 24%;
  bottom: 26%;
  height: 14px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: -58px 22px 0 -2px #111a16, 58px 22px 0 -2px #111a16;
}

.fleet-card p {
  color: var(--muted);
}

.fleet-card ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fleet-card li {
  padding: 9px;
  border-radius: 8px;
  color: var(--muted);
  background: #f3f7fc;
  font-size: 0.86rem;
  text-align: center;
}

.fleet-card > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--ink);
  background: var(--green);
  font-weight: 900;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(229, 107, 2, 0.14);
  font-size: 0.78rem;
  font-weight: 850;
}

.locations {
  width: 100%;
  padding: 76px clamp(18px, 6vw, 80px);
  background: #eaf1fa;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.location-grid a {
  min-height: 150px;
  display: flex;
  align-items: end;
  padding: 22px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(5, 35, 74, 0.72), rgba(5, 35, 74, 0.08)),
    url("assets/hero-caravan.png") center/cover;
  font-size: 1.35rem;
  font-weight: 900;
}

.process {
  width: 100%;
  max-width: none;
  padding-right: clamp(18px, 6vw, 80px);
  padding-left: clamp(18px, 6vw, 80px);
  background: var(--panel);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step {
  padding: 28px;
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: #f3f7fc;
}

.step span {
  color: var(--green-2);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.cta {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 32px;
  padding: 42px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-dark);
}

.cta .eyebrow,
.cta p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-card {
  display: grid;
  gap: 12px;
}

.contact-card a {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.contact-card a:nth-child(2) {
  color: var(--ink);
  background: var(--green);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .booking-fields,
  .campaign-grid,
  .fleet-grid,
  .quick-actions,
  .steps,
  .location-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 34px;
    transform: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 36px;
  }

  .quick-actions {
    margin-top: 28px;
  }
}

@media (max-width: 860px) {
  .site-header {
    gap: 12px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: var(--white);
    background: var(--green-dark);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-phone {
    color: var(--ink);
  }

  .section-heading.split {
    display: grid;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    width: min(250px, 62vw);
  }

  .brand-logo {
    max-height: 54px;
  }

  .hero {
    padding: 116px 16px 28px;
  }

  .booking-tabs {
    overflow-x: auto;
    padding-right: 10px;
    padding-left: 10px;
  }

  .booking-tab {
    flex: 0 0 auto;
    padding: 0 16px;
  }

  .booking-fields {
    padding: 16px;
  }

  .fleet-card ul {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 28px 20px;
  }
}
