/*!==============================
 * Template Name: Haul — Moving Company Website Template
 * Author: uiCookies
 * Author URL: https://uicookies.com
 * License: Free for personal & commercial use — https://uicookies.com/license/
 * Description: A bold, trustworthy Bootstrap 5 template for movers & removalists.
 *              Vanilla JavaScript, no jQuery. Deep navy + energetic orange.
 * ============================== */

/* ------------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------------ */
:root {
  /* Brand — deep navy primary, energetic orange action */
  --navy-900: #071a34;
  --navy-800: #0a2140;
  --navy: #0e2a4e;
  --navy-700: #143563;
  --navy-500: #24487d;

  --orange: #ff5a1f;
  --orange-600: #e84713;
  --orange-100: #ffe6dc;

  --sky: #2fa8e0;          /* bright clean secondary */
  --sky-100: #e3f3fb;

  --gold: #ffb400;         /* review stars */
  --green: #22a06b;        /* checks / guarantees */

  /* Neutrals */
  --ink: #0b1a30;
  --body: #46556b;
  --muted: #7c899c;
  --line: #e4e9f1;
  --bg: #ffffff;
  --bg-soft: #f3f6fb;      /* light blue-grey */
  --bg-soft-2: #eef2f9;

  /* System */
  --radius: 8px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 10px rgba(9, 26, 52, .06);
  --shadow: 0 14px 40px rgba(9, 26, 52, .10);
  --shadow-lg: 0 30px 70px rgba(9, 26, 52, .18);
  --ring: 0 0 0 4px rgba(255, 90, 31, .28);

  --f-head: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-body: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shell: 1200px;
  --nav-h: 78px;
}

/* ------------------------------------------------------------------
   2. Base
   ------------------------------------------------------------------ */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-head);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 .6em;
}

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--orange-600); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--orange); }

img { max-width: 100%; height: auto; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--orange); color: #fff; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 3px;
}

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 22px; }

.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #cdd8ea; }
.section--navy h2, .section--navy h3 { color: #fff; }

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--orange); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--radius) var(--radius); font-weight: 700; z-index: 2000;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* ------------------------------------------------------------------
   3. Typography helpers
   ------------------------------------------------------------------ */
.display {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.02em;
}
.h-xl { font-size: clamp(2rem, 4.4vw, 3rem); }
.lead {
  font-size: 1.2rem;
  color: var(--body);
  line-height: 1.65;
  font-weight: 400;
}
.section--navy .lead { color: #b8c6dc; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; background: var(--orange); border-radius: 2px;
}
.section--navy .eyebrow { color: var(--orange); }
.eyebrow--center { justify-content: center; }

.section-head { max-width: 680px; margin: 0 auto 56px; }
.section-head.text-start { margin-left: 0; }
.text-accent { color: var(--orange); }
.text-sky { color: var(--sky); }

/* ------------------------------------------------------------------
   4. Buttons
   ------------------------------------------------------------------ */
.btn {
  --_bg: var(--orange);
  --_fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  line-height: 1;
  padding: 16px 30px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 19px 38px; font-size: 1.06rem; }
.btn-sm { padding: 11px 20px; font-size: .86rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 10px 24px rgba(255, 90, 31, .30);
}
.btn-primary:hover { background: var(--orange-600); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px rgba(255, 90, 31, .38); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); color: #fff; transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--navy); border-color: var(--line);
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); transform: translateY(-2px); }

.btn-ghost-light {
  background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.16); color: #fff; }

.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: #fff; color: var(--orange-600); transform: translateY(-2px); }

/* ------------------------------------------------------------------
   5. Top utility bar
   ------------------------------------------------------------------ */
.topbar {
  background: var(--navy-900);
  color: #aebbd0;
  font-size: .86rem;
  font-weight: 500;
}
.topbar .shell { display: flex; align-items: center; justify-content: space-between; height: 42px; gap: 20px; }
.topbar a { color: #dde5f1; font-weight: 600; }
.topbar a:hover { color: #fff; }
.topbar__group { display: flex; align-items: center; gap: 22px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar__item svg { width: 15px; height: 15px; color: var(--orange); flex: none; }
.topbar__badge { color: var(--green); font-weight: 700; }
@media (max-width: 820px) {
  .topbar__hide-sm { display: none; }
  .topbar .shell { justify-content: center; }
}

/* ------------------------------------------------------------------
   6. Navbar
   ------------------------------------------------------------------ */
.site-nav {
  position: sticky; top: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-nav.is-stuck { box-shadow: 0 6px 24px rgba(9, 26, 52, .09); }
.site-nav .shell { display: flex; align-items: center; height: var(--nav-h); gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--f-head); }
.brand__mark {
  width: 44px; height: 44px; border-radius: 11px;
  background: linear-gradient(135deg, var(--orange), var(--orange-600));
  display: grid; place-items: center; box-shadow: 0 6px 16px rgba(255,90,31,.3);
  flex: none;
}
.brand__mark svg { width: 26px; height: 26px; color: #fff; }
.brand__name { font-size: 1.55rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; line-height: 1; }
.brand__name b { color: var(--orange); }
.brand__tag { display: block; font-family: var(--f-body); font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 26px; }
.nav-links a {
  font-family: var(--f-head);
  color: var(--navy); font-weight: 600; font-size: .96rem;
  padding: 10px 15px; border-radius: var(--radius-sm);
  position: relative;
}
.nav-links a:hover { color: var(--orange-600); background: var(--bg-soft); }
.nav-links a.active { color: var(--orange-600); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px; height: 2px;
  background: var(--orange); border-radius: 2px;
}

.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 9px; font-family: var(--f-head); font-weight: 700; color: var(--navy); font-size: 1.02rem; }
.nav-phone svg { width: 34px; height: 34px; padding: 8px; background: var(--sky-100); color: var(--sky); border-radius: 9px; }
.nav-phone span { display: block; }
.nav-phone small { display: block; font-family: var(--f-body); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

.nav-toggle {
  margin-left: auto;
  display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: #fff;
  border-radius: var(--radius-sm); cursor: pointer; padding: 0; place-items: center;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); position: relative; transition: .2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--navy); transition: .2s; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 991px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: grid; }
  .mobile-panel {
    position: fixed; inset: var(--nav-h) 0 auto 0; background: #fff;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 18px 22px 26px; z-index: 999;
    display: none; max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .mobile-panel.open { display: block; }
  .mobile-panel a.m-link {
    display: block; font-family: var(--f-head); font-weight: 700; color: var(--navy);
    padding: 14px 6px; border-bottom: 1px solid var(--line); font-size: 1.08rem;
  }
  .mobile-panel .btn { width: 100%; margin-top: 18px; }
  .mobile-panel .nav-phone { margin-top: 18px; justify-content: center; }
}
@media (min-width: 992px) { .mobile-panel { display: none !important; } }

/* ------------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------------ */
.hero {
  position: relative;
  background: radial-gradient(1100px 600px at 88% -10%, var(--navy-700) 0%, var(--navy) 45%, var(--navy-900) 100%);
  color: #fff;
  padding: 74px 0 150px;
  overflow: hidden;
}
.hero::after {
  /* diagonal cut into next section */
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 90px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 100%, 100% 32%, 0 100%);
}
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center; }
.hero__title { font-size: clamp(2.4rem, 5vw, 3.9rem); color: #fff; line-height: 1.03; }
.hero__title em { font-style: normal; color: var(--orange); position: relative; }
.hero__sub { font-size: 1.22rem; color: #b9c7de; max-width: 540px; margin-bottom: 30px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.hero__badge { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: .95rem; color: #d5e0f0; }
.hero__badge svg { width: 30px; height: 30px; padding: 7px; border-radius: 8px; background: rgba(255,255,255,.08); color: var(--orange); flex: none; }
.hero__badge b { color: #fff; font-family: var(--f-head); }

/* Hero quote card (instant mini-form) */
.quote-card {
  background: #fff; color: var(--body);
  border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}
.quote-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.quote-card__head .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(34,160,107,.18); }
.quote-card h3 { font-size: 1.42rem; margin-bottom: 4px; }
.quote-card p.sub { font-size: .95rem; color: var(--muted); margin-bottom: 20px; }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.col-2 { grid-column: span 2; }
.field label { font-family: var(--f-head); font-weight: 700; font-size: .82rem; color: var(--navy); }
.field .hint { font-size: .78rem; color: var(--muted); }
.control {
  width: 100%; font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .15s, box-shadow .15s;
}
.control:focus { outline: none; border-color: var(--orange); box-shadow: var(--ring); }
.control::placeholder { color: #9aa6b6; }
select.control { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237c899c' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field-error .control { border-color: #e23b3b; }
.err-msg { color: #e23b3b; font-size: .78rem; font-weight: 600; display: none; }
.field-error .err-msg { display: block; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-note svg { width: 14px; height: 14px; vertical-align: -2px; color: var(--green); }

.form-success {
  display: none; background: #eafaf3; border: 1.5px solid #bde9d3; color: #1a7a52;
  border-radius: var(--radius); padding: 16px 18px; font-weight: 600; margin-bottom: 16px;
  align-items: center; gap: 10px;
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; color: var(--green); flex: none; }

@media (max-width: 991px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 54px 0 120px; }
}
@media (max-width: 520px) {
  .quote-grid { grid-template-columns: 1fr; }
  .field.col-2 { grid-column: auto; }
  .quote-card { padding: 22px; }
}

/* ------------------------------------------------------------------
   8. Trust strip
   ------------------------------------------------------------------ */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-strip .shell { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 40px; padding-top: 30px; padding-bottom: 30px; }
.trust-item { display: inline-flex; align-items: center; gap: 12px; }
.trust-item svg { width: 40px; height: 40px; padding: 9px; border-radius: 10px; background: var(--sky-100); color: var(--sky); flex: none; }
.trust-item.green svg { background: #e6f6ef; color: var(--green); }
.trust-item.orange svg { background: var(--orange-100); color: var(--orange-600); }
.trust-item.gold svg { background: #fff3d6; color: var(--gold); }
.trust-item b { display: block; font-family: var(--f-head); font-size: 1.05rem; color: var(--ink); line-height: 1.1; }
.trust-item span { font-size: .84rem; color: var(--muted); }

/* ------------------------------------------------------------------
   9. Services grid (icon cards)
   ------------------------------------------------------------------ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ico {
  width: 62px; height: 62px; border-radius: 15px; display: grid; place-items: center;
  background: var(--navy); color: #fff; margin-bottom: 22px; transition: background .2s;
}
.svc-ico svg { width: 30px; height: 30px; }
.svc-card:hover .svc-ico { background: var(--orange); }
.svc-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.svc-card p { font-size: .97rem; margin-bottom: 16px; }
.svc-card .svc-more { font-family: var(--f-head); font-weight: 700; font-size: .9rem; color: var(--orange-600); display: inline-flex; align-items: center; gap: 7px; }
.svc-card .svc-more svg { width: 15px; height: 15px; transition: transform .2s; }
.svc-card:hover .svc-more svg { transform: translateX(4px); }

@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------
   10. Cost estimator
   ------------------------------------------------------------------ */
.estimator { display: grid; grid-template-columns: 1.05fr .95fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: #fff; }
.estimator__form { padding: 42px; }
.estimator__result {
  padding: 42px; color: #fff;
  background: linear-gradient(160deg, var(--navy-700), var(--navy) 60%, var(--navy-900));
  position: relative; overflow: hidden;
}
.estimator__result::before {
  content: ""; position: absolute; right: -40px; top: -40px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,90,31,.35), transparent 70%);
}
.est-group { margin-bottom: 24px; }
.est-group > .lbl { font-family: var(--f-head); font-weight: 700; color: var(--navy); font-size: .96rem; margin-bottom: 12px; display: block; }
.est-options { display: flex; flex-wrap: wrap; gap: 10px; }
.opt {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  padding: 11px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-weight: 600; font-size: .92rem; color: var(--navy); background: #fff;
  transition: .15s;
}
.opt:hover { border-color: var(--orange); }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt:has(input:checked) { border-color: var(--orange); background: var(--orange-100); color: var(--orange-600); }
.opt:has(input:focus-visible) { box-shadow: var(--ring); }
.opt .tick { width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--line); display: grid; place-items: center; flex: none; }
.opt:has(input:checked) .tick { background: var(--orange); border-color: var(--orange); }
.opt .tick svg { width: 12px; height: 12px; color: #fff; opacity: 0; }
.opt:has(input:checked) .tick svg { opacity: 1; }

.est-extras { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) { .est-extras { grid-template-columns: 1fr; } }

.est-readout .lbl-sm { font-family: var(--f-head); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .74rem; color: var(--orange); margin-bottom: 6px; }
.est-price { font-family: var(--f-head); font-weight: 800; font-size: clamp(2.6rem, 6vw, 3.6rem); line-height: 1; color: #fff; letter-spacing: -.02em; }
.est-price small { font-size: 1.1rem; color: #9fb2cf; font-weight: 600; letter-spacing: 0; }
.est-summary { margin: 22px 0; border-top: 1px solid rgba(255,255,255,.12); }
.est-summary li { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.10); font-size: .94rem; color: #c4d2e6; }
.est-summary li b { color: #fff; font-family: var(--f-head); font-weight: 700; }
.est-disclaimer { font-size: .82rem; color: #93a5c1; margin-top: 16px; }
.est-result-cta { margin-top: 22px; }

@media (max-width: 860px) { .estimator { grid-template-columns: 1fr; } .estimator__form, .estimator__result { padding: 32px; } }

/* ------------------------------------------------------------------
   11. Why choose us
   ------------------------------------------------------------------ */
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.why-media { position: relative; }
.why-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.why-media .float-badge {
  position: absolute; right: -18px; bottom: 34px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px 22px; display: flex; align-items: center; gap: 14px;
  border-left: 4px solid var(--orange);
}
.why-media .float-badge .num { font-family: var(--f-head); font-weight: 800; font-size: 2rem; color: var(--navy); line-height: 1; }
.why-media .float-badge span { font-size: .82rem; color: var(--muted); font-weight: 600; }
.why-list { display: grid; gap: 20px; }
.why-item { display: flex; gap: 18px; }
.why-item .ic { width: 54px; height: 54px; border-radius: 13px; background: var(--sky-100); color: var(--sky); display: grid; place-items: center; flex: none; }
.why-item .ic svg { width: 26px; height: 26px; }
.why-item:nth-child(2) .ic { background: var(--orange-100); color: var(--orange-600); }
.why-item:nth-child(3) .ic { background: #e6f6ef; color: var(--green); }
.why-item:nth-child(4) .ic { background: #fff3d6; color: #d99400; }
.why-item h3 { font-size: 1.16rem; margin-bottom: 5px; }
.why-item p { font-size: .96rem; margin: 0; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; gap: 44px; } .why-media .float-badge { right: 16px; } }

/* ------------------------------------------------------------------
   12. Process steps
   ------------------------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step { position: relative; padding: 8px; }
.step__num {
  width: 66px; height: 66px; border-radius: 50%; background: #fff; border: 2px dashed rgba(255,255,255,.35);
  display: grid; place-items: center; font-family: var(--f-head); font-weight: 800; font-size: 1.5rem;
  color: var(--navy); margin-bottom: 22px; position: relative; z-index: 2;
}
.section--navy .step__num { background: var(--orange); color: #fff; border-color: transparent; }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: .95rem; margin: 0; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 33px; left: calc(50% + 42px); right: -12px; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.4) 0 8px, transparent 8px 16px);
}
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; gap: 34px 24px; } .step:not(:last-child)::after { display: none; } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------
   13. Pricing / what affects cost
   ------------------------------------------------------------------ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px;
  transition: transform .2s, box-shadow .2s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.price-card.featured { background: var(--navy); color: #c9d6ea; border-color: var(--navy); box-shadow: var(--shadow); position: relative; }
.price-card.featured h3 { color: #fff; }
.price-tag-badge { position: absolute; top: 20px; right: 22px; background: var(--orange); color: #fff; font-family: var(--f-head); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 30px; }
.price-card .plan { font-family: var(--f-head); font-weight: 700; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--orange-600); margin-bottom: 14px; }
.price-card.featured .plan { color: var(--orange); }
.price-card .amount { font-family: var(--f-head); font-weight: 800; font-size: 2.7rem; color: var(--ink); line-height: 1; letter-spacing: -.02em; }
.price-card.featured .amount { color: #fff; }
.price-card .amount small { font-size: .95rem; color: var(--muted); font-weight: 600; }
.price-card.featured .amount small { color: #9fb2cf; }
.price-card .per { font-size: .9rem; color: var(--muted); margin-bottom: 22px; }
.price-card.featured .per { color: #9fb2cf; }
.price-list { display: grid; gap: 12px; margin-bottom: 26px; }
.price-list li { display: flex; gap: 11px; font-size: .95rem; }
.price-list li svg { width: 20px; height: 20px; color: var(--green); flex: none; }
.price-card.featured .price-list li svg { color: var(--orange); }
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* factors row */
.factors { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.factor { background: var(--bg-soft); border-radius: var(--radius); padding: 24px; }
.factor svg { width: 32px; height: 32px; color: var(--orange-600); margin-bottom: 12px; }
.factor h4 { font-size: 1.02rem; margin-bottom: 6px; }
.factor p { font-size: .88rem; margin: 0; color: var(--muted); }
@media (max-width: 860px) { .factors { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .factors { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------
   14. Stats count-up
   ------------------------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat { text-align: center; padding: 12px; }
.stat__num { font-family: var(--f-head); font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.5rem); color: #fff; line-height: 1; letter-spacing: -.02em; }
.stat__num .suffix { color: var(--orange); }
.stat__label { color: #9fb2cf; font-weight: 600; margin-top: 10px; font-size: .98rem; }
@media (max-width: 700px) { .stats { grid-template-columns: 1fr 1fr; gap: 34px 20px; } }

/* ------------------------------------------------------------------
   15. Crew
   ------------------------------------------------------------------ */
.crew-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.crew-card { text-align: center; }
.crew-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.crew-photo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .4s ease; }
.crew-card:hover .crew-photo img { transform: scale(1.05); }
.crew-photo .yrs { position: absolute; left: 14px; bottom: 14px; background: var(--orange); color: #fff; font-family: var(--f-head); font-weight: 700; font-size: .76rem; padding: 5px 11px; border-radius: 30px; }
.crew-card h3 { font-size: 1.14rem; margin-bottom: 2px; }
.crew-card p { font-size: .9rem; color: var(--orange-600); font-weight: 600; margin: 0; }
@media (max-width: 860px) { .crew-grid { grid-template-columns: 1fr 1fr; } }

/* ------------------------------------------------------------------
   16. Testimonials slider
   ------------------------------------------------------------------ */
.tst { position: relative; }
.tst__viewport { overflow: hidden; }
.tst__track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.js .tst__track { will-change: transform; }
.tst__slide { flex: 0 0 100%; padding: 6px; }
.tst-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.tst-card .stars { display: inline-flex; gap: 3px; margin-bottom: 18px; }
.tst-card .stars svg { width: 22px; height: 22px; color: var(--gold); }
.tst-card blockquote { font-size: 1.28rem; line-height: 1.55; color: var(--ink); font-weight: 500; margin: 0 0 26px; font-family: var(--f-head); letter-spacing: -.01em; }
.tst-card .who { display: flex; align-items: center; gap: 15px; }
.tst-card .who img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.tst-card .who b { display: block; font-family: var(--f-head); color: var(--ink); font-size: 1.02rem; }
.tst-card .who span { font-size: .88rem; color: var(--muted); }
.tst-card .who .move-tag { margin-left: auto; font-size: .8rem; color: var(--sky); font-weight: 700; background: var(--sky-100); padding: 6px 12px; border-radius: 30px; }
.tst__nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 30px; }
.tst__btn { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; color: var(--navy); display: grid; place-items: center; cursor: pointer; transition: .18s; }
.tst__btn:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.tst__btn svg { width: 20px; height: 20px; }
.tst__dots { display: flex; gap: 8px; }
.tst__dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; padding: 0; transition: .18s; }
.tst__dot.active { background: var(--orange); width: 26px; border-radius: 6px; }
@media (max-width: 560px) { .tst-card { padding: 28px; } .tst-card blockquote { font-size: 1.1rem; } .tst-card .who .move-tag { display: none; } }

/* ------------------------------------------------------------------
   17. Service areas
   ------------------------------------------------------------------ */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.areas-list { columns: 2; column-gap: 30px; margin-top: 10px; }
.areas-list li { break-inside: avoid; display: flex; align-items: center; gap: 10px; padding: 9px 0; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--line); }
.areas-list li svg { width: 17px; height: 17px; color: var(--orange); flex: none; }
.areas-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
@media (max-width: 820px) { .areas-grid { grid-template-columns: 1fr; gap: 36px; } .areas-media { order: -1; } }
@media (max-width: 420px) { .areas-list { columns: 1; } }

/* ------------------------------------------------------------------
   18. Tips teaser
   ------------------------------------------------------------------ */
.tips { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.tips-media { position: relative; }
.tips-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.tips-check { display: grid; gap: 14px; margin: 26px 0 30px; }
.tips-check li { display: flex; align-items: flex-start; gap: 13px; font-size: 1.02rem; color: var(--ink); font-weight: 500; }
.tips-check li svg { width: 26px; height: 26px; padding: 5px; border-radius: 7px; background: #e6f6ef; color: var(--green); flex: none; }
@media (max-width: 820px) { .tips { grid-template-columns: 1fr; gap: 36px; } }

/* ------------------------------------------------------------------
   19. FAQ
   ------------------------------------------------------------------ */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq-item[open] { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 24px 26px; font-family: var(--f-head);
  font-weight: 700; font-size: 1.1rem; color: var(--ink); display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-ic { width: 30px; height: 30px; border-radius: 8px; background: var(--bg-soft); color: var(--orange-600); display: grid; place-items: center; flex: none; transition: .2s; }
.faq-item summary .q-ic svg { width: 18px; height: 18px; transition: transform .25s; }
.faq-item[open] summary .q-ic { background: var(--orange); color: #fff; }
.faq-item[open] summary .q-ic svg { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 26px 24px; color: var(--body); font-size: 1rem; }
.faq-item .faq-body p { margin-top: 0; }

/* ------------------------------------------------------------------
   20. CTA band
   ------------------------------------------------------------------ */
.cta-band { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: url("../img/cta-truck.jpg") center/cover no-repeat; opacity: .16;
}
.cta-band::after {
  content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255,90,31,.22));
}
.cta-band .shell { position: relative; z-index: 2; text-align: center; padding: 84px 22px; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 14px; }
.cta-band p { color: #c5d2e6; font-size: 1.2rem; max-width: 620px; margin: 0 auto 32px; }
.cta-band .btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-band .cta-phone { display: inline-flex; align-items: center; gap: 12px; margin-top: 28px; font-family: var(--f-head); font-weight: 700; font-size: 1.5rem; color: #fff; }
.cta-band .cta-phone svg { width: 26px; height: 26px; color: var(--orange); }

/* ------------------------------------------------------------------
   21. Footer
   ------------------------------------------------------------------ */
.site-footer { background: var(--navy-900); color: #93a3bd; padding: 74px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 54px; }
.site-footer .brand__name { color: #fff; }
.footer-about p { margin: 20px 0; font-size: .96rem; max-width: 340px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 9px; background: rgba(255,255,255,.06); color: #cdd8ea; display: grid; place-items: center; transition: .18s; }
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: 1.02rem; letter-spacing: .04em; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: #93a3bd; font-size: .96rem; }
.footer-col a:hover { color: var(--orange); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: .96rem; }
.footer-contact li svg { width: 20px; height: 20px; color: var(--orange); flex: none; margin-top: 2px; }
.footer-contact b { color: #fff; font-family: var(--f-head); display: block; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; font-size: .88rem; }
.footer-bottom a { color: #cdd8ea; }
.footer-bottom .legal { display: flex; gap: 20px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------
   22. Page hero (inner pages)
   ------------------------------------------------------------------ */
.page-hero { position: relative; background: radial-gradient(900px 500px at 80% -20%, var(--navy-700), var(--navy) 55%, var(--navy-900)); color: #fff; padding: 64px 0 96px; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 70px; background: var(--bg); clip-path: polygon(0 100%, 100% 100%, 100% 40%, 0 100%); }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: #b9c7de; font-size: 1.2rem; max-width: 620px; }
.breadcrumb-nav { display: flex; gap: 10px; align-items: center; font-size: .9rem; color: #8ea1c0; margin-bottom: 18px; font-weight: 600; }
.breadcrumb-nav a { color: #b9c7de; }
.breadcrumb-nav a:hover { color: var(--orange); }
.breadcrumb-nav svg { width: 14px; height: 14px; }

/* ------------------------------------------------------------------
   23. Detailed services (services.html)
   ------------------------------------------------------------------ */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; margin-bottom: 40px; }
.svc-detail:nth-child(even) .svc-detail__media { order: 2; }
.svc-detail__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.svc-detail__body .num-chip { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-head); font-weight: 700; color: var(--orange-600); font-size: .84rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.svc-detail__body .num-chip span { width: 34px; height: 34px; border-radius: 9px; background: var(--orange-100); display: grid; place-items: center; font-size: 1rem; }
.svc-detail__body h2 { font-size: 1.9rem; }
.svc-incl { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0 26px; }
.svc-incl li { display: flex; gap: 10px; font-size: .96rem; font-weight: 500; color: var(--ink); }
.svc-incl li svg { width: 20px; height: 20px; color: var(--green); flex: none; }
@media (max-width: 820px) { .svc-detail { grid-template-columns: 1fr; gap: 30px; } .svc-detail:nth-child(even) .svc-detail__media { order: -1; } .svc-incl { grid-template-columns: 1fr; } }

/* Booking form (services.html) */
.booking { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: start; }
.booking__aside .b-point { display: flex; gap: 14px; margin-bottom: 22px; }
.booking__aside .b-point svg { width: 44px; height: 44px; padding: 11px; border-radius: 11px; background: var(--orange-100); color: var(--orange-600); flex: none; }
.booking__aside .b-point h4 { font-size: 1.05rem; margin-bottom: 3px; }
.booking__aside .b-point p { font-size: .92rem; margin: 0; }
.booking__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-row.one { grid-template-columns: 1fr; }
.checkbox-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 4px 0 8px; }
@media (max-width: 640px) { .booking { grid-template-columns: 1fr; gap: 34px; } .form-row { grid-template-columns: 1fr; } .checkbox-row { grid-template-columns: 1fr; } .booking__form { padding: 28px; } }
textarea.control { min-height: 120px; resize: vertical; }

/* ------------------------------------------------------------------
   24. Scroll reveal (progressive enhancement — hidden ONLY when .js)
   ------------------------------------------------------------------ */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal-d1 { transition-delay: .08s; }
.js .reveal-d2 { transition-delay: .16s; }
.js .reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .svc-card, .price-card, .crew-photo img, .btn { transition: none !important; }
}

/* utility */
.mt-6 { margin-top: 2.4rem; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 700px){ .grid-2 { grid-template-columns: 1fr; } }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

@media(max-width:520px){
  .site-footer .brand {
    align-items: flex-start;
  }

  .site-footer .brand__logo {
    width: 55px;
  }

  .site-footer .brand__name {
    font-size: 22px;
    line-height: 1.1;
  }

  .site-footer .brand__text {
    min-width: 0;
  }
}

