/* AMS Towing – brand-forward design (racing-flag red, not Santa Fe orange) */
:root {
  --red: #B6141A;
  --red-bright: #d42228;
  --maroon: #7a0e12;
  --maroon-deep: #5c0a0e;
  --orange: #EA6E00; /* unused legacy; prefer --red */
  --black: #000000;
  --dark: #1A1A1A;
  --charcoal: #222222;
  --gray: #F3F3F3;
  --white: #ffffff;
  --muted: #c8c8c8;
  --max: 1200px;
  --font-display: "Bebas Neue", Impact, Haettenschweiler, sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, sans-serif;
  --radius-pill: 999px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--dark);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin: 0 0 0.5em;
  text-transform: uppercase;
}
p { margin: 0 0 1em; }
.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Top utility bar (RED) —— */
.topbar {
  background: var(--red);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding: 0.55rem 0;
}
.topbar a { color: var(--white); }
.topbar a:hover { color: #ffd0d2; }
.topbar-help {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
  text-align: center;
}
.topbar-help .phone {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  font-weight: 400;
}
.topbar-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.topbar-social a,
.topbar-social .social-btn {
  display: inline-flex;
  width: 1.85rem;
  height: 1.85rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 3px;
  color: var(--white);
  background: rgba(0,0,0,0.12);
}
.topbar-social a:hover,
.topbar-social .social-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: #fff;
  color: #fff;
}
.topbar-social svg { display: block; }
.topbar-loc { opacity: 0.95; font-size: 0.78rem; }

/* —— Header / nav: solid black (all pages) —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--black);
  background-image: none;
  border-bottom: 1px solid #1a1a1a;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
.header-inner {
  display: grid;
  /* equal side columns */
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 88px;
  padding: 0.65rem 0;
  position: relative;
}
.logo {
  grid-column: 2;
  justify-self: center;
  display: block;
  line-height: 0;
  z-index: 2;
}
.logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.55));
}
.nav-toggle {
  display: none;
  grid-column: 3;
  justify-self: end;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.55);
  color: var(--white);
  width: 44px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
}
.site-nav {
  grid-column: 1 / -1;
  display: contents;
}
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.15rem;
  flex-wrap: wrap;
}
.nav-left { grid-column: 1; justify-self: start; }
.nav-right { grid-column: 3; justify-self: end; }

.site-nav > ul,
.nav-left,
.nav-right { list-style: none; }

.site-nav a {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  padding: 0.35rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0,0,0,0.45);
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffc9cb;
}
.site-nav .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.35rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.85;
  vertical-align: middle;
}
.has-dropdown { position: relative; }
.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--dark);
  border-top: 3px solid var(--red);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.18s ease;
  z-index: 50;
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dropdown a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 1.05rem;
  white-space: normal;
  text-shadow: none;
}
.dropdown a:hover { background: rgba(182, 20, 26, 0.22); color: var(--white); }

/* —— Buttons: pill shape + AMS red —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.btn-primary,
.btn-orange {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28), 0 1px 0 rgba(255,255,255,0.12) inset;
}
.btn-primary:hover,
.btn-orange:hover {
  background: #9a1015;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.32);
}
.btn-ghost,
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  box-shadow: none;
}
.btn-ghost:hover,
.btn-outline-white:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn-red {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-pill);
}
/* Primary CTA on red band → white pill for contrast */
.cta-band .btn-primary,
.cta-band .btn-orange {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
}
.cta-band .btn-primary:hover,
.cta-band .btn-orange:hover {
  background: #ffe8e9;
  color: var(--maroon-deep);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: clamp(420px, 72vh, 640px);
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--dark) center/cover no-repeat;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.hero.is-ready { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.55) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 3.5rem 0 3rem;
  max-width: 820px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  margin-bottom: 0.35em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.hero h1 .hl {
  display: inline;
  color: var(--red-bright);
  background: none;
  padding: 0;
  text-shadow:
    0 0 18px rgba(0,0,0,0.55),
    0 2px 8px rgba(0,0,0,0.65);
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
  max-width: 36em;
  margin-bottom: 1.75rem;
  color: #f0f0f0;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* —— Feature / trust band (diamond plate) —— */
.features {
  background-color: #2a2a2a;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.04) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255,255,255,0.04) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255,255,255,0.04) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255,255,255,0.04) 25%, transparent 25%);
  background-size: 16px 16px;
  background-position: 0 0, 8px 0, 8px -8px, 0 8px;
  color: var(--white);
  padding: 2.5rem 0;
  border-bottom: 4px solid var(--red);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.feature-item h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4em;
  color: var(--white);
}
.feature-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}
.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
}
.feature-icon .feature-svg {
  display: block;
  color: inherit;
}

/* —— Section heads —— */
.section {
  padding: 3.5rem 0;
}
.section-gray { background: var(--gray); }
.section-head {
  text-align: center;
  margin-bottom: 2.25rem;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  color: var(--red);
  display: inline-block;
  border: none;
  padding: 0 0 0.55rem;
  position: relative;
}
.section-head h2::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 4px;
  margin: 0.55rem auto 0;
  background: var(--red);
  border-radius: 2px;
}
.section-head p {
  max-width: 40em;
  margin: 1rem auto 0;
  color: #444;
}

/* —— Services cards —— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: flex-end;
  border: 3px solid #000;
}
.service-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: center/cover no-repeat;
  transition: transform 0.45s ease;
  will-change: transform;
}
.service-card:hover .service-bg {
  transform: scale(1.1);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.82) 100%);
  pointer-events: none;
}
.service-body {
  position: relative;
  z-index: 2;
  padding: 1.5rem 1.25rem 1.35rem;
  width: 100%;
}
.service-body h3 {
  font-size: 1.55rem;
  margin-bottom: 0.35em;
}
.service-body p {
  font-size: 0.95rem;
  color: #e8e8e8;
  margin-bottom: 0.85rem;
}
.learn-more {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--red);
  font-size: 1.1rem;
}
.learn-more:hover { color: var(--red-bright); }

/* —— Mid red CTA —— */
.cta-band {
  background: var(--red);
  color: var(--white);
  padding: 2.5rem 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.35em;
}
.cta-band p { margin-bottom: 1.25rem; font-size: 1.1rem; }
.cta-band .phone-xl {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.06em;
  display: inline-block;
  margin-bottom: 1rem;
}
.cta-band .phone-xl:hover { color: #ffd0d2; }

/* —— About / main content —— */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
.about-grid h2 {
  color: var(--dark);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  border: none;
  padding: 0;
  text-align: left;
}
.about-grid h2 span { color: var(--red); }
.about-media {
  min-height: 280px;
  background: var(--dark) center/cover no-repeat;
  box-shadow: 8px 8px 0 var(--red);
}

/* —— Why choose —— */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.why-card {
  background: var(--white);
  border-top: 4px solid var(--red);
  padding: 1.5rem 1.25rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}
.why-card h3 {
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 0.4em;
}
.why-card p { margin: 0; color: #555; font-size: 0.95rem; }

/* —— Reviews —— */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.review-card {
  background: var(--white);
  border-left: 4px solid var(--red);
  padding: 1.5rem 1.35rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.review-card blockquote {
  margin: 0;
  font-size: 1rem;
  color: #333;
}
.review-card footer {
  margin-top: 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  font-size: 1.1rem;
  color: var(--red);
}
.review-card cite {
  font-style: normal;
  color: #777;
  font-family: var(--font-body);
  font-size: 0.85rem;
  margin-left: 0.35rem;
}

/* —— Locations —— */
.locations {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0;
}
.locations h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 1.75rem;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.loc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem;
}
.loc-card h3 {
  font-size: 1.35rem;
  color: var(--red);
  margin-bottom: 0.4em;
}
.loc-card h3 a {
  color: inherit;
}
.loc-card h3 a:hover {
  color: var(--red-bright);
  text-decoration: underline;
}
.loc-map {
  margin-top: 0.35rem !important;
  font-size: 0.9rem;
}
.loc-map a {
  color: var(--red) !important;
  font-weight: 700;
}
.loc-map a:hover { color: var(--red-bright) !important; }
.loc-map em { color: #aaa; font-style: normal; font-size: 0.85em; }
.loc-card p { margin: 0 0 0.35em; font-size: 0.95rem; color: #ddd; }
.loc-card a { color: var(--white); font-weight: 600; }
.loc-card a:hover { color: var(--red-bright); }

/* —— Footer —— */
.site-footer {
  background: #111;
  color: #ccc;
  padding: 3rem 0 1.5rem;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}
.site-footer a:hover { color: #ff8a8e; }
.site-footer ul li { margin-bottom: 0.4rem; }
.footer-brand p { max-width: 28em; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #888;
}

.footer-map iframe {
  display: block;
  width: 100%;
  min-height: 220px;
  height: 240px;
  border: 0;
  border-radius: 4px;
  background: #222;
}



/* —— Responsive —— */
@media (max-width: 992px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }
  .logo { grid-column: 1; justify-self: start; }
  .logo img { height: 58px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: block;
    grid-column: 1 / -1;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background-color: var(--maroon);
    background-image: inherit;
    background-size: inherit;
    background-position: inherit;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 2px solid var(--maroon-deep);
  }
  .site-nav.is-open { max-height: 80vh; overflow-y: auto; }
  .nav-left,
  .nav-right {
    display: block;
    grid-column: auto;
    justify-self: stretch;
    padding: 0.5rem 1rem 1rem;
  }
  .nav-right { padding-top: 0; }
  .site-nav > .nav-left a,
  .site-nav > .nav-right a,
  .has-dropdown > a {
    display: flex;
    width: 100%;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .has-dropdown .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    border-top: none;
    background: rgba(0,0,0,0.25);
    padding-left: 0.75rem;
  }
  .has-dropdown.is-open > .dropdown { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topbar-loc { display: none; }
}

@media (max-width: 640px) {
  .services-grid,
  .reviews-grid,
  .why-grid,
  .locations-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 480px; }
  .topbar-help { font-size: 0.75rem; }
  .topbar-help .phone { font-size: 1.15rem; }
}

/* —— Inner pages —— */
.page-hero {
  position: relative;
  min-height: 220px;
  background: var(--dark) center/cover no-repeat;
  display: block;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.45));
  pointer-events: none;
}
.page-hero-content { display: none; }
.page-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--red);
  margin: 0 0 1.25rem;
  text-align: left;
}
.page-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--red);
  margin-top: 0.55rem;
}
.article-page {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.article-inner {
  max-width: 920px;
}
.article-block {
  margin-bottom: 2.25rem;
}
.article-block h2 {
  color: var(--red);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-top: 0.5rem;
}
.article-block h3 {
  font-size: 1.35rem;
  color: var(--dark);
  text-transform: none;
  letter-spacing: 0.02em;
  font-family: var(--font-body);
  font-weight: 700;
}
.content-image {
  width: 100%;
  max-width: 640px;
  margin: 0 0 1.25rem;
  border: 3px solid #000;
  box-shadow: 6px 6px 0 var(--red);
}
.content-image-sm {
  max-width: 320px;
  margin-inline: auto;
  box-shadow: none;
  border: none;
}
.move-over-wrap { text-align: center; margin-top: 2rem; }
.content-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  margin: 1rem 0 1.5rem;
}
.content-lists-3 { grid-template-columns: repeat(3, 1fr); }
.content-lists ul,
.single-list,
.svc-group ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}
.content-lists li,
.single-list li,
.svc-group li {
  margin-bottom: 0.35rem;
}
.list-group-title {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  color: var(--red);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  font-style: normal;
}
.svc-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1rem 0 1.5rem;
}
.lead-center {
  text-align: center;
  font-size: 1.15rem;
  max-width: 40em;
  margin: 0 auto 1.5rem;
}
.gallery-hint {
  text-align: center;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.fleet-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.gallery-item {
  display: block;
  overflow: hidden;
  border: 2px solid #ddd;
  background: #eee;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* hover in lightbox block */
.asset-note {
  font-size: 0.85rem;
  color: #777;
  margin-top: 1.5rem;
}
.related-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}
.related-list a {
  display: block;
  text-align: center;
  padding: 1rem;
  background: var(--white);
  border-top: 4px solid var(--red);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.related-list a:hover { color: var(--red); }
.site-nav a[aria-current="page"] {
  color: var(--red);
  border-bottom: 2px solid var(--red);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-address {
  font-style: normal;
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
  line-height: 1.5;
}
.contact-address a { color: var(--red); font-weight: 600; }
.contact-address a:hover { color: var(--red-bright); }
.contact-form .form-group { margin-bottom: 1rem; }
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}
.contact-form .req { color: #888; font-weight: 400; font-size: 0.85em; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-note { font-size: 0.95rem; color: #555; }
.thank-you-banner {
  background: #1a7a3a;
  color: #fff;
  padding: 1.25rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.callout-red {
  text-align: center;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
.review-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.review-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: var(--gray);
  border-top: 4px solid var(--red);
}
.review-link-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}
.directory-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.directory-list li {
  background: var(--gray);
  padding: 0.4rem 0.75rem;
  font-size: 0.9rem;
}
.directory-list a:hover { color: var(--red); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.review-widget-wrap { margin: 1.5rem 0; min-height: 80px; }

@media (max-width: 992px) {
  .content-lists-3,
  .svc-groups,
  .fleet-gallery,
  .related-list,
  .review-links-grid,
  .contact-layout { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .content-lists,
  .content-lists-3,
  .svc-groups,
  .fleet-gallery,
  .related-list,
  .review-links-grid,
  .contact-layout { grid-template-columns: 1fr; }
}


.gallery-item {
  cursor: zoom-in;
  transition: border-color 0.2s, transform 0.2s;
}
.gallery-item:hover {
  border-color: var(--red);
  transform: scale(1.02);
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 4rem;
}
.lightbox[hidden] { display: none !important; }
.lightbox-img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 3px solid #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(182,20,26,0.95);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.75rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close { top: 1rem; right: 1rem; font-size: 2rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--red-bright); }
.lightbox-caption {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: #ddd;
  margin: 0;
  font-size: 0.95rem;
}
body.lightbox-open { overflow: hidden; }
@media (max-width: 700px) {
  .lightbox { padding: 3.5rem 0.75rem; }
  .lightbox-prev { left: 0.35rem; }
  .lightbox-next { right: 0.35rem; }
}

/* —— Service area regions —— */
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
  margin: 1.25rem 0 1.5rem;
}
.region-block h3 {
  font-size: 1.1rem;
  color: var(--red);
  text-transform: none;
  letter-spacing: 0.02em;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--gray);
}
.region-block ul {
  list-style: disc;
  padding-left: 1.15rem;
}
.region-block li {
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

/* —— FAQ accordion —— */
.faq-list { margin: 1.25rem 0 0; }
.faq-item { border-bottom: 1px solid #e2e2e2; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  cursor: pointer;
}
.faq-question:hover,
.faq-question:focus-visible { color: var(--red); }
.faq-icon {
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid var(--red);
  border-radius: 50%;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--red);
  transform: translate(-50%, -50%);
}
.faq-icon::before { width: 10px; height: 2px; }
.faq-icon::after { width: 2px; height: 10px; transition: transform 0.2s ease; }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}
.faq-answer p {
  padding: 0 0 1.1rem;
  margin: 0;
  color: #444;
}

@media (max-width: 992px) {
  .region-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .region-grid { grid-template-columns: 1fr; }
}

