/* 
  Plumbing + Solar Geyser Clean HTML Site
  Palette: white background, dark blue primary, deep red accent
*/

:root {
  --white: #ffffff;
  --bg: #f7f9fc;
  --bg-blue: #eef4fb;
  --dark-blue: #08244d;
  --blue: #1f5fbf;
  --blue-soft: #dfeafb;
  --red: #9f1730;
  --red-dark: #7f1026;
  --text: #17345e;
  --muted: #334965;
  --line: rgba(16, 47, 95, 0.12);
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(18, 49, 92, 0.10);
  --shadow-strong: 0 28px 70px rgba(18, 49, 92, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

.top-bar {
  color: #ffffff;
  background: #08244d;
  font-size: 0.92rem;
}

.top-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-links a {
  color: #ffffff;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--dark-blue);
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 0.95rem;
  color: #ffffff;
  font-weight: 900;
  background: #9f1730;
  box-shadow: 0 12px 26px rgba(31, 95, 191, 0.18);
}


.site-logo {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  display: block;
}

.brand-with-logo {
  gap: 0.85rem;
}

.footer-logo {
  width: 3rem;
  height: 3rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.brand small {
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: #ffffff !important;
  background: #9f1730;
}

.nav-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: #ffffff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0.25rem auto;
  border-radius: 99px;
  background: #08244d;
}

.hero {
  position: relative;
  padding: 5.5rem 1rem 3.25rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(247, 249, 252, 0.88), rgba(247, 249, 252, 0.94)),
    url("images/solar-geyser-repairs-plumb-a-nator.webp") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero-shape {
  display: none;
}

.hero-shape-one {
  width: 18rem;
  height: 18rem;
  top: 3rem;
  left: -7rem;
  background: var(--blue-soft);
}

.hero-shape-two {
  width: 14rem;
  height: 14rem;
  right: -4rem;
  bottom: 4rem;
  background: rgba(184, 32, 58, 0.12);
}

.hero-grid {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow,
.section-kicker {
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.hero h1 {
  margin-top: 1rem;
  color: var(--dark-blue);
  font-size: clamp(1.75rem, 3vw, 2.9rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 780px;
}

.hero-subtitle {
  margin-top: 1.3rem;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  min-height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 1.22rem;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: #ffffff;
  background: #9f1730;
}

.btn-secondary {
  color: var(--dark-blue);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.trust-row {
  margin-top: 2rem;
  max-width: 620px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.trust-row div {
  padding: 1.05rem;
  border-right: 1px solid var(--line);
}

.trust-row div:last-child {
  border-right: 0;
}

.trust-row strong {
  display: block;
  color: var(--dark-blue);
  font-size: 1.02rem;
}

.trust-row span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.quote-card {
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(16, 47, 95, 0.10);
  box-shadow: var(--shadow-strong);
}

.form-top {
  padding: 1rem 1rem 0.2rem;
}

.form-top p {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-top h2 {
  margin-top: 0.55rem;
  color: var(--dark-blue);
  font-size: 1.45rem;
  letter-spacing: -0.045em;
}

.form-top span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  line-height: 1.6;
}

.quote-form {
  padding: 1rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.field-group {
  margin-bottom: 0.95rem;
}

label {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--dark-blue);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(16, 47, 95, 0.14);
  border-radius: 0.95rem;
  padding: 0.9rem 0.92rem;
  color: var(--dark-blue);
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #92a0b5;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(31, 95, 191, 0.60);
  box-shadow: 0 0 0 4px rgba(31, 95, 191, 0.10);
}

.submit-btn {
  width: 100%;
  min-height: 3.25rem;
  border: 0;
  border-radius: 1rem;
  color: #ffffff;
  background: #9f1730;
  font-weight: 950;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
}

.form-note,
.form-status {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 1rem;
  text-align: center;
}

.form-status.success {
  color: #117554;
}

.form-status.error {
  color: var(--red);
}

.quick-services {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1rem 0.55rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.quick-services a {
  padding: 0.76rem 1rem;
  border-radius: 999px;
  color: var(--dark-blue);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight: 850;
}

.section,
.solar-section,
.split-section,
.areas-section,
.faq-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.6rem 1rem;
}

.section-heading {
  max-width: 800px;
}

.section-heading h2,
.solar-copy h2,
.split-copy h2,
.cta-band h2 {
  margin-top: 0.65rem;
  color: var(--dark-blue);
  font-size: clamp(1.55rem, 2.7vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.service-grid {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card,
.reason,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.service-card {
  padding: 1.35rem;
}

.icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.2rem;
  display: grid;
  place-items: center;
  border-radius: 0.9rem;
  color: #ffffff;
  background: #08244d;
  font-size: 0.82rem;
  font-weight: 950;
}

.service-card h3,
.reason strong {
  color: var(--dark-blue);
  font-size: 1rem;
}

.service-card p,
.solar-copy p,
.split-copy p,
.reason span,
.faq-list p {
  margin-top: 0.65rem;
  color: var(--muted);
  line-height: 1.68;
}

.solar-card {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.3rem, 4vw, 2.4rem);
  border-radius: 34px;
  color: #ffffff;
  background: #08244d;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  position: relative;
}

.solar-card::after {
  content: "";
  position: absolute;
  width: 20rem;
  height: 20rem;
  right: -8rem;
  top: -8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.solar-copy,
.solar-panel {
  position: relative;
  z-index: 1;
}

.solar-copy .section-kicker,
.solar-copy h2,
.solar-copy p {
  color: #ffffff;
}

.solar-copy p {
  opacity: 0.88;
}

.check-list {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.75rem;
  list-style: none;
}

.check-list li {
  padding-left: 1.8rem;
  position: relative;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: 950;
}

.solar-panel {
  border-radius: 26px;
  padding: 1.35rem;
  background: #ffffff;
  color: var(--dark-blue);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.18);
}

.sale-badge {
  display: inline-flex;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  color: #ffffff;
  background: #9f1730;
  font-weight: 950;
}

.solar-panel h3 {
  margin-top: 1rem;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
}

.solar-panel p {
  margin-top: 0.65rem;
  color: var(--muted);
  line-height: 1.65;
}

.price-box {
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: 18px;
  background: var(--bg-blue);
}

.price-box span,
.price-box strong {
  display: block;
}

.price-box span {
  color: var(--red);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-box strong {
  margin-top: 0.35rem;
  color: var(--dark-blue);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.reasons {
  display: grid;
  gap: 1rem;
}

.reason {
  padding: 1.25rem;
}

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

.area-grid {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.area-grid a {
  padding: 1rem;
  border-radius: 16px;
  color: var(--dark-blue);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight: 850;
  transition: transform 0.2s ease, color 0.2s ease;
}

.area-grid a:hover {
  transform: translateY(-2px);
  color: var(--red);
}

.cta-band {
  max-width: 1180px;
  margin: 1.35rem auto;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-radius: 30px;
  background: #9f1730;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-strong);
}

.cta-band p,
.cta-band h2 {
  color: #ffffff;
}

.cta-band p {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

.cta-band h2 {
  max-width: 780px;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
}

.faq-list {
  margin-top: 1.45rem;
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  padding: 1.1rem 1.25rem;
}

summary {
  cursor: pointer;
  color: var(--dark-blue);
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.footer {
  margin-top: 3rem;
  background: #061a38;
  color: #ffffff;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3.5rem 1rem 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.75fr 0.85fr 0.95fr;
  gap: 2rem;
}

.footer .brand,
.footer h3 {
  color: #ffffff;
}

.footer .brand small {
  color: #ffffff;
}

.footer p {
  margin-top: 1rem;
  line-height: 1.7;
  max-width: 360px;
  color: #ffffff;
}

.footer h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer a,
.footer span {
  display: block;
  margin-top: 0.62rem;
  color: #ffffff;
}

.footer a:hover {
  color: #ffffff;
}

.footer-cta {
  display: inline-flex !important;
  width: fit-content;
  margin-top: 1rem !important;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: #ffffff !important;
  background: #9f1730;
  font-weight: 900;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.1rem 1rem 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js-enabled .reveal.visible,
.no-js .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 940px) {
  .top-bar-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 5rem;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 0.65rem;
  }

  .hero-grid,
  .solar-card,
  .split-section {
    grid-template-columns: 1fr;
  }

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

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

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

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3.6rem;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.35rem);
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .trust-row,
  .field-row,
  .service-grid,
  .area-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-row div:last-child {
    border-bottom: 0;
  }

  .section,
  .how-work-section,
  .brands-section,
  .local-content-section,
  .authority-section,
  .money-services-section,
  .speed-service-section,
  .emergency-prep-section,
  .proof-media-section,
  .team-section,
  .lifecycle-section,
  .standards-section,
  .solar-section,
  .split-section,
  .areas-section,
  .faq-section {
    padding: 2.2rem 1rem;
  }
}


.back-top-btn {
  display: none;
  background: #08244d;
  cursor: pointer;
}

.back-top-btn.show {
  display: inline-flex;
}

@media (max-width: 420px) {
  .site-logo {
    width: 3rem;
    height: 3rem;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand small {
    font-size: 0.7rem;
  }
}


.floating-actions {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.25rem;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: -0.01em;
  border: 1px solid rgba(255,255,255,0.42);
}

.floating-icon {
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0,0,0,0.28);
  font-size: 0.95rem;
  line-height: 1;
}

.whatsapp-btn {
  background: #064d2b;
}

.call-btn {
  background: #9f1730;
}

.back-top-btn {
  display: none;
  background: #08244d;
  cursor: pointer;
}

.back-top-btn.show {
  display: inline-flex;
}

@media (max-width: 640px) {
  .floating-actions {
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .floating-btn {
    min-height: 3rem;
    padding: 0.76rem 0.9rem;
  }
}


.breadcrumb {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.9rem 1rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  color: rgba(16, 47, 95, 0.35);
}

.breadcrumb a {
  color: var(--blue);
  font-weight: 800;
}

.policy-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 4rem 1rem 5rem;
}

.policy-card {
  padding: clamp(1.3rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
}

.policy-card h1 {
  color: var(--dark-blue);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.policy-card h2 {
  margin-top: 2rem;
  color: var(--dark-blue);
  font-size: 1.05rem;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.75;
}

.policy-card p {
  margin-top: 1rem;
}


@supports (content-visibility: auto) {
  .section,
  .how-work-section,
  .brands-section,
  .local-content-section,
  .authority-section,
  .money-services-section,
  .speed-service-section,
  .emergency-prep-section,
  .proof-media-section,
  .team-section,
  .lifecycle-section,
  .standards-section,
  .solar-section,
  .split-section,
  .areas-section,
  .faq-section,
  .footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
  }
}


.footer a:focus-visible,
.nav-links a:focus-visible,
.floating-btn:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.footer a:hover {
  text-decoration: underline;
}

.floating-btn span {
  color: #ffffff;
}


.how-work-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.35rem 1rem 2.3rem;
}

.work-steps {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.work-step {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.work-step::after {
  content: "";
  position: absolute;
  width: 8rem;
  height: 8rem;
  right: -4rem;
  top: -4rem;
  border-radius: 999px;
  background: rgba(159, 23, 48, 0.08);
}

.work-number {
  position: relative;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  color: #ffffff;
  background: #9f1730;
  font-weight: 950;
  font-size: 0.9rem;
}

.work-step h3 {
  position: relative;
  z-index: 1;
  color: var(--dark-blue);
  font-size: 1.02rem;
}

.work-step p {
  position: relative;
  z-index: 1;
  margin-top: 0.55rem;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 940px) {
  .work-steps {
    grid-template-columns: 1fr;
  }
}


/* V17 tighter section flow */
.how-work-section {
  padding-top: 1.25rem;
  padding-bottom: 2.1rem;
}

#services.section {
  padding-top: 2.1rem;
}

#solar.solar-section {
  padding-top: 2.1rem;
  padding-bottom: 2.3rem;
}

#why-us.split-section {
  padding-top: 2.1rem;
  padding-bottom: 2.3rem;
}

#areas.areas-section {
  padding-top: 2.1rem;
  padding-bottom: 2.1rem;
}

.cta-band {
  margin-top: 0.7rem;
  margin-bottom: 0.7rem;
}

#faq.faq-section {
  padding-top: 2.1rem;
}

.work-steps,
.service-grid,
.area-grid,
.faq-list {
  margin-top: 1.15rem;
}

.solar-copy .hero-actions {
  margin-top: 1.25rem;
}

@media (max-width: 640px) {
  .how-work-section,
  #services.section,
  #solar.solar-section,
  #why-us.split-section,
  #areas.areas-section,
  #faq.faq-section {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
  }

  .cta-band {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}


/* V18 trust row heading emphasis */
.trust-row strong {
  color: #9f1730;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}


.brands-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.1rem 1rem;
}

.brands-section .section-heading p:last-child {
  margin-top: 0.65rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 820px;
}

.brand-cloud {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.brand-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 2.45rem;
  padding: 0.58rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--dark-blue);
  background: #ffffff;
  font-weight: 850;
  box-shadow: var(--shadow);
}

@media (max-width: 640px) {
  .brands-section {
    padding: 1.8rem 1rem;
  }

  .brand-cloud span {
    width: 100%;
    justify-content: center;
  }
}


/* V20 brands section flow */
#brands + #services.section {
  padding-top: 1.8rem;
}


.section-intro {
  margin-top: 0.75rem;
  max-width: 860px;
  color: var(--muted);
  line-height: 1.72;
}

.service-note {
  margin-top: 1.2rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.service-note h3 {
  color: var(--dark-blue);
  font-size: 1.05rem;
}

.service-note p {
  margin-top: 0.55rem;
  max-width: 880px;
  color: var(--muted);
  line-height: 1.72;
}

.service-note .btn {
  margin-top: 1rem;
}


.solar-options-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.solar-options-grid article {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.solar-options-grid span {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  color: #08244d;
  background: #ffffff;
  font-weight: 950;
  font-size: 0.78rem;
}

.solar-options-grid h3 {
  margin-top: 0.75rem;
  color: #ffffff;
  font-size: 1rem;
}

.solar-options-grid p {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.90);
  line-height: 1.6;
}

.solar-check-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
  list-style: none;
}

.solar-check-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--muted);
  line-height: 1.55;
}

.solar-check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #9f1730;
  font-weight: 950;
}

@media (max-width: 940px) {
  .solar-options-grid {
    grid-template-columns: 1fr;
  }
}


/* V24 service card heading badges and page-wide card contrast */
.service-title-badge {
  width: 100%;
  height: auto;
  min-height: 3.4rem;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  border-radius: 1rem;
  color: #ffffff;
  background: #9f1730;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 950;
}

.service-card,
.reason,
.service-note,
.faq-list details {
  background: #08244d;
  color: #ffffff;
}

.service-card h3,
.reason strong,
.service-note h3,
.faq-list summary {
  color: #ffffff;
}

.service-card p,
.reason span,
.service-note p,
.faq-list p {
  color: rgba(255,255,255,0.92);
}

.service-note .btn-primary {
  background: #9f1730;
}

.area-grid a {
  background: #08244d;
  color: #ffffff;
}

.area-grid a:hover {
  color: #ffffff;
  background: #9f1730;
}

.brands-section .brand-cloud span {
  background: #08244d;
  color: #ffffff;
}

/* Keep How We Work white as requested */
.how-work-section .work-step {
  background: #ffffff;
  color: var(--text);
}

.how-work-section .work-step h3 {
  color: var(--dark-blue);
}

.how-work-section .work-step p {
  color: var(--muted);
}

@media (max-width: 640px) {
  .service-title-badge {
    justify-content: center;
    text-align: center;
  }
}


/* V24 why choose us grid refinement */
.reasons {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 940px) {
  .reasons {
    grid-template-columns: 1fr;
  }
}


.local-content-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.1rem 1rem;
}

.local-content-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.local-content-grid article {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #08244d;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.local-content-grid h3 {
  color: #ffffff;
  font-size: 1.02rem;
}

.local-content-grid p {
  margin-top: 0.55rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
}

@media (max-width: 940px) {
  .local-content-grid {
    grid-template-columns: 1fr;
  }
}


.lifecycle-section,
.standards-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.1rem 1rem;
}

.lifecycle-grid,
.standards-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

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

.lifecycle-grid article,
.standards-grid article {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #08244d;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.lifecycle-grid span {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.85rem;
  color: #ffffff;
  background: #9f1730;
  font-weight: 950;
  font-size: 0.82rem;
}

.lifecycle-grid h3,
.standards-grid h3 {
  margin-top: 0.8rem;
  color: #ffffff;
  font-size: 1.02rem;
}

.standards-grid h3 {
  margin-top: 0;
}

.lifecycle-grid p,
.standards-grid p {
  margin-top: 0.55rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
}

@media (max-width: 940px) {
  .lifecycle-grid,
  .standards-grid {
    grid-template-columns: 1fr;
  }
}


.hero-trust-badges {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-trust-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.82rem;
  border-radius: 999px;
  color: #ffffff;
  background: #08244d;
  font-weight: 900;
  font-size: 0.9rem;
}

.safe-choice-strip {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.safe-choice-strip div {
  padding: 1rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: #9f1730;
}

.safe-choice-strip strong,
.safe-choice-strip span {
  display: block;
}

.safe-choice-strip strong {
  font-size: 1rem;
}

.safe-choice-strip span {
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.94);
  line-height: 1.5;
  font-size: 0.95rem;
}

.authority-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.1rem 1rem;
}

.authority-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.authority-card h2 {
  margin-top: 0.55rem;
  color: var(--dark-blue);
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.authority-card p:last-child {
  margin-top: 0.6rem;
  color: var(--muted);
  line-height: 1.68;
  max-width: 850px;
}

.mobile-sticky-contact {
  display: none;
}

@media (max-width: 940px) {
  .safe-choice-strip {
    grid-template-columns: 1fr;
  }

  .authority-card {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .mobile-sticky-contact {
    position: fixed;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    pointer-events: auto;
  }

  .mobile-sticky-contact a {
    min-height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: #9f1730;
    font-weight: 950;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  }

  .mobile-sticky-contact a:last-child {
    background: #064d2b;
  }

  .floating-actions {
    display: none;
  }
}


.solar-quote-note {
  max-width: 1180px;
  margin: 0.75rem auto 0;
  padding: 0 1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.solar-quote-note p {
  color: var(--muted);
  line-height: 1.65;
  max-width: 850px;
}

.solar-quote-note a {
  flex: 0 0 auto;
  color: #9f1730;
  font-weight: 950;
}

@media (max-width: 760px) {
  .solar-quote-note {
    align-items: flex-start;
    flex-direction: column;
  }
}


.nav-call {
  padding: 0.86rem 1.15rem;
  border-radius: 999px;
  color: #ffffff !important;
  background: #9f1730;
  font-weight: 950;
}

.insurance-trust-bar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.95rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  color: #ffffff;
  background: #08244d;
  border-radius: var(--radius-md);
}

.insurance-trust-bar strong {
  font-weight: 950;
}

.insurance-trust-bar span {
  display: inline-flex;
  padding: 0.38rem 0.65rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-weight: 850;
  font-size: 0.9rem;
}

.money-services-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.1rem 1rem 1.1rem;
}

.money-service-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.money-service-grid article {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: #08244d;
  box-shadow: var(--shadow);
}

.money-service-grid span {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  color: #ffffff;
  background: #9f1730;
  font-weight: 950;
  font-size: 1.1rem;
}

.money-service-grid h3 {
  margin-top: 0.8rem;
  color: #ffffff;
  font-size: 1.05rem;
}

.money-service-grid p {
  margin-top: 0.45rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.62;
}

.proof-media-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.1rem 1rem;
}

.proof-media-card {
  padding: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  border-radius: var(--radius-lg);
  color: #ffffff;
  background: #08244d;
  box-shadow: var(--shadow);
}

.proof-media-card h2 {
  margin-top: 0.55rem;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.proof-media-card p:last-child {
  margin-top: 0.6rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.68;
  max-width: 850px;
}

@media (max-width: 1100px) {
  .nav-call {
    display: none;
  }
}

@media (max-width: 940px) {
  .money-service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-media-card {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .money-service-grid {
    grid-template-columns: 1fr;
  }
}


.emergency-prep-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.1rem 1rem;
}

.emergency-prep-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.emergency-prep-grid article {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: #08244d;
  box-shadow: var(--shadow);
}

.emergency-prep-grid h3 {
  color: #ffffff;
  font-size: 1.02rem;
}

.emergency-prep-grid p {
  margin-top: 0.55rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.62;
}

@media (max-width: 940px) {
  .emergency-prep-grid {
    grid-template-columns: 1fr;
  }
}


.hero-phone-panel {
  margin-top: 1.1rem;
  max-width: 430px;
  padding: 1rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: #9f1730;
  box-shadow: var(--shadow);
}

.hero-phone-panel span,
.hero-phone-panel small {
  display: block;
}

.hero-phone-panel span {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.hero-phone-panel a {
  display: inline-flex;
  margin-top: 0.25rem;
  color: #ffffff;
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.hero-phone-panel small {
  margin-top: 0.25rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
}

.speed-service-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.4rem 1rem 1.1rem;
}

.speed-service-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  color: #ffffff;
  background: #08244d;
  box-shadow: var(--shadow);
}

.speed-service-card h2 {
  margin-top: 0.55rem;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.speed-service-card p:last-child {
  margin-top: 0.6rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.68;
  max-width: 850px;
}

@media (max-width: 940px) {
  .speed-service-card {
    align-items: stretch;
    flex-direction: column;
  }
}


.hero-phone-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-quote-btn {
  flex: 0 0 auto;
  min-height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: #08244d !important;
  background: #ffffff;
  font-weight: 950;
}

.hero-actions-secondary {
  margin-top: 1.15rem;
}

@media (max-width: 640px) {
  .hero-phone-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-quote-btn {
    width: 100%;
  }
}


/* V34 hero CTA cleanup */
.hero-cta-row {
  margin-top: 1.1rem;
  display: flex;
  align-items: stretch;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-cta-row .hero-phone-panel {
  margin-top: 0;
}

.hero-phone-panel {
  display: block;
}

.hero-quote-btn {
  min-width: 145px;
  min-height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius-md);
  color: #ffffff !important;
  background: #08244d;
  font-weight: 950;
  text-align: center;
}

@media (max-width: 640px) {
  .hero-cta-row {
    flex-direction: column;
  }

  .hero-quote-btn {
    width: 100%;
    min-height: 3rem;
  }
}


.coverage-note {
  margin-top: 1.15rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: #08244d;
  box-shadow: var(--shadow);
}

.coverage-note h3 {
  color: #ffffff;
  font-size: 1.05rem;
}

.coverage-note p {
  margin-top: 0.55rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
}


/* V35 trust row shorter and unique */
.trust-row span {
  line-height: 1.6;
}


/* V37 cleaned conversion structure */
.hero-clarifier {
  max-width: 1180px;
  margin: 0.65rem auto 0;
  padding: 0 1rem;
}

.hero-clarifier p {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  color: var(--dark-blue);
  background: #ffffff;
  border: 1px solid var(--line);
  line-height: 1.6;
  font-weight: 750;
}

.insurance-trust-bar {
  margin-top: 1rem;
}

.insurance-trust-bar strong {
  font-size: 1rem;
}


/* V37 removed stacked hero trust blocks from HTML; CSS kept only for future optional use. */


.area-context {
  margin-top: 1.15rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: #08244d;
  box-shadow: var(--shadow);
}

.area-context h3 {
  color: #ffffff;
  font-size: 1.05rem;
}

.area-context p {
  margin-top: 0.55rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
}


.solar-photo {
  margin: 1rem 0 1rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.solar-photo img {
  width: 100%;
  height: auto;
  max-height: 420px;
  display: block;
  object-fit: cover;
}

.solar-photo figcaption {
  padding: 0.75rem 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}


.service-card-media {
  margin: 0 0 0.95rem;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #ffffff;
}

.service-card-media img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card-media figcaption {
  padding: 0.68rem 0.82rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}


.experience-trust-bar {
  max-width: 1180px;
  margin: 1rem auto 0;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.experience-trust-bar div {
  padding: 1rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: #08244d;
  box-shadow: var(--shadow);
}

.experience-trust-bar strong,
.experience-trust-bar span {
  display: block;
}

.experience-trust-bar strong {
  font-size: 1rem;
  color: #ffffff;
}

.experience-trust-bar span {
  margin-top: 0.4rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  font-size: 0.94rem;
}

.future-service-links {
  margin-top: 1.15rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: #08244d;
  box-shadow: var(--shadow);
}

.future-service-links h3 {
  color: #ffffff;
  font-size: 1.05rem;
}

.future-service-links p {
  margin-top: 0.45rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
}

.future-service-links div {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.future-service-links a {
  display: inline-flex;
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  color: #08244d;
  background: #ffffff;
  font-weight: 850;
}

@media (max-width: 940px) {
  .experience-trust-bar {
    grid-template-columns: 1fr;
  }
}


.team-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.1rem 1rem;
}

.team-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.team-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: #08244d;
  box-shadow: var(--shadow);
}

.team-card img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 1rem;
  border: 2px solid rgba(255,255,255,0.35);
  background: #ffffff;
}

.team-card h3 {
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.2;
}

.team-card .team-role {
  margin-top: 0.25rem;
  color: #ffffff;
  font-weight: 900;
}

.team-card p:not(.team-role) {
  margin-top: 0.45rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  font-size: 0.93rem;
}

@media (max-width: 1020px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    grid-template-columns: 78px 1fr;
  }

  .team-card img {
    width: 78px;
    height: 78px;
  }
}


.service-page-hero .hero-content {
  max-width: 760px;
}

.service-intro-section,
.service-category-block,
.service-process-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.1rem 1rem;
}

.service-search-help {
  margin-top: 1.15rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: #08244d;
  box-shadow: var(--shadow);
}

.service-search-help h3 {
  color: #ffffff;
  font-size: 1.05rem;
}

.service-search-help p {
  margin-top: 0.55rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
}

.service-directory-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-directory-card {
  padding: 1.15rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: #08244d;
  box-shadow: var(--shadow);
}

.service-directory-card h3 {
  color: #ffffff;
  font-size: 1.03rem;
  line-height: 1.2;
}

.service-directory-card p {
  margin-top: 0.55rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
}

.service-directory-card a {
  display: inline-flex;
  margin-top: 0.8rem;
  color: #ffffff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-process-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-process-grid article {
  padding: 1.15rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: #08244d;
  box-shadow: var(--shadow);
}

.service-process-grid span {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.8rem;
  color: #ffffff;
  background: #9f1730;
  font-weight: 950;
}

.service-process-grid h3 {
  margin-top: 0.75rem;
  color: #ffffff;
  font-size: 1.03rem;
}

.service-process-grid p {
  margin-top: 0.5rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .service-directory-grid,
  .service-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .service-directory-grid,
  .service-process-grid {
    grid-template-columns: 1fr;
  }
}


.service-help-points {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.5rem;
}

.service-help-points p {
  margin: 0;
  padding: 0.7rem;
  border-radius: 0.9rem;
  color: #08244d;
  background: #ffffff;
}

.service-help-points strong {
  color: #9f1730;
}

.services-faq-section,
.service-area-silo-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.1rem 1rem;
}


/* V51 services-page alignment fix */
.service-area-silo-section,
.services-faq-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.1rem 1rem;
  clear: both;
}

.service-area-link-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.service-area-link-grid a {
  min-height: 3rem;
  display: grid;
  place-items: center;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: #08244d;
  font-weight: 900;
  text-align: center;
  box-shadow: var(--shadow);
}

.services-faq-list {
  max-width: 980px;
  margin: 1.15rem auto 0;
}

.services-faq-list details {
  width: 100%;
}

@media (max-width: 980px) {
  .service-area-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .service-area-link-grid {
    grid-template-columns: 1fr;
  }
}


.service-proof-note {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.4rem 1rem;
}

.service-proof-note > div {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  color: #ffffff;
  background: #08244d;
  box-shadow: var(--shadow);
}

.service-proof-note h2 {
  margin-top: 0.55rem;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.service-proof-note p:last-child {
  margin-top: 0.65rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.68;
  max-width: 900px;
}


/* V59 live area service cards */
.service-area-link-grid a {
  align-content: center;
  gap: 0.25rem;
}

.service-area-link-grid a strong,
.service-area-link-grid a span {
  display: block;
}

.service-area-link-grid a strong {
  color: #ffffff;
  font-size: 1rem;
}

.service-area-link-grid a span {
  color: rgba(255,255,255,0.9);
  font-size: 0.86rem;
  line-height: 1.35;
  font-weight: 650;
}


.service-page-default-media img {
  height: 240px;
  object-fit: cover;
}

.service-directory-card .service-card-media + p {
  margin-top: 0.75rem;
}


/* V131 grouped services menu and automatic interlinking */
.nav-dropdown { position: relative; }
.nav-dropdown > summary { list-style: none; cursor: pointer; color: var(--text, #10233f); font-weight: 800; padding: 0.7rem 0.85rem; border-radius: 999px; display: flex; align-items: center; gap: 0.25rem; }
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.services-menu-link { color: inherit; text-decoration: none; font-weight: 800; }
.services-menu-link:hover, .services-menu-link:focus-visible { color: #9f1730; outline: none; }
.nav-dropdown > summary::after { content: " ▾"; font-size: 0.8em; }
.nav-dropdown[open] > summary, .nav-dropdown:hover > summary, .nav-dropdown > summary:hover { background: rgba(8,36,77,0.08); }
.nav-mega-menu { position: absolute; top: calc(100% + 0.6rem); right: 0; z-index: 50; width: min(920px, 92vw); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.8rem; padding: 1rem; border-radius: 1.2rem; background: #ffffff; box-shadow: 0 22px 60px rgba(4,17,38,0.22); border: 1px solid rgba(8,36,77,0.1); }
.nav-service-group { display: grid; gap: 0.22rem; align-content: start; padding: 0.75rem; border-radius: 0.9rem; background: #f6f9ff; }
.nav-service-group strong { color: #9f1730; font-size: 0.86rem; line-height: 1.2; }
.nav-service-group a { color: #08244d; font-size: 0.86rem; line-height: 1.2; padding: 0.25rem 0; font-weight: 750; }
.nav-service-group a:hover { color: #9f1730; }
.related-service-links-auto .section-intro { max-width: 820px; }
.related-service-card-grid { margin-top: 1rem; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.9rem; }
.related-service-card { display: grid; align-content: space-between; min-height: 8.5rem; padding: 1rem; border-radius: 1rem; background: #ffffff; border: 1px solid rgba(8,36,77,0.12); box-shadow: 0 14px 35px rgba(4,17,38,0.08); }
.related-service-card h3 { margin: 0 0 0.45rem; color: #08244d; font-size: 1rem; }
.related-service-card p { margin: 0 0 0.75rem; color: #38506d; font-size: 0.92rem; line-height: 1.45; }
.related-service-card .learn-more-btn { justify-self: start; display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.62rem 0.9rem; border-radius: 999px; background: #08244d; color: #ffffff; font-weight: 900; }
.related-service-card .learn-more-btn:hover { background: #9f1730; }
.about-contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 1.25rem; }
.about-contact-card { padding: 1.1rem; border-radius: 1.1rem; background: #ffffff; border: 1px solid rgba(8,36,77,0.12); box-shadow: 0 14px 35px rgba(4,17,38,0.08); }
.about-contact-card h3 { margin-top: 0; color: #08244d; }
@media (max-width: 980px) { .nav-mega-menu { position: static; width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); box-shadow: none; margin-top: 0.4rem; } .related-service-card-grid, .about-contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .nav-mega-menu { grid-template-columns: 1fr; } .related-service-card-grid, .about-contact-grid { grid-template-columns: 1fr; } }


/* Uploaded default images matched to individual service pages */
.uploaded-page-image {
  margin: 1.35rem 0 1.15rem;
}
.uploaded-page-image img {
  height: clamp(220px, 30vw, 360px);
  object-fit: cover;
}

/* V133: solar focused-service section layout fix */
.service-directory,
.solar-focused-service-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.1rem 1rem;
}

.service-focus-box {
  margin-top: 1.15rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  color: #ffffff;
  background: #08244d;
  box-shadow: var(--shadow);
}

.service-focus-box h3 {
  color: #ffffff;
  font-size: 1.05rem;
}

.service-focus-box p {
  margin-top: 0.55rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
}

.service-card-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 1020px) {
  .service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .service-card-grid {
    grid-template-columns: 1fr;
  }
}


/* V152: hidden anti-spam honeypot field for quote forms */
.form-honey{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;opacity:0!important;pointer-events:none!important;}


/* V161: no blank page safeguard.
   Content remains visible even if JavaScript is cached, blocked or delayed. */
.reveal{opacity:1!important;transform:none!important;}
.js-enabled .reveal{opacity:1!important;transform:none!important;}
