/* =============== */
/* Base & Resets   */
/* =============== */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  color: #243227;
  background: #f7faf7;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: #166534; text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: 92%; max-width: 1200px; margin: 0 auto; }
.small { font-size: .95rem; color: #486150; }
.center { text-align: center; }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: -999px;
}
.skip-link:focus {
  left: 8px; top: 8px; background: #fff; padding: 8px 12px; z-index: 10000;
  border-radius: 6px; box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

/* =============== */
/* Topbar          */
/* =============== */
.topbar {
  background: #0b3d1b; color: #dff5e6; font-size: .95rem;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0;
}
.topbar a { color: #dff5e6; }
.topbar .phone { font-weight: 700; }

/* =============== */
/* Header / Nav    */
/* =============== */
.site-header {
  position: sticky; top: 0; z-index: 999;
  background: #124d23;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
}
.brand { display: flex; align-items: center; gap: 10px; color: #e9f9ef; font-weight: 700; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.menu-toggle { display: none; font-size: 1.6rem; color: #e9f9ef; background: transparent; border: 0; cursor: pointer; }
.site-nav ul { list-style: none; display: flex; gap: 18px; align-items: center; }
.site-nav a {
  color: #e9f9ef; font-weight: 600; letter-spacing: .2px; position: relative; padding: 6px 2px;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: #a7f3d0; transition: width .25s ease;
}
.site-nav a:hover::after { width: 100%; }
.site-nav li.social a { opacity: .85; }
.site-nav li.social a:hover { opacity: 1; }

/* =============== */
/* Hero            */
/* =============== */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid; place-items: center;
  color: #f1fff7;
  background: url("images/hero-bg.jpg") center/cover no-repeat fixed;
  overflow: clip;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,77,35,.35), rgba(18,77,35,.75));
}
.hero-inner { position: relative; z-index: 1; padding: 80px 0; text-align: center; }
.hero h1 { font-size: clamp(1.9rem, 4.2vw, 3.2rem); margin: 0 0 10px; }
.hero h1 span { color: #a7f3d0; }
.lead { max-width: 850px; margin: 0 auto 18px; font-size: clamp(1rem, 2.2vw, 1.2rem); color: #e1f5ea; }

.hero-ctas { display: inline-flex; gap: 12px; }
.btn {
  display: inline-block; border-radius: 12px; padding: 12px 18px; font-weight: 700;
  border: 2px solid transparent; transition: transform .2s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary { background: #16a34a; color: #0b1f11; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.btn-outline { background: transparent; color: #97f5bb; border-color: #53eea6; }
.btn-outline:hover { background: rgba(167,243,208,.12); transform: translateY(-2px); }

.badges {
  margin: 18px auto 0; padding: 0; list-style: none;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.badges li {
  background: rgba(255,255,255,.12); color: #eafdf3;
  padding: 8px 12px; border-radius: 999px; font-weight: 600; backdrop-filter: blur(2px);
}

/* =============== */
/* Services strip  */
/* =============== */
.services-strip { background: #e8f8ef; }
.services-strip .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 28px 0;
}
.strip-item {
  background: #ffffff; border-radius: 14px; padding: 18px; text-align: center;
  box-shadow: 0 12px 28px rgba(16, 52, 28, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.strip-item:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(16,52,28,.10); }
.strip-item img { width: 48px; height: 48px; margin: 0 auto 8px; }

/* =============== */
/* Generic Section */
/* =============== */
.section { padding: 70px 0; }
.section.alt { background: #f0f7f2; }
.grid-2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; }
.text p { margin: 0 0 10px; }
.media { display: grid; gap: 12px; }
.media img { border-radius: 14px; box-shadow: 0 14px 40px rgba(0,0,0,.12); }

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  margin: 0 0 14px; color: #0b3d1b;
}
.checklist { list-style: none; padding: 0; margin: 10px 0 16px; }
.checklist li { padding-left: 28px; position: relative; margin: 8px 0; }
.checklist li::before {
  content: "✔"; position: absolute; left: 0; top: 0; color: #16a34a; font-weight: 800;
}
.callout {
  margin-top: 10px; padding: 10px 12px; background: #e0f7ea; color: #0b3d1b; border-left: 4px solid #16a34a;
  border-radius: 8px;
}

/* =============== */
/* Steps / Process */
/* =============== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 10px; }
.step {
  background: #fff; padding: 18px; border-radius: 14px; text-align: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,.1); }
.step span {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 999px;
  background: #16a34a; color: #0b1f11; font-weight: 800; margin-bottom: 8px;
}

/* =============== */
/* Gallery         */
/* =============== */
.filters {
  display: flex; gap: 10px; justify-content: center; margin: 8px 0 18px;
}
.filter-btn {
  border: 1px solid #a7f3d0; background: #fff; color: #0b3d1b; padding: 8px 12px;
  border-radius: 999px; cursor: pointer; font-weight: 700; transition: all .2s ease;
}
.filter-btn:hover { transform: translateY(-2px); }
.filter-btn.active { background: #16a34a; color: #0b1f11; border-color: #16a34a; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 14px 34px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease; cursor: zoom-in;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,.12); }
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card figcaption { padding: 10px 12px; font-weight: 700; color: #123c21; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.8);
  display: none; align-items: center; justify-content: center; flex-direction: column; padding: 20px; z-index: 1000;
}
.lightbox img {
  max-width: 92vw; max-height: 72vh; border-radius: 12px; box-shadow: 0 18px 60px rgba(0,0,0,.4);
}
.lightbox p { color: #dff5e6; margin-top: 12px; }
.lightbox.show { display: flex; }
.lightbox-close {
  position: absolute; top: 18px; right: 18px; border: 0; background: #ffffff; color: #0b1f11;
  width: 40px; height: 40px; border-radius: 999px; font-size: 24px; cursor: pointer;
}

/* =============== */
/* Why Choose Us   */
/* =============== */
.why-list {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 8px;
}
.why-list li {
  background: #fff; border-radius: 12px; padding: 12px; box-shadow: 0 10px 26px rgba(0,0,0,.06);
}

/* =============== */
/* Reviews         */
/* =============== */
.reviews-slider {
  position: relative; max-width: 900px; margin: 0 auto; min-height: 160px;
}
.review {
  display: none; background: #ffffff; padding: 18px; border-left: 4px solid #16a34a; border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,.06); font-style: italic;
}
.review.active { display: block; }
.reviews-cta { text-align: center; margin-top: 16px; }

/* =============== */
/* About           */
/* =============== */
.bullets { list-style: none; padding: 0; display: grid; gap: 6px; }
.bullets li::marker { content: none; }

/* =============== */
/* Location        */
/* =============== */
.map iframe { width: 100%; height: 340px; border: 0; border-radius: 14px; box-shadow: 0 14px 40px rgba(0,0,0,.10); }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; }
.chips li {
  background: #e0f7ea; color: #0b3d1b; padding: 8px 12px; border-radius: 999px; font-weight: 700;
}

/* =============== */
/* CTA Facebook    */
/* =============== */
.cta-facebook .btn-primary { font-size: 1rem; }
.cta-facebook p { margin: 6px 0 10px; }

/* =============== */
/* Contact         */
/* =============== */
.contact-list { list-style: none; padding: 0; margin: 6px 0 14px; }
.contact-list li { margin-bottom: 6px; }
.contact-form {
  background: #ffffff; padding: 16px; border-radius: 12px; box-shadow: 0 14px 34px rgba(0,0,0,.08);
  display: grid; gap: 10px;
}
.contact-form input, .contact-form textarea {
  width: 100%; padding: 12px 12px; border-radius: 10px; border: 1px solid #cfeadb; outline: none;
  font: inherit; color: #243227; background: #f9fffb; transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: #16a34a; box-shadow: 0 0 0 4px rgba(22,163,74,.12);
}
.contact-form button { justify-self: start; }
.form-note { margin: 4px 0 0; color: #486150; }

/* =============== */
/* Footer          */
/* =============== */
.site-footer { background: #0b3d1b; color: #dff5e6; }
.site-footer .wrap { padding: 26px 0; }
.footer-cols { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; margin-bottom: 10px; }
.site-footer h3, .site-footer h4 { margin: 0 0 8px; color: #eafdf3; }
.links { list-style: none; padding: 0; }
.links li { margin: 6px 0; }
.links a { color: #c9f1de; }
.legal { text-align: center; margin: 12px 0 0; color: #a7d8bf; }

/* =============== */
/* WhatsApp Float  */
/* =============== */
.whatsapp-float {
  position: fixed; bottom: 18px; right: 18px; width: 54px; height: 54px; border-radius: 999px;
  display: grid; place-items: center; background: #25D366; box-shadow: 0 16px 40px rgba(0,0,0,.22);
  color: #fff; font-size: 22px; z-index: 1001; transition: transform .15s ease;
}
.whatsapp-float:hover { transform: translateY(-2px) scale(1.04); }
.vibrate { animation: vibrate .35s linear 1; }
@keyframes vibrate {
  0% { transform: translate(0) }
  20% { transform: translate(-2px, 1px) }
  40% { transform: translate(2px, -1px) }
  60% { transform: translate(-1px, 1px) }
  80% { transform: translate(1px, -1px) }
  100% { transform: translate(0) }
}

/* =============== */
/* Reveal on scroll*/
/* =============== */
.reveal { opacity: 0; transform: translateY(16px); transition: all .6s ease; }
.reveal.show { opacity: 1; transform: none; }

/* =============== */
/* Responsive      */
/* =============== */
@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; }
  .services-strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: inline-block; }
  .site-nav { position: absolute; inset: 64px 0 auto 0; transform: translateY(-16px); opacity: 0; pointer-events: none; }
  .site-nav ul {
    flex-direction: column; align-items: flex-start; gap: 0;
    background: #0b3d1b; padding: 8px 12px; border-top: 1px solid rgba(255,255,255,.08);
  }
  .site-nav li { width: 100%; }
  .site-nav a { display: block; width: 100%; padding: 10px 6px; }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); transition: all .25s ease; }

  .services-strip .wrap { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}
