:root {
  --green: #1f6b4a;
  --green-dark: #144832;
  --green-soft: #e8f4ee;
  --gold: #c4a35a;
  --ink: #1c2b24;
  --muted: #5b6b63;
  --cream: #f7f4ee;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(20, 72, 50, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
}
h1, h2, h3, h4, .brand-font {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}
a { color: var(--green); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.navbar {
  background: rgba(255,255,255,.96);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  padding: .55rem 0;
}
.navbar-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--green-dark) !important;
  letter-spacing: .02em;
}
.navbar-brand span { color: var(--gold); }
.nav-link {
  color: var(--ink) !important;
  font-weight: 600;
  font-size: .92rem;
  padding: .5rem .85rem !important;
}
.nav-link:hover, .nav-link.active { color: var(--green) !important; }
.btn-leaf {
  background: var(--green);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: .7rem 1.4rem;
  font-weight: 600;
}
.btn-leaf:hover { background: var(--green-dark); color: #fff; }
.btn-outline-leaf {
  border: 2px solid var(--green);
  color: var(--green);
  border-radius: 999px;
  padding: .65rem 1.3rem;
  font-weight: 600;
  background: transparent;
}
.btn-outline-leaf:hover { background: var(--green); color: #fff; }

.hero {
  min-height: 88vh;
  background: linear-gradient(100deg, rgba(20,72,50,.78), rgba(31,107,74,.45)), url("../img/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.1; }
.eyebrow {
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
}
.section { padding: 5rem 0; }
.section-cream { background: var(--cream); }
.section-soft { background: var(--green-soft); }
.section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); }
.lead-muted { color: var(--muted); }

.page-banner {
  padding: 7.5rem 0 4rem;
  background: linear-gradient(100deg, rgba(20,72,50,.85), rgba(31,107,74,.55)), url("../img/hero.jpg") center/cover no-repeat;
  color: #fff;
}

.card-service {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  background: #fff;
}
.card-service img { width: 100%; height: 210px; object-fit: cover; }
.card-service .card-body { padding: 1.4rem 1.35rem 1.6rem; }
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.6rem;
  height: 100%;
  box-shadow: var(--shadow);
}
.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  display: grid; place-items: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 1.7rem;
  height: 100%;
  box-shadow: var(--shadow);
}
.stars { color: #d4a017; letter-spacing: 2px; }
.blog-card {
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  background: #fff;
}
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.faq .accordion-button { font-weight: 600; }
.faq .accordion-button:not(.collapsed) {
  background: var(--green-soft);
  color: var(--green-dark);
  box-shadow: none;
}
.cta-band {
  background: linear-gradient(110deg, var(--green-dark), var(--green));
  color: #fff;
  border-radius: 22px;
  padding: 3rem 2rem;
}

.footer {
  background: #10261c;
  color: #c9d8d0;
  padding: 3.5rem 0 1.4rem;
}
.footer h5 { color: #fff; font-family: "Cormorant Garamond", serif; }
.footer a { color: #c9d8d0; }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 2rem; padding-top: 1rem; font-size: .9rem; }

.form-control, .form-select {
  border-radius: 12px;
  padding: .75rem 1rem;
  border-color: #d7e0db;
}
.form-control:focus, .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 .2rem rgba(31,107,74,.15);
}
.alert-ok {
  display: none;
  background: var(--green-soft);
  color: var(--green-dark);
  border: 0;
  border-radius: 12px;
}
.is-invalid { border-color: #b42318 !important; }

.contact-info-box {
  background: var(--green-dark);
  color: #fff;
  border-radius: 18px;
  padding: 2rem;
  height: 100%;
}
.contact-info-box a { color: #fff; }

@media (max-width: 991px) {
  .hero { min-height: 70vh; padding-top: 5rem; }
}


.blog-content {
  text-align: justify;
}

.navbar-brand img{
  width: 250px;
}