/* =========================================================
   VETHAULER — DESIGN TOKENS
   Palette: bright trailer blue, deep navy, white, subtle red
   Type: Anton (display) / Oswald (labels+headings) / Inter (body)
   Signature motif: chevron stripe (trailer safety chevrons / shield)
   ========================================================= */
:root{
  --blue:        #0C63E7;
  --blue-dark:   #084EBA;
  --blue-deep:   #063a8a;
  --navy:        #0A1B33;
  --navy-2:      #0F2645;
  --navy-3:      #142F55;
  --white:       #FFFFFF;
  --off-white:   #F5F7FA;
  --mist:        #EDF1F6;
  --red:         #C8102E;
  --red-dark:    #9C0C22;
  --steel:       #5B6472;
  --steel-light: #8A93A2;
  --border:      #E2E7EF;
  --star:        #C9D2DC;

  --font-display: 'Anton', Impact, sans-serif;
  --font-head:    'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-sm: 0 2px 8px rgba(10,27,51,0.08);
  --shadow-md: 0 8px 24px rgba(10,27,51,0.12);
  --shadow-lg: 0 20px 48px rgba(10,27,51,0.22);

  --header-h: 78px;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: var(--header-h); overflow-x: hidden; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  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; margin:0; padding:0; }
h1,h2,h3,h4{ margin:0; font-family: var(--font-head); }
p{ margin:0 0 1em; }
p:last-child{ margin-bottom:0; }
button{ font-family: inherit; cursor:pointer; }
input, select, textarea{ font-family: inherit; font-size: 1rem; }

.skip-link{
  position:absolute; left:-999px; top:0; background:var(--navy); color:var(--white);
  padding:12px 20px; z-index:200; border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; }

:focus-visible{
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

/* Author component classes (e.g. .field{display:flex}) would otherwise
   beat the UA [hidden] rule at equal specificity — force it to win. */
[hidden]{ display: none !important; }

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.section{ padding: 96px 0; }
.section-inner{ max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section-navy{ background: var(--navy); color: var(--white); }
.section-tint{ background: var(--off-white); }

.eyebrow{
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-size: 0.82rem;
  margin: 0 0 12px;
}
.eyebrow-light{ color: #6FA6FF; }

.section-title{
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  letter-spacing: -0.01em;
  color: var(--navy);
  max-width: 720px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.title-light{ color: var(--white); }

.section-lede{
  font-size: 1.08rem;
  color: var(--steel);
  max-width: 620px;
  margin-bottom: 48px;
}
.section-navy .section-lede{ color: #AFC0DA; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn svg{ flex-shrink:0; }
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }

.btn-sm{ padding: 10px 18px; font-size: 0.82rem; }
.btn-md{ padding: 13px 26px; font-size: 0.88rem; }
.btn-lg{ padding: 17px 30px; font-size: 0.95rem; }
.btn-block{ width:100%; }

.btn-primary{ background: var(--blue); color: var(--white); }
.btn-primary:hover{ background: var(--blue-dark); box-shadow: var(--shadow-sm); }

.btn-red{ background: var(--red); color: var(--white); box-shadow: 0 6px 18px rgba(200,16,46,0.35); }
.btn-red:hover{ background: var(--red-dark); }

.btn-white-solid{ background: var(--white); color: var(--navy); }
.btn-white-solid:hover{ background: var(--mist); }

.btn-outline-white{ background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline-white:hover{ background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline-navy{ background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover{ background: var(--navy); color: var(--white); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner{
  max-width: 1280px; margin:0 auto; padding: 0 24px;
  height: 100%;
  display:flex; align-items:center; justify-content:space-between; gap: 24px;
}
.brand{ display:flex; align-items:center; flex-shrink:0; }
.brand-logo{ height: 58px; width:auto; }

.main-nav{ display:flex; align-items:center; gap: 30px; flex: 1; justify-content:center; }
.main-nav a{
  font-family: var(--font-head); font-weight: 500; font-size: 0.92rem;
  text-transform: uppercase; letter-spacing: 0.5px; color: var(--navy);
  position: relative; padding: 6px 2px;
}
.main-nav a::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:2px;
  background: var(--red); transform: scaleX(0); transition: transform 0.2s ease;
}
.main-nav a:hover::after{ transform: scaleX(1); }

.header-actions{ display:flex; align-items:center; gap:18px; flex-shrink:0; }
.header-phone{
  display:flex; align-items:center; gap:8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; color: var(--navy);
}
.header-phone svg{ color: var(--red); }

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width: 40px; height: 40px; background:none; border:none; padding:0;
}
.nav-toggle span{ display:block; height:2px; background: var(--navy); border-radius:2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  overflow: hidden;
  background: linear-gradient(112deg, var(--navy) 0%, var(--navy) 42%, var(--blue-deep) 42%, var(--blue) 100%);
  padding: 84px 0 64px;
  min-height: 86vh;
  display:flex; align-items:center;
}
.hero-chevrons{
  position:absolute; inset:0; z-index:0; opacity:0.10; pointer-events:none;
}
.hero-chevrons .chevron{
  position:absolute; width: 220%; height: 90px;
  border-top: 3px solid var(--white);
  clip-path: polygon(0 0, 4% 0, 54% 100%, 50% 100%);
}
.hero-chevrons .chevron:nth-child(1){ top:8%; left:-40%; }
.hero-chevrons .chevron:nth-child(2){ top:26%; left:-55%; }
.hero-chevrons .chevron:nth-child(3){ top:44%; left:-70%; }
.hero-chevrons .chevron:nth-child(4){ top:62%; left:-45%; }
.hero-chevrons .chevron:nth-child(5){ top:80%; left:-60%; }
.hero-chevrons .chevron:nth-child(6){ top:98%; left:-30%; }

.hero-inner{
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto; padding: 0 28px;
  text-align:center;
}

.badge{
  display:inline-flex; align-items:center; gap:9px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-family: var(--font-head); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  font-size: 0.8rem;
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.badge svg{ color: var(--red); }

.hero-title{
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  font-size: clamp(2rem, 6vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  overflow-wrap: break-word;
}
.hero-title span{
  display:block;
  color: #FFD9DF;
  background: linear-gradient(90deg, var(--white), #DCEBFF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub{
  color: rgba(255,255,255,0.9);
  font-size: 1.12rem;
  max-width: 640px;
  margin: 0 auto 38px;
}

.hero-ctas{
  display:flex; flex-wrap:wrap; justify-content:center; gap:14px;
  margin-bottom: 42px;
}

.hero-trust{
  display:flex; flex-wrap:wrap; justify-content:center; gap: 12px 28px;
}
.hero-trust li{
  color: rgba(255,255,255,0.88);
  font-family: var(--font-head); font-size: 0.82rem; letter-spacing: 0.5px; text-transform: uppercase;
  position: relative; padding-left: 20px;
}
.hero-trust li::before{
  content:''; position:absolute; left:0; top:50%; transform: translateY(-50%);
  width:9px; height:9px; border-radius:50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.25);
}

/* =========================================================
   CHEVRON DIVIDER (signature motif, reused between sections)
   ========================================================= */
.chevron-divider{
  height: 26px;
  background:
    linear-gradient(135deg, transparent 48%, var(--red) 48%, var(--red) 52%, transparent 52%) 0 0/44px 26px repeat-x,
    var(--white);
  position: relative;
}
.chevron-divider::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, transparent 48%, var(--navy) 48%, var(--navy) 52%, transparent 52%) 0 0/44px 26px repeat-x;
  opacity: 0.55;
  transform: translateX(11px);
}

/* =========================================================
   STATS STRIP
   ========================================================= */
.stats{ background: var(--navy-2); border-top: 1px solid rgba(255,255,255,0.08); }
.stats-inner{
  max-width: 1080px; margin:0 auto; padding: 44px 28px;
  display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align:center;
}
.stat-num{
  display:block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--white);
  line-height:1;
  margin-bottom: 8px;
}
.stat-label{
  font-family: var(--font-head); font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: #93A5C2;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.service-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-icon{
  width: 56px; height:56px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.service-icon svg{ width: 30px; height:30px; }
.service-card h3{
  font-size: 1.18rem; text-transform: uppercase; letter-spacing: 0.3px;
  margin-bottom: 10px; color: var(--navy);
}
.service-card p{ color: var(--steel); font-size: 0.96rem; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.steps{
  display:grid; grid-template-columns: repeat(3,1fr); gap: 40px;
  position: relative;
}
.step{ position: relative; padding-left: 8px; }
.step-num{
  display:block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--blue);
  opacity: 0.9;
  line-height:1;
  margin-bottom: 14px;
}
.step h3{
  color: var(--white); text-transform: uppercase; font-size: 1.15rem; letter-spacing:0.4px;
  margin-bottom: 10px;
}
.step p{ color: #AFC0DA; font-size: 0.96rem; }

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid{
  display:grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items:center;
}
.about-copy p{ color: var(--steel); font-size: 1.03rem; }
.about-points{ margin-top: 26px; display:flex; flex-direction:column; gap: 14px; }
.about-points li{
  display:flex; align-items:flex-start; gap:12px;
  font-family: var(--font-head); font-weight:500; font-size: 0.98rem; color: var(--navy);
}
.about-points svg{ color: var(--red); flex-shrink:0; margin-top:1px; }

.about-media-card{
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.1;
}
.about-media-logo{ width: 78%; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35)); }
.about-media-caption{
  text-align:center; color: var(--steel-light); font-size: 0.86rem; margin-top: 16px;
  font-style: italic;
}

/* =========================================================
   BEFORE / AFTER GALLERY (signature interactive element)
   ========================================================= */
.ba-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.ba-slider{ margin:0; }
.ba-frame{
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  cursor: ew-resize;
  background: var(--mist);
  user-select: none;
}
.ba-frame img{ position:absolute; inset:0; width:100%; height:100%; object-fit: cover; }
.ba-before-wrap{
  position:absolute; inset:0; width:50%; overflow:hidden;
}
.ba-before-wrap img{ width: var(--frame-w, 100%); max-width:none; height:100%; object-fit:cover; }
.ba-handle{
  position:absolute; top:0; bottom:0; width:0; z-index:3;
  transform: translateX(-50%);
  pointer-events:none;
}
.ba-handle::before{
  content:''; position:absolute; top:0; bottom:0; left:0; width:3px;
  background: var(--white); transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}
.ba-handle-grip{
  position:absolute; top:50%; left:0; transform: translate(-50%,-50%);
  width:38px; height:38px; border-radius:50%;
  background: var(--white); color: var(--navy);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-sm);
}
.ba-range{
  position:absolute; inset:0; width:100%; height:100%;
  margin:0; opacity:0; cursor: ew-resize; z-index:4;
  -webkit-appearance:none; appearance:none;
}
.ba-tag{
  position:absolute; top:12px;
  font-family: var(--font-head); font-weight:600; font-size:0.7rem; letter-spacing:1px; text-transform:uppercase;
  padding: 5px 11px; border-radius: 4px; z-index:2;
  color:var(--white);
}
.ba-tag-before{ left:12px; background: rgba(10,27,51,0.72); }
.ba-tag-after{ right:12px; background: var(--blue); }
.ba-slider figcaption{
  margin-top:14px; font-family: var(--font-head); font-weight:500; font-size:0.92rem; color: var(--navy);
  text-align:center;
}
.gallery-note{
  text-align:center; color: var(--steel-light); font-size:0.9rem; margin-top: 36px; font-style:italic;
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews-grid{
  display:grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.review-card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
}
.review-stars{ color: var(--red); font-size: 1.1rem; letter-spacing:3px; margin-bottom: 14px; }
.review-card p{ color: var(--navy); font-size: 1rem; margin-bottom: 20px; }
.review-author{ display:flex; flex-direction:column; }
.review-name{ font-family: var(--font-head); font-weight:600; font-size:0.92rem; }
.review-loc{ color: var(--steel-light); font-size: 0.82rem; }

/* =========================================================
   SERVICE AREA
   ========================================================= */
.service-area-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items:center;
}
.service-area-copy{ color: #AFC0DA; margin-bottom: 30px; font-size: 1.03rem; }
.service-area-list{
  display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px 24px;
}
.service-area-list li{
  font-family: var(--font-head); font-weight:500; letter-spacing:0.3px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  color: var(--white);
  position:relative; padding-left:36px;
}
.service-area-list li::before{
  content:''; position:absolute; left:14px; top:50%; transform: translateY(-50%);
  width:7px; height:7px; background: var(--red); border-radius:50%;
}

/* =========================================================
   QUOTE FORM
   ========================================================= */
.quote-wrap{ position: relative; max-width: 760px; }
.quote-form{
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display:flex; flex-direction:column; gap: 22px;
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field{ display:flex; flex-direction:column; gap: 8px; }
.field label, .stairs-field legend{
  font-family: var(--font-head); font-weight:600; font-size:0.86rem;
  text-transform: uppercase; letter-spacing:0.4px; color: var(--navy);
  padding:0;
}
.req{ color: var(--red); }
.req-optional{ color: var(--steel-light); text-transform:none; font-weight:400; letter-spacing:0; font-size:0.82rem; }

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"],
.field input[type="number"],
.field select,
.field textarea{
  border: 1.5px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  color: var(--navy);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(12,99,231,0.15);
}
.field textarea{ resize: vertical; min-height: 96px; }

.stairs-field{ border:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.radio-group{ display:flex; flex-wrap:wrap; gap: 10px; }
.radio-pill{
  display:flex; align-items:center; gap:8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.radio-pill input{ accent-color: var(--blue); }
.radio-pill:has(input:checked){
  border-color: var(--blue);
  background: rgba(12,99,231,0.07);
  font-weight:600;
}
.stairs-detail{ max-width: 260px; }

.upload-zone{
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 34px 20px;
  text-align:center;
  color: var(--steel);
  cursor:pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.upload-zone svg{ margin: 0 auto 10px; color: var(--blue); }
.upload-zone p{ margin: 0; }
.upload-zone strong{ color: var(--navy); }
.upload-hint{ font-size: 0.82rem; color: var(--steel-light); margin-top:4px !important; }
.upload-zone:hover, .upload-zone.dragover{
  border-color: var(--blue);
  background: rgba(12,99,231,0.04);
}

.photo-previews{
  display:flex; flex-wrap:wrap; gap: 12px; margin-top: 14px;
}
.photo-thumb{
  position:relative; width: 84px; height: 84px;
  border-radius: var(--radius-sm); overflow:hidden;
  border: 1px solid var(--border);
}
.photo-thumb img{ width:100%; height:100%; object-fit:cover; }
.photo-thumb button{
  position:absolute; top:3px; right:3px;
  width:20px; height:20px; border-radius:50%;
  background: rgba(10,27,51,0.75); color:var(--white);
  border:none; font-size: 13px; line-height:1;
  display:flex; align-items:center; justify-content:center;
}

.form-fallback{ text-align:center; font-size: 0.88rem; color: var(--steel); }
.form-fallback a{ color: var(--blue); font-weight:600; }

.form-error{
  background: #FDEEEF;
  border: 1.5px solid var(--red);
  color: var(--red-dark);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.92rem;
  text-align:center;
}
.form-error a{ color: var(--red-dark); font-weight:700; text-decoration: underline; }

.quote-success{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align:center;
}
.quote-success svg{ color: var(--blue); margin: 0 auto 18px; }
.quote-success h3{ font-size:1.4rem; text-transform:uppercase; margin-bottom:12px; color:var(--navy); }
.quote-success p{ color: var(--steel); max-width: 460px; margin-left:auto; margin-right:auto; }
.quote-success-sub{ margin-top:10px !important; margin-bottom: 26px !important; }
.quote-success-sub a{ color: var(--blue); font-weight:600; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: var(--navy); color: #AFC0DA; padding: 72px 0 0; }
.footer-inner{
  max-width: 1180px; margin:0 auto; padding: 0 28px 56px;
  display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
}
.footer-logo-plaque{
  display:inline-flex; background: var(--white); border-radius: var(--radius-md);
  padding: 10px 16px; margin-bottom: 18px; box-shadow: var(--shadow-sm);
}
.footer-logo{ height: 54px; }
.footer-brand p{ font-size:0.92rem; max-width: 280px; }
.footer-license{ margin-top: 12px !important; color: #6FA6FF; font-family: var(--font-head); font-size:0.8rem; letter-spacing:0.4px; text-transform:uppercase; }

.footer-col h4{
  color: var(--white); text-transform: uppercase; font-size: 0.88rem; letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer-col ul{ display:flex; flex-direction:column; gap: 11px; }
.footer-col a:hover{ color: var(--white); }
.footer-col li{ font-size: 0.92rem; }

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 28px;
  max-width: 1180px; margin: 0 auto;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px;
  font-size: 0.82rem; color: #6E7F9C;
}

/* =========================================================
   MOBILE STICKY CALL BAR
   ========================================================= */
.mobile-call-bar{
  display:none;
  position: fixed; left:0; right:0; bottom:0; z-index: 150;
  grid-template-columns: repeat(3,1fr);
  background: var(--navy);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.25);
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
}
.mobile-call-btn{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px;
  font-family: var(--font-head); font-weight:600; font-size:0.72rem; text-transform:uppercase; letter-spacing:0.3px;
  padding: 9px 4px;
  border-radius: var(--radius-sm);
  color: var(--white);
}
.mobile-call-btn.call{ background: var(--red); }
.mobile-call-btn.text{ background: var(--navy-3); border:1px solid rgba(255,255,255,0.18); }
.mobile-call-btn.quote{ background: var(--blue); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px){
  .about-grid, .service-area-grid{ grid-template-columns: 1fr; gap: 44px; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .ba-grid{ grid-template-columns: repeat(2, 1fr); }
  .reviews-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; gap: 34px; }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px){
  .main-nav{ display:none; }
  .header-phone span{ display:none; }
  .nav-toggle{ display:flex; }

  .site-header.nav-open .main-nav{
    display:flex; position:absolute; top: var(--header-h); left:0; right:0;
    background: var(--white); flex-direction:column; align-items:flex-start;
    padding: 20px 28px 28px; gap: 4px; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .site-header.nav-open .main-nav a{ padding: 12px 0; width:100%; }

  .mobile-call-bar{ display:grid; }
  body{ padding-bottom: 70px; }
}

@media (max-width: 700px){
  .section{ padding: 64px 0; }
  .services-grid{ grid-template-columns: 1fr; }
  .ba-grid{ grid-template-columns: 1fr; }
  .service-area-list{ grid-template-columns: 1fr 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .quote-form{ padding: 26px 20px; }
  .stats-inner{ grid-template-columns: repeat(2,1fr); gap: 30px 20px; }
  .hero{ padding: 56px 0 44px; }
  .hero-ctas .btn{ width:100%; }
  .hero-ctas{ flex-direction:column; }
  .footer-inner{ grid-template-columns: 1fr; gap: 34px; padding-bottom:40px; }
  .footer-bottom{ flex-direction:column; text-align:center; }
}

@media (max-width: 420px){
  .brand-logo{ height: 48px; }
  .header-inner{ padding: 0 16px; }
  .section-inner{ padding: 0 20px; }
  .hero-title{ font-size: 1.9rem; letter-spacing: 0.2px; }
}
