/* =========================================================
   K.A.Z Carriers — styles.css
   ========================================================= */

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Tokens ---------- */
:root {
  --brand-blue: #1E5DD9;
  --brand-blue-dark: #1748B0;
  --brand-blue-light: #3E78EE;
  --navy: #0B1A2E;
  --navy-2: #0F2440;
  --ink: #0E1726;
  --ink-2: #1F2A3D;
  --mute: #5A6478;
  --line: #E2E6EE;
  --bg-soft: #F4F6FA;
  --bg-cool: #EAF0FA;
  --white: #FFFFFF;
  --black: #0A0A0A;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 36, 64, 0.06), 0 2px 6px rgba(15, 36, 64, 0.04);
  --shadow-md: 0 6px 18px rgba(15, 36, 64, 0.08), 0 2px 6px rgba(15, 36, 64, 0.05);
  --shadow-lg: 0 20px 40px rgba(15, 36, 64, 0.14);
  --container: 1240px;
  --header-h: 76px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Utilities ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--brand-blue); color: #fff; padding: 10px 14px;
  border-radius: 0 0 8px 0; z-index: 9999;
}
.skip-link:focus { left: 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 12px;
  color: var(--brand-blue);
  margin: 0 0 14px;
}
h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
h1 { font-weight: 900; font-size: clamp(34px, 5.5vw, 64px); }
h2 { font-weight: 800; font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-weight: 700; font-size: clamp(20px, 1.6vw, 24px); }
h4 { font-weight: 700; font-size: 18px; }
p  { margin: 0 0 14px; color: var(--ink-2); }
.text-accent { color: var(--brand-blue); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform .15s var(--ease), background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(30, 93, 217, 0.28);
}
.btn-primary:hover { background: var(--brand-blue-dark); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost-dark:hover { background: var(--ink); color: #fff; }
.btn-block { width: 100%; }
.btn-cta-header { padding: 11px 18px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 92px;
  gap: 18px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo { width: 64px; height: 64px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1;
}
.brand-name em {
  font-style: normal;
  color: var(--brand-blue);
  font-weight: 900;
  display: block;
  font-size: 14px;
  letter-spacing: 0.22em;
  margin-top: 4px;
  text-transform: uppercase;
}

.primary-nav { display: flex; align-items: center; flex: 1; justify-content: center; }
.nav-list {
  display: flex; gap: 30px;
  list-style: none; padding: 0; margin: 0;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-list > li > a:hover,
.nav-list > li > a.is-active { color: var(--brand-blue); }
.nav-list .caret { font-size: 10px; transform: translateY(1px); }

/* Dropdown */
.has-dropdown .dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, transform .25s var(--ease);
  z-index: 200;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 8px;
  text-transform: none;
  letter-spacing: 0;
}
.dropdown a:hover { background: var(--bg-cool); color: var(--brand-blue); }

/* Header actions (phone + book a van) */
.header-actions {
  display: flex; align-items: center; gap: 18px;
  flex-shrink: 0;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.header-phone-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--brand-blue);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--brand-blue);
  flex-shrink: 0;
}
.header-phone-icon svg { width: 18px; height: 18px; }
.header-phone-text { display: flex; flex-direction: column; line-height: 1.1; }
.header-phone-text strong {
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.header-phone-text small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mute);
  margin-top: 3px;
}
.btn-cta-header {
  padding: 14px 22px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  isolation: isolate;
  min-height: 495px;
  padding-bottom: 0;
  margin: 0;
}

/* Van + city background — fills the entire hero edge-to-edge,
   but leaves a 36px navy strip at the bottom so the services card
   can overlap into clean space (no buttons, no badge there). */
.hero-bg {
  position: absolute;
  inset: 0 0 36px 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Anchor bottom-right: keeps the "EARLY MORNING / SERVICE AVAILABLE"
     badge (baked into the image's bottom-right corner) always visible.
     Any cropping happens off the top-left where the headline sits. */
  object-position: right bottom;
  filter: saturate(105%);
}
/* Dark gradient overlay on the left side so the headline always
   reads cleanly against the image. Fades to transparent across
   the van so the photo stays vivid on the right. */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(7, 17, 31, 0.88) 0%,
    rgba(7, 17, 31, 0.78) 25%,
    rgba(7, 17, 31, 0.45) 42%,
    rgba(7, 17, 31, 0.12) 58%,
    rgba(7, 17, 31, 0) 70%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 475px;
  padding-top: 36px;
  padding-bottom: 64px;  /* pushes buttons up so the services card has clear breathing room */
  /* Shift the headline / buttons / chip 10px to the left */
  margin-left: -10px;
}

.hero-copy { max-width: 620px; }

.hero-chip {
  display: inline-block;
  background: var(--brand-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px;
  margin: 0 0 26px;
}

.hero-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 26px;
  text-transform: uppercase;
}
.hero-title .text-accent {
  color: var(--brand-blue-light);
  display: block;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 32px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-lg {
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 8px;
}
.btn-lg .btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  margin-left: 4px;
}
.btn-outline-white {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-wa-icon {
  width: 26px; height: 26px;
  background: #25D366;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 2px;
}
.btn-wa-icon svg { width: 16px; height: 16px; }

/* Early morning badge */
.hero-badge {
  position: absolute;
  right: 0;
  bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px 16px 18px;
  background: rgba(0, 0, 0, 0.72);
  border-radius: 6px 0 0 6px;
  color: #fff;
  z-index: 4;
}
.hero-badge-stripe {
  position: absolute;
  left: -8px;
  top: 0; bottom: 0;
  width: 6px;
  background: var(--brand-blue);
}
.hero-badge-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--brand-blue-light);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--brand-blue-light);
  flex-shrink: 0;
}
.hero-badge-icon svg { width: 20px; height: 20px; }
.hero-badge-text { display: flex; flex-direction: column; line-height: 1.15; }
.hero-badge-text strong {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.hero-badge-text span {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-blue-light);
  font-weight: 700;
  margin-top: 2px;
}

/* ---------- Services strip — overlaps the hero by ~36px into the
   navy strip at the bottom (below the buttons and the EARLY MORNING
   badge, not over them). ---------- */
.services-strip {
  position: relative;
  z-index: 5;
  margin-top: -36px;
  padding-bottom: 0;
}
.services-strip-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(7, 17, 31, 0.25);
  padding: 28px 18px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.svc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 14px;
  border-right: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: transform .25s var(--ease);
}
.svc-item:last-child { border-right: 0; }
.svc-item:hover { transform: translateY(-3px); }

.svc-icon {
  width: 50px; height: 50px;
  background: var(--brand-blue);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 12px rgba(30, 93, 217, 0.3);
  transition: background .25s var(--ease);
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-item:hover .svc-icon { background: var(--brand-blue-dark); }

.svc-body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.svc-title {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.15;
}
.svc-desc {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--mute);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: #0A1424;
  color: #fff;
  padding: 32px 0;
  position: relative;
  z-index: 4;
}
.trust-strip-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.trust-strip-grid li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 6px 20px 6px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-strip-grid li:last-child { border-right: 0; }
.trust-icon {
  width: 44px; height: 44px;
  color: var(--brand-blue-light);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center; justify-content: center;
}
.trust-icon svg { width: 40px; height: 40px; }
.trust-body { display: flex; flex-direction: column; line-height: 1.3; }
.trust-body strong {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.trust-body span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-soft); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark h2, .section-dark p { color: #fff; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-head-light .eyebrow { color: var(--brand-blue-light); }
.section-sub { color: var(--mute); font-size: 17px; }
.section-dark .section-sub { color: rgba(255,255,255,0.75); }

/* ---------- Service cards ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  display: block;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), border-color .2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 93, 217, 0.4);
}
.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-cool);
  color: var(--brand-blue);
  border-radius: 12px;
  margin-bottom: 18px;
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { color: var(--ink); }
.service-card p { color: var(--mute); font-size: 15px; }
.card-link {
  display: inline-block;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 14px;
  margin-top: 8px;
}
.service-card:hover .card-link { color: var(--brand-blue-dark); }

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.why-copy { position: sticky; top: calc(var(--header-h) + 24px); }
.why-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.why-list li {
  display: flex; gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.why-check {
  width: 32px; height: 32px;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.why-list h4 { margin: 0 0 4px; color: var(--ink); }
.why-list p { margin: 0; color: var(--mute); font-size: 14px; }

/* ---------- Steps ---------- */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: inline-block;
  font-weight: 900;
  color: var(--brand-blue);
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.step h3 { font-size: 18px; }
.step p { color: var(--mute); font-size: 14px; margin: 0; }

/* ---------- Trust ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.trust-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px;
  color: #fff;
}
.trust-badge svg { width: 36px; height: 36px; color: var(--brand-blue-light); margin-bottom: 10px; }
.trust-badge h4 { color: #fff; }
.trust-badge p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0; }

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px;
}
.review-stars { color: #FFB400; font-size: 18px; margin: 0 0 10px; letter-spacing: 2px; }
.review blockquote {
  margin: 0 0 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  line-height: 1.55;
}
.review cite {
  font-style: normal;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

/* ---------- CTA strip ---------- */
.cta-strip-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.cta-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Booking form ---------- */
.book-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 48px;
  align-items: start;
}
.book-aside { position: sticky; top: calc(var(--header-h) + 24px); }
.book-aside .book-contact {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 14px;
}
.book-aside .book-contact li {
  display: grid; grid-template-columns: 100px 1fr; gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.book-aside .book-contact strong {
  color: var(--mute); font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em;
}
.book-aside .book-contact a { color: var(--brand-blue); font-weight: 600; }

.book-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-field .hint { color: var(--mute); font-weight: 400; font-size: 12px; }
.req { color: #E63946; }

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field input[type="number"],
.form-field input[type="date"],
.form-field input[type="time"],
.form-field input[type="file"],
.form-field select,
.form-field textarea {
  font: inherit;
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(30,93,217,0.15);
}
.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: #E63946;
  box-shadow: 0 0 0 4px rgba(230,57,70,0.12);
}

.form-radio-set {
  border: 0; padding: 0; margin: 0;
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.form-radio-set legend {
  font-weight: 600; font-size: 14px; color: var(--ink); margin-right: 8px; padding: 0;
}
.radio, .checkbox {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; cursor: pointer;
  user-select: none;
}
.radio input, .checkbox input { width: 18px; height: 18px; accent-color: var(--brand-blue); }
.checkbox { align-items: flex-start; }

.form-conditional {
  border: 1.5px dashed var(--brand-blue-light);
  background: var(--bg-cool);
  border-radius: var(--radius);
  padding: 18px;
  margin: 0;
  display: grid; gap: 14px;
}
.form-conditional legend {
  font-weight: 700;
  color: var(--brand-blue);
  padding: 0 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-success {
  background: #E6F4EA;
  color: #1B5E20;
  border: 1px solid #A8D5B5;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-weight: 600;
  margin: 0;
}
.form-privacy { color: var(--mute); margin: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.contact-list li {
  display: flex; gap: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--brand-blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-list strong { display: block; font-size: 13px; color: var(--mute); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-list a { color: var(--brand-blue); font-weight: 600; }

/* ---------- Service detail page hero (mini hero — same pattern as home) ---------- */
.service-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  isolation: isolate;
  min-height: 380px;
  padding: 0;
}
/* Full-bleed van image */
.service-hero-visual {
  position: absolute;
  inset: 0 0 24px 0;        /* leave a small navy strip at the bottom */
  z-index: 0;
  pointer-events: none;
}
.service-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: saturate(105%);
}
/* Readability gradient (matches the home hero) */
.service-hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(7, 17, 31, 0.92) 0%,
    rgba(7, 17, 31, 0.82) 25%,
    rgba(7, 17, 31, 0.5) 42%,
    rgba(7, 17, 31, 0.15) 58%,
    rgba(7, 17, 31, 0) 70%);
}
/* Text on top, anchored left within the container */
.service-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 380px;
  padding-top: 56px;
  padding-bottom: 56px;
}
.service-hero-inner > div { max-width: 640px; width: 100%; }
.service-hero h1 {
  color: #fff;
  margin: 0 0 18px;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}
.service-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  max-width: 560px;
  margin: 0 0 24px;
}
.service-hero .breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 22px;
  letter-spacing: 0.06em;
}
.service-hero .breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.service-hero .breadcrumb a:hover { color: #fff; }
.service-hero .btn { margin: 6px 10px 0 0; }
.service-hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.7); }
.service-hero .btn-ghost:hover { background: rgba(255,255,255,0.1); }

.service-body {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.service-content h2 { font-size: 28px; }
.service-content ul { padding-left: 0; list-style: none; display: grid; gap: 10px; }
.service-content ul li {
  position: relative;
  padding-left: 30px;
}
.service-content ul li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.service-side {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.service-side h3 { margin-top: 0; }
.service-side .btn { width: 100%; margin-top: 6px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}
.site-footer h5 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
}
.site-footer ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
}
.site-footer a { color: rgba(255,255,255,0.75); font-size: 14px; }
.site-footer a:hover { color: #fff; }
.brand-footer img { width: 70px; margin-bottom: 14px; filter: drop-shadow(0 0 0 #fff); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 16px; right: 16px;
  bottom: 16px;
  z-index: 80;
  background: var(--brand-blue);
  color: #fff;
  padding: 16px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  align-items: center; justify-content: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(30,93,217,0.4);
}
.mobile-cta svg { width: 22px; height: 22px; }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1100px) {
  .header-phone-text { display: none; }
  .header-phone-icon { width: 44px; height: 44px; }
  .nav-list { gap: 22px; }
  .nav-list > li > a { font-size: 13px; }
  .services-strip-card { grid-template-columns: repeat(3, 1fr); gap: 12px 0; }
  .svc-item:nth-child(3n) { border-right: 0; }
  .trust-strip-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-strip-grid li:nth-child(3n) { border-right: 0; }
}

@media (max-width: 1024px) {
  .why-grid, .contact-grid, .book-grid, .service-body {
    grid-template-columns: 1fr; gap: 32px;
  }
  .why-copy, .book-aside, .service-side { position: static; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; padding: 28px; }
}

@media (max-width: 768px) {
  body { padding-bottom: 90px; } /* room for sticky mobile CTA */
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }

  /* Hero on mobile: stack the van below text, show as backdrop */
  .hero { min-height: auto; padding-bottom: 120px; }
  .hero-bg img { max-width: 140%; opacity: 0.35; object-position: right center; }
  .hero-bg::before {
    background:
      linear-gradient(180deg, rgba(11, 26, 46, 0.8) 0%, rgba(11, 26, 46, 0.92) 100%);
  }
  .hero-bg::after { display: none; }
  .hero-inner { min-height: auto; padding-top: 36px; padding-bottom: 36px; margin-left: 0; max-width: none; }
  .hero-title { font-size: clamp(34px, 9vw, 50px); }
  .hero-sub br { display: none; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { gap: 10px; }
  .btn-lg { padding: 14px 18px; font-size: 12px; }
  .hero-badge { right: 16px; bottom: 16px; padding: 12px 18px 12px 14px; }
  .hero-badge-text strong { font-size: 12px; }
  .hero-badge-text span { font-size: 11px; }

  .services-strip { margin-top: -20px; }
  .services-strip-card {
    grid-template-columns: 1fr 1fr;
    gap: 12px 0;
    padding: 20px 14px;
  }
  .svc-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 12px 10px; }
  .svc-item:nth-last-child(-n+2) { border-bottom: 0; }

  /* Service mini-hero on mobile — keep text readable */
  .service-hero { min-height: 320px; }
  .service-hero-inner { min-height: 320px; padding-top: 32px; padding-bottom: 32px; }
  .service-hero-visual::after {
    background: linear-gradient(180deg, rgba(7,17,31,0.92) 0%, rgba(7,17,31,0.82) 60%, rgba(7,17,31,0.55) 100%);
  }

  .trust-strip { padding: 22px 0; }
  .trust-strip-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .trust-strip-grid li { border-right: 0; padding: 4px 0; }
  .trust-body strong { font-size: 13px; }
  .trust-body span { font-size: 12px; }

  .site-header .header-inner { height: 72px; }
  .brand-logo { width: 48px; height: 48px; }
  .brand-name { font-size: 20px; }
  .brand-name em { font-size: 11px; }
  .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute; top: 72px; right: 16px; left: 16px;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    box-shadow: var(--shadow-lg);
    gap: 0;
    display: none;
  }
  .primary-nav.open .nav-list { display: flex; }
  .nav-list li { border-bottom: 1px solid var(--line); }
  .nav-list li:last-child { border-bottom: 0; }
  .nav-list > li > a { display: block; padding: 12px 4px; font-size: 13px; }
  .has-dropdown .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    pointer-events: auto; box-shadow: none; border: 0; padding: 0 0 0 14px;
    background: transparent; min-width: 0;
  }
  .has-dropdown .dropdown a { color: var(--mute); padding: 8px 4px; }
  .btn-cta-header { display: none; } /* sticky mobile CTA covers it */

  .service-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .book-form { padding: 22px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .mobile-cta { display: flex; }
}

@media (max-width: 480px) {
  .brand-tag { display: none; }
  .hero-trust { grid-template-columns: 1fr 1fr; }
}

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