/* =====================================================
   CSS VARIABLES & RESET
   ===================================================== */
:root {
  --primary-color: #4CAF50;
  --secondary-color: #2E7D32;
  --accent: #FFC107;
  --text: #222;
  --muted: #6b7280;
  --bg: #ffffff;
  --header-height: 70px;
  --header-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --shadow-green-1: rgba(76, 175, 80, 0.22);
  --shadow-green-2: rgba(46, 125, 50, 0.18);
  --shadow-green-3: rgba(76, 175, 80, 0.35);
  --page-max: 1200px;
  --page-gutter: 14px;
}

/* =====================================================
   UNIVERSAL RESET
   ===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow-x: clip;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: #f7f8f8;
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  display: block;
}

/* =====================================================
   CONTAINER & LAYOUT
   ===================================================== */
.container {
  max-width: var(--page-max);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

main {
  padding: 16px 0 0;
}

main .container {
  width: min(1200px, 96%);
  margin: 0 auto;
}

.section {
  padding: 24px 0;
  margin: 0;
}

.features.section .container,
.product-highlight.section .container,
.cta.section .container {
  padding-inline: var(--page-gutter);
}

.product-highlight .container {
  padding-inline: var(--page-gutter);
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--header-gradient);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  z-index: 1000;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.brand-name {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.28);
  color: #FFEB3B;
}

.nav-icon {
  margin-right: 0.5rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle:hover {
  opacity: 0.8;
}

/* =====================================================
   SLIDESHOW
   ===================================================== */
.slideshow {
  position: relative;
  width: 100%;
  height: 340px;
  margin: var(--header-height, 70px) 0 0 0;
  padding: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background: #000;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.slideshow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 56px;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.22));
  z-index: 2;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Slide background images */
.slide-1 {
  background-image: url('../../assets/moringa1.png');
}

.slide-2 {
  background-image: url('../../assets/moringa2.png');
}

.slide-3 {
  background-image: url('../../assets/moringa3.png');
}

.slide-content {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 12%;
  width: 100%;
  padding: 20px;
  color: #fff;
  background: linear-gradient(
    90deg,
    rgba(46, 125, 50, 0) 0%,
    rgba(46, 125, 50, 0.4) 30%,
    rgba(30, 90, 35, 0.7) 70%,
    rgba(20, 60, 25, 0.85) 100%
  );
}

.slide-content h2,
.slide-content p {
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
  text-align: right;
  box-sizing: border-box;
}

.slide-content h2 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  text-shadow: 
    3px 3px 10px rgba(0, 0, 0, 0.9),
    2px 2px 6px rgba(0, 0, 0, 1),
    0 0 25px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.5px;
}

.slide-content p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 
    2px 2px 8px rgba(0, 0, 0, 0.8),
    1px 1px 4px rgba(0, 0, 0, 0.9),
    0 0 15px rgba(0, 0, 0, 0.6);
}

/* Page accents for visual depth */
.page-accents {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.page-accents .fade-left,
.page-accents .fade-right {
  position: absolute;
  top: var(--header-height);
  bottom: 0;
  width: 22vw;
  max-width: 280px;
}

.page-accents .fade-left {
  left: 0;
  background: linear-gradient(90deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0));
}

.page-accents .fade-right {
  right: 0;
  background: linear-gradient(270deg, rgba(46, 125, 50, 0.08), rgba(46, 125, 50, 0));
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1 {
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
  color: var(--primary-color);
}

h2 {
  font-size: 1.4rem;
  margin: 0 0 1rem;
  background: var(--header-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
  color: var(--secondary-color);
}

/* =====================================================
   FEATURES SECTION
   ===================================================== */
.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 24px var(--shadow-green-2), 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(76, 175, 80, 0.12);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 18px 36px var(--shadow-green-3), 0 6px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.12), rgba(46, 125, 50, 0.12));
}

.feature-card i {
  font-size: 1.6rem;
  background: var(--header-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card p {
  color: var(--muted);
  margin: 0;
}

/* =====================================================
   PRODUCT HIGHLIGHT
   ===================================================== */
.product-card.no-image {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px var(--shadow-green-1), 0 3px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(76, 175, 80, 0.14);
  transform: none;
  float: none;
}

.product-card.no-image:hover {
  box-shadow: 0 20px 40px var(--shadow-green-3), 0 8px 16px rgba(0, 0, 0, 0.08);
}

.product-image img {
  max-width: 100%;
  border-radius: 10px;
}

.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.benefits-list.fancy {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 12px 16px;
}

.benefits-list.fancy li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 22px var(--shadow-green-1), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(76, 175, 80, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefits-list.fancy li:hover {
  box-shadow: 0 16px 32px var(--shadow-green-3), 0 6px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.benefits-list .tick {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--header-gradient);
  color: #fff;
}

.benefits-list strong {
  color: var(--secondary-color);
}

.benefits-list small {
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

/* =====================================================
   CALL TO ACTION (CTA)
   ===================================================== */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: var(--header-gradient);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(76, 175, 80, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.cta.section {
  padding: 24px 0;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 70%);
  color: #fff;
  box-shadow: 0 18px 36px var(--shadow-green-3), 0 8px 16px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 180%;
  background: radial-gradient(600px 260px at 10% 50%, rgba(255, 255, 255, 0.25), transparent 60%);
  pointer-events: none;
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0,
    rgba(255, 255, 255, 0.05) 2px,
    transparent 2px,
    transparent 10px
  );
  opacity: 0.25;
  pointer-events: none;
}

.cta-copy h2 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #fff;
  text-shadow: none;
}

.cta-copy p {
  margin: 0;
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.cta-btn {
  background: #fff;
  color: #2E7D32;
  border: 0;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(255, 255, 255, 0.12), 0 10px 26px rgba(46, 125, 50, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(46, 125, 50, 0.45);
}

.cta-note {
  font-size: 0.85rem;
  opacity: 0.9;
  display: none;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  width: 100%;
  overflow: hidden;
  background: #2f3133;
  color: #e7e7e7;
  padding: 26px 0;
  margin-top: 20px;
}

.footer-inner {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.social-links {
  margin-top: 8px;
  display: flex;
  gap: 10px;
}

.social-links a {
  color: #9fe3a3;
  margin: 0 8px;
  text-decoration: none;
}

.footer-info p {
  margin: 4px 0;
}

/* Modern footer variant */
.site-footer.modern {
  position: relative;
  background: #1f2621;
  color: #e9f1ea;
  padding: 28px 0 18px;
  overflow: hidden;
}

.site-footer.modern::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -80px;
  height: 160px;
  background: radial-gradient(600px 140px at 10% 0%, rgba(76, 175, 80, 0.25), transparent 65%),
    radial-gradient(600px 140px at 90% 0%, rgba(46, 125, 50, 0.22), transparent 60%);
  filter: blur(28px);
  pointer-events: none;
}

.site-footer.modern::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0.9;
}

.footer-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 6px;
}

.footer-title {
  margin: 0;
  font-size: 1.1rem;
  color: #e9f1ea;
}

.footer-tag {
  margin: 4px 0 0;
  color: #b9c7bb;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #dfe7e1;
  text-decoration: none;
  font-weight: 600;
  padding: 4px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #9fe3a3;
  transform: translateX(2px);
}

.footer-contact p {
  margin: 4px 0;
  color: #d7e1d9;
}

.footer-contact i {
  color: #9fe3a3;
  margin-right: 8px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #1f2621;
  background: #c9f0cf;
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.35), inset 0 0 0 1px rgba(46, 125, 50, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.social-btn:hover {
  transform: translateY(-2px);
  background: #9fe3a3;
  color: #0d2612;
}

.social-btn.tw {
  background: #d8f6db;
}

.social-btn.ig {
  background: #e6fae8;
}

.footer-copy {
  margin-top: 14px;
  text-align: center;
  color: #a9b7ad;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}

/* Simple footer variant */
.site-footer.simple {
  background: #1f2621;
  color: #e9f1ea;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  overflow: hidden;
}

.footer-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 auto;
  min-width: 280px;
  margin: 0;
}

.footer-contact p {
  display: inline-flex;
  align-items: center;
  margin: 0;
  gap: 8px;
  white-space: nowrap;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

/* =====================================================
   INTERNAL PAGES (ABOUT, CONTACT, PRODUCTS)
   ===================================================== */
.page-hero {
  padding: 76px 0 10px 0;
  background: 
    linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, transparent 50%),
    linear-gradient(225deg, rgba(46, 125, 50, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at top left, rgba(76, 175, 80, 0.12), transparent 50%),
    radial-gradient(ellipse at top right, rgba(46, 125, 50, 0.12), transparent 50%),
    linear-gradient(to bottom, #f9fbf9, #ffffff);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.06), transparent 60%);
  border-radius: 50%;
  animation: heroGlow 8s ease-in-out infinite;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.15), transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, 30px) scale(1.1); }
  66% { transform: translate(-30px, 50px) scale(0.9); }
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.18));
  pointer-events: none;
  z-index: 1;
}

.page-hero h1 {
  margin: 0 0 0.4rem;
  color: var(--secondary-color);
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
}

.page-hero p {
  margin: 0;
  color: var(--secondary-color);
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

/* About page */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
  align-items: center;
}

.about-media img {
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}

.check-list li {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #445347;
}

.check-list i {
  color: var(--primary-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 16px;
}

.stat-card {
  background: #fff;
  border: 1px solid rgba(76, 175, 80, 0.14);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 12px 24px rgba(76, 175, 80, 0.22);
}

.stat-value {
  display: block;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--secondary-color);
}

.stat-label {
  color: #6b7280;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.product-tile {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(76, 175, 80, 0.12);
  box-shadow: 0 12px 24px rgba(46, 125, 50, 0.18);
  display: grid;
  gap: 8px;
  align-content: start;
}

.product-tile img {
  border-radius: 10px;
  height: 160px;
  object-fit: cover;
  width: 100%;
}

.product-tile h3 {
  margin: 4px 0;
  color: var(--secondary-color);
  font-size: 1.05rem;
}

.product-tile p {
  margin: 0 0 6px;
  color: #6b7280;
}

.btn.btn-sm {
  padding: 8px 12px;
  font-size: 0.9rem;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: start;
}

.contact-form {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(76, 175, 80, 0.12);
  box-shadow: 0 12px 24px rgba(46, 125, 50, 0.18);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7e6da;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  outline: none;
  background: #f9fbfa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
  background: #fff;
}

.contact-info {
  display: grid;
  gap: 10px;
}

.info-line {
  background: #fff;
  border: 1px solid rgba(76, 175, 80, 0.12);
  border-radius: 10px;
  padding: 10px 12px;
}

.info-line i {
  color: var(--primary-color);
  margin-right: 8px;
}

.map-shell {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(76, 175, 80, 0.12);
}

.map-placeholder {
  height: 200px;
  display: grid;
  place-items: center;
  color: #6b7280;
  background: #f3f7f4;
}

/* =====================================================
   ABOUT PAGE STYLES
   ===================================================== */

/* Mission Section */
.mission-section {
  padding: 20px 0;
}

.mission-card {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  border-radius: 20px;
  padding: 30px 40px;
  text-align: center;
  box-shadow: 0 20px 40px var(--shadow-green-3), 0 8px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  animation: missionFloat 6s ease-in-out infinite;
}

@keyframes missionFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.mission-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 60%);
  border-radius: 50%;
  animation: missionGlow 10s linear infinite;
}

@keyframes missionGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.mission-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.mission-card h2 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  margin-bottom: 12px;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
}

.mission-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.95;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Core Pillars */
.pillars-section {
  padding: 20px 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.pillar-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 12px 28px var(--shadow-green-1), 0 3px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(76, 175, 80, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--header-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px var(--shadow-green-3), 0 8px 16px rgba(0, 0, 0, 0.08);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(46, 125, 50, 0.15));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.pillar-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.pillar-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Values Section */
.values-section {
  background: linear-gradient(to bottom, #f9fbfa, #ffffff);
  padding: 20px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.value-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 24px var(--shadow-green-2), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(76, 175, 80, 0.12);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px var(--shadow-green-3), 0 6px 12px rgba(0, 0, 0, 0.08);
}

.value-number {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--header-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--header-gradient);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 16px;
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.value-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Services Section */
.services-section {
  padding: 20px 0;
}

.services-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 12px 28px var(--shadow-green-1), 0 3px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(76, 175, 80, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px var(--shadow-green-3), 0 8px 16px rgba(0, 0, 0, 0.08);
}

.service-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(76, 175, 80, 0.15);
}

.service-icon-large {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  background: var(--header-gradient);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.3);
}

.service-card h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--secondary-color);
}

.service-grid {
  display: grid;
  gap: 16px;
}

.service-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.03), rgba(46, 125, 50, 0.02));
  border-radius: 12px;
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.service-item:hover {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(46, 125, 50, 0.05));
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.1);
}

.service-item > i {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.service-item strong {
  display: block;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Why Us Section */
.why-us-section {
  padding: 20px 0;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(46, 125, 50, 0.05));
}

.why-us-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px var(--shadow-green-3), 0 8px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.14);
}

.why-us-content h2 {
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.why-us-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 30px;
}

.why-us-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.why-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(46, 125, 50, 0.08));
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.why-feature i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.why-feature span {
  font-weight: 600;
  color: var(--secondary-color);
}

.why-us-cta {
  text-align: center;
  padding-top: 20px;
  border-top: 2px solid rgba(76, 175, 80, 0.1);
}

/* =====================================================
   PRODUCTS PAGE STYLES
   ===================================================== */

/* Product Hero Section */
.product-hero-section {
  padding: 30px 0;
  background: linear-gradient(to bottom, #ffffff, #f9fbf9);
}

.product-hero-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}

.product-hero-text {
  max-width: 600px;
}

.product-hero-image {
  justify-self: end;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(46, 125, 50, 0.4), 0 10px 20px rgba(76, 175, 80, 0.3);
  position: relative;
  display: inline-block;
  width: fit-content;
}

.product-hero-text h1 {
  font-size: 1.6rem;
  color: var(--secondary-color);
  margin-bottom: 16px;
  line-height: 1.2;
}

.product-tagline {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.highlight-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--header-gradient);
  color: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.highlight-badge i {
  font-size: 1.2rem;
}

.product-hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(46, 125, 50, 0.4), 0 10px 20px rgba(76, 175, 80, 0.3);
  position: relative;
  display: inline-block;
  width: fit-content;
}

.product-hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), transparent);
  z-index: 1;
}

.product-hero-image img {
  width: auto;
  max-width: 100%;
  height: 280px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Moringa Info Section */
.moringa-info-section {
  padding: 30px 0;
}

.moringa-info-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.moringa-info-content h2 {
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.moringa-info-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.nutrition-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(46, 125, 50, 0.05));
  border-radius: 12px;
  border: 2px solid rgba(76, 175, 80, 0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--header-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.moringa-info-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(46, 125, 50, 0.4), 0 10px 20px rgba(76, 175, 80, 0.3);
  display: inline-block;
  width: fit-content;
}

.moringa-info-image img {
  width: auto;
  max-width: 100%;
  height: 280px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Benefits Section */
.benefits-section {
  padding: 30px 0;
  background: linear-gradient(to bottom, #f9fbf9, #ffffff);
}

.benefits-section h2 {
  text-align: center;
  margin-bottom: 12px;
}

.section-intro {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.benefit-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.25);
  border: 1px solid rgba(76, 175, 80, 0.12);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(46, 125, 50, 0.35);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--header-gradient);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.3);
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--secondary-color);
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* Specifications Section */
.specs-section {
  padding: 30px 0;
}

.specs-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.spec-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
  transition: all 0.3s ease;
}

.spec-card:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 16px rgba(46, 125, 50, 0.3);
}

.spec-card > i {
  font-size: 2rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.spec-details h4 {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-details p {
  font-size: 1rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin: 0;
}

/* Quality Section */
.quality-section {
  padding: 25px 0;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(46, 125, 50, 0.08));
}

.quality-banner {
  background: #fff;
  border-radius: 20px;
  padding: 35px 40px;
  box-shadow: 0 20px 40px rgba(46, 125, 50, 0.3);
  text-align: center;
}

.quality-content h2 {
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.quality-content > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 24px;
}

.quality-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.quality-point {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(46, 125, 50, 0.1));
  padding: 12px 24px;
  border-radius: 30px;
  border: 2px solid rgba(76, 175, 80, 0.2);
}

.quality-point i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.quality-point span {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 0.95rem;
}

/* Product CTA Section */
.product-cta-section {
  padding: 25px 0;
}

.product-cta-card {
  background: var(--header-gradient);
  color: #fff;
  border-radius: 20px;
  padding: 35px 40px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(46, 125, 50, 0.5), 0 10px 20px rgba(76, 175, 80, 0.3);
}

.product-cta-card h2 {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.product-cta-card > p {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 24px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: #fff;
  color: var(--primary-color);
}

.btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* =====================================================
   CONTACT PAGE STYLES
   ===================================================== */

/* Contact Info Section */
.contact-info-section {
  padding: 25px 0;
  background: linear-gradient(to bottom, #ffffff, #f9fbf9);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.contact-info-card {
  background: #fff;
  padding: 24px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.12);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(46, 125, 50, 0.25);
}

.contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: var(--header-gradient);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.3);
}

.contact-info-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--secondary-color);
}

.contact-info-card p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.contact-info-card a,
.contact-info-card span {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--secondary-color);
}

/* Contact Form Section */
.contact-form-section {
  padding: 30px 0;
  background: transparent;
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

.form-intro h2 {
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.form-intro p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 1rem;
}

.form-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(46, 125, 50, 0.08));
  border-radius: 30px;
  border: 2px solid rgba(76, 175, 80, 0.15);
}

.form-feature i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.form-feature span {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 0.95rem;
}

.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.08);
  border: none;
}

.contact-form {
  position: relative;
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.form-success.show {
  display: block;
}

.form-success i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--muted);
  font-size: 1.05rem;
}

.form-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-fields.hide {
  display: none;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group label i {
  color: var(--primary-color);
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid rgba(76, 175, 80, 0.2);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--dark);
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0b8b5;
  opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #ef4444;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.error-message {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 6px;
  display: none;
}

.error-message.show {
  display: block;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--header-gradient);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(76, 175, 80, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(76, 175, 50, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Why Contact Section */
.why-contact-section {
  padding: 30px 0;
  background: linear-gradient(to bottom, #f9fbf9, #ffffff);
}

.why-contact-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.5rem;
}

.why-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.why-contact-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.12);
  border: 1px solid rgba(76, 175, 80, 0.12);
  transition: all 0.3s ease;
}

.why-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(46, 125, 50, 0.2);
}

.why-contact-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(46, 125, 50, 0.1));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: var(--primary-color);
  border: 2px solid rgba(76, 175, 80, 0.2);
}

.why-contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--secondary-color);
}

.why-contact-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* =====================================================
   RESPONSIVE MEDIA QUERIES
   ===================================================== */

/* Tablet breakpoint */
@media (max-width: 1024px) {
  .slideshow {
    height: 300px;
  }
}

@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  /* About page responsive */
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .services-tabs {
    grid-template-columns: 1fr;
  }

  /* Products page responsive */
  .product-hero-content,
  .moringa-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nutrition-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
  :root {
    --page-gutter: 10px;
    --header-height: 60px;
  }

  /* Mobile header adjustments */
  .site-header {
    height: 60px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .logo {
    width: 45px;
    height: 45px;
  }

  /* Mobile navigation */
  .nav-toggle {
    display: block;
  }

  /* Mobile menu overlay backdrop */
  .main-nav::before {
    content: '';
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    transition: background 0.3s ease;
    z-index: -1;
  }

  .main-nav.open::before {
    background: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
  }

  .main-nav {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 60px);
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .main-nav.open {
    right: 0;
  }

  .nav-link {
    border-radius: 0;
    padding: 16px 24px;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: normal;
    justify-content: flex-start;
  }

  .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: none;
  }

  .nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    border-left: 4px solid #FFEB3B;
  }

  /* Slideshow adjustments */
  .slideshow {
    height: 240px;
    margin-top: 60px;
  }

  .slide-content {
    bottom: 10%;
    padding: 15px;
  }

  .slide-content h2 {
    font-size: 1.2rem;
  }

  .slide-content p {
    font-size: 0.85rem;
  }

  /* About page mobile */
  .page-hero {
    padding: 66px 0 8px 0;
  }

  .page-hero p {
    font-size: 0.95rem;
  }

  .mission-card {
    padding: 24px 20px;
  }

  .mission-card h2 {
    font-size: 1.5rem;
  }

  .mission-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .mission-card .mission-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  /* Products page mobile */
  .product-hero-text h1 {
    font-size: 1.4rem;
  }

  .product-tagline {
    font-size: 1rem;
  }

  .highlight-badge {
    font-size: 0.85rem;
    padding: 10px 16px;
  }

  .product-hero-image img,
  .moringa-info-image img {
    height: 225px;
  }

  .nutrition-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .quality-banner {
    padding: 24px 20px;
  }

  .quality-content h2 {
    font-size: 1.4rem;
  }

  .product-cta-card {
    padding: 24px 20px;
  }

  .product-cta-card h2 {
    font-size: 1.4rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .pillar-card h3,
  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-item {
    padding: 12px;
  }

  .service-item > i {
    font-size: 1.1rem;
    width: 24px;
  }

  .service-item strong {
    font-size: 0.9rem;
  }

  .service-item p {
    font-size: 0.8rem;
  }

  .value-card h4 {
    font-size: 1rem;
  }

  .why-us-features {
    grid-template-columns: 1fr;
  }

  /* Hide page accents on mobile */
  .page-accents {
    display: none;
  }

  /* Section adjustments */
  .section {
    padding: 20px 0;
  }

  main {
    padding: 12px 0 0;
  }

  /* Features grid - single column on mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 16px;
  }

  .icon-wrapper {
    width: 56px;
    height: 56px;
  }

  .feature-card i {
    font-size: 1.4rem;
  }

  /* Product highlight - single column benefits */
  .benefits-list.fancy {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-card.no-image {
    padding: 16px;
  }

  /* CTA card - stack on mobile */
  .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px 16px;
  }

  .cta-actions {
    justify-content: center;
  }

  .cta-copy h2 {
    font-size: 1.2rem;
  }

  /* Typography adjustments */
  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1rem;
  }

  /* Footer adjustments */
  .footer-simple {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 10px;
    min-width: auto;
  }

  .social-links {
    margin-left: 0;
    justify-content: center;
  }

  /* Stats grid - 2 columns on mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Product grid - single column */
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* Small mobile breakpoint */
@media (max-width: 520px) {
  .footer-simple {
    gap: 12px;
  }

  .footer-contact {
    gap: 10px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .slideshow {
    height: 200px;
  }

  .slide-content h2 {
    font-size: 1rem;
  }

  .slide-content p {
    font-size: 0.75rem;
  }

  /* About page small mobile */
  .page-hero {
    padding: 62px 0 6px 0;
  }

  .page-hero p {
    font-size: 0.9rem;
  }

  .mission-card {
    padding: 20px 16px;
  }

  .mission-card h2 {
    font-size: 1.3rem;
  }

  .mission-card p {
    font-size: 0.9rem;
  }

  .pillar-card,
  .value-card,
  .service-card {
    padding: 20px 16px;
  }

  .service-item {
    padding: 10px;
    gap: 10px;
  }

  .service-item > i {
    font-size: 1rem;
    width: 20px;
  }

  .service-item strong {
    font-size: 0.85rem;
  }

  .service-item p {
    font-size: 0.75rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  /* Stack CTA content more compactly */
  .cta-card {
    padding: 16px 12px;
  }

  .cta-copy h2 {
    font-size: 1.1rem;
  }

  .cta-copy p {
    font-size: 0.9rem;
  }

  /* Stats grid - full width on very small screens */
  .stats-grid {
    grid-template-columns: 1fr;
  }

  /* Products page small mobile */
  .product-hero-text h1 {
    font-size: 1.3rem;
  }

  .product-hero-image img,
  .moringa-info-image img {
    height: 200px;
  }

  .nutrition-stats {
    grid-template-columns: 1fr;
  }

  .spec-card {
    padding: 16px;
  }

  .quality-banner {
    padding: 20px 16px;
  }

  .quality-points {
    flex-direction: column;
    align-items: stretch;
  }

  .quality-point {
    justify-content: center;
  }

  .product-cta-card {
    padding: 20px 16px;
  }

  /* Contact page tablet */
  .contact-info-grid {
    gap: 20px;
  }

  .contact-info-card {
    padding: 24px 18px;
  }

  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-form-card {
    padding: 30px;
  }

  .form-fields {
    grid-template-columns: 1fr;
  }

  .why-contact-grid {
    gap: 20px;
  }

  .why-contact-card {
    padding: 24px 18px;
  }
}

/* Extra small devices */
@media (max-width: 380px) {
  .main-nav {
    width: 100%;
    right: -100%;
  }

  .main-nav.open {
    right: 0;
  }

  .container {
    padding-inline: 8px;
  }

  .feature-card {
    padding: 12px;
  }
}
  /* Contact page mobile */
  .contact-info-card {
    padding: 20px 16px;
  }

  .contact-icon,
  .why-contact-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .contact-form-card {
    padding: 24px 16px;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .btn-submit {
    width: 100%;
    justify-content: center;
    padding: 14px 30px;
  }

  .form-actions {
    justify-content: stretch;
  }

  .why-contact-card {
    padding: 20px 16px;
  }
}
