/* ============================================
   GEERS TOWING — Premium Stylesheet
   ============================================ */

:root {
  --geers-red: #C41E3A;
  --geers-red-dark: #9E1830;
  --geers-red-light: #E8334F;
  --geers-orange: #E8620A;
  --geers-orange-light: #F59E42;
  --geers-orange-dark: #C44E00;
  --geers-charcoal: #2D2A26;
  --geers-charcoal-mid: #4A4540;
  --geers-warm-dark: #1F1B18;
  --white: #ffffff;
  --off-white: #FAF8F6;
  --light-gray: #EDE9E4;
  --text-dark: #2D2A26;
  --text-body: #4A4540;
  --text-muted: #6B6560;
  --gray: #6B6560;
  --gray-light: #9A948E;
  --navy: #2D2A26;
  --navy-light: #4A4540;
  --red-glow: rgba(196, 30, 58, 0.3);
  --orange-glow: rgba(232, 98, 10, 0.28);
  --hero-overlay: rgba(31, 27, 24, 0.82);
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 12px;
  --radius-lg: 20px;
  --navbar-top-gap: 20px;
  --navbar-top-gap-scrolled: 12px;
  --navbar-bar-height: 120px;
  --navbar-bar-height-scrolled: 86px;
  --navbar-logo-height: 96px;
  --navbar-logo-height-scrolled: 74px;
  --navbar-inner-py: 16px;
  --navbar-inner-py-scrolled: 8px;
  --navbar-inner-px: 56px;
  --navbar-inner-px-scrolled: 44px;
  --navbar-shell-radius: 28px;
  --navbar-shell-radius-scrolled: 24px;
  --navbar-height: calc(var(--navbar-top-gap) + var(--navbar-bar-height) + 16px);
  --navbar-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --navbar-duration: 0.55s;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-accent {
  color: var(--geers-red);
}

.text-glow {
  background: linear-gradient(135deg, var(--geers-red), var(--geers-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--geers-red), var(--geers-red-dark));
  color: var(--white);
  box-shadow: 0 4px 20px var(--red-glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--orange-glow);
  background: linear-gradient(135deg, var(--geers-red-light), var(--geers-red));
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.btn--outline:hover {
  border-color: var(--geers-orange);
  color: var(--white);
  background: rgba(232, 98, 10, 0.15);
}

.btn--emergency {
  background: linear-gradient(135deg, var(--geers-red), var(--geers-red-dark));
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.85rem;
  box-shadow: 0 2px 15px var(--red-glow);
}

.btn--emergency:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 25px var(--orange-glow);
  background: linear-gradient(135deg, var(--geers-red-light), var(--geers-red));
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn--xl {
  padding: 22px 48px;
  font-size: 1.15rem;
  border-radius: 60px;
}

.btn--glow {
  background: linear-gradient(135deg, var(--geers-red), var(--geers-orange));
  color: var(--white);
  font-weight: 700;
  box-shadow:
    0 0 30px var(--red-glow),
    0 0 60px var(--orange-glow),
    0 8px 32px rgba(0, 0, 0, 0.4);
  animation: pulseGlow 3s ease-in-out infinite;
}

.btn--glow:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 50px var(--red-glow),
    0 0 80px var(--orange-glow),
    0 12px 40px rgba(0, 0, 0, 0.5);
}

.btn__ring {
  position: absolute;
  inset: -4px;
  border-radius: 60px;
  border: 2px solid rgba(196, 30, 58, 0.4);
  animation: ringPulse 2s ease-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 30px var(--red-glow), 0 0 60px var(--orange-glow), 0 8px 32px rgba(0, 0, 0, 0.4); }
  50% { box-shadow: 0 0 50px var(--red-glow), 0 0 80px var(--orange-glow), 0 8px 32px rgba(0, 0, 0, 0.4); }
}

@keyframes ringPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: var(--navbar-top-gap);
  pointer-events: none;
  transition: padding-top var(--navbar-duration) var(--navbar-ease);
}

.navbar--scrolled {
  padding-top: var(--navbar-top-gap-scrolled);
}

.navbar__shell {
  pointer-events: auto;
  width: 87%;
  max-width: 1320px;
  margin: 0 auto;
  min-height: var(--navbar-bar-height);
  border-radius: var(--navbar-shell-radius);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    min-height var(--navbar-duration) var(--navbar-ease),
    border-radius var(--navbar-duration) var(--navbar-ease),
    box-shadow var(--navbar-duration) var(--navbar-ease),
    background var(--navbar-duration) var(--navbar-ease);
  will-change: opacity, box-shadow;
}

.navbar--scrolled .navbar__shell {
  min-height: var(--navbar-bar-height-scrolled);
  border-radius: var(--navbar-shell-radius-scrolled);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.14),
    0 6px 16px rgba(0, 0, 0, 0.06);
}

.navbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  min-height: var(--navbar-bar-height);
  padding: var(--navbar-inner-py) var(--navbar-inner-px) var(--navbar-inner-py) calc(var(--navbar-inner-px) + 4px);
  transition:
    min-height var(--navbar-duration) var(--navbar-ease),
    padding var(--navbar-duration) var(--navbar-ease),
    gap var(--navbar-duration) var(--navbar-ease);
}

.navbar--scrolled .navbar__inner {
  min-height: var(--navbar-bar-height-scrolled);
  padding: var(--navbar-inner-py-scrolled) var(--navbar-inner-px-scrolled) var(--navbar-inner-py-scrolled) calc(var(--navbar-inner-px-scrolled) + 4px);
  gap: 32px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: var(--navbar-logo-height);
  z-index: 10;
  margin-right: 8px;
  transition: height var(--navbar-duration) var(--navbar-ease);
}

.navbar--scrolled .navbar__logo {
  height: var(--navbar-logo-height-scrolled);
}

.navbar__logo-img {
  height: var(--navbar-logo-height);
  width: auto;
  max-width: min(300px, 36vw);
  object-fit: contain;
  display: block;
  transform-origin: center center;
  transition:
    height var(--navbar-duration) var(--navbar-ease),
    transform 0.45s var(--navbar-ease);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.navbar--scrolled .navbar__logo-img {
  height: var(--navbar-logo-height-scrolled);
}

.footer__logo-img {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transform-origin: center center;
  transition: transform 0.45s var(--navbar-ease);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .navbar__logo:hover .navbar__logo-img {
    animation: navbarLogoShake 0.55s var(--navbar-ease);
  }

  .footer__logo:hover .footer__logo-img {
    animation: logoShake 0.5s ease-in-out;
  }
}

@media (prefers-reduced-motion: reduce) {
  .navbar,
  .navbar__shell,
  .navbar__inner,
  .navbar__logo,
  .navbar__logo-img {
    transition: none;
  }

  .navbar__logo-img,
  .footer__logo-img {
    transition: none;
  }

  .navbar__logo:hover .navbar__logo-img,
  .footer__logo:hover .footer__logo-img {
    animation: none;
  }
}

@keyframes navbarLogoShake {
  0% { transform: translateX(0) scale(1); }
  14% { transform: translateX(-2px) scale(1.1); }
  28% { transform: translateX(2px) scale(1.1); }
  42% { transform: translateX(-1.5px) scale(1.1); }
  56% { transform: translateX(1.5px) scale(1.1); }
  70% { transform: translateX(-0.5px) scale(1.08); }
  84% { transform: translateX(0.5px) scale(1.08); }
  100% { transform: translateX(0) scale(1); }
}

@keyframes logoShake {
  0% { transform: translateX(0) scale(1); }
  12% { transform: translateX(-2px) scale(1.05); }
  24% { transform: translateX(2px) scale(1.05); }
  36% { transform: translateX(-2px) scale(1.05); }
  48% { transform: translateX(2px) scale(1.05); }
  60% { transform: translateX(-1px) scale(1.05); }
  72% { transform: translateX(1px) scale(1.05); }
  100% { transform: translateX(0) scale(1); }
}

.navbar__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  justify-self: center;
  transition: gap var(--navbar-duration) var(--navbar-ease);
}

.navbar--scrolled .navbar__nav {
  gap: 36px;
}

.nav-link {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  padding: 6px 2px;
  letter-spacing: 0.01em;
  transition:
    color 0.35s var(--navbar-ease),
    transform 0.35s var(--navbar-ease);
}

.navbar--scrolled .nav-link {
  font-size: 0.9rem;
  padding: 4px 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--geers-red);
  border-radius: 2px;
  transition: width 0.4s var(--navbar-ease);
}

.nav-link:hover {
  color: var(--geers-red);
  transform: translateY(-1px);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link--active {
  color: var(--geers-red);
}

.nav-link--active::after {
  width: 100%;
}

.navbar__cta.btn--emergency {
  padding: 14px 28px;
  font-size: 0.92rem;
  font-weight: 600;
  justify-self: end;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.28);
  transition:
    transform 0.4s var(--navbar-ease),
    box-shadow 0.4s var(--navbar-ease),
    background 0.4s var(--navbar-ease),
    padding 0.4s var(--navbar-ease),
    font-size 0.4s var(--navbar-ease);
}

.navbar--scrolled .navbar__cta.btn--emergency {
  padding: 11px 22px;
  font-size: 0.85rem;
}

.navbar__cta.btn--emergency:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 36px rgba(196, 30, 58, 0.42),
    0 4px 14px rgba(196, 30, 58, 0.22);
  background: linear-gradient(135deg, var(--geers-red-light), var(--geers-red));
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.navbar__toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
  transform-origin: center;
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 27, 24, 0.55) 0%, rgba(31, 27, 24, 0.4) 40%, rgba(31, 27, 24, 0.55) 100%),
    linear-gradient(90deg, rgba(31, 27, 24, 0.5) 0%, rgba(31, 27, 24, 0.15) 65%);
  pointer-events: none;
}

.hero__image {
  position: absolute;
  left: 0;
  width: 100%;
  height: 120%;
  top: -10%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatGlow 8s ease-in-out infinite;
  will-change: opacity;
  pointer-events: none;
}

.hero__glow--1 {
  width: 400px;
  height: 400px;
  background: var(--geers-red);
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.hero__glow--2 {
  width: 300px;
  height: 300px;
  background: var(--geers-orange);
  bottom: 20%;
  left: 5%;
  animation-delay: -4s;
}

@keyframes floatGlow {
  0%, 100% { opacity: 0.4; }
  33% { opacity: 0.48; }
  66% { opacity: 0.36; }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--navbar-height);
  padding-bottom: 80px;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: inherit;
  margin: 0 0 20px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--gray-light);
  margin-bottom: 28px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--geers-red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.pulse-dot--red {
  background: var(--geers-red);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
  color: var(--white);
}

.hero__title .line {
  display: block;
}

.hero__title .line--accent {
  background: linear-gradient(135deg, var(--geers-red) 0%, var(--geers-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-light);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  width: fit-content;
}

.hero-stat {
  text-align: center;
}

.hero-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--geers-red);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-stat__label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--geers-red), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   SECTIONS — SHARED
   ============================================ */

.section {
  padding: 120px 0;
  position: relative;
}

.section-header {
  margin-bottom: 64px;
  max-width: 600px;
}

.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--geers-orange);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================
   SERVICES
   ============================================ */

.services {
  background: var(--white);
  padding: 100px 0 120px;
}

.services__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.services__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--geers-red);
  margin-bottom: 16px;
}

.services__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.services__title-accent {
  color: var(--geers-orange);
}

.services__desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 32px;
}

.services__divider {
  width: 80px;
  height: 4px;
  margin: 0 auto;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--geers-red), var(--geers-orange));
}

.services__commercial {
  text-align: center;
  max-width: 720px;
  margin: 72px auto 40px;
}

.services__subheading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--text-dark);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.services__subdesc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.services__grid--commercial {
  margin-top: 0;
}

.services__grid--commercial .service-card:last-child {
  grid-column: 2;
}

@media (max-width: 1024px) {
  .services__grid--commercial .service-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 28px) / 2);
    max-width: calc((100% - 28px) / 2);
  }
}

@media (max-width: 768px) {
  .services__grid--commercial .service-card:last-child {
    grid-column: auto;
    width: auto;
    max-width: none;
    justify-self: stretch;
  }
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  justify-content: center;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 44px 36px 40px;
  background: var(--white);
  border: 1px solid rgba(232, 98, 10, 0.14);
  border-radius: 20px;
  box-shadow:
    0 1px 3px rgba(31, 27, 24, 0.04),
    0 8px 24px rgba(31, 27, 24, 0.06);
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  opacity: 1;
  visibility: visible;
}

.service-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--geers-red), var(--geers-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(232, 98, 10, 0.28);
  box-shadow:
    0 4px 8px rgba(31, 27, 24, 0.04),
    0 20px 48px rgba(31, 27, 24, 0.12),
    0 0 0 1px rgba(196, 30, 58, 0.06);
}

.service-card:hover .service-card__accent {
  transform: scaleX(1);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 98, 10, 0.06);
  border: 1px solid rgba(232, 98, 10, 0.1);
  border-radius: 16px;
  margin-bottom: 28px;
  color: var(--geers-orange);
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--geers-red), var(--geers-orange));
  border-color: transparent;
  color: var(--white);
  transform: scale(1.08);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  color: var(--geers-orange);
  line-height: 1.1;
}

.service-card p {
  font-size: 0.975rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 400;
  flex-grow: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--geers-red);
  margin-top: auto;
  transition: gap 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card__link:hover {
  gap: 14px;
  color: var(--geers-orange);
}

/* ============================================
   ABOUT
   ============================================ */

.about {
  position: relative;
  background: linear-gradient(145deg, #FAF6F2 0%, #ffffff 42%, #F7F3EF 100%);
  overflow: hidden;
  padding: 140px 0;
}

.about__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.about__glow--red {
  top: 8%;
  left: -8%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.09) 0%, transparent 68%);
}

.about__glow--orange {
  bottom: 5%;
  right: -6%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(232, 98, 10, 0.07) 0%, transparent 68%);
}

.about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 96px;
  align-items: center;
}

.about__visual {
  position: relative;
  padding-bottom: 56px;
}

.about__image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 28px 64px rgba(31, 27, 24, 0.14),
    0 12px 32px rgba(31, 27, 24, 0.08);
}

.about__image-wrap img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: 82% 46%;
  transition: transform 0.8s ease;
}

.about__image-wrap:hover img {
  transform: scale(1.04);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  z-index: 2;
}

.about-stat-card {
  padding: 22px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(232, 98, 10, 0.1);
  border-radius: 16px;
  box-shadow:
    0 16px 40px rgba(31, 27, 24, 0.1),
    0 4px 12px rgba(31, 27, 24, 0.05);
  backdrop-filter: blur(12px);
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(196, 30, 58, 0.2);
  box-shadow:
    0 24px 52px rgba(31, 27, 24, 0.14),
    0 8px 20px rgba(196, 30, 58, 0.08);
}

.about-stat-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  color: var(--geers-red);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.about-stat-card__label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.35;
}

.about__content {
  padding-top: 12px;
}

.about__heading-group {
  max-width: 400px;
  margin-bottom: 36px;
}

.about__accent-line {
  display: block;
  width: 52px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--geers-red), var(--geers-red-light));
}

.about__title {
  margin-bottom: 16px;
}

.about__lead {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin: 0;
  text-transform: uppercase;
}

.about__text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 28px;
  font-weight: 300;
  max-width: 520px;
}

.about__text:last-of-type {
  margin-bottom: 32px;
}

.about__highlight {
  max-width: 520px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 247, 250, 0.95));
  border: 1px solid rgba(232, 98, 10, 0.12);
  border-left: 4px solid var(--geers-red);
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(31, 27, 24, 0.06);
}

.about__service-areas {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.75;
}

/* ============================================
   SERVICE AREAS
   ============================================ */

.service-areas {
  background: var(--off-white);
}

.service-areas__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.service-area-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid rgba(196, 30, 58, 0.1);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(31, 27, 24, 0.05);
  transition:
    transform 0.35s var(--transition),
    box-shadow 0.35s var(--transition),
    border-color 0.35s var(--transition);
}

.service-area-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 98, 10, 0.25);
  box-shadow: 0 12px 28px rgba(31, 27, 24, 0.1);
}

.service-area-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(196, 30, 58, 0.08);
  border-radius: 10px;
  color: var(--geers-red);
}

.service-area-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin: 0;
}

.service-areas__note {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.service-areas__note a {
  color: var(--geers-red);
  font-weight: 600;
}

.service-areas__note a:hover {
  color: var(--geers-orange);
}

/* ============================================
   WHY US
   ============================================ */

.why-us {
  background: var(--off-white);
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
  cursor: default;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(31, 27, 24, 0.04);
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.06), rgba(232, 98, 10, 0.04));
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 98, 10, 0.25);
  box-shadow: 0 16px 48px rgba(31, 27, 24, 0.1);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(196, 30, 58, 0.12);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.feature-card:hover .feature-card__number {
  color: rgba(232, 98, 10, 0.2);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--geers-red);
  transition: transform var(--transition), color var(--transition);
}

.feature-card__icon svg {
  width: 100%;
  height: 100%;
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.15);
  color: var(--geers-orange);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* ============================================
   REVIEWS
   ============================================ */

.reviews {
  position: relative;
  background: var(--white);
  z-index: 1;
  box-shadow: 0 16px 40px -24px rgba(31, 27, 24, 0.12);
}

.reviews::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(31, 27, 24, 0.025));
  pointer-events: none;
}

.reviews__carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews__track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
  flex: 0 0 100%;
  padding: 48px 40px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(31, 27, 24, 0.06);
}

.review-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.review-card__stars span {
  color: var(--geers-red);
  font-size: 1.2rem;
  text-shadow: 0 0 10px var(--red-glow);
}

.review-card__text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-body);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 32px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--geers-red), var(--geers-orange));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.review-card__author strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--text-dark);
}

.review-card__author span {
  font-size: 0.8rem;
  color: var(--gray);
}

.reviews__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.reviews__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--light-gray);
  background: var(--white);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.reviews__btn:hover {
  border-color: var(--geers-orange);
  background: rgba(232, 98, 10, 0.08);
  color: var(--geers-orange);
}

.reviews__dots {
  display: flex;
  gap: 10px;
}

.reviews__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--light-gray);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.reviews__dot.active {
  background: var(--geers-red);
  box-shadow: 0 0 12px var(--red-glow);
  transform: scale(1.2);
}

/* ============================================
   EMERGENCY CTA
   ============================================ */

.emergency-cta {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.emergency-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(196, 30, 58, 0.05) 0%,
    rgba(232, 98, 10, 0.04) 45%,
    transparent 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.emergency-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.emergency-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  will-change: transform;
}

.emergency-cta__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(248, 250, 252, 0.5) 16px,
      rgba(31, 27, 24, 0.28) 40px,
      rgba(31, 27, 24, 0.5) 72px
    ),
    radial-gradient(ellipse at center, rgba(31, 27, 24, 0.6) 0%, rgba(31, 27, 24, 0.92) 70%),
    linear-gradient(180deg, rgba(31, 27, 24, 0.3) 0%, rgba(31, 27, 24, 0.85) 100%);
}

.emergency-cta__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--red-glow) 0%, var(--orange-glow) 40%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: emergencyGlow 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes emergencyGlow {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.emergency-cta__truck {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 300px;
  opacity: 0.6;
  animation: truckFloat 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 3;
}

.emergency-cta__truck svg {
  width: 100%;
  height: auto;
}

@keyframes truckFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-15px) translateX(-10px); }
}

.emergency-cta__content {
  position: relative;
  z-index: 4;
  padding: 100px 24px;
}

.emergency-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(196, 30, 58, 0.15);
  border: 1px solid rgba(196, 30, 58, 0.35);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.4;
  color: var(--geers-red-light);
  margin: 0 0 32px;
  backdrop-filter: blur(10px);
}

.emergency-cta__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
  color: var(--white);
}

.emergency-cta__desc {
  font-size: 1.15rem;
  color: var(--gray-light);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-weight: 300;
}

.emergency-cta__sub {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--navy);
  padding: 80px 0 0;
  border-top: 3px solid var(--geers-red);
  color: rgba(255, 255, 255, 0.85);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer__tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 20px 0 28px;
  font-weight: 300;
  max-width: 280px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition);
}

.footer__social-link:hover {
  border-color: var(--geers-orange);
  color: var(--white);
  background: rgba(232, 98, 10, 0.15);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  color: var(--white);
}

.footer__col ul li {
  margin-bottom: 12px;
}

.footer__col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
  display: inline-block;
}

.footer__col ul li a:hover {
  color: var(--geers-red-light);
  transform: translateX(4px);
}

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__contact-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--geers-red);
}

.footer__contact-list a:hover {
  color: var(--geers-orange-light);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   ANIMATION UTILITIES
   ============================================ */

.reveal-up:not(.service-card),
.reveal-left {
  opacity: 0;
  will-change: transform, opacity;
}

.service-card {
  opacity: 1;
  visibility: visible;
}

.emergency-cta__badge,
.emergency-cta__title,
.emergency-cta__desc,
.emergency-cta__sub,
#emergencyCallBtn {
  opacity: 0;
  will-change: transform, opacity;
}

.emergency-cta--revealed .emergency-cta__badge,
.emergency-cta--revealed .emergency-cta__title,
.emergency-cta--revealed .emergency-cta__desc,
.emergency-cta--revealed .emergency-cta__sub,
.emergency-cta--revealed #emergencyCallBtn {
  opacity: 1;
  will-change: auto;
}

.emergency-cta--revealed .emergency-cta__badge,
.emergency-cta--revealed .emergency-cta__title,
.emergency-cta--revealed .emergency-cta__desc,
.emergency-cta--revealed .emergency-cta__sub {
  transform: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: none;
    margin: 0;
  }

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

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

  .about__grid {
    gap: 64px;
    grid-template-columns: 1fr;
  }

  .about__image-wrap img {
    height: 460px;
    object-position: 80% 45%;
  }

  .about__stats {
    left: 16px;
    right: 16px;
    bottom: -8px;
  }

  .about__heading-group {
    max-width: none;
  }

  .about__text,
  .about__highlight {
    max-width: none;
  }

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

@media (max-width: 1100px) {
  :root {
    --navbar-logo-height: 84px;
    --navbar-logo-height-scrolled: 66px;
    --navbar-bar-height: 108px;
    --navbar-bar-height-scrolled: 80px;
  }

  .navbar__inner {
    gap: 24px;
    padding-left: 36px;
    padding-right: 32px;
  }

  .navbar__nav {
    gap: 28px;
  }

  .nav-link {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  :root {
    --navbar-top-gap: 12px;
    --navbar-top-gap-scrolled: 8px;
    --navbar-bar-height: 76px;
    --navbar-bar-height-scrolled: 64px;
    --navbar-logo-height: 62px;
    --navbar-logo-height-scrolled: 52px;
    --navbar-inner-py: 10px;
    --navbar-inner-py-scrolled: 6px;
    --navbar-inner-px: 22px;
    --navbar-inner-px-scrolled: 18px;
    --navbar-shell-radius: 22px;
    --navbar-shell-radius-scrolled: 20px;
    --navbar-height: calc(var(--navbar-top-gap) + var(--navbar-bar-height) + 10px);
  }

  .navbar__shell {
    width: 92%;
    position: relative;
    overflow: visible;
    z-index: 1001;
  }

  .navbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    padding-left: var(--navbar-inner-px);
    padding-right: var(--navbar-inner-px);
  }

  .navbar--scrolled .navbar__inner {
    padding-left: var(--navbar-inner-px-scrolled);
    padding-right: var(--navbar-inner-px-scrolled);
  }

  .hero__image {
    object-position: 70% center;
  }

  .navbar__logo {
    margin-right: 0;
    flex: 1 1 auto;
    min-width: 0;
    z-index: 3;
  }

  .navbar__logo-img {
    max-width: min(210px, 54vw);
  }

  .navbar__cta.btn--emergency {
    display: none;
  }

  .navbar__toggle {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    z-index: 3;
    position: relative;
  }

  .navbar__nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    box-shadow:
      0 20px 50px rgba(31, 27, 24, 0.14),
      0 8px 24px rgba(31, 27, 24, 0.08);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    transition:
      opacity 0.32s var(--navbar-ease),
      visibility 0.32s var(--navbar-ease),
      transform 0.32s var(--navbar-ease);
  }

  .navbar__nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-size: 1.125rem;
    color: var(--text-dark);
    border-radius: 12px;
    text-align: left;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link--active {
    color: var(--geers-red);
    background: rgba(232, 98, 10, 0.04);
    transform: none;
  }

  .hero__stats {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding: 20px;
  }

  .hero-stat__divider {
    width: 60px;
    height: 1px;
  }

  .hero__scroll {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
  }

  .services__header {
    margin-bottom: 48px;
  }

  .service-card {
    padding: 36px 28px 32px;
  }

  .about {
    padding: 100px 0;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__visual {
    padding-bottom: 72px;
  }

  .about__image-wrap img {
    height: 380px;
    object-position: 90% 42%;
  }

  .about__stats {
    grid-template-columns: 1fr;
    gap: 12px;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .about-stat-card {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 16px;
  }

  .about-stat-card__num {
    margin-bottom: 0;
    flex-shrink: 0;
    min-width: 72px;
  }

  .about__content {
    padding-top: 0;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .service-areas__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .review-card {
    padding: 32px 24px;
  }

  .review-card__text {
    font-size: 1rem;
  }

  .emergency-cta__truck {
    width: 180px;
    opacity: 0.3;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about__stats {
    grid-template-columns: 1fr;
  }

  .service-areas__grid {
    grid-template-columns: 1fr;
  }

  .btn--xl {
    padding: 18px 32px;
    font-size: 1rem;
  }
}
