/* ==========================================================================
   Fast Track Services Inc. — Shared stylesheet
   Used by every page. Design tokens + components.
   ========================================================================== */

:root {
  --cream: #FFF5EE;
  --navy: #001F3F;
  --navy-2: #003366;
  --blue: #005B99;
  --accent: #FF4500;
  --ft-scrim: 0.62;
  --maxw: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--cream); }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  color: var(--navy);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
img { max-width: 100%; }
h1, h2, h3 { margin: 0; }
input, textarea, select, button { font-family: Inter, system-ui, sans-serif; }

.wrap { max-width: var(--maxw); margin: 0 auto; }

@keyframes ftDrift { 0% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-18px,0); } 100% { transform: translate3d(0,0,0); } }
@keyframes ftSlide { 0% { background-position: 0 0; } 100% { background-position: 320px 0; } }

/* Reveal on scroll */
[data-reveal] { opacity: 1; transform: none; }
[data-reveal].pre { opacity: 0.001; transform: translateY(26px); }
[data-reveal].in {
  opacity: 1; transform: none;
  transition: opacity 760ms cubic-bezier(.2,.8,.2,1), transform 760ms cubic-bezier(.2,.8,.2,1);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal].pre { opacity: 1; transform: none; }
  .hero-glow, .why-pattern, .cta-pattern, .page-hero-glow { animation: none !important; }
}

/* ============ HEADER ============ */
header.site {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
}
.nav-bg {
  position: absolute; inset: 0; background: transparent;
  transition: background 320ms ease, box-shadow 320ms ease, backdrop-filter 320ms ease;
}
header.site.scrolled .nav-bg {
  background: rgba(0,31,63,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px -24px rgba(0,0,0,.9);
}
.nav-inner {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  padding: 18px 24px; display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 42px; width: 249px; object-fit: contain; display: block; }

.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: rgba(255,245,238,.86);
  letter-spacing: .01em; transition: color 180ms ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { font-weight: 600; color: var(--accent); }
.btn-quote-nav {
  margin-left: 6px; display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff !important; font-weight: 700; font-size: 14.5px;
  padding: 13px 22px; border-radius: 999px;
  box-shadow: 0 10px 26px -10px rgba(255,69,0,.75);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.btn-quote-nav:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(255,69,0,.9); }

.hamburger {
  margin-left: auto; width: 48px; height: 48px; border-radius: 14px;
  border: 1px solid rgba(255,245,238,.28); background: rgba(0,31,63,.35);
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--cream); }
.hamburger span:last-child { background: var(--accent); }

.mobile-menu {
  background: var(--navy); border-top: 1px solid rgba(255,245,238,.12);
  padding: 14px 24px 26px; display: none; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 6px; font-size: 17px; font-weight: 600; color: var(--cream);
  border-bottom: 1px solid rgba(255,245,238,.08);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu .mm-quote {
  margin-top: 12px; text-align: center; background: var(--accent); color: #fff;
  font-weight: 700; font-size: 16px; padding: 16px; border-radius: 999px; border-bottom: 0;
}

@media (max-width: 939px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .brand img { width: auto; max-width: 210px; }
}

/* ============ HERO (home) ============ */
.hero {
  position: relative; min-height: 82vh; display: flex; align-items: center;
  padding: 140px 24px 72px; overflow: hidden; background: var(--navy);
}
.hero-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
}
.hero-scrim-1 {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,31,63,var(--ft-scrim)) 0%, rgba(0,31,63,.42) 42%, rgba(0,31,63,.82) 100%);
}
.hero-scrim-2 {
  position: absolute; left: 0; right: 0; bottom: 0; height: 120px; pointer-events: none;
  background: linear-gradient(to top, var(--navy), rgba(0,31,63,0));
}
.hero-glow {
  position: absolute; right: -160px; top: -120px; width: 520px; height: 520px; border-radius: 50%;
  pointer-events: none; background: radial-gradient(circle, rgba(0,91,153,.55), transparent 62%);
  animation: ftDrift 13s ease-in-out infinite;
}
.hero-inner {
  position: relative; width: 100%; max-width: 1000px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero h1 {
  font-family: Barlow, sans-serif; font-weight: 800; font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.04; letter-spacing: -0.02em; color: var(--cream); text-wrap: balance;
}
.hero h1 .accent { color: var(--accent); }
.hero p.lead {
  margin: 26px auto 0; max-width: 640px; font-size: clamp(16px,1.3vw,19px);
  line-height: 1.65; color: rgba(255,245,238,.8); text-wrap: pretty;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; justify-content: center; }

/* Buttons (shared) */
.btn-primary {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  background: var(--accent); color: #fff !important; font-weight: 700; font-size: 16.5px;
  padding: 19px 30px; border-radius: 999px;
  box-shadow: 0 22px 44px -16px rgba(255,69,0,.85);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 28px 56px -18px rgba(255,69,0,1); }
.btn-primary .arrow { font-family: Barlow, sans-serif; font-weight: 700; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px; color: var(--cream) !important;
  font-weight: 700; font-size: 16.5px; padding: 19px 30px; border-radius: 999px;
  border: 1px solid rgba(255,245,238,.32); background: rgba(255,245,238,.06);
  transition: background 220ms ease, transform 220ms ease;
}
.btn-ghost:hover { background: rgba(255,245,238,.14); transform: translateY(-3px); }

/* ============ PAGE HERO (internal pages) ============ */
.page-hero {
  position: relative; overflow: hidden; background: var(--navy);
  padding: clamp(140px,16vw,180px) 24px clamp(64px,8vw,96px);
}
.page-hero .why-pattern { opacity: .06; }
.page-hero-glow {
  position: absolute; right: -140px; top: -140px; width: 520px; height: 520px; border-radius: 50%;
  pointer-events: none; background: radial-gradient(circle, rgba(0,91,153,.5), transparent 62%);
  animation: ftDrift 15s ease-in-out infinite;
}
.page-hero-inner { position: relative; max-width: 900px; margin: 0 auto; text-align: center; }
.page-hero .kicker { color: var(--accent); }
.page-hero h1 {
  font-family: Barlow, sans-serif; font-weight: 800; letter-spacing: -0.02em;
  color: var(--cream); font-size: clamp(34px,5vw,60px); line-height: 1.05; margin-top: 14px;
  text-wrap: balance;
}
.page-hero p.sub {
  margin: 22px auto 0; max-width: 640px; font-size: clamp(16px,1.3vw,19px);
  line-height: 1.65; color: rgba(255,245,238,.8); text-wrap: pretty;
}
.page-hero .hero-cta { margin-top: 34px; }

/* ============ TRUST STRIP ============ */
.trust {
  background: var(--navy); border-top: 1px solid rgba(255,245,238,.08); padding: 26px 24px;
}
.trust-inner {
  max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap;
  gap: 18px 44px; align-items: center; justify-content: space-between;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item .diamond { width: 7px; height: 7px; background: var(--accent); transform: rotate(45deg); }
.trust-item span.label {
  font-family: Barlow, sans-serif; font-weight: 600; font-size: 14px; letter-spacing: .16em;
  color: rgba(255,245,238,.72); text-transform: uppercase;
}

/* ============ SECTION SHELL ============ */
section.pad { padding: clamp(72px,9vw,128px) 24px; }
section.pad.tight { padding: clamp(56px,7vw,96px) 24px; }
.kicker {
  font-family: Barlow, sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: .24em; color: var(--accent);
}
h2.section-title {
  font-family: Barlow, sans-serif; font-weight: 800; letter-spacing: -0.02em;
  color: var(--navy); font-size: clamp(30px,4vw,54px); line-height: 1.06;
}
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-top: 16px; }
.section-head .lead-p { margin: 18px 0 0; font-size: 16.5px; line-height: 1.7; color: rgba(0,31,63,.66); }
.section-head.center .lead-p { margin-left: auto; margin-right: auto; max-width: 620px; }

/* ============ INTRO BAND (home) ============ */
.intro { background: #fff; }
.intro .intro-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.intro h2 { margin-top: 16px; }
.intro p { margin: 22px auto 0; max-width: 720px; font-size: 17px; line-height: 1.75; color: rgba(0,31,63,.72); }

/* ============ SERVICES OVERVIEW (cards) ============ */
.services { background: var(--cream); }
.services-head {
  display: flex; flex-wrap: wrap; gap: 32px; align-items: flex-end;
  justify-content: space-between; margin-bottom: 56px;
}
.services-head h2 { margin-top: 16px; max-width: 640px; }
.services-head .intro-p {
  max-width: 380px; margin: 0; font-size: 16px; line-height: 1.7; color: rgba(0,31,63,.66);
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px;
}
.svc-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid rgba(0,31,63,.08); border-radius: 22px;
  padding: 30px 28px 26px; overflow: hidden;
  box-shadow: 0 2px 10px -6px rgba(0,31,63,.25);
  transition: transform 300ms cubic-bezier(.2,.8,.2,1), box-shadow 300ms ease, border-color 300ms ease;
}
.svc-card:hover {
  transform: translateY(-8px); box-shadow: 0 34px 60px -30px rgba(0,31,63,.45);
  border-color: rgba(255,69,0,.4);
}
.svc-card .corner {
  position: absolute; right: -40px; top: -40px; width: 130px; height: 130px; opacity: .05;
  background-image: repeating-linear-gradient(122deg, var(--navy) 0 3px, transparent 3px 14px);
}
.svc-icon {
  position: relative; display: block; width: 64px; height: 64px; margin-bottom: 24px;
  border-radius: 18px; background: rgba(0,51,102,.07); flex: none;
}
.svc-icon span { position: absolute; }
/* box icon */
.ic-box .b1 { left:16px; top:20px; width:32px; height:26px; border:3px solid var(--navy-2); border-radius:3px; }
.ic-box .b2 { left:16px; top:20px; width:32px; height:9px; background:var(--navy-2); }
.ic-box .b3 { left:30px; top:29px; width:4px; height:17px; background:var(--accent); }
/* truck icon */
.ic-truck .t1 { left:12px; top:21px; width:24px; height:19px; background:var(--navy-2); border-radius:3px 3px 0 0; }
.ic-truck .t2 { left:36px; top:27px; width:16px; height:13px; background:var(--accent); border-radius:3px 4px 0 0; }
.ic-truck .t3 { left:12px; top:40px; width:40px; height:3px; background:var(--navy-2); }
.ic-truck .t4 { left:18px; top:42px; width:9px; height:9px; border-radius:50%; background:var(--navy); }
.ic-truck .t5 { left:38px; top:42px; width:9px; height:9px; border-radius:50%; background:var(--navy); }
/* spark icon */
.ic-spark .s1 { left:20px; top:18px; width:18px; height:18px; background:var(--navy-2); transform:rotate(45deg); border-radius:3px; }
.ic-spark .s2 { left:39px; top:34px; width:11px; height:11px; background:var(--accent); transform:rotate(45deg); border-radius:2px; }
.ic-spark .s3 { left:16px; top:40px; width:8px; height:8px; background:var(--blue); transform:rotate(45deg); border-radius:2px; }

.svc-card h3 {
  font-family: Barlow, sans-serif; font-weight: 700; font-size: 22px;
  letter-spacing: -0.01em; color: var(--navy);
}
.svc-card p { margin: 12px 0 22px; font-size: 14.8px; line-height: 1.65; color: rgba(0,31,63,.65); text-wrap: pretty; }
.svc-card .learn {
  display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700;
  color: var(--blue); transition: color 200ms ease, gap 200ms ease; margin-top: auto;
}
.svc-card .learn:hover { color: var(--accent); gap: 14px; }

/* ============ FEATURE GRID (Why Fast Track — light) ============ */
.features { background: #fff; }
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 18px;
}
.feature {
  background: var(--cream); border: 1px solid rgba(0,31,63,.08); border-radius: 20px;
  padding: 28px 26px; transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -30px rgba(0,31,63,.4); border-color: rgba(255,69,0,.35); }
.feature .f-mark { width: 12px; height: 12px; background: var(--accent); transform: rotate(45deg); margin-bottom: 18px; }
.feature h3 { font-family: Barlow, sans-serif; font-weight: 700; font-size: 19px; color: var(--navy); }
.feature p { margin: 10px 0 0; font-size: 14.6px; line-height: 1.6; color: rgba(0,31,63,.66); }

/* ============ WHY (dark split w/ photo) ============ */
.why {
  position: relative; background: linear-gradient(160deg, #001F3F 0%, #003366 58%, #005B99 130%);
  color: var(--cream); overflow: hidden;
}
.why-pattern {
  position: absolute; inset: 0; opacity: .07;
  background-image: repeating-linear-gradient(122deg, var(--cream) 0 2px, transparent 2px 22px);
}
.why-inner {
  position: relative; max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap;
  gap: clamp(36px,5vw,80px); align-items: center;
}
.why-media { flex: 1 1 420px; min-width: 290px; }
.why-photo {
  position: relative; height: clamp(360px,44vw,560px); border-radius: 26px; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  box-shadow: 0 50px 100px -50px rgba(0,0,0,.8);
}
.why-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.why-text { flex: 1 1 420px; min-width: 290px; }
.why-text h2 { color: var(--cream); font-size: clamp(30px,3.8vw,50px); line-height: 1.07; margin: 16px 0 20px; }
.why-text .why-lead { margin: 0 0 34px; font-size: 16.5px; line-height: 1.7; color: rgba(255,245,238,.76); max-width: 520px; }
.reasons { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 14px; }
.reason {
  display: flex; align-items: flex-start; gap: 12px; padding: 16px 18px; border-radius: 16px;
  background: rgba(255,245,238,.07); border: 1px solid rgba(255,245,238,.13);
}
.reason .diamond { margin-top: 3px; width: 8px; height: 8px; flex: none; background: var(--accent); transform: rotate(45deg); }
.reason .r-title { font-family: Barlow, sans-serif; font-weight: 700; font-size: 16.5px; }
.reason .r-body { font-size: 13.6px; line-height: 1.55; color: rgba(255,245,238,.65); margin-top: 4px; }

/* ============ SERVICE AREA BAND ============ */
.area { background: var(--cream); }
.area-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.area h2 { margin-top: 16px; }
.area p { margin: 20px auto 30px; max-width: 680px; font-size: 17px; line-height: 1.7; color: rgba(0,31,63,.7); }
.area-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.area-tags span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px; background: #fff; border: 1px solid rgba(0,31,63,.1);
  font-family: Barlow, sans-serif; font-weight: 600; font-size: 14.5px; color: var(--navy-2);
}
.area-tags span::before { content: ""; width: 7px; height: 7px; background: var(--accent); transform: rotate(45deg); }

/* ============ VALUES (about) ============ */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 20px; }
.value {
  position: relative; background: #fff; border: 1px solid rgba(0,31,63,.08); border-radius: 22px;
  padding: 32px 28px; box-shadow: 0 2px 10px -6px rgba(0,31,63,.25);
}
.value .v-num {
  font-family: Barlow, sans-serif; font-weight: 800; font-size: 15px; color: var(--accent);
  letter-spacing: .1em;
}
.value h3 { font-family: Barlow, sans-serif; font-weight: 700; font-size: 22px; color: var(--navy); margin-top: 10px; }
.value p { margin: 12px 0 0; font-size: 15px; line-height: 1.65; color: rgba(0,31,63,.66); }

/* ============ PROSE (story / legal) ============ */
.prose { max-width: 760px; }
.prose.center { margin: 0 auto; }
.prose p { font-size: 17px; line-height: 1.8; color: rgba(0,31,63,.78); margin: 0 0 20px; }
.prose h2 { margin: 40px 0 14px; }
.prose h3 { font-family: Barlow, sans-serif; font-weight: 700; font-size: 22px; color: var(--navy); margin: 32px 0 10px; }
.prose ul { margin: 0 0 20px; padding-left: 22px; }
.prose li { font-size: 16px; line-height: 1.7; color: rgba(0,31,63,.78); margin-bottom: 8px; }
.prose a { color: var(--blue); font-weight: 600; }

/* ============ SERVICE DETAIL (services page) ============ */
.svc-detail { background: #fff; }
.svc-detail:nth-of-type(even) { background: var(--cream); }
.svc-detail .svc-detail-inner {
  max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap;
  gap: clamp(32px,5vw,72px); align-items: flex-start;
}
.svc-detail .sd-text { flex: 1 1 460px; min-width: 300px; }
.svc-detail .sd-side { flex: 1 1 320px; min-width: 280px; }
.svc-detail h2 { margin-top: 14px; font-size: clamp(28px,3.4vw,44px); }
.svc-detail .sd-body { margin: 18px 0 0; font-size: 16.5px; line-height: 1.75; color: rgba(0,31,63,.72); max-width: 560px; }
.svc-detail .btn-primary { margin-top: 30px; }
.offer-card {
  background: var(--cream); border: 1px solid rgba(0,31,63,.09); border-radius: 22px;
  padding: 30px 30px 32px; box-shadow: 0 24px 50px -40px rgba(0,31,63,.55);
}
.svc-detail:nth-of-type(even) .offer-card { background: #fff; }
.offer-card .oc-title {
  font-family: Barlow, sans-serif; font-weight: 700; font-size: 13px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
.checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; line-height: 1.5; color: var(--navy-2); }
.checklist li::before {
  content: ""; flex: none; margin-top: 5px; width: 9px; height: 9px;
  background: var(--accent); transform: rotate(45deg);
}

/* ============ HOW IT WORKS (steps) ============ */
.how { background: #fff; }
.how .head { max-width: 620px; margin-bottom: 56px; }
.how .head h2 { margin-top: 16px; font-size: clamp(30px,4vw,50px); }
.steps { display: flex; flex-wrap: wrap; gap: 14px; align-items: stretch; }
.step {
  flex: 1 1 190px; min-width: 180px; position: relative; padding: 28px 24px 26px;
  border-radius: 20px; background: var(--cream); border: 1px solid rgba(0,31,63,.07);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.step:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -28px rgba(0,31,63,.4); }
.step .top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.step .num {
  width: 38px; height: 38px; border-radius: 12px; background: var(--navy); color: var(--cream);
  font-family: Barlow, sans-serif; font-weight: 800; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
}
.step .line { flex: 1; height: 2px; background: linear-gradient(90deg, rgba(255,69,0,.9), rgba(0,91,153,.15)); }
.step .arrow { font-family: Barlow, sans-serif; font-weight: 700; color: var(--accent); font-size: 16px; }
.step .s-title { font-family: Barlow, sans-serif; font-weight: 700; font-size: 19px; color: var(--navy); }
.step .s-body { margin-top: 8px; font-size: 14px; line-height: 1.6; color: rgba(0,31,63,.62); }

/* ============ REVIEWS (carousel) ============ */
.reviews { background: #fff; }
.reviews.alt { background: var(--cream); }
.reviews-inner { max-width: 1080px; margin: 0 auto; }
.reviews-head { text-align: center; margin-bottom: 48px; }
.reviews-head h2 { margin-top: 16px; font-size: clamp(30px,4vw,50px); }
.review-viewport { overflow: hidden; border-radius: 26px; }
.review-track { display: flex; transition: transform 520ms cubic-bezier(.2,.8,.2,1); }
.review-slide { flex: 0 0 100%; padding: 6px; }
.review-card {
  background: var(--cream); border: 1px solid rgba(0,31,63,.08); border-radius: 24px;
  padding: clamp(28px,3.5vw,48px); box-shadow: 0 24px 50px -34px rgba(0,31,63,.5);
}
.reviews.alt .review-card { background: #fff; }
.review-head { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.avatar {
  width: 56px; height: 56px; flex: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: Barlow, sans-serif; font-weight: 800; font-size: 20px; color: #fff;
}
.review-name { font-family: Barlow, sans-serif; font-weight: 700; font-size: 18px; color: var(--navy); }
.review-meta { font-size: 13.5px; color: rgba(0,31,63,.6); margin-top: 2px; }
.stars { margin-left: auto; color: var(--accent); font-size: 17px; letter-spacing: 2px; }
.review-quote { margin: 0; font-size: clamp(17px,1.7vw,22px); line-height: 1.6; color: var(--navy-2); text-wrap: pretty; }
.review-controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 28px; }
.rev-btn {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(0,31,63,.16);
  background: #fff; color: var(--navy); font-size: 16px; cursor: pointer; transition: all 200ms ease;
}
.rev-btn:hover { background: var(--navy); color: var(--cream); }
.rev-dot {
  height: 9px; padding: 0; border: 0; cursor: pointer; width: 9px;
  background: rgba(0,31,63,.2); border-radius: 999px; transition: all 260ms ease;
}
.rev-dot.active { width: 26px; background: var(--accent); }

/* ============ TESTIMONIALS GRID (testimonials page) ============ */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 20px; }
.testi-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid rgba(0,31,63,.08); border-radius: 24px;
  padding: 32px 30px; box-shadow: 0 2px 12px -6px rgba(0,31,63,.25);
}
.testi-card .stars { margin: 0 0 16px; }
.testi-card blockquote { margin: 0; font-size: 17px; line-height: 1.65; color: var(--navy-2); flex: 1; text-wrap: pretty; }
.testi-card .cite { margin-top: 20px; display: flex; align-items: center; gap: 14px; }
.testi-card .cite .who { font-family: Barlow, sans-serif; font-weight: 700; font-size: 16px; color: var(--navy); }
.testi-card .cite .co { font-size: 13.5px; color: rgba(0,31,63,.6); margin-top: 2px; }
.testi-note {
  max-width: 760px; margin: 0 auto 40px; text-align: center;
  font-size: 14.5px; line-height: 1.6; color: rgba(0,31,63,.55);
}

/* ============ FAQ (accordion) ============ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid rgba(0,31,63,.1); border-radius: 18px;
  overflow: hidden; transition: border-color 200ms ease, box-shadow 200ms ease;
}
.faq-item[open] { border-color: rgba(255,69,0,.4); box-shadow: 0 24px 50px -40px rgba(0,31,63,.5); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 24px; display: flex; align-items: center; gap: 16px;
  font-family: Barlow, sans-serif; font-weight: 700; font-size: 18px; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-mark {
  margin-left: auto; flex: none; width: 26px; height: 26px; position: relative; transition: transform 260ms ease;
}
.faq-item summary .q-mark::before,
.faq-item summary .q-mark::after {
  content: ""; position: absolute; background: var(--accent); border-radius: 2px;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
}
.faq-item summary .q-mark::before { width: 14px; height: 2.5px; }
.faq-item summary .q-mark::after { width: 2.5px; height: 14px; transition: transform 260ms ease; }
.faq-item[open] summary .q-mark::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-item .faq-body { padding: 0 24px 24px; font-size: 15.6px; line-height: 1.7; color: rgba(0,31,63,.72); }

/* ============ CTA BANNER ============ */
.cta { position: relative; background: var(--navy); overflow: hidden; }
.cta-pattern {
  position: absolute; inset: 0; opacity: .08;
  background-image: repeating-linear-gradient(122deg, var(--cream) 0 2px, transparent 2px 24px);
}
.cta-glow {
  position: absolute; left: 50%; top: 60%; width: 640px; height: 340px; transform: translate(-50%,-50%);
  background: radial-gradient(ellipse, rgba(255,69,0,.28), transparent 68%); filter: blur(20px);
}
.cta-inner { position: relative; max-width: 900px; margin: 0 auto; text-align: center; }
.cta-inner h2 {
  font-family: Barlow, sans-serif; font-weight: 800; font-size: clamp(34px,5vw,66px);
  line-height: 1.04; letter-spacing: -0.025em; color: var(--cream);
}
.cta-inner p { margin: 22px auto 38px; max-width: 560px; font-size: 17px; line-height: 1.65; color: rgba(255,245,238,.76); }
.cta-contacts { display: flex; flex-wrap: wrap; gap: 12px 40px; justify-content: center; margin-top: 36px; }
.cta-contacts a { font-family: Barlow, sans-serif; font-weight: 700; font-size: 20px; color: var(--cream); }
.cta-contacts a:hover { color: var(--accent); }

/* ============ CONTACT ============ */
.contact { background: #fff; }
.contact.alt { background: var(--cream); }
.contact-inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: clamp(32px,4vw,64px); }
.contact-form-col { flex: 1 1 500px; min-width: 300px; }
.contact-form-col h2 { margin: 16px 0 10px; font-size: clamp(30px,3.8vw,48px); line-height: 1.07; }
.contact-form-col .form-sub { margin: 0 0 28px; font-size: 16px; line-height: 1.6; color: rgba(0,31,63,.66); }
form.quote { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; }
form.quote label {
  display: flex; flex-direction: column; gap: 8px; font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: rgba(0,31,63,.6);
}
form.quote .full { grid-column: 1 / -1; }
form.quote input, form.quote select, form.quote textarea {
  padding: 16px 18px; border-radius: 14px; border: 1px solid rgba(0,31,63,.15);
  font-size: 16px; color: var(--navy); background: var(--cream); outline: none;
  text-transform: none; letter-spacing: 0; font-weight: 500;
  transition: border-color 180ms ease;
}
.contact.alt form.quote input, .contact.alt form.quote select, .contact.alt form.quote textarea { background: #fff; }
form.quote textarea { resize: vertical; }
form.quote input:focus, form.quote select:focus, form.quote textarea:focus { border-color: var(--accent); }
form.quote button {
  grid-column: 1 / -1; margin-top: 6px; padding: 19px 28px; border: 0; border-radius: 999px;
  background: var(--accent); color: #fff; font-family: Barlow, sans-serif; font-weight: 700;
  font-size: 17px; cursor: pointer; box-shadow: 0 20px 44px -18px rgba(255,69,0,.85);
  transition: transform 220ms ease;
}
form.quote button:hover { transform: translateY(-2px); }
.form-success {
  padding: 34px; border-radius: 22px; background: var(--cream); border: 1px solid rgba(255,69,0,.3);
}
.contact.alt .form-success { background: #fff; }
.form-success .fs-title { font-family: Barlow, sans-serif; font-weight: 800; font-size: 26px; color: var(--navy); }
.form-success p { margin: 10px 0 0; font-size: 16px; line-height: 1.6; color: rgba(0,31,63,.7); }

.contact-info-col { flex: 1 1 340px; min-width: 280px; display: flex; flex-direction: column; gap: 18px; }
.contact-map { position: relative; height: 240px; border-radius: 22px; overflow: hidden; border: 1px solid rgba(0,31,63,.1); }
.map-slot {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(0,31,63,.06), rgba(0,31,63,.06)),
    #e9eef3;
  background-image:
    linear-gradient(rgba(0,91,153,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,91,153,.14) 1px, transparent 1px);
  background-size: 34px 34px, 34px 34px;
}
.map-road-1, .map-road-2 { position: absolute; background: rgba(0,91,153,.28); }
.map-road-1 { left: -5%; right: -5%; top: 58%; height: 10px; transform: rotate(-8deg); }
.map-road-2 { top: -5%; bottom: -5%; left: 40%; width: 10px; transform: rotate(6deg); }
.map-pin {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-100%);
  width: 26px; height: 26px; border-radius: 50% 50% 50% 0; background: var(--accent);
  rotate: 45deg; box-shadow: 0 8px 18px -6px rgba(255,69,0,.9);
}
.map-pin::after { content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 9px; height: 9px; border-radius: 50%; background: #fff; }
.contact-card { padding: 28px; border-radius: 22px; background: var(--navy); color: var(--cream); }
.contact-card .cc-name { font-family: Barlow, sans-serif; font-weight: 800; font-size: 21px; }
.contact-card .cc-lines { margin-top: 14px; display: flex; flex-direction: column; gap: 12px; font-size: 15px; color: rgba(255,245,238,.78); line-height: 1.5; }
.contact-card .cc-lines a { color: var(--cream); font-weight: 600; }
.contact-card .cc-lines a:hover { color: var(--accent); }
.contact-card .hours { margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,245,238,.16); display: flex; flex-direction: column; gap: 9px; font-size: 14.5px; color: rgba(255,245,238,.7); }
.contact-card .hours .row { display: flex; justify-content: space-between; gap: 16px; }
.contact-card .hours .row .val { color: var(--cream); font-weight: 600; }
.contact-card .hours .row .oncall { color: var(--accent); font-weight: 600; }

/* ============ FOOTER ============ */
footer.site {
  background: var(--navy); color: rgba(255,245,238,.7);
  padding: clamp(56px,6vw,84px) 24px 120px;
}
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 44px; }
.footer-brand { flex: 1 1 300px; min-width: 250px; }
.footer-brand img { height: 46px; width: 273px; object-fit: contain; display: block; }
.footer-brand p { margin: 20px 0 0; font-size: 15px; line-height: 1.7; max-width: 320px; }
.footer-brand .tag { font-family: Barlow, sans-serif; font-weight: 600; color: rgba(255,245,238,.82); }
.footer-col { flex: 1 1 200px; min-width: 150px; }
.footer-col .col-title { font-family: Barlow, sans-serif; font-weight: 700; font-size: 12.5px; letter-spacing: .2em; color: var(--cream); margin-bottom: 18px; }
.footer-col .links { display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.footer-col .links a, .footer-col .links span { color: rgba(255,245,238,.7); }
.footer-col .links a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--maxw); margin: 48px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,245,238,.12); display: flex; flex-wrap: wrap;
  gap: 12px 24px; justify-content: space-between; font-size: 13.5px; color: rgba(255,245,238,.5);
}
.footer-bottom a { color: rgba(255,245,238,.62); }
.footer-bottom a:hover { color: var(--accent); }

/* ============ MOBILE STICKY BAR ============ */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: none; gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(0,31,63,.94); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,245,238,.14);
}
.mobile-bar a { text-align: center; padding: 17px 12px; border-radius: 999px; font-weight: 700; font-size: 16px; }
.mobile-bar .mb-call { flex: 0 0 44%; border: 1px solid rgba(255,245,238,.28); color: var(--cream); }
.mobile-bar .mb-quote { flex: 1; background: var(--accent); color: #fff; }
@media (max-width: 939px) {
  .mobile-bar { display: flex; }
  footer.site { padding-bottom: 120px; }
}
@media (min-width: 940px) {
  footer.site { padding-bottom: clamp(56px,6vw,84px); }
}
