:root {
  --blue: #075fa8;
  --blue-dark: #063b68;
  --blue-soft: #e8f3fb;
  --red: #d3252e;
  --orange: #f06a21;
  --ink: #101820;
  --ink-soft: #334252;
  --muted: #617080;
  --line: #dde6ef;
  --surface: #f5f8fb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(16, 24, 32, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  letter-spacing: 0;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.2rem;
}

svg {
  width: 1.05em;
  height: 1.05em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  left: 16px;
  top: 16px;
  z-index: 99999;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(7, 18, 31, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand span {
  font-size: 1rem;
  max-width: 170px;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav > a,
.nav-dropdown > button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-phone {
  color: #dceeff;
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 245px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: 160ms ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown.is-open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-weight: 700;
}

.dropdown-panel a:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: #b91f27;
}

.btn-secondary {
  background: var(--blue);
  color: var(--white);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--blue-dark);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.86);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--ink);
}

.btn-outline-dark {
  border-color: var(--ink);
  color: var(--ink);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.button-row.left {
  justify-content: flex-start;
}

.home-hero,
.page-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 116px 0 64px;
}

.page-hero {
  min-height: 430px;
  place-items: end start;
}

.home-hero video,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 14, 25, 0.82), rgba(5, 31, 55, 0.65) 48%, rgba(129, 20, 23, 0.38));
}

.home-hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
}

.home-hero-content {
  max-width: 860px;
  text-align: center;
}

.page-hero-content {
  max-width: 800px;
  padding-bottom: 18px;
}

.hero-logo {
  width: 164px;
  height: 164px;
  object-fit: contain;
  margin: 12px auto 18px;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-badge,
.eyebrow.dark {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.eyebrow {
  margin-bottom: 14px;
  background: var(--blue-soft);
  color: var(--blue);
}

.home-hero h1,
.page-hero h1 {
  margin-bottom: 18px;
  color: var(--white);
  text-shadow:
    0 0 14px rgba(255, 255, 255, 0.28),
    0 0 28px rgba(7, 95, 168, 0.72),
    0 0 46px rgba(211, 37, 46, 0.48);
}

.home-hero h1 {
  display: inline-block;
  padding: 0 10px;
  background: linear-gradient(90deg, #ffffff, #d9efff 45%, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroGlow 3.8s ease-in-out infinite;
}

.page-hero h1 {
  animation: pageGlow 4.6s ease-in-out infinite;
}

@keyframes heroGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(7, 95, 168, 0.65));
  }

  50% {
    filter: drop-shadow(0 0 18px rgba(211, 37, 46, 0.78));
  }
}

@keyframes pageGlow {
  0%,
  100% {
    text-shadow:
      0 0 12px rgba(255, 255, 255, 0.22),
      0 0 25px rgba(7, 95, 168, 0.5);
  }

  50% {
    text-shadow:
      0 0 14px rgba(255, 255, 255, 0.34),
      0 0 34px rgba(211, 37, 46, 0.56);
  }
}

.home-hero p,
.page-hero p {
  max-width: 740px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.page-hero p {
  margin-left: 0;
}

.info-strip {
  background: var(--blue);
  color: var(--white);
}

.strip-grid {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 18px;
  align-items: center;
}

.strip-grid p,
.strip-grid a {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-weight: 700;
}

.section {
  padding: 84px 0;
}

.section.compact {
  padding: 62px 0;
}

.muted {
  background: var(--surface);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 52px;
  align-items: center;
}

.split.reverse > :first-child {
  order: 2;
}

.split p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.image-panel {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.check-grid p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 800;
}

.check-grid svg {
  color: var(--red);
  margin-top: 3px;
}

.service-grid,
.feature-grid,
.contact-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.feature-grid article,
.steps article,
.contact-panels article,
.contact-card,
.faq-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(16, 24, 32, 0.08);
}

.service-card {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card > div,
.feature-grid article,
.steps article,
.contact-panels article,
.contact-card {
  padding: 24px;
}

.service-card h3,
.feature-grid h3,
.steps h3,
.contact-card h3,
.contact-panels h2 {
  margin-bottom: 10px;
}

.service-card p,
.feature-grid p,
.steps p,
.contact-card p,
.contact-panels p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
}

.feature-grid article > span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--blue);
}

.steps {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.steps.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps article span {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--red);
  font-weight: 900;
  font-size: 1.35rem;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.area-grid span {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 800;
}

.cta-band {
  padding: 72px 0;
  background: linear-gradient(100deg, var(--blue-dark), var(--blue) 62%, #8d1f27);
  color: var(--white);
}

.cta-content {
  text-align: center;
  max-width: 820px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  margin: 16px auto 28px;
}

.quote-section {
  background: var(--surface);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.quote-frame {
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(16, 24, 32, 0.08);
}

.quote-frame iframe {
  display: block;
  width: 100%;
  height: 681px;
  min-height: 681px;
  border: 0;
  background: var(--white);
}

.form-fallback {
  margin: 0;
  padding: 12px 16px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-fallback a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
}

.reviews-section {
  background: linear-gradient(180deg, var(--white), var(--surface));
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-card,
.service-list-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(16, 24, 32, 0.08);
}

.review-card {
  padding: 26px;
}

.stars {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 1.05rem;
  font-weight: 900;
}

.review-card blockquote {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.review-meta {
  display: grid;
  gap: 2px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.review-meta span,
.review-meta small {
  color: var(--muted);
}

.service-area-map-section {
  background: var(--white);
}

.map-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.4fr) minmax(0, 0.6fr);
  gap: 24px;
  align-items: stretch;
}

.area-buttons {
  display: grid;
  gap: 10px;
}

.area-buttons button {
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.area-buttons button:hover,
.area-buttons button.is-active {
  border-color: var(--blue);
  background: linear-gradient(100deg, var(--blue), var(--blue-dark));
  color: var(--white);
}

.map-display {
  min-height: 520px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-copy {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.map-copy p {
  margin: 8px 0 0;
  color: var(--muted);
}

.map-display iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.deep-service-section {
  background: var(--white);
}

.deep-service-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.deep-service-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-list-panel {
  padding: 24px;
}

.service-list-panel.accent {
  border-color: rgba(211, 37, 46, 0.35);
  background: linear-gradient(180deg, #fff, #fff7f7);
}

.service-list-panel ul {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.service-list-panel li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-weight: 800;
}

.service-list-panel li svg {
  margin-top: 4px;
  color: var(--red);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 13px;
}

.contact-list li,
.contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 800;
}

.contact-list svg {
  margin-top: 3px;
  color: var(--red);
}

.mini-areas {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.mini-areas h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.mini-areas p {
  margin: 0;
  font-size: 0.95rem;
}

.faq-list {
  overflow: hidden;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
  color: var(--ink);
}

.faq-list p {
  padding: 0 22px 22px;
  margin: 0;
  color: var(--muted);
}

.contact-panels article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-panels .btn {
  margin-top: auto;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1.15fr;
  gap: 34px;
  padding: 58px 0;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.footer-brand span {
  font-size: 1.1rem;
  line-height: 1.1;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer h3 {
  margin-bottom: 16px;
  font-size: 0.98rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0 24px;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(7, 18, 31, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a,
  .nav-dropdown > button {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
  }

  .dropdown-panel {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 8px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown.is-open .dropdown-panel {
    display: block;
  }

  .strip-grid,
  .split,
  .quote-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse > :first-child {
    order: 0;
  }

  .service-grid,
  .feature-grid,
  .steps.three,
  .contact-panels,
  .review-grid,
  .deep-service-grid,
  .map-shell {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  h1 {
    font-size: 2.05rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .brand span {
    max-width: 128px;
    font-size: 0.95rem;
  }

  .home-hero,
  .page-hero {
    min-height: 70vh;
    padding-top: 104px;
  }

  .hero-logo {
    width: 124px;
    height: 124px;
  }

  .home-hero p,
  .page-hero p {
    font-size: 1rem;
  }

  .button-row,
  .button-row.left {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .check-grid,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .quote-frame {
    min-height: 0;
  }

  .quote-frame iframe {
    height: 760px;
    min-height: 760px;
  }

  .map-display {
    min-height: 460px;
  }

  .area-buttons {
    max-height: 330px;
    overflow: auto;
  }
}
