
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #222;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: auto;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

section {
  scroll-margin-top: 110px;
}

/* ================= NAVBAR ================= */
.navbar {
  /*position: sticky;*/
  top: 0;
  background: #fff;
  z-index: 9999;
  border-bottom: 1px solid #e6e6e6;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

/* Logo */
.logo img {
  height: 100px;
}

/* =================  NAV LINKS ================= */

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: #16321a;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover {
  color: #2e8b57;
}

/* =================  BROCHURE + PDF BUTTON  ================= */

.btn-brochure,
.dropdown-menu a {
  background: #7db343;
  color: #fff;
  border: none;

  /* 🔑 FIX */
  width: 240px;              
  min-height: 44px;          

  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;

  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  transition: background 0.25s ease;
}

.btn-brochure:hover,
.dropdown-menu a:hover {
  background: #689c36;
}

/* =================   DROPDOWN MENU  ================= */

.brochure-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 42px;
  right: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  padding: 10px;
  display: none;
  z-index: 10001;
}

.dropdown-menu a {
  margin-bottom: 8px;
}

.dropdown-menu a:last-child {
  margin-bottom: 0;
}

/* Desktop hover */
@media (min-width: 993px) {
  .brochure-dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* =================    HAMBURGER / CLOSE  ================= */

.menu-toggle,
.menu-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #2e8b57;
  position: relative;
  z-index: 10050;
}

.menu-toggle {
  display: none;
}

.menu-close {
  display: none;
}

/* =================    MOBILE NAV  ================= */
@media (max-width: 992px) {

  /* Header wraps */
  .nav-flex {
    flex-wrap: wrap;
  }

  .logo { order: 1; }
  .menu-toggle,
  .menu-close { order: 2; }
  .nav-links { order: 3; }

  /* Show hamburger */
  .menu-toggle {
    display: block;
  }

  /* Swap icons */
  body.menu-open .menu-toggle {
    display: none;
  }

  body.menu-open .menu-close {
    display: block;
  }
   /* MOBILE MENU */
 .nav-links {
    display: none;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e6e6e6;
    font-family: Georgia, "Times New Roman", serif;
  }

  body.menu-open .nav-links {
    display: block;
  }

 /*  MENU ITEMS*/
  .nav-links a {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding: 0 16px;
    margin: 0;

    font-size: 15px;
    font-weight: 400;
    color: #16321a;
    text-decoration: none;

    border-bottom: 1px solid #e6e6e6;
    text-align: left;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: #2e8b57;
  }

 /* BROCHURE SECTION */

.brochure-dropdown {
  width: 50%;
}

/* MAIN BUTTON */
.btn-brochure {
  width: 100%;
  height: 56px;

  background: #7db343;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  border: none;
  margin: 0;
  padding: 0;

  cursor: pointer;
}

/* DROPDOWN CONTAINER */
.dropdown-menu {
  display: none;
  width: 100%;
  margin: 0;
  padding: 0;

  position: static;          
  background: #7db343;       
}

/* SHOW */
.dropdown-menu.active {
  display: block;
}

/* PDF LINKS */
.dropdown-menu a {
  width: 100%;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #7db343;
  color: #fff;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  /*text-transform: uppercase;*/

  text-decoration: none;
  margin: 0;
  padding: 0;

  border-top: 1px solid rgba(255,255,255,0.3);
}

/* HOVER */
.btn-brochure:hover,
.dropdown-menu a:hover {
  background: #689c36;
}
}

/* ================= HERO ================= */

.hero {
  width: 100%;
  background: #fff;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* Slides */
.hero-slide {
  display: none;
}

.hero-slide.active {
  display: block;
}

/* Images */
.hero-slide img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
}

/* Desktop hero height */
@media (min-width: 1024px) {
  .hero-slide img {
    height: 520px;
    object-fit: cover;
  }
}

/* Mobile height safety */
@media (max-width: 768px) {
  .hero,
  .hero-slider,
  .hero-slide {
    height: auto !important;
    min-height: 0 !important;
    background: #fff !important;
  }

  .hero-slide img {
    height: auto !important;
  }
}

/* ================= HERO ARROWS ================= */

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;      
  border: none;
  color: #ffffff;               
  font-size: 34px;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  line-height: 1;
}

/* Position */
.hero-arrow.prev { left: 16px; }
.hero-arrow.next { right: 16px; }

/* Hover */
.hero-arrow:hover {
  opacity: 0.6;
}

/* Mobile arrows */
@media (max-width: 768px) {
  .hero-arrow {
    font-size: 26px;
  }

  .hero-arrow.prev { left: 8px; }
  .hero-arrow.next { right: 8px; }
}

/* ================= SECTION TITLES ================= */

.section-title {
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 600;
  margin: 50px 0 24px;
  color: #16321a;
}

/* ================= ABOUT ================= */

.about-section {
  padding: 80px 0;
  background: #fff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #6a8f2d;
  margin-bottom: 25px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}

.about-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image img {
    height: auto;
  }

  .about-text h2 {
    font-size: 34px;
  }
}
/* ================= ABOUT – MOBILE FIX ================= */
@media (max-width: 768px) {

  .about-section {
    padding: 50px 0;
  }

  .about-container {
    padding: 0 20px;        
    text-align: left;       
  }

  .about-text h2 {
    font-size: 30px;        
    margin-bottom: 18px;
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.75;
  }

}

/* ================= IMPACT SECTION ================= */

.impact-section {
  background: #7fb03d;
  padding: 100px 20px;
  text-align: center;
}

.impact-container {
  max-width: 1200px;
  margin: auto;
}

.impact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #fff;
  margin-bottom: 10px;
}

.impact-subtitle {
  color: #fff;
  font-size: 16px;
  margin-bottom: 60px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.impact-item h3 {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.impact-item span {
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= PRODUCT SECTION ================= */

.product-section {
  padding: 70px 0;
}

/* ---------- Heading ---------- */
.product-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #6a8f2d;
  padding-left: 80px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .product-head h2 {
    padding-left: 16px;
    font-size: 28px;
  }
}

/* ================= SLIDER ================= */

.product-slider {
  position: relative;
}

/* Visible window */
.ps-window {
  overflow: hidden;
  width: 100%;
}

/* Moving track (DO NOT CENTER THIS) */
.ps-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* ================= PRODUCT CARD ================= */

.ps-card {
  flex: 0 0 33.3333%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.ps-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  margin: 0 auto;             
}

.ps-card h4 {
  margin-top: 14px;
  font-size: 16px;
  color: #16321a;
  text-align: center;
}

/* ================= ARROWS  ================= */

.ps-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 32px;
  color: #000;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  line-height: 1;
}

.product-slider .ps-btn.prev {
  left: 20px;
}

.product-slider .ps-btn.next {
  right: 20px;
}

.ps-btn:hover {
  opacity: 0.6;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .ps-card {
    flex: 0 0 50%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .ps-card {
    flex: 0 0 100%;
    padding: 20px 0;         
  }

  .ps-btn {
    font-size: 26px;
  }

  .product-slider .ps-btn.prev {
    left: 10px;
  }

  .product-slider .ps-btn.next {
    right: 10px;
  }
}

/* ================= WHY CHOOSE US ================= */
.why-section {
  background: #ffffff;
  padding: 90px 0;
  text-align: center;
}

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  color: #6a8f2d;
  margin-bottom: 70px;
}

.why-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

.why-item {
  text-align: center;
}

.why-item i {
  font-size: 52px;
  color: #000;
  margin-bottom: 22px;
}

.why-item h4 {
  font-size: 20px;
  color: #6a8f2d;
  margin-bottom: 12px;
  font-weight: 600;
}

.why-item p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  max-width: 240px;
  margin: auto;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .why-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .why-title {
    font-size: 34px;
    margin-bottom: 50px;
  }

  .why-grid-modern {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .why-item i {
    font-size: 46px;
  }
}

/* ================= CONTACT ================= */
.contact {
  background: #fff;
  padding: 90px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;   
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.contact-map iframe {
  width: 100%;
  height: 420px;
  border-radius: 8px;
  border: none;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: #6a8f2d;
  margin-bottom: 24px;
}

.contact-info h4 {
  margin-top: 20px;
  font-size: 18px;
  color: #16321a;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;  
  }

  .contact-map iframe {
    height: 300px;
  }
}

/* ================= WHATSAPP FLOAT BUTTON ================= */

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #1fae9e;      
  color: #ffffff;

  padding: 10px 16px;           
  margin: 24px 16px;            

  border-radius: 4px;           
  font-size: 14px;
  font-weight: 600;

  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}

.whatsapp i {
  font-size: 18px;
}

/* Hover */
.whatsapp:hover {
  background: #179c8d;
  transform: translateY(-1px);
}

/* ================= MOBILE  ================= */
@media (max-width: 768px) {
  .whatsapp {
    padding: 10px 16px; 
    font-size: 14px;      
    margin: 20px 16px;
  }

  .whatsapp i {
    font-size: 18px;
  }
}

/* ================= FOOTER ================= */

.site-footer {
  background: #74a838; 
  color: #ffffff;
  padding: 70px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 20px;
}

/* Logo */
.footer-logo img {
  height: 80px;
  margin-bottom: 16px;
}

/* Text */
.footer-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Headings */
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

.footer-links a:hover {
  text-decoration: none;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  color: #fff;
  font-size: 18px;
  transition: transform 0.2s ease;
}

.footer-social a:hover {
  transform: scale(1.15);
}

.footer-links a {
  /*color: #333;*/
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;   /* required for scale */
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: #2e8b57;          /* same green */
  transform: scale(1.08);  /* slight increase */
}

/* Get Directions */
.footer-direction {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 16px;
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
}

.footer-direction i {
  font-size: 16px;
}

.footer-direction:hover {
  text-decoration: none;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 50px;
  padding: 18px 20px;
  border-top: 1px solid rgba(255,255,255,0.3);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-text {
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

