/* =========================================================
   DaxtonHaul — Freight Brokerage
   ========================================================= */

:root {
  --navy-950: #150b30;
  --navy-900: #1e1147;
  --navy-800: #2a1660;
  --navy-700: #3c2180;
  --navy-600: #5230a0;
  --blue-500: #7c4dff;
  --blue-400: #9370ff;
  --orange-500: #f5a623;
  --orange-400: #ffbe4d;
  --orange-300: #ffd27a;
  --amber-200: #ffe6b3;

  --ink-900: #0a1120;
  --ink-700: #3c4759;
  --ink-500: #6b7688;
  --paper-0: #ffffff;
  --paper-50: #f6f8fb;
  --paper-100: #eef2f7;
  --line-100: #e3e8f0;

  --font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(21, 11, 48, 0.06), 0 1px 3px rgba(21, 11, 48, 0.08);
  --shadow-md: 0 8px 24px rgba(21, 11, 48, 0.10);
  --shadow-lg: 0 24px 60px rgba(21, 11, 48, 0.18);
  --shadow-glow: 0 0 0 1px rgba(245, 166, 35, 0.25), 0 12px 32px rgba(245, 166, 35, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --container: 1200px;
  --section-pad: clamp(64px, 9vw, 120px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-950);
}

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

section { position: relative; }

.section-pad { padding: var(--section-pad) 0; }

/* ---------- Eyebrow / Tag ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-500);
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.2);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.25);
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 16px; }
.section-head p { color: var(--ink-500); font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  color: #fff;
  box-shadow: 0 10px 24px rgba(245, 166, 35, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(245, 166, 35, 0.4); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); border-color: #fff; transform: translateY(-2px); }

.btn-dark {
  background: var(--navy-950);
  color: #fff;
}
.btn-dark:hover { background: var(--navy-800); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--navy-950);
  border-color: var(--line-100);
}
.btn-outline:hover { border-color: var(--navy-950); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-lg { padding: 17px 32px; font-size: 16px; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }

.navbar.scrolled {
  background: rgba(21, 11, 48, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  padding: 12px 0;
}

.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 20px; color: #fff; }
.brand .mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 4px 14px rgba(47,143,224,0.45));
  flex-shrink: 0;
}
.brand .mark svg { width: 42px; height: 42px; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-daxton { font-family: var(--font-display); font-weight: 800; font-size: 17px; color: #fff; letter-spacing: 0.03em; }
.brand-haul { display: flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: 10.5px; letter-spacing: 0.3em; color: #4fa8ff; margin-top: 2px; }
.brand-haul i { display: block; width: 12px; height: 1px; background: currentColor; opacity: 0.75; font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  font-size: 14.5px;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; font-size: 14px; }
.nav-phone svg { width: 16px; height: 16px; color: var(--orange-400); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
  background: radial-gradient(1100px 700px at 82% 8%, var(--navy-700) 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  overflow: hidden;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 75%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.35), transparent 70%);
  top: -180px; right: -160px;
  filter: blur(20px);
  pointer-events: none;
}
.hero-route {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  color: #fff;
  margin-bottom: 22px;
}
.hero-copy h1 span { color: var(--orange-400); }
.hero-copy p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
}
.hero-stats div span { font-size: 13px; color: rgba(255,255,255,0.55); }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-card img { width: 100%; height: 420px; object-fit: cover; display: block; }
.hero-card .tag-float {
  position: absolute;
  left: 22px; bottom: 22px;
  background: rgba(21,11,48,0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.tag-float .dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  display: flex; align-items: center; justify-content: center;
}
.tag-float .dot svg { width: 20px; height: 20px; }
.tag-float strong { display: block; font-size: 15px; }
.tag-float span { font-size: 12px; color: rgba(255,255,255,0.65); }

.float-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.float-badge.top { top: -18px; right: 10px; }
.float-badge.bottom { bottom: -22px; left: -18px; }
.float-badge .ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(124,77,255,0.14);
  color: var(--blue-500);
  display: flex; align-items: center; justify-content: center;
}
.float-badge.top .ico { background: rgba(245,166,35,0.12); color: var(--orange-500); }
.float-badge .ico svg { width: 18px; height: 18px; }
.float-badge strong { display: block; font-size: 14px; color: var(--navy-950); }
.float-badge span { font-size: 11.5px; color: var(--ink-500); }

/* ---------- Logo strip ---------- */
.strip {
  background: var(--paper-50);
  border-bottom: 1px solid var(--line-100);
  padding: 34px 0;
}
.strip .container {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.strip-label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-500); white-space: nowrap; }
.strip-items { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; }
.strip-items span {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink-700);
  opacity: 0.55;
  font-size: 16.5px;
  letter-spacing: 0.02em;
}

/* ---------- Services ---------- */
.services { background: var(--paper-0); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--paper-50);
  border: 1px solid var(--line-100);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: #fff;
  border-color: rgba(245,166,35,0.35);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--orange-400);
  transition: transform .3s ease;
}
.service-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { color: var(--ink-500); font-size: 14.5px; flex: 1; margin-bottom: 18px; }
.service-link { font-size: 13.5px; font-weight: 700; color: var(--navy-950); display: inline-flex; align-items: center; gap: 6px; }
.service-card:hover .service-link { color: var(--orange-500); }
.service-link svg { width: 14px; height: 14px; transition: transform .25s ease; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ---------- Split / How it works ---------- */
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1.1fr 0.9fr; }
.split.reverse .split-media { order: 2; }
.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-media img { width: 100%; height: 460px; object-fit: cover; }
.split-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(21,11,48,0.55));
}

.step-list { display: flex; flex-direction: column; gap: 26px; margin-top: 32px; }
.step {
  display: flex;
  gap: 18px;
}
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy-950);
  color: var(--orange-400);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step h4 { font-size: 16.5px; margin-bottom: 6px; }
.step p { color: var(--ink-500); font-size: 14.5px; }

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--navy-950);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 15% 20%, rgba(245,166,35,0.16), transparent 60%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; padding: 12px; }
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  color: #fff;
  margin-bottom: 6px;
}
.stat-item strong .plus { color: var(--orange-400); }
.stat-item span { color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 500; }

/* ---------- Why us ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-100);
  background: #fff;
  transition: box-shadow .3s ease, transform .3s ease;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-card .service-icon { background: rgba(245,166,35,0.1); color: var(--orange-500); }
.feature-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.feature-card p { color: var(--ink-500); font-size: 14.5px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--paper-50); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--line-100);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.stars { display: flex; gap: 3px; color: var(--orange-500); }
.stars svg { width: 16px; height: 16px; }
.testi-card p { color: var(--ink-700); font-size: 15px; font-style: italic; }
.testi-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.testi-person strong { display: block; font-size: 14.5px; }
.testi-person span { font-size: 12.5px; color: var(--ink-500); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700) 60%, #6a3fc7);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(245,166,35,0.35), transparent 70%);
  right: -100px; top: -140px;
  border-radius: 50%;
}
.cta-band h2 { color: #fff; font-size: clamp(26px, 3vw, 34px); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 460px; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.7);
  padding: 76px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; color: rgba(255,255,255,0.55); max-width: 300px; margin-bottom: 20px;}
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.social-row a:hover { background: var(--orange-500); transform: translateY(-3px); }
.social-row svg { width: 16px; height: 16px; color: #fff; }

.footer-col h4 { color: #fff; font-size: 14.5px; margin-bottom: 20px; letter-spacing: 0.03em; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,0.6); transition: color .2s ease; }
.footer-col a:hover { color: var(--orange-400); }
.footer-contact li { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--orange-400); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom .legal { display: flex; gap: 22px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: radial-gradient(1000px 500px at 85% 0%, var(--navy-700), var(--navy-950) 60%);
  color: #fff;
  padding: 168px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 80%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13.5px; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 12px; height: 12px; }
.page-hero h1 { color: #fff; font-size: clamp(34px, 4.6vw, 52px); max-width: 700px; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 17px; max-width: 600px; }

/* ---------- Detailed service blocks (services page) ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--line-100);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse .sd-media { order: 2; }
.sd-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.sd-media img { width: 100%; height: 380px; object-fit: cover; }
.sd-tagnum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(245,166,35,0.12);
  color: var(--orange-500);
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 18px;
}
.sd-copy h3 { font-size: clamp(24px, 2.6vw, 30px); margin-bottom: 14px; }
.sd-copy p { color: var(--ink-500); margin-bottom: 20px; }
.sd-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.sd-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink-700); }
.sd-list svg { width: 18px; height: 18px; color: var(--orange-500); flex-shrink: 0; margin-top: 2px; }

/* ---------- Process (about) ---------- */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card { text-align: center; padding: 30px 20px; }
.value-card .service-icon { margin: 0 auto 18px; }
.value-card h4 { font-size: 15.5px; margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--ink-500); }

/* ---------- Quote / Contact page ---------- */
.quote-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.quote-side {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  color: #fff;
  padding: 52px 44px;
}
.quote-side h3 { color: #fff; font-size: 24px; margin-bottom: 14px; }
.quote-side p { color: rgba(255,255,255,0.65); font-size: 14.5px; margin-bottom: 32px; }
.quote-contact-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.quote-contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.quote-contact-list .ico {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(245,166,35,0.14);
  color: var(--orange-400);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.quote-contact-list .ico svg { width: 19px; height: 19px; }
.quote-contact-list strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.quote-contact-list span { font-size: 13.5px; color: rgba(255,255,255,0.55); }

.quote-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.qb {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
}
.qb svg { width: 14px; height: 14px; color: var(--orange-400); }

.quote-form {
  background: #fff;
  padding: 52px 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 13.5px; font-weight: 700; color: var(--navy-950); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 14.5px;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-100);
  background: var(--paper-50);
  color: var(--ink-900);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(245,166,35,0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-note { font-size: 12px; color: var(--ink-500); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 8px; flex-wrap: wrap; }
.form-msg { font-size: 13.5px; font-weight: 600; }
.form-msg.success { color: #1a8a4a; }
.form-msg.error { color: #c22; }

/* ---------- Map / office strip ---------- */
.coverage-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.coverage-stat {
  background: #fff;
  border: 1px solid var(--line-100);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.coverage-stat .service-icon { margin: 0 auto 14px; width: 48px; height: 48px; }
.coverage-stat .service-icon svg { width: 22px; height: 22px; }
.coverage-stat strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--navy-950); margin-bottom: 4px; }
.coverage-stat span { font-size: 13px; color: var(--ink-500); }

.office-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.office-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.office-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(245,166,35,0.35); }
.office-card .service-icon { width: 48px; height: 48px; margin-bottom: 16px; }
.office-card .service-icon svg { width: 20px; height: 20px; }
.office-card h4 { font-size: 16px; margin-bottom: 8px; }
.office-card p { color: var(--ink-500); font-size: 14px; }
.office-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(245,166,35,0.12);
  color: var(--orange-500);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}
.office-badge-intl { background: rgba(124,77,255,0.12); color: var(--blue-500); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--line-100); border-radius: var(--radius-md); overflow: hidden; background: #fff; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15.5px;
  font-family: var(--font-display);
}
.faq-q svg { width: 18px; height: 18px; color: var(--orange-500); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 0 24px 22px; color: var(--ink-500); font-size: 14.5px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy-950);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 900;
  cursor: pointer;
  border: none;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--orange-500); }
.to-top svg { width: 18px; height: 18px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .office-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 940px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto 20px; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; }
  .service-detail.reverse .sd-media { order: 0; }
  .cta-band { flex-direction: column; text-align: center; }
  .quote-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .service-grid, .feature-grid, .value-grid { grid-template-columns: 1fr; }
  .office-grid, .coverage-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 40px 26px; }
  .quote-side, .quote-form { padding: 36px 26px; }
}

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 84vw);
  height: 100vh;
  background: var(--navy-950);
  z-index: 1100;
  padding: 100px 30px 30px;
  transition: right .35s ease;
  box-shadow: -20px 0 50px rgba(0,0,0,0.3);
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav .btn { margin-top: 24px; }
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease;
}
.nav-overlay.show { opacity: 1; visibility: visible; }
.mobile-nav-close { position: absolute; top: 26px; right: 26px; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); color: #fff; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; }
