﻿:root {
  --red: #ff080c;
  --red-dark: #d50008;
  --ink: #07121a;
  --yellow: #ffe12b;
  --green: #00bd2d;
  --body: "Inter", Arial, sans-serif;
  --condensed: "Barlow Condensed", "Arial Narrow", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open {
  overflow: hidden;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(30px, 3.45vw, 48px);
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 span,
h1 span {
  color: var(--red);
}
p {
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: 91%;
  max-width: 1280px;
  padding: 0;
  margin-inline: auto;
}
.section-space {
  padding: 58px 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 13px;
  line-height: 1.3;
}
.eyebrow::before {
  content: "";
  width: 37px;
  height: 3px;
  background: var(--red);
  flex: none;
}
.eyebrow.light {
  color: #fff;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  padding: 12px 20px;
  background: #fff;
  z-index: 2000;
}
.skip-link:focus {
  top: 10px;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid #ffbd00;
  outline-offset: 5px;
}
/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: #fff;
  border-bottom: 1px solid #dce0e3;
}
.site-header.is-scrolled {
  box-shadow: 0 3px 20px #07121a14;
}
.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  flex: 0 0 135px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.brand img {
  width: 125px;
  height: 77px;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link-c {
  background: none;
  border: 0;
  padding: 9px 0;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.nav-link-c:hover,
.nav-link-c.active {
  color: var(--red);
}
.nav-link-c.active::after {
  content: "";
  height: 2px;
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  background: var(--red);
}
.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 15px 24px;
  min-height: 68px;
  border-radius: 7px;
  color: white;
  font-weight: 700;
  line-height: 1.05;
  transition:
    background 0.2s,
    transform 0.2s;
  white-space: nowrap;
}
.action-button:hover {
  color: white;
  transform: translateY(-2px);
}
.action-button > i {
  font-size: 34px;
  line-height: 1;
}
.action-button small {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.action-button strong {
  display: block;
  font-size: 18px;
}
.call-button {
  background: var(--red);
}
.call-button:hover {
  background: var(--red-dark);
}
.whatsapp-button {
  background: var(--green);
}
.whatsapp-button:hover {
  background: #039d2a;
}
.header-call {
  min-height: 57px;
  padding: 10px 24px;
  gap: 13px;
}
.header-call > i {
  font-size: 29px;
}
.header-call small {
  font-size: 12px;
  margin-bottom: 3px;
}
.header-call strong {
  font-size: 16px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 34px;
  line-height: 1;
  padding: 5px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav .nav-link-c {
  text-align: left;
  font-size: 18px;
}
.mobile-nav .action-button {
  margin-top: 12px;
}
/* Hero photograph and live banner text */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #07131c;
  color: white;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 56%;
  z-index: -3;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #020e17f5 0%,
      #020e17e8 24%,
      #020e1780 46%,
      #020e1710 75%
    ),
    linear-gradient(0deg, #020d16a6, transparent 54%);
  z-index: -2;
}
.hero-inner {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  padding-top: 46px;
  padding-bottom: 99px;
}
.hero-content {
  max-width: 600px;
  width: 51%;
  position: relative;
  z-index: 2;
}
.hero .eyebrow {
  font-size: 14px;
  margin-bottom: 19px;
}
.hero h1 {
  font-size: clamp(40px, 4.35vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.027em;
  margin: 0 0 25px;
}
.hero-desc {
  font-size: 17px;
  color: #f0f0f0;
  max-width: 595px;
  margin-bottom: 27px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 19px;
}
.hero-coverage {
  display: flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  max-width: 100%;
  margin: 21px 0 0;
  color: #fff;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px #020e1780;
}
.hero-coverage > i {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid #ff34394d;
  border-radius: 50%;
  background: #ff080c1a;
  color: #ff454a;
  font-size: 18px;
  line-height: 1;
}
.hero-coverage::after {
  content: "";
  width: 48px;
  height: 2px;
  margin-left: 3px;
  background: linear-gradient(90deg, var(--red), #ff080c00);
}
.available-badge {
  position: absolute;
  right: 0;
  top: 30%;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 2px 8px #0005;
}
.available-badge > i {
  color: var(--yellow);
  font-size: 68px;
  line-height: 1;
}
.available-badge strong,
.available-badge b {
  display: block;
  font-family: var(--condensed);
  font-weight: 800;
  line-height: 0.98;
  font-size: 42px;
  letter-spacing: -0.015em;
}
.available-badge strong {
  color: var(--yellow);
}
.available-badge b {
  font-size: 37px;
}
.hero-nameplate {
  position: absolute;
  right: -5vw;
  bottom: 77px;
  width: 56%;
  padding: 14px 5vw 16px 36px;
  background: linear-gradient(90deg, #ff001200, #ef001acc 26%, #f00020 95%);
  text-align: right;
}
.hero-nameplate strong {
  font-family: var(--condensed);
  font-weight: 800;
  font-size: 32px;
  display: block;
  line-height: 1.15;
}
.hero-nameplate span {
  display: block;
  font-size: 13px;
  margin-top: 2px;
}
.features-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -49px;
  gap: 2px;
}
.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 125px;
  background: linear-gradient(#fff, #fcfcfc);
  border: 1px solid #e6e8e9;
  border-radius: 10px;
  box-shadow: 0 4px 14px #14202c08;
  padding: 24px 20px;
}
.feature-item > i {
  color: var(--red);
  font-size: 49px;
  line-height: 1;
}
.feature-item strong {
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}
/* About and services */
/* =========================
   ABOUT SECTION
========================= */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-copy h2 {
  margin-bottom: 23px;
}

.about-copy > p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* About Image */
.about-poster {
  width: min(100%, 470px);
  height: 600px;

  object-fit: cover;
  object-position: center;

  border-radius: 6px;
  box-shadow: 0 9px 22px rgba(7, 18, 26, 0.15);

  justify-self: end;

  /* optional */
  transform: rotate(-0.4deg);
}
.small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-height: 44px;
  padding: 11px 23px;
  border: 0;
  border-radius: 5px;
  background: var(--red);
  color: white;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  transition:
    background 0.2s,
    transform 0.2s;
}
.small-button:hover {
  background: var(--red-dark);
  color: white;
  transform: translateY(-1px);
}
.small-button > i {
  font-size: 19px;
}
.services-section {
  background: linear-gradient(#fafafa, #fff);
  border-top: 1px solid #f4f4f4;
  padding-top: 42px;
  padding-bottom: 39px;
}
.section-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-bottom: 35px;
}
.section-top h2 {
  margin-bottom: 0;
}
.section-note {
  font-size: 16px;
  font-weight: 800;
  text-align: right;
  line-height: 1.3;
  margin: 10px 0 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.service-card {
  background: white;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 5px 20px #07121a09;
  border: 1px solid #f1f1f1;
  display: flex;
  flex-direction: column;
}
.service-card > img {
  width: 100%;
  aspect-ratio: 1.88;
  object-fit: cover;
  height: auto;
}
.service-body {
  padding: 46px 25px 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-icon {
  position: absolute;
  top: -42px;
  left: 25px;
  border: 4px solid white;
  border-radius: 50%;
  background: var(--red);
  color: white;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  font-size: 37px;
}
.service-body h3 {
  font-size: 23px;
  letter-spacing: -0.025em;
  margin: 0 0 9px;
}
.service-body p {
  font-size: 17px;
  line-height: 1.3;
  margin: 0 0 24px;
  flex: 1;
}
.service-body .small-button {
  align-self: flex-start;
}
/* Dark recovery banner */
.why-section {
  position: relative;
  isolation: isolate;
  background: #06121b;
  overflow: hidden;
  color: white;
}
.why-photo {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 69%;
  object-fit: cover;
  object-position: center 59%;
  z-index: -3;
}
.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      #020f18 5%,
      #020f18fa 29%,
      #020f18a6 53%,
      #020f1820 81%
    ),
    linear-gradient(0deg, #020f1866, transparent);
}
.why-inner {
  position: relative;
  min-height: 400px;
  padding-top: 47px;
  padding-bottom: 43px;
}
.why-content {
  width: 64%;
  position: relative;
  z-index: 1;
}
.why-content h2 {
  font-size: clamp(30px, 3.3vw, 47px);
  margin-bottom: 32px;
  line-height: 1.18;
}
.why-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 720px;
}
.why-points > div {
  text-align: center;
}
.why-points i {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(120deg, #761017, #b90816);
  box-shadow: inset 2px 0 5px #ffffff29;
  font-size: 43px;
}
.why-points strong {
  font-size: 19px;
  line-height: 1.23;
  display: block;
}
.responsibility-note {
  position: absolute;
  top: 27px;
  right: 0;
  margin: 0;
  background: var(--yellow);
  color: #0d1114;
  padding: 18px 28px;
  transform: rotate(-7deg);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 4px 12px #0003;
}
.responsibility-note::after {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 0;
  border-top: 25px solid var(--yellow);
  border-right: 25px solid transparent;
}
/* Process and map */
.process-section {
  padding-top: 41px;
  padding-bottom: 40px;
}
.process-section h2 {
  margin-bottom: 64px;
}
.steps-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px;
}
.steps-grid > li {
  position: relative;
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 27px 18px 18px;
  box-shadow: 0 3px 20px #07121a03;
  background: #fff;
}
.steps-grid > li + li::before {
  content: "→";
  position: absolute;
  left: -51px;
  top: 28px;
  color: #765251;
  font-size: 33px;
  line-height: 1;
}
.step-number {
  position: absolute;
  top: -29px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--condensed);
  font-size: 35px;
  font-weight: 700;
  border: 3px solid #fff;
}
.steps-grid > li > i {
  font-size: 39px;
  line-height: 1;
  color: var(--red);
}
.steps-grid strong {
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.steps-grid strong a:hover {
  color: var(--red);
}
.area-section {
  padding: 0 0 42px;
}
.area-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.5fr;
  gap: 50px;
  align-items: center;
}
.area-section h2 {
  font-size: 36px;
  margin-bottom: 25px;
}
.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.area-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 9px 0;
  font-size: 18px;
  line-height: 1.25;
}
.area-list i {
  color: var(--red);
  font-size: 21px;
}
.map-wrap {
  position: relative;
  min-height: 310px;
  height: 100%;
  max-height: 340px;
  overflow: hidden;
  border-radius: 10px;
  background: #edf0ea;
  box-shadow: 0 6px 20px #07121a0a;
}
.map-wrap iframe {
  display: block;
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 310px;
  filter: saturate(0.75);
  opacity: 0.82;
}
.map-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border-radius: 7px;
  background: #fffffff0;
  box-shadow: 0 2px 12px #0002;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}
.map-label i {
  color: var(--red);
  font-size: 38px;
  line-height: 1;
}
.map-label small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-top: 3px;
}
.map-label:hover {
  background: white;
}
/* Contact and footer */
.emergency-cta {
  background: linear-gradient(105deg, #1c0000 0%, #8c0010 61%, #2e153a 100%);
  color: white;
  padding: 24px 0;
  border-bottom: 1px solid #ffffff88;
}
.emergency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.emergency-copy {
  display: flex;
  align-items: center;
  gap: 23px;
}
.emergency-copy > i {
  font-size: 62px;
  line-height: 1;
}
.emergency-copy h2 {
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}
.emergency-copy p {
  font-size: 17px;
  margin: 0;
}
.cta-actions {
  display: flex;
  gap: 23px;
  flex: none;
}
.footer-main {
  background: radial-gradient(ellipse at 85% 20%, #0a1b26, #020f17 70%);
  color: #d7dde0;
  padding: 30px 0 38px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr 1.3fr;
  gap: 50px;
  padding: 0 30px;
}
.footer-main h3 {
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 600;
  color: #fff;
  margin: 3px 0 29px;
}
.footer-logo {
  display: flex;
  width: 176px;
  height: 97px;
  background: #fff;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  margin: 0 0 13px 23px;
}
.footer-logo img {
  width: 139px;
  height: 93px;
  object-fit: contain;
}
.footer-brand > p {
  font-size: 14px;
  margin-bottom: 22px;
  white-space: nowrap;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a,
.footer-links button {
  font-size: 15px;
  line-height: 1.35;
}
.footer-links button {
  background: none;
  color: inherit;
  border: 0;
  padding: 0;
}
.footer-links a:hover,
.footer-links button:hover,
.footer-line:hover {
  color: #fff;
}
.footer-line {
  display: flex;
  gap: 18px;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.footer-line i {
  font-size: 21px;
  color: #fff;
  line-height: 1.4;
  flex: none;
}
.footer-bottom {
  border-top: 1px solid #40505a;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 0 0;
  margin-top: 59px;
  font-size: 13px;
  color: #a8b1b8;
}
.footer-bottom i {
  color: var(--red);
  font-size: 17px;
  vertical-align: middle;
}
.floating-actions {
  position: fixed;
  bottom: 23px;
  left: 12px;
  z-index: 1010;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.floating-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.floating-link small {
  font-size: 12px;
  color: #fff;
  text-shadow:
    0 1px 4px #000,
    0 0 5px #000;
  background: #06101877;
  border-radius: 4px;
  padding: 0 4px;
}
.fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  color: white;
  font-size: 30px;
  box-shadow: 0 4px 12px #0003;
}
.fab:hover {
  color: #fff;
  filter: brightness(0.92);
}
.fab-call {
  background: linear-gradient(130deg, #ff1b30, #d00017);
}
.fab-whatsapp {
  background: linear-gradient(130deg, #5fdb4c, #12a333);
  border: 2px solid #98e58b;
}
.fab-top {
  position: fixed;
  right: 26px;
  bottom: 57px;
  background: var(--red);
  width: 57px;
  height: 57px;
  z-index: 1010;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.fab-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
/* Gallery and about dialogs */
.site-dialog {
  width: min(1060px, 92vw);
  max-height: 88vh;
  border: 0;
  border-radius: 12px;
  padding: 30px;
  color: var(--ink);
  box-shadow: 0 15px 80px #0006;
}
.site-dialog::backdrop {
  background: #020e18cc;
}
.dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 25px;
}
.dialog-header h2 {
  font-size: 32px;
  margin: 0;
}
.dialog-close {
  border: 0;
  background: #f1f2f3;
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-grid figure {
  margin: 0;
}
.gallery-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.5;
  object-fit: cover;
  border-radius: 5px;
}
.gallery-grid figcaption {
  font-weight: 700;
  padding-top: 12px;
}
.gallery-note {
  font-size: 13px;
  color: #66717b;
  margin: 22px 0 0;
}
.about-dialog {
  max-width: 670px;
}
.about-dialog > p {
  font-size: 17px;
}
@media (min-width: 1600px) {
  .hero-photo {
    object-position: 70% 59%;
  }
  .hero-inner {
    min-height: 640px;
  }
}
@media (max-width: 1199px) {
  .desktop-nav {
    gap: 18px;
  }
  .nav-inner {
    gap: 16px;
  }
  .brand {
    flex-basis: 108px;
  }
  .brand img {
    width: 103px;
  }
  .header-call {
    padding: 10px 18px;
  }
  .hero-inner {
    min-height: 545px;
  }
  .hero-content {
    width: 55%;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-desc {
    font-size: 16px;
  }
  .hero-nameplate strong {
    font-size: 28px;
  }
  .hero-nameplate span {
    font-size: 12px;
  }
  .available-badge strong {
    font-size: 34px;
  }
  .available-badge b {
    font-size: 30px;
  }
  .available-badge > i {
    font-size: 57px;
  }
  .feature-item {
    gap: 20px;
    min-height: 108px;
    padding: 19px 12px;
  }
  .feature-item > i {
    font-size: 41px;
  }
  .feature-item strong {
    font-size: 16px;
  }
  .about-grid {
    gap: 49px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .service-body {
    padding-inline: 21px;
  }
  .service-body h3 {
    font-size: 21px;
  }
  .service-body p {
    font-size: 16px;
  }
  .why-inner {
    min-height: 355px;
  }
  .why-content {
    width: 65%;
  }
  .why-points {
    gap: 15px;
  }
  .why-points strong {
    font-size: 16px;
  }
  .why-points i {
    width: 61px;
    height: 61px;
    font-size: 36px;
  }
  .responsibility-note {
    font-size: 18px;
    padding: 16px 24px;
  }
  .steps-grid {
    gap: 55px;
  }
  .steps-grid > li + li::before {
    left: -37px;
  }
  .steps-grid > li {
    gap: 14px;
    padding-inline: 10px;
  }
  .steps-grid strong {
    font-size: 14px;
  }
  .area-list li {
    font-size: 16px;
  }
  .area-section h2 {
    font-size: 32px;
  }
  .emergency-copy {
    gap: 16px;
  }
  .emergency-copy > i {
    font-size: 48px;
  }
  .emergency-copy h2 {
    font-size: 22px;
  }
  .emergency-copy p {
    font-size: 14px;
  }
  .cta-actions {
    gap: 15px;
  }
  .cta-actions .action-button {
    padding: 14px 19px;
    min-height: 64px;
    gap: 10px;
  }
  .cta-actions .action-button strong {
    font-size: 16px;
  }
  .footer-grid {
    gap: 30px;
    padding-inline: 15px;
  }
  .footer-line {
    gap: 13px;
    font-size: 14px;
  }
  .footer-links a,
  .footer-links button {
    font-size: 14px;
  }
  .footer-main h3 {
    font-size: 16px;
  }
  .footer-logo {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-inner {
    min-height: 74px;
  }
  .brand {
    margin-right: auto;
  }
  .brand img {
    height: 68px;
  }
  .header-call {
    min-height: 49px;
  }
  .hero-inner {
    min-height: 535px;
  }
  .hero-content {
    width: 65%;
    max-width: 525px;
  }
  .hero h1 {
    font-size: 47px;
  }
  .hero-desc {
    max-width: 465px;
  }
  .hero-photo {
    object-position: 64% center;
  }
  .hero::before {
    background:
      linear-gradient(90deg, #020e17f5, #020e17c9 40%, #020e1720),
      linear-gradient(0deg, #020e17b3, transparent);
  }
  .available-badge {
    top: 20%;
    right: -1%;
  }
  .available-badge strong {
    font-size: 28px;
  }
  .available-badge b {
    font-size: 24px;
  }
  .available-badge > i {
    font-size: 44px;
  }
  .hero-nameplate {
    bottom: 61px;
    width: 65%;
  }
  .hero-nameplate strong {
    font-size: 23px;
  }
  .hero-nameplate span {
    font-size: 11px;
  }
  .hero-actions .action-button {
    padding: 14px 20px;
    min-height: 64px;
    gap: 12px;
  }
  .hero-actions .action-button strong {
    font-size: 16px;
  }
  .feature-item {
    gap: 13px;
    min-height: 95px;
  }
  .feature-item > i {
    font-size: 33px;
  }
  .feature-item strong {
    font-size: 14px;
  }
  .section-space {
    padding: 45px 0;
  }
  .about-grid {
    gap: 31px;
    grid-template-columns: 1fr 1.05fr;
  }
  .about-copy h2 {
    font-size: 33px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 16px;
  }
  .about-poster {
    aspect-ratio: 1.18;
    object-fit: contain;
    background: #ed1128;
    height: auto;
  }
  .services-grid {
    gap: 20px;
  }
  .section-top h2 {
    font-size: 33px;
  }
  .section-note {
    font-size: 14px;
  }
  .service-body {
    padding: 37px 17px 21px;
  }
  .service-icon {
    width: 64px;
    height: 64px;
    top: -33px;
    left: 17px;
    font-size: 29px;
  }
  .service-body h3 {
    font-size: 19px;
  }
  .service-body p {
    font-size: 16px;
  }
  .small-button {
    font-size: 14px;
    padding: 10px 17px;
    gap: 12px;
  }
  .why-content {
    width: 72%;
  }
  .why-content h2 {
    font-size: 33px;
  }
  .why-inner {
    min-height: 330px;
    padding-block: 39px;
  }
  .why-points {
    gap: 13px;
    max-width: 510px;
  }
  .why-points strong {
    font-size: 15px;
  }
  .responsibility-note {
    font-size: 16px;
    padding: 13px 17px;
    right: -1%;
  }
  .steps-grid {
    gap: 37px;
  }
  .steps-grid > li + li::before {
    left: -29px;
    font-size: 25px;
  }
  .steps-grid > li > i {
    font-size: 29px;
  }
  .steps-grid strong {
    font-size: 14px;
  }
  .steps-grid > li {
    gap: 10px;
  }
  .area-grid {
    gap: 30px;
    grid-template-columns: 1fr 1.25fr;
  }
  .area-section h2 {
    font-size: 29px;
  }
  .area-list li {
    font-size: 16px;
  }
  .map-wrap,
  .map-wrap iframe {
    min-height: 290px;
  }
  .emergency-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .emergency-copy h2 {
    font-size: 25px;
  }
  .emergency-copy p {
    font-size: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 60px;
    padding-inline: 32px;
  }
  .footer-bottom {
    margin-top: 34px;
    font-size: 12px;
  }
  .floating-actions {
    left: 8px;
  }
  .fab {
    width: 48px;
    height: 48px;
    font-size: 26px;
  }
  .fab-top {
    width: 47px;
    height: 47px;
    right: 17px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 82px;
  }
  .container {
    width: 90%;
  }
  .nav-inner {
    min-height: 70px;
    gap: 14px;
  }
  .brand img {
    width: 101px;
    height: 64px;
  }
  .header-call {
    padding: 9px 14px;
    gap: 9px;
    min-height: 45px;
  }
  .header-call i {
    font-size: 22px;
  }
  .header-call strong {
    font-size: 14px;
  }
  .header-call small {
    font-size: 12px;
  }
  .menu-toggle {
    font-size: 29px;
  }
  .hero-inner {
    min-height: 675px;
    display: block;
    padding-top: 42px;
    padding-bottom: 245px;
  }
  .hero-content {
    width: 100%;
    max-width: 520px;
  }
  .hero h1 {
    font-size: clamp(37px, 8.6vw, 52px);
    line-height: 1.08;
    margin-bottom: 21px;
  }
  .hero .eyebrow {
    font-size: 12px;
    gap: 9px;
    margin-bottom: 19px;
  }
  .hero .eyebrow::before {
    width: 26px;
  }
  .hero-desc {
    font-size: 16px;
    line-height: 1.5;
    max-width: 490px;
    margin-bottom: 23px;
  }
  .hero-photo {
    object-position: 64% bottom;
  }
  .hero::before {
    background:
      linear-gradient(
        180deg,
        #020e17f0 0%,
        #020e17e0 40%,
        #020e1745 76%,
        #020e1770
      ),
      linear-gradient(90deg, #020e1755, transparent);
  }
  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .hero-actions .action-button {
    min-width: 0;
    padding: 13px 10px;
    min-height: 61px;
    gap: 8px;
    white-space: normal;
  }
  .hero-actions .action-button > i {
    flex-shrink: 0;
    font-size: 26px;
  }
  .hero-actions .action-button strong {
    font-size: 14px;
  }
  .hero-actions .action-button small {
    font-size: 12px;
  }
  .available-badge {
    top: auto;
    right: 0;
    bottom: 126px;
    gap: 8px;
  }
  .available-badge > i {
    font-size: 47px;
  }
  .available-badge strong {
    font-size: 30px;
  }
  .available-badge b {
    font-size: 26px;
  }
  .hero-nameplate {
    bottom: 61px;
    width: 108%;
    right: -5vw;
    padding: 10px 5vw 11px 12px;
  }
  .hero-nameplate strong {
    font-size: 25px;
  }
  .hero-nameplate span {
    font-size: 10px;
  }
  .features-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: -32px;
  }
  .feature-item {
    justify-content: flex-start;
    gap: 14px;
    padding: 19px 16px;
    border-radius: 7px;
    min-height: 92px;
  }
  .feature-item > i {
    font-size: 35px;
  }
  .feature-item strong {
    font-size: 14px;
  }
  .section-space {
    padding: 40px 0;
  }
  .eyebrow {
    font-size: 12px;
    gap: 10px;
    margin-bottom: 12px;
  }
  .eyebrow::before {
    width: 29px;
    height: 2px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-copy h2 {
    font-size: 37px;
    margin-bottom: 22px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.5;
  }
  .about-poster {
    aspect-ratio: 4/3;
    object-fit: cover;
    transform: rotate(-0.6deg);
  }
  .small-button {
    font-size: 14px;
    min-height: 44px;
    padding: 12px 20px;
  }
  .section-top {
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 27px;
  }
  .section-top h2 {
    font-size: 32px;
    max-width: 350px;
  }
  .section-note {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .service-card > img {
    aspect-ratio: 1.9;
  }
  .service-body {
    padding: 42px 24px 25px;
  }
  .service-icon {
    width: 72px;
    height: 72px;
    top: -38px;
    left: 24px;
    font-size: 33px;
  }
  .service-body h3 {
    font-size: 24px;
  }
  .service-body p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .why-inner {
    padding-top: 37px;
    padding-bottom: 212px;
    min-height: 530px;
  }
  .why-content {
    width: 100%;
  }
  .why-content h2 {
    font-size: 32px;
    margin-bottom: 28px;
  }
  .why-photo {
    width: 100%;
    object-position: 65% bottom;
  }
  .why-section::before {
    background: linear-gradient(
      180deg,
      #020f18f5,
      #020f18ed 45%,
      #020f1830 90%
    );
  }
  .why-points {
    gap: 12px;
    max-width: none;
  }
  .why-points i {
    width: 53px;
    height: 53px;
    font-size: 31px;
    margin-bottom: 11px;
  }
  .why-points strong {
    font-size: 14px;
    line-height: 1.3;
  }
  .responsibility-note {
    top: auto;
    bottom: 133px;
    right: 0;
    font-size: 15px;
    padding: 11px 17px;
  }
  .process-section h2 {
    font-size: 32px;
    margin-bottom: 55px;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 27px;
  }
  .steps-grid > li {
    min-height: 105px;
    justify-content: flex-start;
    padding: 27px 18px 16px;
    gap: 13px;
    border: 1px solid #f5f5f5;
  }
  .steps-grid > li + li::before {
    display: none;
  }
  .steps-grid > li > i {
    font-size: 32px;
  }
  .steps-grid strong {
    font-size: 14px;
  }
  .step-number {
    width: 44px;
    height: 44px;
    top: -24px;
    font-size: 30px;
  }
  .area-section {
    padding-top: 0;
    padding-bottom: 35px;
  }
  .area-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .area-section h2 {
    font-size: 32px;
    margin-bottom: 22px;
  }
  .area-list li {
    font-size: 17px;
    margin: 11px 0;
  }
  .map-wrap,
  .map-wrap iframe {
    min-height: 275px;
    height: 275px;
  }
  .emergency-cta {
    padding-block: 27px;
  }
  .emergency-inner {
    gap: 23px;
  }
  .emergency-copy {
    align-items: flex-start;
    gap: 14px;
  }
  .emergency-copy > i {
    font-size: 42px;
  }
  .emergency-copy h2 {
    font-size: 22px;
    line-height: 1.25;
  }
  .emergency-copy p {
    font-size: 14px;
  }
  .cta-actions {
    width: 100%;
    gap: 11px;
  }
  .cta-actions .action-button {
    flex: 1;
    min-height: 59px;
    padding: 12px 14px;
    gap: 9px;
  }
  .cta-actions .action-button > i {
    font-size: 27px;
  }
  .cta-actions .action-button strong {
    font-size: 14px;
  }
  .cta-actions .action-button small {
    font-size: 12px;
  }
  .footer-main {
    padding-top: 32px;
    padding-bottom: 85px;
  }
  .footer-grid {
    padding: 0 14px;
    gap: 33px 24px;
    grid-template-columns: 1fr 1fr;
  }
  .footer-main h3 {
    font-size: 16px;
    margin-bottom: 19px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-brand > p {
    white-space: normal;
    margin-bottom: 15px;
    font-size: 14px;
  }
  .footer-logo {
    width: 160px;
    height: 92px;
    margin-bottom: 13px;
  }
  .footer-line {
    font-size: 14px;
    gap: 12px;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    padding: 22px 14px 0;
    flex-direction: column;
    gap: 13px;
    margin-top: 18px;
    line-height: 1.5;
  }
  .floating-actions {
    bottom: 12px;
    left: 10px;
    flex-direction: row;
    gap: 10px;
  }
  .floating-link small {
    display: none;
  }
  .fab {
    width: 48px;
    height: 48px;
  }
  .fab-top {
    bottom: 13px;
    right: 13px;
  }
  .site-dialog {
    padding: 22px;
    width: 92vw;
  }
  .dialog-header h2 {
    font-size: 26px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .gallery-grid img {
    aspect-ratio: 1.7;
  }
  .dialog-header {
    gap: 14px;
  }
  .dialog-close {
    width: 39px;
    height: 39px;
    font-size: 17px;
  }
}
@media (max-width: 359px) {
  .header-call {
    padding: 8px 10px;
  }
  .header-call > i {
    display: none;
  }
  .nav-inner {
    gap: 9px;
  }
  .hero-inner {
    min-height: 730px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero-actions .action-button {
    padding-inline: 8px;
    gap: 6px;
  }
  .hero-actions .action-button > i {
    font-size: 22px;
  }
  .hero-actions .action-button strong {
    font-size: 13px;
  }
  .feature-item {
    padding: 16px 10px;
    gap: 10px;
  }
  .feature-item > i {
    font-size: 29px;
  }
  .feature-item strong {
    font-size: 12px;
  }
  .steps-grid > li {
    padding-inline: 11px;
    gap: 10px;
  }
  .steps-grid strong {
    font-size: 13px;
  }
  .cta-actions .action-button {
    padding-inline: 9px;
  }
  .cta-actions .action-button strong {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}


/* =====================================================
   SERVICES DROPDOWN - DESKTOP
===================================================== */

.service-dropdown {
  position: relative;
}

.service-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-dropdown-toggle i {
  font-size: 10px;
  transition: transform 0.2s ease;
}

/* Bootstrap open state */
.service-dropdown-toggle.show i {
  transform: rotate(180deg);
}

.service-dropdown-menu {
  min-width: 190px;
  padding: 7px 0;
  margin-top: 8px !important;

  border: 1px solid #e2e2e2;
  border-radius: 5px;

  background: #fff;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-dropdown-menu .dropdown-item {
  padding: 10px 17px;

  color: #111;

  font-size: 14px;
  font-weight: 400;

  background: transparent;
}

.service-dropdown-menu .dropdown-item:hover,
.service-dropdown-menu .dropdown-item:focus {
  color: #111;
  background: #f5f5f5;
}


/* Desktop hover support */
@media (min-width: 992px) {

  .service-dropdown:hover .dropdown-menu {
    display: block;
  }

  .service-dropdown:hover .service-dropdown-toggle i {
    transform: rotate(180deg);
  }

}


/* =====================================================
   MOBILE SERVICES DROPDOWN
===================================================== */

.mobile-service-dropdown {
  width: 100%;
}

.mobile-service-toggle {
  width: 100%;

  display: flex !important;
  align-items: center;
  justify-content: space-between;

  padding: 9px 0;

  text-align: left;
  color: var(--ink);
}

/* remove any bootstrap-style extra arrow */
.mobile-service-toggle::after {
  display: none !important;
}

.mobile-service-toggle i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

/* rotate arrow when opened */
.mobile-service-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}


/* submenu container */
.mobile-service-menu {
  width: 100%;
  padding: 3px 0 4px 15px;
}


/* submenu links */
.mobile-service-link {
  display: block;

  width: 100%;

  padding: 9px 0;

  color: #333;

  font-size: 15px;
  font-weight: 400;

  text-decoration: none;
}

.mobile-service-link:hover,
.mobile-service-link:focus,
.mobile-service-link:active {
  color: var(--red);
}


/* Prevent active underline on mobile services button */
.mobile-service-toggle::after {
  content: none !important;
}


/* =====================================================
   SMALL SCREEN CLEANUP
===================================================== */

@media (max-width: 991px) {

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .mobile-nav .nav-link-c {
    width: 100%;
    text-align: left;
  }

  .mobile-service-dropdown {
    margin: 0;
  }

  .mobile-service-link {
    line-height: 1.4;
  }

}


/* Extra small mobile */
@media (max-width: 480px) {

  .offcanvas {
    width: min(88%, 330px) !important;
  }

  .mobile-nav .action-button {
    width: 100%;
  }

}
