:root {
  --navy: #0d2347;
  --navy-2: #17315f;
  --gold: #f0b323;
  --gold-deep: #d99d12;
  --ink: #152033;
  --text: #2a3344;
  --muted: #6e7788;
  --bg: #f7f6f2;
  --card: #ffffff;
  --line: #d9dde7;
  --shadow: 0 14px 28px rgba(14, 24, 43, 0.10);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 78px 0; }
.section-tint { background: linear-gradient(180deg, #ffffff 0%, #f1f4f9 100%); }
.center { text-align: center; }
.center-actions { text-align: center; margin-top: 28px; }

h1, h2 {
  margin: 0 0 14px;
  font-family: 'Libre Baskerville', Georgia, serif;
  color: var(--navy);
  line-height: 1.05;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.35rem; }
p { margin: 0 0 14px; }

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.83rem;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 35, 71, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--gold);
}
.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 90px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo { height: 90;
  width: auto; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { color: #fff; font-family: 'Libre Baskerville', Georgia, serif; font-size: 2rem; line-height: 1; }
.brand-sub { color: var(--gold); font-weight: 800; letter-spacing: 0.22em; font-size: 0.9rem; margin-top: 4px; }
.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.site-nav a {
  color: #fff;
  font-weight: 700;
}
.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 15px 22px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.header-call,
.btn-primary {
  background: linear-gradient(180deg, #f7c846 0%, var(--gold) 100%);
  color: #0f1730;
  box-shadow: 0 12px 20px rgba(240, 179, 35, 0.25);
}
.btn-secondary {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--line);
}
.header-call:hover,
.btn:hover { transform: translateY(-2px); }

.menu-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 0;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  margin: 5px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 52px;
  background:
    radial-gradient(circle at 85% 20%, rgba(240, 179, 35, 0.11), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f8f6f2 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: 120px;
  width: 560px;
  height: 340px;
  background: url('images/truck-job.jpg') center/cover no-repeat;
  opacity: 0.07;
  filter: grayscale(100%);
  pointer-events: none;
  border-radius: 40px;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 30px;
}
.hero-visual { display: flex; justify-content: center; }
.hero-mascot { max-height: 520px; filter: drop-shadow(0 18px 30px rgba(19, 34, 64, 0.16)); }
.lead { font-size: 1.25rem; color: var(--ink); max-width: 630px; }
.service-area { font-size: 1.1rem; color: var(--text); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 18px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}
.trust-row span::before {
  content: "•";
  color: var(--gold-deep);
  margin-right: 8px;
}
.trust-row span:first-child::before { content: ""; margin: 0; }

.proof-strip {
  padding: 0 0 18px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.proof-card {
  background: #fff;
  padding: 20px 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(217, 221, 231, 0.9);
}
.proof-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
}
.proof-card span { color: var(--muted); }

.section-heading { margin-bottom: 34px; }
.section-heading.center { max-width: 720px; margin: 0 auto 34px; }
.section-heading p:last-child { color: var(--muted); }
.card-grid {
  display: grid;
  gap: 22px;
}
.services-grid { grid-template-columns: repeat(4, 1fr); }
.info-card,
.review-card,
.pricing-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(217, 221, 231, 0.9);
}
.info-card {
  padding: 24px;
}
.info-card p { color: var(--muted); }

.pricing-grid { grid-template-columns: repeat(2, 1fr); }
.pricing-card { padding: 0; overflow: hidden; }
.pricing-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  padding: 22px 24px;
  background: linear-gradient(180deg, #f9cc56 0%, #f0b323 100%);
}
.pricing-card p {
  padding: 18px 24px 24px;
  margin: 0;
  color: var(--text);
}
.pricing-card .price {
  color: #16203a;
  font-size: 1rem;
  text-align: right;
}
.pricing-card .price strong {
  font-size: 1.7rem;
  display: block;
  line-height: 1;
}
.pricing-card.featured {
  outline: 3px solid rgba(240, 179, 35, 0.28);
}
.pricing-note {
  text-align: center;
  color: var(--muted);
  margin-top: 18px;
}

.before-after-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ba-image-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
}
.ba-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}
.badge.before { background: #fff; color: var(--navy); }
.badge.after { background: linear-gradient(180deg, #f9cc56 0%, #f0b323 100%); color: #11182a; }
.results-caption {
  margin-top: 20px;
  text-align: center;
  color: var(--muted);
}

.google-reviews-widget {
  margin-bottom: 24px;
}
.widget-placeholder {
  background: #fff;
  border: 2px dashed #cbd5e5;
  border-radius: 20px;
  padding: 28px;
  text-align: center;
}
.widget-placeholder strong {
  display: block;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.review-grid { grid-template-columns: repeat(3, 1fr); }
.review-card { padding: 24px; }
.review-card .stars { color: var(--gold-deep); font-size: 1.35rem; margin-bottom: 12px; }
.review-card span { color: var(--muted); font-weight: 700; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.contact-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.contact-points a {
  font-weight: 700;
  color: var(--navy);
}
.quote-form {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 24px;
  display: grid;
  gap: 14px;
}
.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid #cfd6e3;
  font: inherit;
  background: #fff;
}
.quote-form textarea { resize: vertical; }
.btn-block { width: 100%; border: 0; cursor: pointer; }

.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 28px 0 96px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.footer-grid p { color: rgba(255,255,255,0.75); margin-top: 4px; }
.footer-grid a { display: block; color: #fff; font-weight: 700; margin: 6px 0; }

.sticky-call {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 999;
  display: none;
  background: linear-gradient(180deg, #f7c846 0%, var(--gold) 100%);
  color: #0f1730;
  text-align: center;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 16px 26px rgba(14, 24, 43, 0.24);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .nav-wrap {
    grid-template-columns: auto auto auto;
  }
  .menu-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    top: 90px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 14px;
    background: var(--navy);
    padding: 18px;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .header-call { display: none; }
  .hero-grid,
  .contact-grid,
  .before-after-block,
  .pricing-grid,
  .proof-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 42px; }
  .hero::after { display: none; }
  .hero-copy { text-align: center; }
  .hero-actions,
  .trust-row { justify-content: center; }
  .hero-mascot { max-height: 400px; }
  .ba-image-wrap { min-height: 280px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1180px); }
  .section { padding: 58px 0; }
  .brand-logo { width: 68px; }
  .brand-name { font-size: 1.6rem; }
  .services-grid,
  .review-grid { grid-template-columns: 1fr; }
  .proof-card,
  .info-card,
  .review-card,
  .pricing-card,
  .quote-form,
  .widget-placeholder { border-radius: 18px; }
  .pricing-top { flex-direction: column; }
  .pricing-card .price { text-align: left; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .sticky-call { display: block; }
  body { padding-bottom: 82px; }
}


/* Version 2 multi-page additions */
.page-hero {
  padding: 64px 0 42px;
  background: linear-gradient(180deg, #fff 0%, #f2f5fa 100%);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}
.page-hero-copy .lead,
.page-hero-copy p:last-child { max-width: 760px; }
.hero-card {
  background: #fff;
  border: 1px solid rgba(217, 221, 231, 0.9);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 28px;
}
.hero-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.hero-card li { margin-bottom: 10px; }
.hero-slim { padding: 46px 0 34px; }
.mini-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.mini-proof .proof-card { height: 100%; }
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.photo-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(217, 221, 231, 0.9);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.stack { display: grid; gap: 18px; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  padding-left: 30px;
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-deep);
  font-weight: 800;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-detail-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(217, 221, 231, 0.9);
  padding: 26px;
}
.service-detail-card h3 { margin-bottom: 10px; }
.service-detail-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.pricing-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.price-pill {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(217, 221, 231, 0.9);
  box-shadow: var(--shadow);
  padding: 18px;
  text-align: center;
}
.price-pill strong {
  display: block;
  color: var(--navy);
  font-size: 1.2rem;
}
.price-pill span {
  display: block;
  margin-top: 6px;
  color: var(--gold-deep);
  font-weight: 800;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(217, 221, 231, 0.9);
  padding: 24px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}
.contact-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(217, 221, 231, 0.9);
  padding: 26px;
}
.contact-card .contact-points { margin-top: 0; }
.service-area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  margin-top: 16px;
}
.service-area-list span {
  background: #f4f6fa;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
}
.active-link { color: var(--gold) !important; }
.cta-band {
  padding: 34px 0;
  background: var(--navy);
  color: #fff;
}
.cta-band-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.cta-band h2 { color: #fff; margin-bottom: 6px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.small-note { color: var(--muted); font-size: 0.96rem; }
@media (max-width: 920px) {
  .page-hero-grid,
  .split-section,
  .service-detail-grid,
  .about-grid,
  .contact-layout,
  .pricing-quick,
  .values-grid,
  .mini-proof { grid-template-columns: 1fr; }
  .cta-band-wrap { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .service-area-list { grid-template-columns: 1fr; }
}
.section {
  padding: 72px 0;
}

.section-tint {
  background: #f6f8fb;
}

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

.section-heading.center {
  text-align: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  margin-bottom: 10px;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.7;
}

.service-area {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.proof-strip {
  padding: 24px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.proof-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(10, 26, 47, 0.05);
}

.proof-card strong {
  display: block;
  margin-bottom: 6px;
}

.proof-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: start;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(10, 26, 47, 0.06);
}

.hero-card h3 {
  margin-top: 0;
  margin-bottom: 18px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(2, 1fr);
}

.info-card,
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(10, 26, 47, 0.05);
}

.info-card h3,
.review-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.pricing-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.price-pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(10, 26, 47, 0.05);
}

.price-pill strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.price-pill span {
  color: var(--gold);
  font-weight: 800;
}

.center-actions {
  text-align: center;
  margin-top: 28px;
}

.before-after-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
}

.ba-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 36px rgba(10, 26, 47, 0.08);
}

.ba-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
}

.badge.before {
  background: rgba(15, 23, 48, 0.88);
  color: #fff;
}

.badge.after {
  background: rgba(240, 179, 35, 0.94);
  color: #0f1730;
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.quote-split {
  align-items: center;
}

.quote-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.quote-points div {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
}

.quote-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(10, 26, 47, 0.06);
}

.quote-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 14px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid #d9dee8;
  font: inherit;
  box-sizing: border-box;
}

.form-btn {
  width: 100%;
  border: none;
  cursor: pointer;
}

.service-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 22px;
}

.service-cities span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
}

.cta-band {
  background: var(--navy);
  color: #fff;
  padding: 56px 0;
}

.cta-band-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}

.footer-grid a {
  color: #fff;
}

@media (max-width: 980px) {
  .proof-grid,
  .services-grid,
  .pricing-quick,
  .review-grid,
  .before-after-block,
  .split-section,
  .cta-band-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quote-points {
    justify-content: flex-start;
  }
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(10, 26, 47, 0.05);
}

.pricing-card-top {
  background: linear-gradient(180deg, #f7c846 0%, var(--gold) 100%);
  color: #0f1730;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
}

.pricing-card-top h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.pricing-price {
  font-weight: 800;
  font-size: 1.15rem;
  white-space: nowrap;
}

.pricing-card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
}

.pricing-card-body p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
  flex: 1;
}

.pricing-art {
  width: 120px;
  flex-shrink: 0;
}

.pricing-art svg {
  width: 100%;
  height: auto;
  display: block;
}

.pricing-art svg rect,
.pricing-art svg path,
.pricing-art svg polygon,
.pricing-art svg line {
  fill: #d9dde5;
  stroke: #2a3550;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-art svg circle {
  fill: #2a3550;
  stroke: #2a3550;
  stroke-width: 3;
}

.pricing-note {
  text-align: center;
  margin-top: 26px;
  color: var(--muted);
  font-size: 1rem;
}

@media (max-width: 980px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-price {
    white-space: normal;
  }

  .pricing-card-body {
    align-items: flex-start;
  }

  .pricing-art {
    width: 96px;
  }
}