@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #28442E;
  --teal: #6FA37A;
  --teal-light: #eaf3ec;
  --white: #ffffff;
  --off-white: #f7faf8;
  --text: #33473b;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  background: var(--white);
  border-bottom: 1px solid #e3ece6;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 10px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.logo-link { display: flex; align-items: center; }
.logo-link img { height: 62px; width: auto; }

nav ul { display: flex; gap: 32px; }

nav a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s;
}

nav a:hover, nav a.active { color: var(--teal); }

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.nav-cta { margin-left: 32px; padding: 11px 22px; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1c3323 100%);
  color: var(--white);
  padding: 110px 24px 100px;
  text-align: center;
}

.hero h1 {
  font-size: 44px;
  font-weight: 800;
  max-width: 780px;
  margin: 0 auto 20px;
  line-height: 1.25;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 36px;
  color: #cfe3d3;
}

.hero .btn-primary { margin-right: 14px; }

.hero-sub { padding: 80px 24px; }

/* Sections */
section { padding: 80px 24px; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header .eyebrow {
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.section-header h2 { font-size: 32px; color: var(--navy); font-weight: 800; margin-bottom: 14px; }
.section-header p { color: #66786c; font-size: 16px; }

.bg-alt { background: var(--off-white); }

/* Cards grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: var(--white);
  border: 1px solid #e3ece6;
  border-radius: 8px;
  padding: 36px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(40,68,46,0.1); }

.card .icon {
  width: 48px; height: 48px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 22px;
  font-weight: 800;
}

.card h3 { color: var(--navy); font-size: 19px; margin-bottom: 10px; font-weight: 700; }
.card p { color: #66786c; font-size: 15px; }

/* Stats strip */
.stats {
  background: var(--teal);
  color: var(--white);
  padding: 48px 24px;
}
.stats .grid { grid-template-columns: repeat(4, 1fr); text-align: center; gap: 16px; }
.stats .grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.stats .num { font-size: 34px; font-weight: 800; }
.stats .label { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; opacity: 0.9; margin-top: 6px; }

/* CTA band */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 70px 24px;
}
.cta-band h2 { font-size: 30px; font-weight: 800; margin-bottom: 14px; }
.cta-band p { color: #cfe3d3; margin-bottom: 30px; font-size: 16px; }

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Services list page */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid #e3ece6;
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse .service-media { order: 2; }
.service-media {
  background: linear-gradient(135deg, var(--teal-light) 0%, #dcebe0 100%);
  border-radius: 10px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(40, 68, 46, 0.18);
}
.service-block h3 { color: var(--navy); font-size: 24px; margin-bottom: 14px; font-weight: 800; }
.service-block p { color: #66786c; margin-bottom: 16px; }
.service-block ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 15px;
}
.service-block ul li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 800;
  position: absolute;
  left: 0;
}

/* Contact page */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info .item { margin-bottom: 28px; }
.contact-info .item h4 { color: var(--navy); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.contact-info .item p { color: #66786c; }

.form-box, .booking-placeholder {
  background: var(--off-white);
  border: 1px solid #e3ece6;
  border-radius: 8px;
  padding: 32px;
}

.form-box label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-box label:first-child { margin-top: 0; }

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dce8de;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
}
.form-box textarea { resize: vertical; min-height: 110px; }
.form-box button { margin-top: 22px; width: 100%; border: none; cursor: pointer; font-family: inherit; }

.booking-placeholder {
  text-align: center;
  border: 2px dashed var(--teal);
  color: var(--navy);
}
.booking-placeholder .badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.booking-placeholder h3 { font-size: 20px; margin-bottom: 10px; }
.booking-placeholder p { color: #66786c; font-size: 14px; margin-bottom: 4px; }

/* Footer */
footer {
  background: var(--navy);
  color: #bcd4c1;
  padding: 56px 24px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 { color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-grid p { font-size: 14px; color: #a0c2a8; max-width: 320px; }
.footer-grid ul li { margin-bottom: 10px; font-size: 14px; }
.footer-grid ul li a:hover { color: var(--white); }
.footer-logo { height: 48px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-bottom {
  border-top: 1px solid #3d5c47;
  padding-top: 22px;
  font-size: 13px;
  color: #86a68d;
  text-align: center;
}

/* Checklist page */
.checklist-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.checklist-card {
  background: var(--white);
  border: 1px solid #e3ece6;
  border-radius: 8px;
  overflow: hidden;
}
.checklist-card .cl-head {
  background: var(--navy);
  color: var(--white);
  padding: 24px 24px 20px;
}
.checklist-card.featured .cl-head { background: var(--teal); }
.checklist-card .cl-head .tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
  display: block;
  margin-bottom: 6px;
}
.checklist-card .cl-head h3 { font-size: 20px; font-weight: 800; }
.checklist-card .cl-body { padding: 24px; }
.checklist-card .cl-body h4 {
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 18px 0 8px;
}
.checklist-card .cl-body h4:first-child { margin-top: 0; }
.check-list li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
}
.check-list li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 800;
  position: absolute;
  left: 0;
}

/* Chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.chip {
  background: var(--teal-light);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
}

/* Header phone */
.header-phone {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-left: 28px;
}
.header-phone:hover { color: var(--teal); }

/* Trust panel (replaces photo placeholders) */
.trust-panel {
  background: var(--teal-light);
  border-radius: 10px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.trust-panel .t-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
}
.trust-panel .t-num { font-size: 36px; font-weight: 800; color: var(--navy); }
.trust-panel .t-label {
  font-size: 13px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-top: 6px;
}

/* FAQ accordion */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e3ece6; padding: 20px 0; }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--teal);
  font-weight: 400;
  margin-left: 12px;
  display: inline-block;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { color: #66786c; margin-top: 12px; font-size: 15px; line-height: 1.7; }

/* Cost calculator */
.book-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.book-layout .calc-box { max-width: none; margin: 0; }
.book-layout .booking-placeholder {
  position: sticky;
  top: 100px;
  padding: 40px 32px;
}

.calc-box {
  background: var(--white);
  border: 1px solid #e3ece6;
  border-radius: 16px;
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(40, 68, 46, 0.1);
}
.calc-box .calc-head {
  text-align: center;
  margin-bottom: 28px;
}
.calc-box .calc-head .c-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.calc-box .calc-head h3 { color: var(--navy); font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.calc-box .calc-head p { color: #66786c; font-size: 14px; }

.svc-toggle { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 8px; }
.svc-option { position: relative; display: block; }
.svc-option input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.svc-option span {
  display: block;
  text-align: center;
  padding: 16px 8px;
  border: 2px solid #dce8de;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}
.svc-option input:checked + span {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.svc-option input:focus-visible + span { outline: 2px solid var(--navy); outline-offset: 2px; }

.calc-box select:focus,
.calc-box input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(111, 163, 122, 0.15);
}

.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.addon-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.addon-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  text-transform: none;
  font-size: 14px;
  color: var(--text);
  margin-top: 0;
  padding: 10px 12px;
  background: var(--off-white);
  border-radius: 6px;
  border: 1px solid #e3ece6;
  transition: border-color 0.2s;
}
.addon-row label:has(input:checked) { border-color: var(--teal); background: var(--teal-light); }
.addon-row input[type="checkbox"] { width: auto; accent-color: var(--teal); }

.calc-cta {
  width: 100%;
  margin-top: 26px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  padding: 16px 28px;
  box-shadow: 0 10px 24px rgba(111, 163, 122, 0.3);
}
.calc-cta:hover { transform: translateY(-1px); }

.calc-result {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 28px;
  border-radius: 12px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1c3323 100%);
  transition: max-height 0.4s ease, opacity 0.35s ease, margin-top 0.4s ease, padding 0.4s ease;
}
.calc-result.show { max-height: 340px; opacity: 1; margin-top: 26px; padding: 28px; }
.calc-book-btn { display: block; width: 100%; margin-top: 18px; }
.calc-result .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #a8d9b6;
  margin-bottom: 8px;
}
.calc-result .price { font-size: 36px; font-weight: 800; color: var(--white); }
.calc-result .note { font-size: 13px; color: #cfe3d3; margin-top: 10px; }

/* Mobile */
@media (max-width: 860px) {
  .nav-cta { margin-left: auto; }
  .menu-toggle { display: flex; }

  nav#site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid #e3ece6;
    box-shadow: 0 12px 24px rgba(40,68,46,0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  nav#site-nav.open { max-height: 420px; }
  nav#site-nav ul {
    display: flex;
    flex-direction: column;
    padding: 4px 24px 12px;
  }
  nav#site-nav ul li a {
    display: block;
    padding: 16px 4px;
    border-bottom: 1px solid #e3ece6;
    font-size: 15px;
  }
  nav#site-nav ul li:last-child a { border-bottom: none; }

  .grid { grid-template-columns: 1fr; }
  .stats .grid { grid-template-columns: repeat(2, 1fr); }
  .two-col, .contact-wrap, .book-layout { grid-template-columns: 1fr; }
  .book-layout .booking-placeholder { position: static; }
  .service-block, .service-block.reverse { grid-template-columns: 1fr; }
  .service-block.reverse .service-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 20px 52px; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 16px; }
  section { padding: 56px 20px; }
  .container { padding: 0 20px; }
  .checklist-cols { grid-template-columns: 1fr; }
  .header-phone { display: none; }
  .calc-row, .addon-row { grid-template-columns: 1fr; }
  .svc-toggle { grid-template-columns: 1fr; }
  .stats .grid.cols-3 { grid-template-columns: 1fr; }
  .calc-box { padding: 22px; }
  .hero .btn { display: block; width: 100%; max-width: 320px; margin: 0 auto 12px; }
  .hero .btn-primary { margin-right: auto; }
  .cta-band .btn { display: inline-block; width: 100%; max-width: 320px; }
  .logo-link img { height: 48px; }
  .footer-logo { height: 40px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .section-header h2 { font-size: 26px; }
  .stats .grid { grid-template-columns: 1fr; }
}
