/* ========== GLOBAL ========== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #222222;
  background: #f7f9f8;
  line-height: 1.6;
}

/* Color palette */
:root {
  --green-primary: #2e7d32;
  --green-accent: #a5d6a7;
  --green-deep: #1b5e20;
  --bg-light: #ffffff;
  --bg-soft: #ecf5ee;
  --text-main: #222222;
  --text-muted: #555555;
}

/* Links */

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  opacity: 0.9;
}

/* Typography */

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--green-deep);
}

p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Layout containers */

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--bg-soft);
}

/* Section titles */

.section-title {
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* Buttons */

.btn-primary {
  display: inline-block;
  background: var(--green-primary);
  color: #ffffff;
  padding: 10px 26px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--green-deep);
}

.btn-outline {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 4px;
  border: 1px solid var(--green-primary);
  color: var(--green-primary);
  font-size: 0.95rem;
  font-weight: 500;
}

.btn-outline:hover {
  background: #e4f3e6;
}

/* Grids & flex */

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.flex-2 > div {
  flex: 1 1 280px;
}

/* Cards */

.card {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 18px 18px 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
}

/* Lists */

.simple-list {
  list-style: none;
}

.simple-list li {
  margin-bottom: 6px;
  font-size: 0.96rem;
}

/* ========== HEADER & NAV ========== */

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e3e8e4;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  height: 150px;
  width: auto;
  display: block;
}


.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-deep);
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  font-size: 0.92rem;
}

.main-nav a {
  color: var(--text-main);
  font-weight: 500;
}

.main-nav a.active {
  color: var(--green-primary);
}

/* ========== HERO (HYBRID: FULL-WIDTH) ========== */

.hero {
  background: linear-gradient(
    to right,
    rgba(27, 94, 32, 0.88),
    rgba(46, 125, 50, 0.82)
  ),
  url("hero.jpg") center/cover no-repeat;
  ...
}


.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero-content {
  max-width: 620px;
}

.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #e0f5e3;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 14px;
  color: #ffffff;
}

.hero-tagline {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #f1fff3;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* ========== SUB-HERO STRIP ========== */

.sub-hero {
  background: #ffffff;
  border-bottom: 1px solid #e3e8e4;
}

.sub-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

.sub-hero-inner p {
  font-size: 0.92rem;
}

.hero-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
}


/* ========== PRODUCT CATEGORY CARDS ========== */

.category-card {
  border-top: 3px solid var(--green-accent);
}

.category-card h3 {
  margin-bottom: 6px;
}

.category-card ul {
  list-style: none;
  font-size: 0.9rem;
}

.category-card ul li {
  margin-bottom: 4px;
}

/* ========== FORMS ========== */

form {
  background: #ffffff;
  padding: 18px 18px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.form-group {
  margin-bottom: 12px;
}

label {
  display: block;
  font-size: 0.85rem;
  color: var(--green-deep);
  margin-bottom: 4px;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #c7d4c9;
  padding: 8px 10px;
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

/* ========== CONTACT PANEL ========== */

.contact-panel {
  background: #ffffff;
  padding: 18px 18px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contact-panel p {
  margin-bottom: 8px;
}

/* ========== FOOTER ========== */

.site-footer {
  background: var(--green-deep);
  color: #e8f5e9;
  padding: 28px 0 18px;
  margin-top: 40px;
}

.footer-top {
  max-width: 1180px;
  margin: 0 auto 12px;
  padding: 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.footer-column p,
.footer-column li {
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 4px;
}

.footer-links a {
  color: #e8f5e9;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  font-size: 0.8rem;
  border-top: 1px solid rgba(232, 245, 233, 0.3);
  padding-top: 8px;
}

/* ========== TABLE / FEATURE LISTS ========== */

.feature-list {
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--green-primary);
  border-radius: 50%;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 900px) {
  .grid-3,
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .main-nav ul {
    gap: 14px;
  }
}

@media (max-width: 700px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .menu-toggle {
  display: block;
}

nav ul {
  display: none;
  flex-direction: column;
  width: 100%;
  background: #fff;
  padding: 15px 0;
  border-top: 1px solid #ddd;
}

nav ul.show {
  display: flex;
}

  
  header {
  flex-direction: column;
  text-align: center;
}

.logo-area {
  margin-bottom: 10px;
}

  
  body {
  padding: 0 15px;
}

section {
  margin-bottom: 30px;
}

img {
  max-width: 100%;
  height: auto;
}

header {
  flex-direction: column;
  text-align: center;
}

.logo-area {
  margin-bottom: 10px;
}

.btn {
  width: 100%;
  text-align: center;
  padding: 12px 0;
  font-size: 15px;
}

header {
  flex-direction: column;
  text-align: center;
}



.logo-area {
  margin-bottom: 10px;
}

.btn {
  width: 100%;
  text-align: center;
  padding: 12px 0;
  font-size: 15px;
}


  .hero {
    padding: 80px 0 70px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .sub-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 999;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}


nav ul {
  display: flex;
  gap: 25px; /* spacing between menu items */
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

nav ul li {
  margin-right: 25px; /* spacing between menu items */
}

nav ul li:last-child {
  margin-right: 0; /* remove space after last item */
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #1a8f4b; /* your brand green */
}

nav {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

/* Prevent content from touching the edges */
body {
  padding: 0 15px;
}

/* Make sections stack nicely */
section {
  margin-bottom: 30px;
}

/* Fix images overflowing on mobile */
img {
  max-width: 100%;
  height: auto;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}







