:root{
 --green:#212F15;
   --green2:#5FA613;
  --ink:#1f2a1f;
  --muted:#5b6b5b;
  --bg:#ffffff;
  --soft:#f6ffe8;
  --card:#ffffff;
  --line: rgba(0,0,0,.08);
  --shadow: 0 12px 30px rgba(0,0,0,.12);
  --radius: 18px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }

.container{
  width: min(1100px, 92%);
  margin-inline:auto;
}

.muted{ color: var(--muted); }
.tiny{ font-size: .85rem; margin-top: 10px; }

/* =========================
  TOPBAR
========================= */
.topbar{
  position:sticky;
  top:0;
  z-index: 50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 14px;
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.logo{
  height: 80px; /* Change to resize logo */
  width: auto;
}

.menu-btn{
  font-size: 1.3rem;
  border:none;
  background:transparent;
  cursor:pointer;
  margin-left: 5%;
}
.menu-list{
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green);
  position: absolute;
  height: 800px;
  top: 100%;
  width: 100%;
  left: 0;
  align-items: center;
  list-style-type: none;
  font-size: 2em;
  row-gap: 5%;
  padding-top: 25%;
  font-weight: bold;
}

.menu-btn ul{
    list-style-type: none;
    width: 80%;
}
.menu-list a{
  text-decoration: none;
  color: inherit;
}
#menuX{
  display: none;
}
.logo{
  height: 80px; /* Change to resize logo */
  width: auto;
}
.menu{
  height: 60px; /* Change to resize logo */
  width: auto;
}
#menuX{
  display: nones;
}


/* =========================
  HERO
========================= */
.hero{
  position: relative;
  overflow:hidden;
  padding: 28px 0 18px;
  background: linear-gradient(180deg, var(--soft), #fff 70%);
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  opacity: .18; /* adjust strength */
  pointer-events:none;
}

.hero-inner{
  position: relative;
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items:center;
}

.hero-card{
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 18px;
}

.kicker{
  display:inline-block;
  padding: 6px 10px;
  background: rgba(63,140,77,.12);
  color: var(--green);
  border-radius: 999px;
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: 10px;
}

.hero-card h1{
  font-size: 1.55rem;
  line-height: 1.15;
  margin-bottom: 8px;
  font-weight: 900;
}

.tagline{
  color: var(--green);
  font-weight: 900;
  margin-bottom: 10px;
}

.lead{
  color: var(--muted);
  font-size: .98rem;
}

.hero-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn-primary{
  display:inline-block;
  background: var(--green2);
  color:#fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(47,107,58,.22);
}

.btn-ghost{
  display:inline-block;
  background:#fff;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  color: var(--green);
}

.hero-media{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:#fff;
}

.hero-photo{
  width:100%;
  height: 240px; /* change height */
  object-fit: cover;
}

/* =========================
  SECTION
========================= */
.section{ padding: 26px 0; }
.section-soft{
  background: var(--soft);
  border-top: 1px solid rgba(0,0,0,.04);
  border-bottom: 1px solid rgba(0,0,0,.04);
}

.section-head{
  text-align:center;
  margin-bottom: 16px;
}
.section-head h2{
  font-size: 1.35rem;
  font-weight: 1000;
}
.section-head p{
  color: var(--muted);
  margin-top: 6px;
}

/* =========================
  CONTACT CARDS
========================= */
.contact-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
}

.card{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-icon{
  width: 44px; /* icon display size (source file can be 120x120) */
  height: 44px;
  object-fit: contain;
  margin-bottom: 10px;
}

.card h3{
  font-size: 1.05rem;
  font-weight: 1000;
  margin-bottom: 6px;
}

.link{
  display:inline-block;
  margin-top: 8px;
  color: var(--green);
  font-weight: 1000;
}

/* =========================
  FORM + MAP
========================= */
.form-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.form-card, .map-card{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}

.form-card h2, .map-card h2{
  font-size: 1.25rem;
  font-weight: 1000;
  margin-bottom: 6px;
}

.contact-form{
  margin-top: 12px;
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.row{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

label{
  display:flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 900;
  font-size: .92rem;
}

input, textarea{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  padding: 12px 12px;
  font-size: .95rem;
  outline: none;
  background: #fff;
}

input:focus, textarea:focus{
  border-color: rgba(63,140,77,.7);
  box-shadow: 0 0 0 4px rgba(63,140,77,.12);
}

.map-frame{
  margin-top: 12px;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.10);
  height: 320px; /* map height */
}

.map-frame iframe{
  width:100%;
  height:100%;
  border:0;
}

.mini-note{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(63,140,77,.08);
  border: 1px dashed rgba(47,107,58,.25);
  color: var(--muted);
}

/* =========================
  FOOTER
========================= */
.footer{
  background: var(--green2);
  color:white;
  padding: 26px 0 14px;
  text-align: center;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  color: #fff;
}

.footer h3{ font-size: 1.15rem; font-weight: 1000; }
.footer h4{ margin-bottom: 6px; font-weight: 1000; }
.footer a{ display:block; margin-top: 6px; opacity: .95; }

.footer-bottom{
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.18);
  text-align:center;
  opacity: .92;
}

/* Floating WhatsApp button */
.whatsapp-float{
  position: fixed;
  right: 14px;
  bottom: 16px;
  z-index: 90;
  background: #25D366;
  color:#fff;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 1000;
  box-shadow: 0 12px 24px rgba(0,0,0,.22);
}

/* =========================
  RESPONSIVE: Tablet/Desktop
========================= */
@media (min-width: 768px){
  .nav-links{ display:flex; }
  .menu-btn{ display:none; }
  .nav-mobile{ display:none !important; }

  .hero-inner{
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    align-items: center;
  }

  .contact-cards{
    grid-template-columns: repeat(4, 1fr);
  }

  .form-grid{
    grid-template-columns: 1.05fr .95fr;
    align-items: start;
  }

  .row{
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid{
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .menu-btn{
display: none;
}

.menu-list{
  display: flex;
  flex-direction: row;
  background: none;
  color: var(--green);
  position: static;
  height: 0px;
  top: 100%;
  width: 70%;
  left: 0;
  align-items: center;
  list-style-type: none;
  font-size: 1em;
  row-gap: 0;
  column-gap: 15%;
  padding-top: 0;
  font-weight: bold;
}
.menu-list li{
  cursor: pointer;
}
}