* {
  box-sizing: border-box;
}

:root {
  --green-500: #48d1a3;
  --nav-bg: #0b2333;
  --text: #eaf6ff;
  --footer-bg-top: #0b2333;
  --footer-bg-bottom: #081a28;
  --footer-text: #eaf6ff;
  --footer-link: rgba(234, 246, 255, 0.92);
  --footer-green: #5fd36f;
}

/* Site header: markup is inlined in each page; sticky on #site-header so both rows stick (sticky on #navigation alone clipped the nav row in some browsers) */
#site-header {
  position: sticky;
  top: 0;
  z-index: 150;
}

#navigation {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-shrink: 0;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(47, 157, 224, 0.25);
}

.header-utility {
  flex: 0 0 auto;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 4px 18px 0;
  display: grid;
  grid-template-columns: 230px 1fr auto auto;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.header-utility a {
  color: inherit;
  text-decoration: none;
}

.header-utility-spacer {
  width: 100%;
  height: 1px;
}

.header-phone {
  font-weight: 900;
  text-align: left;
  white-space: nowrap;
}

.header-utility-hours {
  opacity: 0.95;
  white-space: nowrap;
  text-align: center;
}

.header-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.header-inner {
  flex: 0 0 auto;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.brand img {
  width: 300px;
  height: 68px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

nav.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-main > li {
  position: relative;
}

.nav-link {
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.93);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 10px;
  border-radius: 10px;
  background: transparent;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: 2px solid rgba(72, 209, 163, 0.6);
  outline-offset: 2px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(11, 35, 51, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 120;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  color: #2d3e50;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: #f0f7fa;
}

.nav-cta {
  border: 0;
  cursor: pointer;
  background: var(--green-500);
  color: #ffffff;
  font-weight: 900;
  padding: 10px 16px;
  border-radius: 999px;
  letter-spacing: 0.2px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

/* Hamburger toggle button (hidden on desktop, shown on mobile) */
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #ffffff;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: 2px solid rgba(72, 209, 163, 0.6);
  outline-offset: 2px;
}

.nav-toggle-icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 18px;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after,
.nav-toggle-icon > span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease, bottom 0.25s ease;
}

.nav-toggle-icon::before { top: 0; }
.nav-toggle-icon > span { top: 50%; transform: translateY(-50%); }
.nav-toggle-icon::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon > span {
  opacity: 0;
}

@media (max-width: 780px) {
  /* Compact utility bar: phone + social only (drop hours to save vertical space) */
  .header-utility {
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    padding: 6px 14px;
    gap: 12px;
    font-size: 12px;
  }

  .header-utility-spacer,
  .header-utility-hours {
    display: none;
  }

  .header-phone {
    text-align: left;
    font-size: 13px;
  }

  .header-social {
    gap: 10px;
    justify-content: flex-end;
  }

  /* Header row: brand on left, hamburger on right (single row, no stacking) */
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 10px 14px;
    gap: 10px;
  }

  .brand {
    font-size: 16px;
    gap: 8px;
    min-width: 0;
  }

  .brand img {
    width: 180px;
    height: 41px;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  /* Nav becomes a slide-down panel anchored under the header row */
  nav.nav-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 6px 0 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overscroll-behavior: contain;
    display: none;
    z-index: 110;
  }

  #navigation.is-open nav.nav-wrap {
    display: flex;
  }

  .nav-main {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav-main > li {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-main > li:first-child {
    border-top: 0;
  }

  .nav-link {
    display: block;
    padding: 14px 18px;
    font-size: 15px;
    border-radius: 0;
    background: transparent;
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    outline: none;
  }

  /* Dropdown chevron indicator on parent links */
  .nav-item-dropdown > .nav-link {
    position: relative;
    padding-right: 44px;
  }

  .nav-item-dropdown > .nav-link::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    color: var(--green-500);
  }

  .nav-item-dropdown.is-open > .nav-link::after {
    content: "\2212"; /* en-dash style minus */
  }

  /* Inline dropdown panel (collapsed by default, expands on toggle) */
  .nav-dropdown {
    position: static;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.18);
    border-radius: 0;
    margin: 0;
    padding: 4px 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    width: 100%;
    min-width: 0;
  }

  .nav-dropdown a {
    color: rgba(255, 255, 255, 0.92);
    white-space: normal;
    padding: 11px 18px 11px 36px;
    font-size: 14px;
    font-weight: 600;
  }

  .nav-dropdown a:hover,
  .nav-dropdown a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-item-dropdown.is-open .nav-dropdown {
    display: block;
  }

  /* CTA button: full-width pill at the bottom of the menu */
  .nav-cta {
    margin: 14px 18px 4px;
    align-self: stretch;
    text-align: center;
    justify-content: center;
    padding: 14px 16px;
    font-size: 15px;
  }

  /* Lock background scroll while menu is open */
  body.nav-open {
    overflow: hidden;
  }
}

/* Site footer (markup loaded via fetch into #site-footer; styles live here so SVGs stay sized) */
#footer.site-footer {
  background: linear-gradient(180deg, var(--footer-bg-top), var(--footer-bg-bottom));
  color: var(--footer-text);
  padding: 0;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 18px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-brand .footer-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--footer-green);
  margin: 0 0 12px;
}

.footer-brand-desc {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
  opacity: 0.92;
}

.footer-phone-row {
  margin-bottom: 12px;
}

.footer-phone-row a {
  color: var(--footer-text);
  font-weight: 800;
  text-decoration: none;
  font-size: 15px;
}

.footer-phone-row a:hover {
  text-decoration: underline;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--footer-green);
  text-decoration: none;
}

.footer-wa:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--footer-text);
  text-decoration: none;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  max-width: 100%;
  max-height: 100%;
  fill: currentColor;
}

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  text-decoration: none;
  color: var(--footer-link);
  font-weight: 600;
  font-size: 14px;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-seo {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 600;
  color: rgba(234, 246, 255, 0.85);
  max-width: 920px;
}

.footer-bottom {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.88;
}

.footer-bottom a {
  color: rgba(234, 246, 255, 0.95);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

main.page {
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}

/* overflow-x on body breaks multi-row sticky headers; clip on html + main instead */
html {
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  background: #f0f7fa;
  color: #2d3e50;
}

body {
  overflow-x: visible;
}

@media (max-width: 980px) {
  body {
    padding-bottom: 64px;
  }
}

.visually-hidden {
  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 {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 12px 18px;
  background: #1b4f72;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 12px;
  top: 0;
}

.page {
  padding: 0 0 80px;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  background: #0b2333;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 35, 51, 0.82) 0%,
    rgba(11, 35, 51, 0.45) 45%,
    rgba(11, 35, 51, 0.15) 100%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 18px 80px;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
  color: #ffffff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.hero-sub {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  padding: 14px 24px;
  border-radius: 999px;
  letter-spacing: 0.2px;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: filter 0.2s ease;
}

.hero-cta-primary {
  background: #48d1a3;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(47, 191, 120, 0.35);
}

.hero-cta-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-cta:hover {
  filter: brightness(1.06);
}

@media (max-width: 520px) {
  .hero-inner {
    padding-top: 100px;
    min-height: 480px;
  }
}

/* Trust bar */
.trust-bar {
  background: #ffffff;
  border-bottom: 1px solid rgba(45, 62, 80, 0.08);
  padding: 34px 18px;
}

.trust-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}

.trust-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
  color: #2d3e50;
  line-height: 1.3;
  background: #ffffff;
  border: 1px solid rgba(27, 79, 114, 0.14);
  border-radius: 14px;
  padding: 16px 14px;
  min-height: 84px;
  box-shadow: 0 4px 14px rgba(45, 62, 80, 0.08);
}

.trust-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  color: #48d1a3;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 980px) {
  .trust-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .trust-list {
    grid-template-columns: 1fr;
  }
}

/* Sections shared */
.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: #2d3e50;
  text-align: center;
}

.section-intro {
  margin: 0 auto 32px;
  max-width: 820px;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 600;
  color: rgba(45, 62, 80, 0.88);
  text-align: center;
}

/* Services */
.services-section {
  background: #f0f7fa;
  padding: 72px 0 80px;
}

.services-grid-six {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid rgba(47, 157, 224, 0.14);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(45, 62, 80, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(45, 62, 80, 0.12);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  color: #48d1a3;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.service-card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.service-card-body {
  padding: 0;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  color: #2d3e50;
}

.service-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
  color: rgba(45, 62, 80, 0.85);
  flex: 1;
}

.service-more {
  font-weight: 800;
  font-size: 14px;
  color: #1b4f72;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.service-more::after {
  content: "\2192";
  transition: transform 0.2s ease;
  display: inline-block;
}

.service-more:hover {
  text-decoration: underline;
}

.service-more:hover::after {
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .services-grid-six {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .services-grid-six {
    grid-template-columns: 1fr;
  }
}

/* Why choose */
.why-section {
  background: #ffffff;
  padding: 72px 0 80px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  margin: 0;
  padding: 22px 20px;
  border-radius: 18px;
  background: #f0f7fa;
  border: 1px solid rgba(47, 157, 224, 0.14);
}

.why-card-title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
  color: #2d3e50;
}

.why-card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
  color: rgba(45, 62, 80, 0.85);
}

@media (max-width: 980px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* How it works */
.how-section {
  background: #f0f7fa;
  padding: 72px 0 80px;
}

.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.how-step {
  margin: 0;
  padding: 0;
  text-align: center;
}

.how-step-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #48d1a3;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(72, 209, 163, 0.35);
}

.how-step-title {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 900;
  color: #2d3e50;
}

.how-step-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
  color: rgba(45, 62, 80, 0.88);
}

.how-step-text a {
  color: #1b4f72;
  font-weight: 800;
}

@media (max-width: 980px) {
  .how-steps {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

/* Reviews */
.reviews-section {
  background: #ffffff;
  padding: 72px 0 70px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  border-radius: 18px;
  border: 1px solid rgba(47, 157, 224, 0.16);
  padding: 22px 18px;
  background: #f0f7fa;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}

.review-stars .star {
  width: 18px;
  height: 18px;
  color: #f4b400;
}

.review-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(45, 62, 80, 0.88);
  font-weight: 600;
}

.review-meta {
  margin: 14px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: rgba(45, 62, 80, 0.65);
}

.review-name {
  font-weight: 800;
  color: #2d3e50;
}

.reviews-cta-wrap {
  text-align: center;
  margin-top: 28px;
}

.reviews-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: #1b4f72;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
}

.reviews-cta-btn:hover {
  filter: brightness(1.08);
}

@media (max-width: 980px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery before/after */
.gallery-section {
  background: #f0f7fa;
  padding: 72px 0 80px;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ba-slider {
  margin: 0;
}

.ba-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(45, 62, 80, 0.55);
  margin-bottom: 8px;
}

.ba-track {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 800 / 600;
  background: #ddd;
}

.ba-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before {
  position: relative;
  z-index: 1;
}

.ba-after {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.ba-range {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 4;
  width: calc(100% - 24px);
  margin: 0 12px;
  accent-color: #48d1a3;
  cursor: ew-resize;
}

/* Single-image gallery cards (replaced the before/after sliders) */
.gallery-photo {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e8f0f4;
  box-shadow: 0 8px 22px rgba(45, 62, 80, 0.1);
}

.gallery-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-photo:hover img {
  transform: scale(1.04);
}

.gallery-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 18px 14px;
  background: linear-gradient(transparent, rgba(11, 35, 51, 0.82));
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-cta-wrap {
  text-align: center;
  margin-top: 28px;
}

.gallery-cta {
  display: inline-flex;
  padding: 12px 24px;
  border-radius: 999px;
  background: #48d1a3;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.gallery-cta:hover {
  filter: brightness(1.05);
}

@media (max-width: 980px) {
  .ba-grid {
    grid-template-columns: 1fr;
  }
}

/* Service areas */
.areas-section {
  background: #ffffff;
  padding: 72px 0 80px;
}

.areas-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.areas-list a {
  font-weight: 700;
  font-size: 15px;
  color: #1b4f72;
  text-decoration: none;
}

.areas-list a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .areas-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* FAQ accordion */
.faqs-section {
  background: #f0f7fa;
  padding: 72px 0 80px;
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-acc-item {
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(47, 157, 224, 0.16);
  overflow: hidden;
}

.faq-acc-heading {
  margin: 0;
  font-size: 100%;
  font-weight: inherit;
}

.faq-acc-btn {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 900;
  color: #2d3e50;
  background: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
}

.faq-acc-btn::after {
  content: "+";
  font-size: 20px;
  font-weight: 800;
  color: #48d1a3;
  flex-shrink: 0;
}

.faq-acc-btn[aria-expanded="true"]::after {
  content: "−";
}

.faq-acc-btn:focus-visible {
  outline: 2px solid #48d1a3;
  outline-offset: 2px;
}

.faq-acc-panel {
  padding: 0 18px 16px;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 600;
  color: rgba(45, 62, 80, 0.85);
}

.faq-acc-panel p {
  margin: 0;
}

.faq-acc-panel a {
  color: #1b4f72;
  font-weight: 800;
}

/* Estimate form */
.estimate-section {
  background: #ffffff;
  padding: 72px 0 100px;
}

.estimate-inner {
  max-width: 560px;
}

.estimate-intro a {
  color: #1b4f72;
  font-weight: 800;
}

.estimate-form {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  font-size: 13px;
  font-weight: 800;
  color: #2d3e50;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(45, 62, 80, 0.2);
  font-size: 15px;
  font-family: inherit;
}

.form-row textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row input:focus-visible,
.form-row select:focus-visible,
.form-row textarea:focus-visible {
  outline: 2px solid #48d1a3;
  outline-offset: 1px;
}

.estimate-submit {
  margin-top: 8px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  background: #48d1a3;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
}

.estimate-submit:hover {
  filter: brightness(1.05);
}

.form-success {
  margin: 12px 0 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: #e8f8f0;
  color: #1a5c40;
  font-weight: 700;
  font-size: 15px;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 85;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
}

.whatsapp-float:hover {
  filter: brightness(1.08);
}

@media (min-width: 981px) {
  .whatsapp-float {
    bottom: 28px;
  }
}

/* Mobile CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: #48d1a3;
  box-shadow: 0 -6px 20px rgba(11, 35, 51, 0.15);
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

@media (max-width: 980px) {
  .mobile-cta-bar {
    display: grid;
  }

  .whatsapp-float {
    bottom: 76px;
  }
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  font-weight: 900;
  font-size: 14px;
  text-decoration: none;
  color: #0b2333;
}

.mobile-cta-call {
  background: rgba(255, 255, 255, 0.95);
  border-right: 1px solid rgba(11, 35, 51, 0.08);
}

.mobile-cta-estimate {
  background: #1b4f72;
  color: #fff;
}

/* Exit modal */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.exit-modal[hidden] {
  display: none;
}

.exit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 35, 51, 0.55);
}

.exit-modal-box {
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: 100%;
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.exit-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: rgba(45, 62, 80, 0.5);
}

.exit-modal-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 900;
  color: #2d3e50;
}

.exit-modal-text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  color: rgba(45, 62, 80, 0.85);
}

.exit-modal-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exit-modal-form input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(45, 62, 80, 0.2);
  font-size: 15px;
}

.exit-modal-form button {
  padding: 12px;
  border: 0;
  border-radius: 999px;
  background: #48d1a3;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.exit-modal-thanks {
  margin: 0;
  font-weight: 800;
  color: #1a5c40;
}

/* Homepage: hero entrance + scroll reveal */
@keyframes ecsFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-page #hero .hero-title {
  animation: ecsFadeUp 0.78s ease-out both;
}

.home-page #hero .hero-sub {
  animation: ecsFadeUp 0.78s ease-out 0.12s both;
}

.home-page #hero .hero-actions {
  animation: ecsFadeUp 0.78s ease-out 0.24s both;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .home-page #hero .hero-title,
  .home-page #hero .hero-sub,
  .home-page #hero .hero-actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Page breadcrumb (about, contact, service-areas, blog) */
.page-breadcrumb {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 0 18px;
}

.page-breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(45, 62, 80, 0.85);
}

.page-breadcrumb a {
  color: #1b4f72;
  text-decoration: none;
}

.page-breadcrumb [aria-current="page"] {
  color: #48d1a3;
}

.page-breadcrumb [aria-hidden="true"] {
  opacity: 0.55;
}

/* Generic prose block used on About, Service-Areas hub */
.prose {
  max-width: 920px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
  color: rgba(45, 62, 80, 0.92);
}

.prose p {
  margin: 0 0 16px;
}

.prose a {
  color: #1b4f72;
  font-weight: 800;
}

/* Stats grid (About: by-the-numbers) */
.stats-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.stats-card {
  background: #f0f7fa;
  border: 1px solid rgba(47, 157, 224, 0.16);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stats-num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #1b4f72;
  letter-spacing: -0.01em;
}

.stats-label {
  font-size: 13px;
  font-weight: 800;
  color: rgba(45, 62, 80, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 980px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Generic CTA row used on About / blog post CTAs */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}

/* Contact page: hero contact channels */
.contact-channels {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.contact-channel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
}

.contact-channel:hover {
  background: rgba(255, 255, 255, 0.22);
}

.contact-channel-icon {
  font-size: 22px;
  line-height: 1;
}

/* Contact page: 2-col grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-col {
  background: #ffffff;
  border: 1px solid rgba(47, 157, 224, 0.16);
  border-radius: 18px;
  padding: 24px;
}

.contact-info-list {
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-list > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info-list dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  color: rgba(45, 62, 80, 0.7);
}

.contact-info-list dd {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #2d3e50;
}

.contact-info-list a {
  color: #1b4f72;
  text-decoration: none;
}

.contact-info-list a:hover {
  text-decoration: underline;
}

.contact-hours-title {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(45, 62, 80, 0.78);
  margin: 0 0 10px;
}

.contact-hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.contact-hours th,
.contact-hours td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid rgba(45, 62, 80, 0.08);
  font-weight: 700;
  color: #2d3e50;
}

.contact-hours td {
  text-align: right;
  font-weight: 600;
  color: rgba(45, 62, 80, 0.85);
}

.contact-hours-note {
  margin: 14px 0 18px;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 600;
  color: rgba(45, 62, 80, 0.78);
}

.trust-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-pills li {
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e8f4ea;
  border: 1px solid rgba(72, 209, 163, 0.4);
  color: #1a5c40;
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  background: #e8f0f4;
}

/* Service Areas hub: area cards */
.area-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.area-card {
  background: #ffffff;
  border: 1px solid rgba(47, 157, 224, 0.16);
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.area-card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: #2d3e50;
}

.area-card-title a {
  color: inherit;
  text-decoration: none;
}

.area-card-title a:hover {
  color: #1b4f72;
}

.area-card-tag {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
  color: rgba(45, 62, 80, 0.85);
}

.area-card-meta {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(45, 62, 80, 0.6);
}

.area-card .service-more {
  margin-top: auto;
}

@media (max-width: 980px) {
  .area-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .area-cards {
    grid-template-columns: 1fr;
  }
}

.callout-note {
  margin: 28px auto 0;
  max-width: 820px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #e8f4ea;
  border: 1px solid rgba(72, 209, 163, 0.4);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  color: #1a5c40;
  text-align: center;
}

.callout-note a {
  color: #1b4f72;
  font-weight: 800;
}

/* Service Areas hub: zip table + search */
.zip-search-wrap {
  max-width: 360px;
  margin: 0 auto 18px;
}

.zip-search-wrap input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(45, 62, 80, 0.2);
  font-size: 15px;
  font-family: inherit;
}

.zip-search-wrap input:focus-visible {
  outline: 2px solid #48d1a3;
  outline-offset: 2px;
}

.zip-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(47, 157, 224, 0.16);
  background: #ffffff;
}

.zip-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.zip-table th,
.zip-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(45, 62, 80, 0.08);
}

.zip-table th {
  background: #f0f7fa;
  font-weight: 900;
  color: #2d3e50;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.zip-table td {
  font-weight: 600;
  color: rgba(45, 62, 80, 0.9);
}

.zip-table tbody tr:last-child td {
  border-bottom: 0;
}

.zip-table a {
  color: #1b4f72;
  font-weight: 800;
  text-decoration: none;
}

.zip-table a:hover {
  text-decoration: underline;
}

/* Service Areas hub: service link list */
.service-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.service-link-list li {
  background: #ffffff;
  border: 1px solid rgba(47, 157, 224, 0.16);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(45, 62, 80, 0.88);
  line-height: 1.55;
}

.service-link-list a {
  color: #1b4f72;
  font-weight: 900;
  text-decoration: none;
}

.service-link-list a:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .service-link-list {
    grid-template-columns: 1fr;
  }
}

/* Blog hub: category buttons + grid */
.blog-cat-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.blog-cat {
  border: 1px solid rgba(45, 62, 80, 0.18);
  background: #ffffff;
  color: #2d3e50;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
}

.blog-cat:hover {
  border-color: #48d1a3;
  color: #1b4f72;
}

.blog-cat.is-active {
  background: #1b4f72;
  border-color: #1b4f72;
  color: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid rgba(47, 157, 224, 0.16);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  background: #e8f0f4;
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card-media:hover img {
  transform: scale(1.04);
}

.blog-card-media-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(45, 62, 80, 0.45);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #f0f7fa;
}

.blog-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.blog-card-cat {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #48d1a3;
}

.blog-card-title {
  margin: 0;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 900;
  color: #2d3e50;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-title a:hover {
  color: #1b4f72;
}

.blog-card-meta {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: rgba(45, 62, 80, 0.62);
}

.blog-card-excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
  color: rgba(45, 62, 80, 0.88);
}

.blog-card-coming {
  opacity: 0.78;
}

@media (max-width: 720px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog post layout */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 36px 18px 80px;
}

.blog-post-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(45, 62, 80, 0.08);
}

.blog-post-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  background: #48d1a3;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.blog-post-h1 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.18;
  color: #2d3e50;
  letter-spacing: -0.01em;
}

.blog-post-meta {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: rgba(45, 62, 80, 0.65);
}

.blog-post-meta a {
  color: #1b4f72;
  text-decoration: none;
}

.blog-post-meta a:hover {
  text-decoration: underline;
}

.blog-post-body {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
  color: rgba(45, 62, 80, 0.92);
}

.blog-post-body .lede {
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
  color: #2d3e50;
  margin: 0 0 18px;
}

.blog-post-body p {
  margin: 0 0 18px;
}

.blog-post-body h2 {
  margin: 36px 0 14px;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 900;
  color: #1b4f72;
  line-height: 1.25;
}

.blog-post-body h3 {
  margin: 26px 0 10px;
  font-size: 1.15rem;
  font-weight: 900;
  color: #2d3e50;
  line-height: 1.3;
}

.blog-post-body a {
  color: #1b4f72;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(72, 209, 163, 0.6);
  text-underline-offset: 3px;
}

.blog-post-body a:hover {
  text-decoration-color: #48d1a3;
}

.blog-post-body strong {
  color: #2d3e50;
  font-weight: 800;
}

.post-list {
  margin: 0 0 18px;
  padding-left: 22px;
}

.post-list li {
  margin: 0 0 10px;
  line-height: 1.65;
}

.post-checklist {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.post-checklist li {
  position: relative;
  padding: 8px 12px 8px 36px;
  background: #f0f7fa;
  border: 1px solid rgba(47, 157, 224, 0.12);
  border-radius: 8px;
  font-size: 14.5px;
  line-height: 1.5;
}

.post-checklist li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 11px;
  width: 14px;
  height: 14px;
  border: 2px solid #48d1a3;
  border-radius: 4px;
  background: #ffffff;
}

.post-table-wrap {
  overflow-x: auto;
  margin: 0 0 24px;
  border-radius: 14px;
  border: 1px solid rgba(47, 157, 224, 0.16);
}

.post-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #ffffff;
}

.post-table th,
.post-table td {
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(45, 62, 80, 0.08);
  vertical-align: top;
  line-height: 1.5;
}

.post-table th {
  background: #f0f7fa;
  font-weight: 900;
  color: #2d3e50;
  font-size: 13px;
}

.post-table td {
  font-weight: 600;
  color: rgba(45, 62, 80, 0.92);
}

.post-table tbody tr:last-child td {
  border-bottom: 0;
}

.post-table a {
  color: #1b4f72;
  font-weight: 800;
  text-decoration: none;
}

.post-table a:hover {
  text-decoration: underline;
}

.post-cta {
  margin: 36px 0;
  padding: 28px 24px;
  background: #f0f7fa;
  border: 1px solid rgba(47, 157, 224, 0.2);
  border-radius: 18px;
  text-align: center;
}

.post-cta h2 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  font-weight: 900;
  color: #2d3e50;
  line-height: 1.25;
}

.post-cta p {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(45, 62, 80, 0.85);
}

.post-faq {
  margin: 36px 0;
}

.post-faq h2 {
  margin: 0 0 16px;
  font-size: 1.4rem;
  font-weight: 900;
  color: #1b4f72;
}

.post-byline {
  margin: 36px 0;
  padding: 20px 22px;
  background: #ffffff;
  border-left: 4px solid #48d1a3;
  border-radius: 0 12px 12px 0;
}

.post-byline p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
  color: rgba(45, 62, 80, 0.9);
}

.post-byline a {
  color: #1b4f72;
  font-weight: 800;
}

.related-posts {
  margin: 36px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(45, 62, 80, 0.08);
}

.related-posts h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 900;
  color: #2d3e50;
}

.related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.related-list a {
  color: #1b4f72;
  font-weight: 800;
  text-decoration: none;
}

.related-list a:hover {
  text-decoration: underline;
}

/* Before/after gallery grid */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 18px;
}

@media (min-width: 760px) {
  .ba-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.ba-pair {
  margin: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 30, 50, 0.08);
  border: 1px solid rgba(47, 157, 224, 0.18);
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #e5edf5;
}

.ba-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f3f6fa;
}

.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 30, 50, 0.78);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.ba-tag-after {
  background: #16a34a;
}

.ba-pair figcaption {
  padding: 12px 16px 16px;
  font-size: 14px;
  color: var(--text, #0f1e32);
  font-weight: 600;
  text-align: center;
}

/* Finished-rooms photo grid for /gallery/ */
.finished-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.finished-tile {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(15, 30, 50, 0.08);
  background: #f3f6fa;
}

.finished-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 250ms ease;
}

.finished-tile:hover img {
  transform: scale(1.04);
}
