:root {
  --teal-950: #062825;
  --teal-900: #0b3d38;
  --teal-800: #0f524b;
  --teal-700: #12695f;
  --teal-500: #14b8a6;
  --aqua-400: #2dd4bf;
  --paper: #f2f7f6;
  --panel: #ffffff;
  --white: #ffffff;
  --ink: #0e1917;
  --muted: #5c6f6b;
  --line: rgba(14, 25, 23, 0.09);
  --shadow-lg: 0 28px 70px rgba(6, 20, 18, 0.2);
  --shadow-md: 0 16px 36px rgba(6, 20, 18, 0.08);
  --container: min(1160px, calc(100% - 28px));
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f6faf9 0%, #eef5f3 100%);
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.wrap { width: var(--container); margin: 0 auto; }

/* ---------- Header (full-bleed, no more boxed "frame") ---------- */
.site-header { background: var(--teal-900); box-shadow: var(--shadow-lg); position: relative; z-index: 20; }

.topbar {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  padding: 12px 0;
}

.brand img { width: 148px; max-width: 38vw; }

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav a {
  text-decoration: none;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav a:hover { background: rgba(255, 255, 255, 0.08); color: var(--white); }
.nav a.active { background: rgba(45, 212, 191, 0.14); color: var(--aqua-400); }

.nav-drop { position: relative; }
.nav-drop > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-drop > a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.65;
  transition: transform 0.15s ease;
}
.nav-drop:has(.nav-drop-panel.open) > a::after,
.nav-drop:focus-within > a::after { transform: rotate(225deg) translateY(1px); }
.nav-drop-panel {
  position: absolute;
  top: 100%;
  left: -10px;
  margin-top: 10px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0s linear 0.16s;
  pointer-events: none;
}
.nav-drop-panel.open,
.nav-drop:focus-within .nav-drop-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.nav-drop-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--teal-950);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
.nav-drop-panel a:hover { background: var(--paper); }
.ndi { display: inline-flex; font-size: 1rem; width: 1.2em; }

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

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--white);
  font-size: 1.1rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.license,
.phone,
.cta,
.form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  border-radius: var(--radius-sm);
  transition: transform 0.18s ease, background 0.18s ease;
}

.license {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.phone {
  min-height: 40px;
  padding: 0 16px;
  background: var(--teal-500);
  color: var(--teal-950);
  font-size: 0.8rem;
}

/* ---------- Breadcrumb (subpages) ---------- */
.breadcrumb {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  color: var(--muted);
  padding: 10px 0;
}
.breadcrumb a { text-decoration: none; color: var(--teal-700); font-weight: 700; }
.breadcrumb span { margin: 0 6px; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  padding: 34px 0 36px;
  background: linear-gradient(135deg, var(--teal-950) 0%, var(--teal-900) 55%, var(--teal-700) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.3;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.28) 0%, rgba(45, 212, 191, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 398px;
  gap: 30px;
  align-items: start;
  min-height: 560px;
}

.hero-copy { padding: 48px 0 18px 0; max-width: 520px; color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255,255,255,0.84);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.hero h1 .accent { color: var(--aqua-400); }

.hero p {
  max-width: 440px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
  margin-bottom: 24px;
}

.cta {
  min-height: 48px;
  padding: 0 18px;
  background: var(--teal-500);
  color: var(--teal-950);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 20px;
  color: rgba(255,255,255,0.74);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-card {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.2);
}

.form-card h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: var(--teal-950);
  margin-bottom: 18px;
}

.form { display: grid; gap: 10px; }

.field label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5c6f6b;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #dbe6e3;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  outline: none;
}

.field textarea { min-height: 76px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal-700);
  box-shadow: inset 0 0 0 1px var(--teal-700);
}

.form button {
  min-height: 48px;
  border: 0;
  background: var(--teal-950);
  color: var(--white);
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.form-note { font-size: 0.73rem; text-align: center; color: var(--muted); line-height: 1.5; }

/* ---------- Subpage hero (smaller, single column) ---------- */
.page-hero {
  position: relative;
  padding: 44px 0;
  background: linear-gradient(135deg, var(--teal-950) 0%, var(--teal-900) 55%, var(--teal-700) 100%);
  overflow: hidden;
  color: var(--white);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.3;
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 14px;
  max-width: 760px;
}
.page-hero p { max-width: 620px; font-size: 0.98rem; line-height: 1.8; color: rgba(255,255,255,0.86); margin-bottom: 20px; }
.page-hero .hero-facts { color: rgba(255,255,255,0.74); }

/* ---------- Sections ---------- */
.section { padding: 48px 0; }

.section-kicker {
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal-700);
  margin-bottom: 10px;
}

.section h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  line-height: 0.96;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--teal-950);
}

.section-copy { max-width: 580px; color: var(--muted); font-size: 0.92rem; margin-bottom: 26px; line-height: 1.8; }

.prose { max-width: 760px; color: var(--muted); font-size: 0.94rem; line-height: 1.85; }
.prose p { margin-bottom: 16px; }
.prose strong { color: var(--ink); }

.services { background: #eef6f4; border-top: 1px solid rgba(0, 0, 0, 0.04); }

.grid { display: grid; gap: 14px; }

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

.service-card,
.detail-card,
.review-card,
.gallery-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.service-card,
.detail-card,
.review-card { padding: 18px; }

.service-card a.card-link { display: inline-block; margin-top: 10px; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--teal-700); text-decoration: none; }

.service-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 184, 166, 0.14);
  border-radius: var(--radius-sm);
  color: var(--teal-800);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.service-card h3,
.detail-card h3,
.review-card h3,
.step-card h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--teal-950);
  margin-bottom: 8px;
}

.service-card p,
.detail-card p,
.review-card p,
.step-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.7; }

.details-grid { grid-template-columns: 1.05fr 0.95fr; align-items: stretch; }

.detail-card.dark {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  border-color: rgba(255,255,255,0.06);
  color: var(--white);
}

.detail-card.dark h3,
.detail-card.dark p,
.detail-card.dark li { color: var(--white); }

.detail-list { list-style: none; display: grid; gap: 10px; margin-top: 14px; font-size: 0.85rem; }
.detail-list li strong { font-weight: 800; }

.review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 10px; }

.review-card span {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-700);
}

.reviews-cta { margin-top: 20px; text-align: center; }

.gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gallery-card { overflow: hidden; }
.gallery-card img { width: 100%; height: 260px; object-fit: cover; }
.gallery-caption {
  padding: 14px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-950);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ---------- Step process list (custom flow, not a boxed card grid) ---------- */
.step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  row-gap: 32px;
}
.step-grid::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(15, 82, 75, 0.28) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 14px;
}
.step-icon {
  position: relative;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: linear-gradient(145deg, var(--teal-800) 0%, var(--teal-950) 100%);
  border-radius: 50%;
  color: var(--aqua-400);
  box-shadow: 0 14px 30px rgba(6, 40, 37, 0.32);
}
.step-icon svg { width: 34px; height: 34px; }
.step-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step-card p { padding: 0 2px; }

@media (max-width: 1020px) {
  .step-grid::before { display: none; }
}

/* ---------- Related services (internal links) ---------- */
.related { background: #eef6f4; }
.related-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.related-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-800);
}
.related-list a:hover { background: var(--teal-950); color: var(--white); }

.bottom-cta {
  background: linear-gradient(180deg, #e4efec 0%, #dbe9e5 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.bottom-cta-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.bottom-cta .cta { box-shadow: none; }

.footer { padding: 28px 0 40px; color: var(--muted); font-size: 0.8rem; }
.footer-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; font-weight: 700; }
.footer-links a,
.footer-social a { text-decoration: none; color: var(--teal-800); }
.footer-social { display: flex; gap: 14px; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  background: var(--teal-950);
  padding: 12px 16px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
}
.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--teal-500);
  color: var(--teal-950);
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  min-height: 46px;
  text-decoration: none;
}

@media (max-width: 1020px) {
  .hero-grid,
  .services-grid,
  .whyus-grid,
  .details-grid,
  .review-grid,
  .gallery-grid,
  .step-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--teal-950);
    padding: 6px 0;
    box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 20px; border-radius: 0; border-top: 1px solid rgba(255,255,255,0.08); }
  .nav a.active { background: rgba(45, 212, 191, 0.1); }
  .nav-drop > a::after { margin-left: auto; margin-right: 4px; }
  .nav-drop-panel {
    position: static;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    background: rgba(255,255,255,0.04);
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: none;
  }
  .nav-drop-panel a { color: rgba(255,255,255,0.78); padding-left: 34px; }

  .top-actions,
  .bottom-cta-row { width: 100%; flex-direction: column; align-items: stretch; }
  .license,
  .phone,
  .cta,
  .form button { width: 100%; }
  .hero { padding: 24px 0 28px; }
  .hero-copy { max-width: none; padding: 12px 0 10px; }
  .hero-grid,
  .services-grid,
  .whyus-grid,
  .details-grid,
  .review-grid,
  .gallery-grid,
  .step-grid { grid-template-columns: 1fr; }
  .mobile-call-bar { display: block; }
  .section:last-of-type { padding-bottom: 90px; }
  body { padding-bottom: 0; }
}
