/* =========================
   GLOBAL COLORS & RESET
========================= */

:root{
  --green-main:#7ac943;
  --green-dark:#2f5d2f;
  --red-accent:#c62828;

  --bg:#f4f7f2;
  --soft:#eef4ea;
  --white:#ffffff;

  --text:#1b1b1b;
  --shadow:0 6px 18px rgba(0,0,0,0.12);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
}


/* =========================
   LAYOUT HELPERS
========================= */

.container{
  max-width:1100px;
  margin:auto;
  padding:0 18px;
}

.section{
  padding:60px 20px;
}

.section--light{background:var(--bg);}
.section--soft{background:var(--soft);}
.section--white{background:var(--white);}

.section__title{
  text-align:center;
  color:var(--green-dark);
  font-size:32px;
  margin-bottom:10px;
}

.section__text{
  text-align:center;
  opacity:.9;
  margin-bottom:20px;
}


/* =========================
   NAVIGATION
========================= */

.site-header{
  background:var(--green-dark);
  padding:16px 0;
}

.nav{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:18px;
}

.nav__link{
  color:white;
  text-decoration:none;
  font-weight:bold;
}

.nav__link:hover{
  color:var(--green-main);
}

.nav__link--active{
  text-decoration:underline;
}


/* =========================
   HERO SECTION
========================= */

.hero{
  background:linear-gradient(rgba(47,93,47,.95),rgba(47,93,47,.95));
  padding:70px 20px;
  text-align:center;
}

.hero__logo{
  width:260px;       /* smaller logo */
  max-width:85%;
  height:auto;
  margin:0 auto 15px;
  display:block;
}

.hero__title{
  color:white;
  font-size:40px;
  margin-bottom:8px;
}

.hero__subtitle{
  color:#e9f3e6;
  margin-bottom:18px;
}

.hero__buttons{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}


/* =========================
   BUTTONS
========================= */

.btn{
  display:inline-block;
  padding:14px 18px;
  border-radius:10px;
  font-weight:bold;
  text-decoration:none;
}

.btn--primary{
  background:var(--green-main);
  color:var(--text);
}

.btn--primary:hover{
  background:#6ab53b;
}

.btn--accent{
  background:var(--red-accent);
  color:white;
}

.btn--dark{
  background:var(--green-dark);
  color:white;
}


/* =========================
   SMALL FEATURED IMAGES
========================= */

.featured-images{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  margin-top:20px;
}

.featured-images img{
  width:280px;
  height:180px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:var(--shadow);
}


/* =========================
   SERVICES GRID
========================= */

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
  margin-top:25px;
}

.service-card{
  background:white;
  padding:22px;
  border-radius:12px;
  box-shadow:var(--shadow);
  border-top:6px solid var(--green-main);
  font-weight:bold;
  text-align:center;
}


/* =========================
   PARTNER BADGE
========================= */

.partner{
  display:flex;
  gap:25px;
  align-items:center;
  flex-wrap:wrap;
}

.partner__logo{
  width:260px;
  max-width:100%;
  background:white;
  padding:10px;
  border-radius:12px;
  box-shadow:var(--shadow);
}

.pill{
  background:var(--green-dark);
  color:white;
  padding:6px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:bold;
  display:inline-block;
  margin-bottom:10px;
}


/* =========================
   CONTACT PANEL
========================= */

.section-contact{
  background:var(--green-dark);
  color:white;
}

.contact-buttons{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
  margin-top:20px;
}


/* =========================
   FOOTER
========================= */

.site-footer{
  background:var(--green-dark);
  color:white;
  text-align:center;
  padding:22px;
}

.site-footer a{
  color:var(--green-main);
  text-decoration:none;
}


/* =========================
   MOBILE TWEAKS
========================= */

@media(max-width:480px){

.hero__title{
  font-size:32px;
}

.section__title{
  font-size:26px;
}

.featured-images img{
  width:100%;
  height:200px;
}

}
