:root {
  --ink: #182027;
  --muted: #5f6872;
  --line: #dce2e7;
  --soft: #f4f7f8;
  --panel: #ffffff;
  --brand: #0b3954;
  --brand-2: #12664f;
  --accent: #c58a2a;
  --accent-2: #e7b75f;
  --danger: #a33a2b;
  --shadow: 0 18px 45px rgba(24, 32, 39, 0.11);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

.fas::before {
  display: inline-block;
}

.fa-search::before { content: "\f002"; }
.fa-phone::before { content: "\f095"; }
.fa-chevron-down::before { content: "\f078"; }
.fa-home::before { content: "\f015"; }
.fa-border-all::before { content: "\f84c"; }
.fa-tools::before { content: "\f7d9"; }
.fa-list-ul::before { content: "\f0ca"; }
.fa-paint-roller::before { content: "\f5aa"; }
.fa-th-large::before { content: "\f009"; }
.fa-layer-group::before { content: "\f5fd"; }
.fa-bolt::before { content: "\f0e7"; }
.fa-building::before { content: "\f1ad"; }
.fa-brush::before { content: "\f55d"; }
.fa-vector-square::before { content: "\f5cb"; }
.fa-ruler-combined::before { content: "\f546"; }
.fa-clipboard-check::before { content: "\f46c"; }
.fa-check-circle::before { content: "\f058"; }
.fa-comment-dots::before { content: "\f4ad"; }

button,
input {
  font: inherit;
}

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

.sr-only,
.skip-link {
  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;
  z-index: 1000;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  color: #fff;
  background: var(--brand);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(24, 32, 39, 0.05);
}

.topline {
  color: #f7fbfc;
  background: #1f2b32;
}

.topline-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topline p {
  margin: 0;
  font-size: 13px;
}

.topline-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
}

.topline-links a {
  color: #fff;
}

.nav-row {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  width: 244px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.brand img,
.footer-brand img {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(11, 57, 84, 0.14);
  padding: 8px 10px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.site-nav > a,
.nav-dropdown > button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #24303a;
  border: 0;
  background: transparent;
  padding: 0 12px;
  font-weight: 700;
  cursor: pointer;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-dropdown > button:hover,
.nav-dropdown > button:focus-visible {
  color: var(--brand-2);
  outline: none;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  min-width: min(780px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: 0.18s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-section {
  min-width: 0;
}

.dropdown-section strong {
  display: block;
  padding: 6px 10px 8px;
  color: var(--brand);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dropdown-menu a {
  display: block;
  padding: 8px 10px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: #fff;
  background: var(--brand-2);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand);
  cursor: pointer;
}

.nav-toggle {
  display: none;
  gap: 4px;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.quote-button,
.primary-action,
.secondary-action,
.service-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid transparent;
  background: var(--brand-2);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.quote-button:hover,
.primary-action:hover,
.service-body a:hover {
  background: #0d523f;
}

.secondary-action {
  color: var(--ink);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.secondary-action.light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

.hero {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 23, 30, 0.9), rgba(12, 23, 30, 0.58), rgba(12, 23, 30, 0.32)),
    url("wp-content/uploads/2025/08/slider2.jpg") center/cover no-repeat;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 88px 0 92px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 170px));
  gap: 1px;
  margin: 42px 0 0;
  padding: 0;
}

.hero-metrics div {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 14px;
  backdrop-filter: blur(10px);
}

.hero-metrics dt {
  font-size: 24px;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.quick-services {
  position: relative;
  z-index: 2;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  transform: translateY(-26px);
  box-shadow: var(--shadow);
}

.quick-grid a {
  min-height: 116px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: #fff;
  font-weight: 900;
}

.quick-grid i {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
}

.section {
  padding: 82px 0;
}

.page-hero {
  padding: 86px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 57, 84, 0.94), rgba(18, 102, 79, 0.82)),
    url("wp-content/uploads/2025/08/default-header-img.jpg") center/cover no-repeat;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: 0;
}

.page-hero p:not(.section-kicker) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.intro-section,
.area-section,
.faq-section {
  background: var(--soft);
}

.intro-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: start;
}

.section h2,
.cta-band h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: 0;
}

.intro-copy p,
.section-heading p,
.seo-content p,
.cta-band p {
  color: var(--muted);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 700px;
}

.section-heading h2 {
  margin-bottom: 12px;
}

.service-category-block + .service-category-block {
  margin-top: 42px;
}

.service-category-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.service-category-heading h3 {
  margin: 0;
  color: var(--brand);
  font-size: 24px;
  line-height: 1.18;
}

.service-category-heading p {
  margin: 0;
  color: var(--muted);
}

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

.service-grid-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.service-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 100%;
  border: 1px solid var(--line);
  background: #fff;
}

.service-card-accordion {
  display: block;
  overflow: hidden;
  min-height: 0;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.service-card-accordion:hover,
.service-card-accordion[open] {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-card-accordion summary {
  display: block;
  cursor: pointer;
  list-style: none;
}

.service-card-accordion summary::-webkit-details-marker {
  display: none;
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.service-card-accordion summary img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.service-card-accordion summary h3 {
  margin: 12px 16px 8px;
  min-height: 58px;
  font-size: 20px;
  line-height: 1.18;
}

.service-card-accordion summary p {
  margin: 0 16px 16px;
  color: var(--muted);
  font-size: 14px;
}

.service-chip {
  display: inline-flex;
  margin: 14px 16px 0;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: #fff;
  background: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.service-details {
  padding: 0 16px 18px;
  border-top: 1px solid var(--line);
}

.service-details ul {
  margin: 14px 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.card-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 10px;
  color: #fff;
  background: var(--brand-2);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.card-actions a:first-child {
  background: var(--brand);
}

.service-body {
  padding: 26px;
}

.service-body > i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--accent);
}

.service-body h3 {
  margin: 16px 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.service-body p {
  margin: 0 0 14px;
  color: var(--muted);
}

.service-body ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

.service-body li {
  margin-bottom: 7px;
}

.process-section {
  background: #fff;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-list article,
.district-grid article,
.faq-list details,
.area-feature {
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px;
}

.process-list span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 28px;
  font-weight: 900;
}

.process-list h3,
.district-grid h3,
.area-feature h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.process-list p,
.district-grid p,
.area-feature p {
  margin: 0;
  color: var(--muted);
}

.area-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.area-group-grid {
  display: grid;
  gap: 16px;
}

.area-group-grid article {
  border: 1px solid var(--line);
  background: #fff;
  padding: 20px;
}

.area-group-grid h3 {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 20px;
}

.area-feature p + p {
  margin-top: 14px;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--brand);
  font-weight: 900;
}

.text-link:hover {
  color: var(--brand-2);
}

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

.area-tags a,
.area-link-grid a,
.area-link-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  color: var(--brand);
  border: 1px solid rgba(11, 57, 84, 0.18);
  background: #fff;
  font-weight: 800;
}

.area-tags-dense {
  gap: 8px;
}

.area-tags-dense a {
  min-height: 36px;
  padding: 0 11px;
  font-size: 14px;
}

.area-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 22px;
}

.area-link-grid span {
  color: var(--muted);
  background: #fff;
}

.area-tags a:hover,
.area-link-grid a:hover {
  color: #fff;
  background: var(--brand);
}

.linked-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 24px;
  padding: 0;
  list-style: none;
}

.linked-service-list a {
  display: block;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--brand);
  border: 1px solid var(--line);
  background: var(--soft);
  font-weight: 900;
}

.linked-service-list a:hover {
  color: #fff;
  background: var(--brand-2);
}

.service-sidebar .linked-service-list {
  grid-template-columns: 1fr;
  gap: 8px;
}

.service-sidebar .area-link-grid {
  margin: 8px 0 22px;
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.gallery-section {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid figure {
  margin: 0;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--soft);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(0deg, rgba(24, 32, 39, 0.88), rgba(24, 32, 39, 0));
}

.customer-content {
  background: #fff;
  border-top: 1px solid var(--line);
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 46px;
}

.text-columns h2 {
  font-size: 28px;
}

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

.faq-list details {
  padding: 0;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
}

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

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

.cta-band {
  padding: 64px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 57, 84, 0.96), rgba(18, 102, 79, 0.9)),
    url("wp-content/uploads/2025/08/default-header-img.jpg") center/cover no-repeat;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 690px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  color: #d7dee2;
  background: #1b252c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.9fr;
  gap: 34px;
  padding: 54px 0 34px;
}

.footer-brand {
  display: inline-block;
  width: 220px;
  margin-bottom: 16px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
}

.site-footer p {
  margin: 0;
  color: #b8c3c9;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 9px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: #aebbc2;
  font-size: 14px;
}

.footer-bottom a {
  color: #fff;
  font-weight: 900;
}

.footer-bottom a:hover {
  color: var(--accent-2);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 16px;
  color: #fff;
  background: #159c59;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  font-weight: 900;
}

.floating-whatsapp:hover {
  background: #11814a;
}

.content-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 34px;
  align-items: start;
}

.content-grid article h2,
.contact-form h2,
.contact-panel h2,
.sitemap-grid h2 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.2;
}

.content-grid p,
.contact-form p,
.contact-panel p {
  color: var(--muted);
}

.info-panel,
.contact-panel,
.contact-form,
.sitemap-grid article,
.value-grid article {
  border: 1px solid var(--line);
  background: #fff;
  padding: 26px;
}

.info-panel .primary-action {
  margin-top: 18px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-grid i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--accent);
  margin-bottom: 18px;
}

.value-grid h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.value-grid p {
  margin: 0;
  color: var(--muted);
}

.contact-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin-bottom: 10px;
  padding: 0 12px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}

.contact-panel a + a {
  background: var(--brand-2);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px;
  color: var(--ink);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand-2);
  outline: 2px solid rgba(18, 102, 79, 0.16);
}

.contact-form button {
  justify-self: start;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sitemap-grid ul {
  margin: 0;
  padding-left: 20px;
}

.sitemap-grid li {
  margin-bottom: 10px;
}

.sitemap-grid a {
  color: var(--brand);
  font-weight: 800;
}

.sitemap-grid a:hover {
  color: var(--brand-2);
}

.service-hero {
  padding: 76px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 57, 84, 0.96), rgba(18, 102, 79, 0.82)),
    url("wp-content/uploads/2025/08/default-header-img.jpg") center/cover no-repeat;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 46px;
  align-items: center;
}

.service-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: 0;
}

.service-hero p:not(.section-kicker) {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.service-hero img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
}

.service-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: start;
}

.service-page-grid article {
  max-width: 820px;
}

.service-page-grid article h2 {
  margin: 28px 0 10px;
  font-size: 28px;
  line-height: 1.18;
}

.service-page-grid article h2:first-of-type {
  margin-top: 0;
}

.service-page-grid article p {
  color: var(--muted);
}

.service-benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0 26px;
  padding: 0;
  list-style: none;
}

.service-benefit-list li {
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 18px;
  color: var(--ink);
  font-weight: 700;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 28px;
  padding: 0;
  list-style: none;
}

.method-list li {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 210px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 16px;
}

.method-list span {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}

.method-list strong {
  display: block;
  margin: 14px 0 6px;
  font-size: 16px;
  line-height: 1.2;
}

.method-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.mini-faq {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.mini-faq details {
  border: 1px solid var(--line);
  background: var(--soft);
}

.mini-faq summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 900;
}

.mini-faq summary::-webkit-details-marker {
  display: none;
}

.mini-faq p {
  margin: 0;
  padding: 0 16px 16px;
}

.inline-cta {
  margin-top: 30px;
  border: 1px solid rgba(18, 102, 79, 0.22);
  background: linear-gradient(180deg, #f4faf7, #ffffff);
  padding: 24px;
}

.inline-cta h2 {
  margin-top: 0;
}

.inline-cta .primary-action {
  margin-top: 8px;
}

.service-sidebar {
  position: sticky;
  top: 124px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px;
}

.service-sidebar h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.service-sidebar h2 + ul {
  margin-top: 0;
}

.service-sidebar ul {
  padding-left: 18px;
  margin-bottom: 22px;
}

.service-sidebar li {
  margin-bottom: 9px;
}

.service-sidebar a:not(.primary-action) {
  color: var(--brand);
  font-weight: 800;
}

.service-sidebar p {
  color: var(--muted);
}

@media (max-width: 1080px) {
  .nav-row {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-grid;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    order: 3;
    flex-basis: 100%;
    align-items: stretch;
    flex-direction: column;
    max-height: calc(100vh - 136px);
    overflow-y: auto;
    padding: 10px 0 18px;
    background: #fff;
    border-top: 1px solid var(--line);
  }

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

  .site-nav > a,
  .nav-dropdown > button {
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    border-bottom: 1px solid var(--line);
  }

  .dropdown-menu {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    max-width: 100%;
    max-height: min(58vh, 520px);
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: none;
    border: 0;
    border-left: 3px solid var(--brand-2);
    margin: 0 0 10px;
    padding: 8px 0 10px;
    background: var(--soft);
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: grid;
  }

  .dropdown-section {
    border-bottom: 1px solid rgba(11, 57, 84, 0.1);
  }

  .dropdown-section:last-child {
    border-bottom: 0;
  }

  .dropdown-section strong {
    padding: 11px 12px 6px;
    font-size: 11px;
  }

  .dropdown-menu a {
    padding: 10px 12px 10px 18px;
    font-size: 14px;
    border-bottom: 1px solid rgba(11, 57, 84, 0.08);
  }

  .header-actions {
    margin-left: 0;
  }

  .service-grid,
  .service-category-heading,
  .service-benefit-list,
  .intro-layout,
  .area-layout,
  .text-columns,
  .content-grid,
  .contact-layout,
  .service-hero-grid,
  .service-page-grid {
    grid-template-columns: 1fr;
  }

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

  .service-sidebar {
    position: static;
  }

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

  .process-list,
  .footer-grid,
  .sitemap-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .topline-inner,
  .footer-bottom,
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .topline-links,
  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .brand {
    width: 198px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .quote-button {
    flex: 1;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding: 72px 0 82px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-metrics,
  .quick-grid,
  .district-grid,
  .gallery-grid,
  .process-list,
  .footer-grid,
  .sitemap-grid,
  .value-grid,
  .linked-service-list {
    grid-template-columns: 1fr;
  }

  .quick-grid {
    transform: none;
    margin: 18px 0;
  }

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

  .service-card img {
    min-height: 220px;
  }

  .service-card-accordion summary img,
  .service-hero img {
    min-height: 0;
  }

  .inline-cta {
    padding: 20px;
  }

  .service-hero h1 {
    font-size: 34px;
  }

  .section {
    padding: 58px 0;
  }

  .section h2,
  .cta-band h2 {
    font-size: 28px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 48px;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .method-list {
    gap: 10px;
  }

  .method-list li {
    min-height: 190px;
    padding: 13px;
  }

  .method-list span {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .method-list strong {
    font-size: 15px;
  }

  .method-list p {
    font-size: 13px;
  }

  .primary-action,
  .secondary-action,
  .quote-button {
    width: 100%;
  }

  .topline p {
    font-size: 12px;
  }
}
