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

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.6;
}

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

/* ── NAV ── */
nav {
  background: #1a3a2a;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}
.logo span { color: #7ecfa0; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a:hover { color: #fff; }
.nav-links .cta {
  background: #2e7d52;
  color: #fff;
  padding: 6px 16px;
  border-radius: 6px;
}
.nav-links .cta:hover { background: #236040; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #1a3a2a 0%, #264d38 100%);
  color: #fff;
  text-align: center;
  padding: 64px 24px 56px;
}
.hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  max-width: 640px;
  margin: 0 auto 16px;
}
.hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 28px;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  margin: 4px;
}
.btn-green  { background: #2e7d52; color: #fff; }
.btn-green:hover  { background: #236040; }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.45); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ── SECTIONS ── */
.section { padding: 56px 24px; }
.section.grey { background: #f5f9f6; }

.container { max-width: 960px; margin: 0 auto; }

.label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #2e7d52;
  margin-bottom: 6px;
}
h2.title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a3a2a;
  margin-bottom: 10px;
}
p.desc {
  color: #555;
  margin-bottom: 32px;
  max-width: 540px;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid #d4e4da;
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.card-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #e0f0e8;
  line-height: 1;
  margin-bottom: 8px;
}
.card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a3a2a;
  margin-bottom: 10px;
}
.card p { color: #555; font-size: 0.92rem; }
p.card-price {
  font-weight: 700;
  color: #2e7d52;
  font-size: 0.9rem;
  border-top: 1px solid #d4e4da;
  padding-top: 14px;
  margin-top: 14px;
}
.card-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #d4e4da;
  margin-top: auto;
  padding-top: 14px;
}
p.card-price { border-top: none; padding-top: 0; white-space: nowrap; text-align: right; }

.card-btn {
  width: 100%;
  padding: 9px;
  background: none;
  border: 1px solid #2e7d52;
  color: #2e7d52;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}
.card-btn:hover { background: #2e7d52; color: #fff; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-text p { color: #555; margin-bottom: 14px; }
.checklist { list-style: none; margin-top: 20px; }
.checklist li {
  color: #555;
  font-size: 0.93rem;
  padding: 8px 0;
  border-bottom: 1px solid #d4e4da;
  display: flex;
  gap: 8px;
}
.checklist li::before { content: "✓"; color: #2e7d52; font-weight: 700; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat {
  background: #e8f5ee;
  border-radius: 10px;
  padding: 20px;
}
.stat-num { font-size: 1.8rem; font-weight: 900; color: #1a3a2a; }
.stat-lbl { font-size: 0.82rem; color: #555; margin-top: 4px; }

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi {
  background: #fff;
  border: 1px solid #d4e4da;
  border-radius: 12px;
  padding: 24px;
}
.testi-text {
  color: #555;
  font-style: italic;
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.65;
}
.testi-text::before { content: "\201C"; }
.testi-text::after  { content: "\201D"; }
.testi-author { font-weight: 700; color: #1a3a2a; font-size: 0.88rem; }

/* ── BOOKING ── */
.tidycal-wrap {
  background: #fff;
  border: 1px solid #d4e4da;
  border-radius: 12px;
  overflow: hidden;
  min-height: 580px;
}

/* ── CONTACT ── */
.section.dark { background: #1a3a2a; }
.section.dark .label { color: rgba(255,255,255,0.45); }
.section.dark h2.title { color: #fff; }
.section.dark p.desc   { color: rgba(255,255,255,0.65); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.contact-item h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.contact-item a,
.contact-item p { color: #fff; font-size: 0.95rem; font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: #0f2318;
  color: rgba(255,255,255,0.38);
  text-align: center;
  padding: 18px 24px;
  font-size: 0.82rem;
}
footer a { color: rgba(255,255,255,0.45); }

/* ── MODAL ── */
#modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  overflow-y: auto;
  padding: 24px 16px;
}
#modal.active { display: block; }

.modal-box {
  background: #fff;
  border-radius: 14px;
  padding: 36px 32px;
  max-width: 500px;
  margin: 40px auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #888;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: #1a1a1a; }
.modal-box h3 { font-size: 1.3rem; font-weight: 800; color: #1a3a2a; margin-bottom: 4px; }
.modal-box .sub { color: #555; font-size: 0.88rem; margin-bottom: 24px; }

/* ── FORM ── */
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 600; color: #1a3a2a; margin-bottom: 5px; }
.req { color: #2e7d52; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #c5d9cc;
  border-radius: 7px;
  font-size: 0.93rem;
  font-family: inherit;
  color: #1a1a1a;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2e7d52;
  box-shadow: 0 0 0 3px rgba(46,125,82,0.12);
}
.form-group textarea { resize: vertical; }
.form-submit {
  width: 100%;
  padding: 12px;
  background: #2e7d52;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
}
.form-submit:hover { background: #236040; }
.form-submit:disabled { opacity: 0.55; cursor: not-allowed; }
.success-msg {
  display: none;
  background: #e8f5ee;
  border: 1px solid #2e7d52;
  color: #1a3a2a;
  border-radius: 8px;
  padding: 14px 16px;
  font-weight: 600;
  margin-bottom: 14px;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: #1a3a2a;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links .cta { border-radius: 0; }

  .hero h1 { font-size: 1.55rem; }

  .services-grid,
  .testi-grid { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

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

  .modal-box { padding: 28px 20px; margin: 16px auto; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 40px 16px; }
  .hero { padding: 48px 16px 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}
