/* =============================================
   EXPRESS HVAC NJ — MOBILE-FIRST STYLES
   Breakpoints: mobile <480 | sm 480 | md 768 | lg 1024
   Brand: Blue #003DA5 · Orange #FF6B00 · White · Black
   ============================================= */

/* ---- RESET & VARIABLES ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #003DA5;
  --blue-dark:   #002d7a;
  --blue-mid:    #0050cc;
  --orange:      #FF6B00;
  --orange-dk:   #e05e00;
  --white:       #ffffff;
  --black:       #111111;
  --gray-50:     #f8f9fb;
  --gray-100:    #f0f2f5;
  --gray-200:    #e2e6ea;
  --gray-400:    #adb5bd;
  --gray-600:    #6c757d;
  --gray-700:    #495057;
  --gray-800:    #343a40;
  --radius:      12px;
  --radius-lg:   18px;
  --shadow:      0 4px 24px rgba(0,0,0,.13);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.18);
  --t:           .22s ease;
  --max-w:       1100px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 0; /* managed by .sticky-bar-visible class via JS */
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
input, select, textarea, button { font-family: inherit; }

/* =============================================
   TYPOGRAPHY HELPERS
============================================= */
.text-orange { color: var(--orange); }

.section-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,107,0,.10);
  border: 1px solid rgba(255,107,0,.22);
  border-radius: 50px;
  padding: .26rem .85rem;
  margin-bottom: .85rem;
}

.section-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: .65rem;
}

.section-sub {
  font-size: .92rem;
  color: var(--gray-600);
  margin-bottom: 1.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.8rem 16px;
  text-align: center;
}

.cta-center { margin-top: 1.75rem; }

/* =============================================
   BUTTON SYSTEM
============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  padding: .85rem 1.6rem;
  border-radius: 50px;
  border: 2px solid var(--orange);
  box-shadow: 0 4px 18px rgba(255,107,0,.35);
  transition: var(--t);
  letter-spacing: .02em;
  white-space: nowrap;
}
.btn-primary:hover,
.btn-primary:active { background: var(--orange-dk); border-color: var(--orange-dk); transform: translateY(-2px); }

.btn-primary-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.btn-primary-white:hover { background: var(--gray-100); border-color: var(--gray-100); }

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  background: var(--blue);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  padding: .85rem 1.6rem;
  border-radius: 50px;
  border: 2px solid var(--blue);
  box-shadow: 0 4px 16px rgba(0,61,165,.28);
  transition: var(--t);
  white-space: nowrap;
}
.btn-call:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); }

.btn-call-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  padding: .83rem 1.6rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.6);
  transition: var(--t);
  white-space: nowrap;
}
.btn-call-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* =============================================
   HEADER
============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--blue);
  box-shadow: 0 2px 12px rgba(0,0,0,.28);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 16px;
  gap: .5rem;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: .4rem;
  min-width: 0;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: .2rem;
  flex-wrap: nowrap;
  min-width: 0;
}

.logo-e   { color: var(--white);  font-size: 1.15rem; letter-spacing: -.01em; white-space: nowrap; }
.logo-r   { color: var(--orange); font-size: 1.15rem; letter-spacing: -.01em; white-space: nowrap; }
.logo-badge {
  font-size: .65rem;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.12);
  border-radius: 4px;
  padding: 2px 4px;
  margin-left: 2px;
  font-weight: 700;
  letter-spacing: .06em;
  white-space: nowrap;
}

.header-mascot {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: top;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: var(--white);
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  background: var(--orange);
  padding: .45rem .85rem;
  border-radius: 50px;
  transition: var(--t);
  white-space: nowrap;
  flex-shrink: 0;
}
.header-phone:hover { background: var(--orange-dk); }
.header-phone i { font-size: .75rem; }

/* Hide phone number text on very small screens, show icon only */
@media (max-width: 359px) {
  .header-phone span { display: none; }
  .header-phone { padding: .45rem .7rem; }
  .logo-e, .logo-r { font-size: 1rem; }
}

/* =============================================
   HERO — mobile-first, stacked
============================================= */
.hero {
  position: relative;
  background:
    linear-gradient(160deg, rgba(0,20,60,.93) 0%, rgba(0,40,110,.87) 55%, rgba(0,20,60,.95) 100%),
    url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?w=1600&q=80')
    center/cover no-repeat;
  padding: 2rem 16px 2.5rem;
}

.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: center;
}

.hero-copy {
  text-align: center;
  color: var(--white);
  width: 100%;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: .28rem .9rem;
  margin-bottom: .85rem;
  max-width: 100%;
  word-break: break-word;
}
.hero-eyebrow i { margin-right: .28rem; }

.hero-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.65rem;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: .8rem;
  text-shadow: 0 2px 10px rgba(0,0,0,.2);
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Remove forced line break on mobile */
.hero-headline br { display: none; }

.hero-sub {
  font-size: .92rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 1.1rem;
  max-width: 100%;
}

/* ---- Review badge ---- */
.review-badge {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  padding: .75rem 1rem;
  margin-bottom: 1.1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.15);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.review-badge::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #ffaa00, var(--orange));
  background-size: 200%;
  animation: shimmer 2.5s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.review-badge-stars {
  display: flex;
  gap: 2px;
  font-size: .95rem;
  color: #ffd060;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(255,180,0,.5));
}

.review-badge-body {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.review-badge-count {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -.02em;
}
.review-badge-label {
  font-size: .67rem;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  white-space: normal;
  line-height: 1.3;
}

.review-badge-logos {
  display: none; /* hidden on mobile to prevent crowding */
  gap: .4rem;
  margin-left: auto;
  flex-shrink: 0;
}
.rbadge-platform {
  width: 26px;
  height: 26px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
}

.hero-trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .6rem .9rem;
}
.hero-trust-row span {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.hero-trust-row i { color: var(--orange); }

/* ---- Form card ---- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem 1.1rem 1.3rem;
  width: 100%;
  max-width: 480px;
  position: relative;
}

.progress-wrap {
  height: 5px;
  background: var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: .45rem;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 10px;
  width: 25%;
  transition: width .4s ease;
}
.step-label {
  font-size: .68rem;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: right;
}

.form-step { display: none; }
.form-step.active { display: block; }

.form-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: .35rem;
  color: var(--black);
  line-height: 1.3;
}
.form-subtitle {
  font-size: .84rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.opt-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .75rem .5rem;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  color: var(--black);
  cursor: pointer;
  transition: var(--t);
  text-align: center;
  line-height: 1.3;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.opt-btn i { color: var(--blue); font-size: .85rem; }
.opt-btn:hover,
.opt-btn:active,
.opt-btn.selected {
  border-color: var(--orange);
  background: rgba(255,107,0,.07);
  color: var(--orange);
}
.opt-btn.selected i { color: var(--orange); }
.opt-btn.full-width { grid-column: 1 / -1; }

.field-group { margin-bottom: .75rem; }
label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: .28rem;
}
.req { color: var(--orange); }

input {
  width: 100%;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  padding: .72rem .9rem;
  font-size: 1rem; /* 16px prevents iOS zoom */
  color: var(--black);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
input::placeholder { color: var(--gray-400); }
input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,61,165,.1);
}
input.has-error { border-color: #e63946; }

.err {
  display: block;
  font-size: .72rem;
  color: #e63946;
  margin-top: .22rem;
  min-height: 1em;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: .95rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .04em;
  cursor: pointer;
  transition: var(--t);
  box-shadow: 0 4px 18px rgba(255,107,0,.42);
  margin-top: .5rem;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.btn-submit:hover:not(:disabled),
.btn-submit:active:not(:disabled) { background: var(--orange-dk); transform: translateY(-1px); }
.btn-submit:disabled { opacity: .65; cursor: not-allowed; }

.form-legal {
  text-align: center;
  font-size: .7rem;
  color: var(--gray-600);
  margin-top: .55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .28rem;
}
.form-legal i { color: var(--blue); }

.btn-back {
  background: none;
  border: none;
  color: var(--gray-600);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: .85rem;
  display: none;
  align-items: center;
  gap: .28rem;
  transition: color .2s;
  touch-action: manipulation;
}
.btn-back:hover { color: var(--blue); }
.btn-back.visible { display: flex; }

.form-success { text-align: center; padding: 1rem 0; }
.success-icon { font-size: 3rem; color: #28a745; margin-bottom: .75rem; }
.form-success h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: .45rem;
}
.form-success p { font-size: .9rem; color: var(--gray-600); margin-bottom: 1.1rem; }
.btn-call-lg {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--blue);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  padding: .82rem 1.5rem;
  border-radius: 50px;
  transition: var(--t);
}
.btn-call-lg:hover { background: var(--blue-dark); }

/* =============================================
   CTA RIBBON
============================================= */
.cta-ribbon {
  background: var(--blue);
  padding: .9rem 16px;
}
.ribbon-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  text-align: center;
}
.ribbon-inner p { color: rgba(255,255,255,.9); font-size: .85rem; }
.ribbon-inner strong { color: var(--white); }
.btn-ribbon {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  padding: .58rem 1.3rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: var(--t);
}
.btn-ribbon:hover { background: var(--orange-dk); }

/* =============================================
   TRUCK / ABOUT SECTION
============================================= */
.truck-section {
  background: var(--white);
  padding: 0;
}

.truck-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.truck-copy {
  padding: 2.8rem 16px 2rem;
  text-align: center;
}

.truck-copy .section-eyebrow { margin-bottom: .85rem; }
.truck-copy .section-heading { margin-bottom: .75rem; }

.truck-body {
  font-size: .92rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 1.4rem;
}

.truck-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.6rem;
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.truck-list li {
  font-size: .88rem;
  color: var(--gray-800);
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-weight: 600;
}

.truck-list li i {
  color: var(--orange);
  font-size: .95rem;
  margin-top: .15em;
  flex-shrink: 0;
}

.truck-img-wrap {
  overflow: hidden;
  max-height: 340px;
}

.truck-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Also add footer license line */
.footer-lic {
  font-size: .68rem;
  color: rgba(255,255,255,.35);
  margin-bottom: .5rem;
  line-height: 1.6;
}

/* =============================================
   BEFORE & AFTER
============================================= */
.before-after { background: var(--gray-50); }

.ba-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.ba-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba-img-wrap { position: relative; overflow: hidden; height: 160px; }
.ba-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.ba-label {
  position: absolute;
  bottom: .5rem;
  left: .5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .65rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: .18rem .6rem;
  color: var(--white);
}
.ba-before { background: rgba(0,0,0,.6); }
.ba-after  { background: var(--orange); }

.ba-details {
  padding: .8rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .18rem;
}
.ba-details strong { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .88rem; }
.ba-details span { font-size: .75rem; color: var(--gray-600); }

/* =============================================
   SERVICES
============================================= */
.services { background: var(--white); }

.services-list {
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.svc-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--t);
}
.svc-item:last-child { border-bottom: none; }
.svc-item:hover { background: var(--gray-50); }

.svc-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .95rem;
  flex-shrink: 0;
}

.svc-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: .22rem;
}
.svc-body p { font-size: .82rem; color: var(--gray-600); line-height: 1.55; }

/* =============================================
   REVIEWS
============================================= */
.reviews { background: var(--gray-50); }

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  text-align: left;
  margin-bottom: 1.75rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.2rem;
  position: relative;
}
.review-featured {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-color: transparent;
}
.review-featured blockquote { color: rgba(255,255,255,.9); }
.review-featured footer strong { color: var(--white); }
.review-featured footer span   { color: rgba(255,255,255,.65); }
.review-featured .review-stars { color: #ffd060; }

.review-stars { color: #f5a623; font-size: .95rem; letter-spacing: .05em; margin-bottom: .55rem; }
blockquote { font-size: .85rem; color: var(--gray-800); line-height: 1.7; font-style: italic; margin-bottom: .9rem; }
.review-card footer { display: flex; align-items: center; gap: .6rem; }
.reviewer-avatar {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card footer strong { display: block; font-size: .83rem; font-weight: 700; }
.review-card footer span   { font-size: .73rem; color: var(--gray-600); }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.stat {
  background: var(--blue);
  padding: 1.1rem .7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}
.stat-n {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--white);
  line-height: 1;
}
.stat-n em { font-style: normal; color: var(--orange); font-size: 1.15rem; }
.stat-l { font-size: .65rem; color: rgba(255,255,255,.75); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; text-align: center; }

/* =============================================
   CREDENTIALS / WARRANTIES
============================================= */
.credentials { background: var(--white); }

.creds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  text-align: left;
}

.cred-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1rem .9rem;
  transition: var(--t);
}
.cred-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(0,61,165,.1); }
.cred-card > i {
  font-size: 1.35rem;
  color: var(--orange);
  margin-bottom: .5rem;
  display: block;
}
.cred-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  margin-bottom: .28rem;
  color: var(--black);
}
.cred-card p { font-size: .78rem; color: var(--gray-600); line-height: 1.55; }

/* =============================================
   SERVICE AREA — COUNTY GRID
============================================= */
.service-area { background: var(--gray-50); }

.county-area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
  margin-bottom: 1.75rem;
  text-align: left;
}

.county-area-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  border: 1px solid var(--gray-200);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  cursor: default;
}
.county-area-card:hover,
.county-area-card:focus {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  outline: none;
}

.ca-header {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .65rem .9rem;
  color: var(--white);
}
.ca-blue     { background: var(--blue); }
.ca-orange   { background: var(--orange); }
.ca-blue-mid { background: var(--blue-mid); }
.ca-header i { font-size: .85rem; opacity: .9; }
.ca-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  margin: 0;
}

.ca-towns {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .22rem .5rem;
  padding: .75rem .9rem .9rem;
}
.ca-towns li {
  font-size: .72rem;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  gap: .25rem;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}
.ca-towns li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: .68rem;
  flex-shrink: 0;
  margin-top: .05em;
}

/* =============================================
   FAQ
============================================= */
.faq { background: var(--white); }

.faq-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.75rem;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item[open] { border-color: var(--blue); }

.faq-item summary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .86rem;
  padding: .92rem 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
  background: var(--gray-50);
  transition: background var(--t), color var(--t);
  gap: .75rem;
}
.faq-item[open] summary { background: var(--blue); color: var(--white); }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; color: var(--white); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  padding: .9rem 1rem;
  font-size: .85rem;
  color: var(--gray-700);
  line-height: 1.7;
  border-top: 1px solid var(--gray-200);
}
.faq-item p strong { color: var(--black); }

/* =============================================
   FINAL CTA SECTION
============================================= */
.final-cta {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-dark) 100%);
  text-align: center;
}
.final-cta .section-wrap { padding: 2.5rem 16px; }

.white-heading { color: var(--white); }
.white-heading br { display: none; } /* no forced breaks on mobile */
.light-eyebrow { color: #ffa855; background: rgba(255,107,0,.18); border-color: rgba(255,107,0,.3); }
.white-sub {
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  margin-bottom: 1.6rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.4rem;
}
.final-cta-actions .btn-primary,
.final-cta-actions .btn-call-outline {
  width: 100%;
  max-width: 320px;
}

.final-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem 1rem;
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}
.final-badges i { color: var(--orange); margin-right: .28rem; }

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--black);
  padding: 1.75rem 16px;
  text-align: center;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-logo { justify-content: center; margin-bottom: .5rem; }
.footer-mascot {
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: top;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: var(--white);
  flex-shrink: 0;
}
.footer-tagline { font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: .65rem; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .9rem;
  transition: color var(--t);
}
.footer-phone:hover { color: var(--orange-dk); }
.footer-links-row {
  font-size: .76rem;
  color: rgba(255,255,255,.45);
  margin-bottom: .9rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .38rem;
}
.footer-links-row a { color: rgba(255,255,255,.55); transition: color var(--t); }
.footer-links-row a:hover { color: var(--orange); }
.footer-copy { font-size: .68rem; color: rgba(255,255,255,.3); }

/* =============================================
   STICKY MOBILE BAR
============================================= */
body.sticky-bar-visible { padding-bottom: 68px; }

.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -2px 16px rgba(0,0,0,.22);
}
.sticky-btn-inspect {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .38rem;
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  padding: .95rem .5rem;
  text-align: center;
  transition: background var(--t);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.sticky-btn-inspect:hover { background: var(--orange-dk); }
.sticky-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .38rem;
  background: var(--blue);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  padding: .95rem .5rem;
  text-align: center;
  transition: background var(--t);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.sticky-btn-call:hover { background: var(--blue-dark); }

/* =============================================
   REVEAL ANIMATION
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   TABLET  ≥ 480px
============================================= */
@media (min-width: 480px) {

  .review-badge-logos { display: flex; }
  .review-badge-label { white-space: nowrap; }

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

  .hero-headline { font-size: 2rem; }
  .hero-headline br { display: inline; }

  .section-heading { font-size: 1.75rem; }

  .hero { padding: 2.5rem 20px 3rem; }
  .form-card { padding: 1.6rem 1.4rem 1.4rem; }

  .ba-img-wrap { height: 185px; }

  .opt-btn { font-size: .82rem; padding: .82rem .6rem; }

  .final-cta-actions .btn-primary,
  .final-cta-actions .btn-call-outline { max-width: 280px; width: auto; }
}

/* =============================================
   TABLET LANDSCAPE / SMALL DESKTOP  ≥ 768px
============================================= */
@media (min-width: 768px) {

  body { padding-bottom: 0; }

  .mobile-sticky-bar { display: none; }

  .section-wrap { padding: 3.5rem 24px; }
  .section-heading { font-size: clamp(1.75rem, 3.5vw, 2.3rem); }

  /* Header */
  .header-inner { padding: .75rem 24px; }
  .header-mascot { width: 48px; height: 48px; }
  .logo-e, .logo-r { font-size: 1.35rem; }

  /* Hero: two-column */
  .hero { padding: 3rem 24px 3.5rem; }
  .hero-content {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    padding: 0;
  }
  .hero-copy {
    text-align: left;
    flex: 1;
    min-width: 0;
  }
  .hero-headline {
    font-size: clamp(2rem, 4vw, 2.75rem);
  }
  .hero-headline br { display: inline; }
  .hero-sub { max-width: 460px; margin-left: 0; margin-right: 0; }
  .review-badge { max-width: 400px; }
  .hero-trust-row { justify-content: flex-start; }

  .form-card {
    flex-shrink: 0;
    width: 400px;
    padding: 1.75rem 1.5rem 1.5rem;
  }

  /* CTA ribbon: row */
  .ribbon-inner { flex-direction: row; justify-content: center; gap: 1.25rem; }

  /* Truck section: side by side */
  .truck-inner {
    flex-direction: row;
    align-items: stretch;
    min-height: 380px;
  }
  .truck-copy {
    flex: 1;
    text-align: left;
    padding: 3.5rem 2.5rem 3.5rem 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .truck-body { margin-left: 0; margin-right: 0; max-width: 100%; }
  .truck-list { margin-left: 0; margin-right: 0; }
  .truck-img-wrap {
    flex: 1;
    max-height: none;
    min-height: 360px;
  }

  /* Before/after: 2 columns */
  .ba-grid { flex-direction: row; }
  .ba-card { flex: 1; }
  .ba-img-wrap { height: 210px; }

  /* Services: 2-column */
  .services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .svc-item:nth-child(odd)  { border-right: 1px solid var(--gray-200); }
  .svc-item:nth-child(5)    { border-bottom: none; }

  /* Reviews: 2-column */
  .reviews-grid { display: grid; grid-template-columns: 1fr 1fr; }

  /* Stats: 4 columns */
  .stats-row { grid-template-columns: repeat(4, 1fr); }

  /* Credentials: 3-column */
  .creds-grid { grid-template-columns: repeat(3, 1fr); }

  /* County: 3-column */
  .county-area-grid { grid-template-columns: repeat(3, 1fr); }

  /* Final CTA: row buttons */
  .final-cta-actions { flex-direction: row; justify-content: center; }
  .final-cta-actions .btn-primary,
  .final-cta-actions .btn-call-outline { width: auto; max-width: none; }

  .white-heading br { display: inline; }
}

/* =============================================
   DESKTOP  ≥ 1024px
============================================= */
@media (min-width: 1024px) {

  .hero { padding: 4rem 24px 4.5rem; }
  .hero-content { gap: 3.5rem; }
  .hero-headline { font-size: clamp(2.4rem, 3.5vw, 3rem); }

  .form-card { width: 440px; }

  .ba-img-wrap { height: 230px; }

  .section-wrap { padding: 4rem 24px; }
}
