:root {
  color-scheme: light;
  --ink: #0d2430;
  --muted: #435f68;
  --line: #d5e6e8;
  --paper: #f5faf9;
  --panel: #ffffff;
  --deep: #051821;
  --blue: #087ea4;
  --blue-strong: #075f82;
  --cyan: #1bb4d8;
  --green: #20a85b;
  --green-strong: #14783f;
  --orange: #e86f24;
  --gold: #f4b740;
  --gold-deep: #b87705;
  --cream: #fff8ea;
  --aqua-soft: #e8fbfb;
  --shadow: 0 24px 60px rgba(5, 24, 33, 0.14);
  --shadow-soft: 0 18px 48px rgba(5, 24, 33, 0.08);
  --shadow-strong: 0 34px 80px rgba(5, 24, 33, 0.18);
  --max: 1180px;
  --header: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(8, 126, 164, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 126, 164, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(236, 254, 255, 0.72), rgba(255, 248, 234, 0.32) 38%, rgba(245, 250, 249, 1)),
    var(--paper);
  background-size: 46px 46px, 46px 46px, auto;
  color: var(--ink);
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(232, 111, 36, 0.9);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--deep);
  color: #fff;
  border-radius: 6px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--green), var(--cyan), var(--orange));
}

.site-header {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 60;
  transition: transform 220ms ease, background 220ms ease;
}

.nav-shell {
  width: min(var(--max), calc(100vw - 32px));
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 253, 252, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(5, 24, 33, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(5, 24, 33, 0.14));
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #294650;
  border-radius: 6px;
  font-weight: 700;
  position: relative;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links a[aria-current="page"] {
  background: linear-gradient(135deg, #e9f7f5, #fff7e8);
  color: var(--blue-strong);
  box-shadow: inset 0 0 0 1px rgba(8, 126, 164, 0.08);
}

.nav-call,
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.nav-call {
  padding: 0 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--deep), var(--blue-strong));
  box-shadow: 0 12px 24px rgba(5, 24, 33, 0.18);
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.section {
  position: relative;
  width: min(var(--max), calc(100vw - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

.hero {
  width: 100%;
  min-height: 100vh;
  padding: calc(var(--header) + 46px) 0 62px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.96) 0%, rgba(236, 254, 255, 0.82) 45%, rgba(255, 248, 234, 0.5) 100%),
    url("assets/shanmukha-logo-512.png") center right -220px / 700px auto no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 96px 0 auto 0;
  height: 170px;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(244, 183, 64, 0.18) 18% 19.4%, transparent 19.4% 100%),
    linear-gradient(115deg, transparent 0 64%, rgba(27, 180, 216, 0.16) 64% 65.2%, transparent 65.2% 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 92px;
  background: linear-gradient(180deg, rgba(247, 251, 250, 0), var(--paper));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100vw - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 52px;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.gridline,
.route {
  position: absolute;
  display: block;
  background: rgba(8, 126, 164, 0.12);
}

.gridline-a {
  top: 26%;
  left: 0;
  width: 100%;
  height: 1px;
}

.gridline-b {
  top: 0;
  left: 64%;
  width: 1px;
  height: 100%;
}

.route {
  width: 36%;
  height: 7px;
  border-radius: 999px;
  transform: skewX(-28deg);
  box-shadow: 0 12px 28px rgba(5, 24, 33, 0.12);
  animation: routeFloat 7s ease-in-out infinite;
}

.route-a {
  right: 10%;
  bottom: 18%;
  background: var(--orange);
  opacity: 0.28;
}

.route-b {
  left: 5%;
  bottom: 28%;
  background: var(--green);
  opacity: 0.24;
  animation-delay: -2s;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue-strong);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 3px;
  background: var(--orange);
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--deep);
  font-size: 4.15rem;
  line-height: 1.02;
  font-weight: 900;
  text-wrap: balance;
  text-shadow: 0 12px 34px rgba(5, 24, 33, 0.09);
}

h2 {
  margin-bottom: 18px;
  color: var(--deep);
  font-size: 2.55rem;
  line-height: 1.12;
  font-weight: 900;
  text-wrap: balance;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  position: relative;
}

.hero h1::after,
.page-hero h1::after {
  content: "";
  display: block;
  width: 118px;
  height: 7px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--green));
  box-shadow: 0 12px 24px rgba(232, 111, 36, 0.18);
}

h3 {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 1.12rem;
  line-height: 1.25;
  font-weight: 900;
}

.hero-text {
  max-width: 650px;
  color: #294c58;
  font-size: 1.18rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 24px;
}

.btn {
  padding: 0 22px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), #0c8f8f);
  box-shadow: 0 18px 36px rgba(20, 120, 63, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-strong), var(--blue-strong));
}

.btn-secondary {
  color: var(--deep);
  background: linear-gradient(135deg, #fff, #f4fbfb);
  border: 1px solid rgba(8, 126, 164, 0.16);
  box-shadow: 0 12px 28px rgba(5, 24, 33, 0.08);
}

.btn-secondary:hover {
  color: var(--blue-strong);
  border-color: rgba(8, 126, 164, 0.35);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof {
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.hero-proof div {
  padding: 16px 18px;
  border: 1px solid rgba(8, 126, 164, 0.14);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.hero-proof div:nth-child(2) {
  border-left-color: var(--green);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--deep);
  font-size: 1.02rem;
  font-weight: 900;
}

.hero-proof span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-points span,
.area-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 12px;
  border: 1px solid rgba(8, 126, 164, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(236, 254, 255, 0.62));
  color: #244650;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(5, 24, 33, 0.06);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.logo-stage {
  position: relative;
  width: min(100%, 510px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(232, 248, 246, 0.86)),
    linear-gradient(45deg, transparent 0 42%, rgba(232, 111, 36, 0.12) 42% 44%, transparent 44% 100%),
    #fff;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  transform: translate3d(0, var(--logo-shift, 0px), 0) rotateX(var(--logo-tilt, 0deg));
  transition: transform 120ms linear;
}

.logo-stage:hover {
  transform: translate3d(0, var(--logo-shift, 0px), 0) rotateX(var(--logo-tilt, 0deg)) translateY(-4px);
}

.logo-stage::selection {
  background: transparent;
}

.logo-stage::before,
.logo-stage::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  height: 9px;
  border-radius: 999px;
}

.logo-stage::before {
  top: 10%;
  background: var(--cyan);
  opacity: 0.45;
}

.logo-stage::after {
  bottom: 11%;
  background: var(--orange);
  opacity: 0.5;
}

.logo-stage img {
  position: relative;
  z-index: 1;
  width: 86%;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(6, 22, 29, 0.18));
}

.status-panel {
  position: absolute;
  left: 0;
  bottom: 54px;
  width: min(88%, 360px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(216, 229, 232, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 252, 252, 0.92));
  box-shadow: 0 18px 50px rgba(5, 24, 33, 0.16);
}

.status-panel strong,
.status-panel span {
  display: block;
}

.status-panel strong {
  color: var(--deep);
  font-size: 1.06rem;
}

.status-panel span {
  color: var(--muted);
  font-weight: 700;
}

.status-panel a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 7px;
  cursor: pointer;
}

@keyframes routeFloat {
  0%,
  100% {
    transform: translateX(0) skewX(-28deg);
  }
  50% {
    transform: translateX(18px) skewX(-28deg);
  }
}

.page-hero {
  position: relative;
  width: min(var(--max), calc(100vw - 40px));
  min-height: 680px;
  margin: 0 auto;
  padding: calc(var(--header) + 72px) 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 56px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 120px -40px 38px;
  z-index: -1;
  border: 1px solid rgba(8, 126, 164, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(236, 254, 255, 0.82)),
    linear-gradient(45deg, transparent 0 52%, rgba(232, 111, 36, 0.09) 52% 54%, transparent 54% 100%);
  box-shadow: var(--shadow-soft);
}

.page-hero-copy p {
  max-width: 680px;
  color: #304d57;
  font-size: 1.13rem;
}

.page-hero-card,
.coverage-card,
.contact-mini-card {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 253, 252, 0.9));
  box-shadow: var(--shadow);
}

.page-hero-card {
  display: grid;
  place-items: center;
  min-height: 390px;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.page-hero-card::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(8, 126, 164, 0.14);
  border-radius: 8px;
  pointer-events: none;
}

.page-hero-card img {
  width: min(100%, 390px);
  filter: drop-shadow(0 22px 34px rgba(5, 24, 33, 0.18));
}

.coverage-card,
.contact-mini-card {
  padding: 32px;
}

.coverage-card strong,
.contact-mini-card strong,
.contact-mini-card span,
.contact-mini-card a {
  display: block;
}

.coverage-card strong,
.contact-mini-card strong {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 900;
}

.coverage-card p,
.contact-mini-card span {
  margin-bottom: 18px;
  color: var(--muted);
}

.contact-mini-card a {
  color: var(--blue-strong);
  font-weight: 900;
}

.quick-strip {
  width: min(var(--max), calc(100vw - 40px));
  margin: -30px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: linear-gradient(90deg, rgba(8, 126, 164, 0.2), rgba(32, 168, 91, 0.18), rgba(232, 111, 36, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.metric {
  min-height: 126px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(240, 253, 252, 0.9));
  position: relative;
}

.metric::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: var(--cyan);
}

.metric:nth-child(2)::before {
  background: var(--green);
}

.metric:nth-child(3)::before {
  background: var(--orange);
}

.metric:nth-child(4)::before {
  background: var(--gold);
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  color: var(--blue-strong);
  font-size: 1.3rem;
  font-weight: 900;
}

.metric span {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}

.body-copy {
  color: #314f59;
  font-size: 1.05rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.service-grid,
.why-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

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

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

.service-card,
.why-grid article,
.review-grid figure,
.step,
details {
  margin: 0;
  border: 1px solid rgba(213, 230, 232, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(248, 253, 252, 0.92));
  box-shadow: 0 10px 30px rgba(5, 24, 33, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card,
.why-grid article {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.service-card::before,
.why-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--orange));
  opacity: 0.86;
}

.service-card:hover,
.why-grid article:hover,
.review-grid figure:hover {
  transform: translateY(-6px);
  border-color: rgba(8, 126, 164, 0.36);
  box-shadow: 0 24px 58px rgba(5, 24, 33, 0.12);
}

.service-card svg,
.why-grid svg {
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  padding: 8px;
  border-radius: 8px;
  background: #e9f7f5;
  color: var(--blue);
  box-sizing: content-box;
}

.service-card:nth-child(2n) svg {
  color: var(--green);
}

.service-card:nth-child(3n) svg {
  color: var(--orange);
}

.service-card p,
.why-grid p,
.step p,
.review-grid blockquote,
details p {
  margin-bottom: 0;
  color: var(--muted);
}

.emergency {
  width: 100%;
  padding: 70px 20px;
  background:
    linear-gradient(135deg, rgba(5, 24, 33, 0.97), rgba(7, 95, 130, 0.88)),
    var(--deep);
  overflow: hidden;
}

.emergency-card {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #e8f7f8;
  background:
    linear-gradient(135deg, rgba(8, 126, 164, 0.34), rgba(32, 168, 91, 0.14)),
    linear-gradient(45deg, transparent 0 46%, rgba(244, 183, 64, 0.14) 46% 48%, transparent 48% 100%),
    #071b23;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.emergency-card h2,
.emergency-card .section-kicker {
  color: #fff;
}

.emergency-card p {
  max-width: 700px;
  margin-bottom: 0;
  color: #b8cfd5;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  position: relative;
  min-height: 260px;
  padding: 24px;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  border-radius: 7px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.step:nth-child(2) span {
  background: var(--green);
}

.step:nth-child(3) span {
  background: var(--orange);
}

.step:nth-child(4) span {
  background: var(--deep);
}

.area-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(8, 126, 164, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(232, 251, 251, 0.9)),
    linear-gradient(45deg, transparent 0 52%, rgba(232, 111, 36, 0.08) 52% 54%, transparent 54% 100%),
    #fff;
  box-shadow: var(--shadow-soft);
}

.area-panel p {
  color: var(--muted);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.area-directory article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(5, 24, 33, 0.06);
}

.area-directory h3 {
  margin-bottom: 18px;
}

.compact-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contact-page-section {
  padding-top: 70px;
}

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

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

.review-grid figure {
  padding: 30px;
  position: relative;
}

.review-grid figure::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 24px;
  width: 42px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--orange));
}

.review-grid blockquote {
  font-size: 1.02rem;
  padding-top: 12px;
}

.review-grid figcaption {
  margin-top: 24px;
  color: var(--deep);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 0;
  overflow: hidden;
}

summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--deep);
  cursor: pointer;
  font-weight: 900;
}

summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #e8f7f5;
  color: var(--blue-strong);
  flex: 0 0 auto;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 22px 22px;
}

.contact {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  background: #edf8f6;
}

.contact-card {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: 42px;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 252, 251, 0.94));
  box-shadow: var(--shadow);
}

.contact-card p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-list a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--deep);
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease;
}

.contact-list a:hover {
  color: var(--blue-strong);
  border-color: rgba(8, 126, 164, 0.4);
}

.quote-form {
  display: grid;
  gap: 12px;
}

.quote-form label {
  color: var(--deep);
  font-size: 0.92rem;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #c7dde1;
  border-radius: 7px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(27, 180, 216, 0.2);
}

.quote-form button {
  margin-top: 8px;
}

.footer {
  width: min(var(--max), calc(100vw - 40px));
  margin: 30px auto 0;
  padding: 30px 30px 104px;
  color: #c5d7dc;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(135deg, rgba(8, 126, 164, 0.18), rgba(32, 168, 91, 0.1)),
    linear-gradient(45deg, transparent 0 54%, rgba(244, 183, 64, 0.12) 54% 55.5%, transparent 55.5% 100%),
    #061922;
  box-shadow: 0 -18px 54px rgba(5, 24, 33, 0.12);
}

.footer div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

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

.footer p {
  margin-bottom: 8px;
}

.footer div p {
  color: #ffffff;
  font-weight: 900;
}

.footer a {
  color: #ffffff;
  font-weight: 800;
}

.designer-credit {
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 18px 0 12px;
  padding: 12px 16px;
  border: 1px solid rgba(244, 183, 64, 0.42);
  border-radius: 8px;
  color: #fff9df;
  background:
    linear-gradient(135deg, rgba(244, 183, 64, 0.24), rgba(232, 111, 36, 0.18)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.designer-credit strong {
  color: #ffffff;
  font-weight: 900;
}

.designer-credit a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  color: #061922;
  background: linear-gradient(135deg, var(--gold), #fff0a8);
  box-shadow: 0 10px 22px rgba(244, 183, 64, 0.24);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: grid;
  gap: 10px;
}

.floating-btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  color: #fff;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 36px rgba(5, 24, 33, 0.24);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(5, 24, 33, 0.28);
}

.floating-call {
  background: linear-gradient(135deg, var(--green), #0c8f8f);
}

.floating-whatsapp {
  background: linear-gradient(135deg, #128c4a, #1dbf73);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  h2 {
    font-size: 2.1rem;
  }

  .hero-inner,
  .page-hero,
  .split,
  .area-panel,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 440px;
  }

  .quick-strip,
  .service-grid,
  .service-grid-wide,
  .why-grid,
  .review-grid,
  .timeline,
  .area-directory {
    grid-template-columns: repeat(2, 1fr);
  }

  .emergency-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --header: 76px;
  }

  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .nav-shell {
    width: calc(100vw - 20px);
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 36px rgba(6, 22, 29, 0.14);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    justify-content: center;
  }

  .nav-call {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 122px;
    background-position: center bottom -230px;
    background-size: 520px auto;
  }

  .hero-inner {
    gap: 26px;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-proof {
    max-width: none;
  }

  .status-panel {
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
  }

  .section {
    width: min(var(--max), calc(100vw - 28px));
    padding: 78px 0;
  }

  .page-hero {
    width: min(var(--max), calc(100vw - 28px));
    min-height: auto;
    padding: 126px 0 70px;
    gap: 28px;
  }

  .page-hero::before {
    inset: 92px -10px 26px;
  }

  .page-hero-card {
    min-height: 300px;
  }

  .quick-strip {
    width: calc(100vw - 28px);
    grid-template-columns: 1fr 1fr;
  }

  .emergency,
  .contact {
    padding-left: 14px;
    padding-right: 14px;
  }

  .emergency-card,
  .area-panel,
  .contact-card {
    padding: 28px;
  }
}

@media (max-width: 600px) {
  .brand small {
    display: none;
  }

  h1 {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.78rem;
  }

  .hero-text,
  .body-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .quick-strip,
  .service-grid,
  .service-grid-wide,
  .why-grid,
  .review-grid,
  .timeline,
  .area-directory {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 104px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .logo-stage {
    width: min(100%, 330px);
  }

  .status-panel {
    width: min(100%, 330px);
  }

  .contact-card,
  .emergency-card,
  .area-panel,
  .coverage-card,
  .contact-mini-card,
  .area-directory article {
    padding: 22px;
  }

  .compact-contact {
    justify-content: stretch;
  }

  .compact-contact .btn {
    width: 100%;
  }

  .floating-actions {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr 1fr;
  }

  .floating-btn {
    min-height: 52px;
    justify-content: center;
    padding: 0 10px;
  }

  .footer {
    padding-bottom: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
