/* ==========================================
   1. VARIABLES & BASE RESETS
   ========================================== */
:root {
  --color-primary-50: #f0fdf4;
  --color-primary-100: #dcfce7;
  --color-primary-200: #bbf7d0;
  --color-primary-600: #16a34a;
  --color-primary-700: #15803d;
  --color-primary-800: #166534;
  --color-primary-900: #14532d;
  --color-primary-950: #052e16;
  
  --color-accent-400: #34d399;
  --color-accent-500: #10b981;
  --color-accent-600: #059669;
  
  --color-yellow-400: #facc15;
  --color-yellow-500: #eab308;
  --color-yellow-600: #ca8a04;
  
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;

  --font-sans: 'Outfit', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: #f7faf8;
  color: var(--color-gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #2d6a4f;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #1b4332;
}

/* ==========================================
   2. REUSABLE UTILITIES & LAYOUTS
   ========================================== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.py-20 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.hidden {
  display: none !important;
}

/* Grids and Flex */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bg-grid-pattern {
  background-color: #f7faf8;
  background-image: radial-gradient(rgba(16, 185, 129, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Header line under section headers */
.header-line {
  height: 4px;
  width: 50px;
  background-color: var(--color-primary-600);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* Section Header styling */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary-950);
  margin-top: 10px;
}

.section-header p {
  color: var(--color-gray-500);
  margin-top: 10px;
  font-size: 0.95rem;
}

/* Badge capsule style */
.badge-capsule {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary-800);
  background-color: var(--color-primary-50);
  border: 1px solid var(--color-primary-100);
  padding: 6px 16px;
  border-radius: 50px;
}

/* Quote Box design */
.about-quote-box {
  background: linear-gradient(135deg, var(--color-primary-900) 0%, var(--color-primary-950) 100%);
  color: white;
  padding: 40px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(5, 46, 22, 0.15);
}

.quote-mark {
  font-size: 5rem;
  color: var(--color-yellow-400);
  opacity: 0.3;
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: serif;
}

.quote-text {
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Premium Card wrapper */
.card-premium {
  background: white;
  border: 1px solid rgba(229, 231, 235, 0.7);
  border-radius: 28px;
  box-shadow: 0 10px 25px -10px rgba(5, 46, 22, 0.03), 0 1px 3px 0 rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
}

.card-premium:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 30px 60px -15px rgba(5, 46, 22, 0.07);
}

/* ==========================================
   3. ANIMATIONS
   ========================================== */
@keyframes kenburns {
  0% { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.12) translate(-0.5%, -0.5%); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50% { box-shadow: 0 0 20px 4px rgba(16, 185, 129, 0.25); }
}

.btn-pulse-glow {
  animation: pulseGlow 2.5s infinite;
}

/* ==========================================
   4. NAVIGATION BAR (NAVBAR)
   ========================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(5, 46, 22, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(5, 46, 22, 0.1);
  box-shadow: 0 4px 10px rgba(5, 46, 22, 0.08);
}

.logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-primary-950);
  letter-spacing: -0.02em;
}

.brand-subtitle {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--color-primary-600);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 1px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-btn {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-gray-600);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s;
}

.nav-btn:hover {
  color: var(--color-primary-700);
}

.nav-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-primary-600);
  border-radius: 50px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-btn.active {
  color: var(--color-primary-700);
  font-weight: 700;
}

.nav-btn.active::after {
  transform: scaleX(1);
}

.mobile-menu-toggle {
  display: block;
  color: var(--color-primary-950);
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s;
}

.mobile-menu-toggle:hover {
  background-color: var(--color-primary-50);
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  background: white;
  border-bottom: 1px solid var(--color-gray-200);
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.3s ease-out;
  pointer-events: none;
}

.mobile-drawer.open {
  opacity: 1;
  transform: scaleY(1);
  pointer-events: auto;
}

.mobile-nav-btn {
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gray-600);
  transition: all 0.2s;
}

.mobile-nav-btn:hover {
  background-color: var(--color-gray-50);
  color: var(--color-primary-700);
}

.mobile-nav-btn.active {
  background-color: var(--color-primary-50);
  color: var(--color-primary-800);
  font-weight: 700;
}

.mobile-cta-wrap {
  border-top: 1px solid var(--color-gray-100);
  padding-top: 16px;
}

.mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background-color: var(--color-primary-700);
  color: white;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(21, 128, 61, 0.2);
}

/* ==========================================
   5. DYNAMIC VIEWS & HERO SLIDER
   ========================================== */
.view-section {
  display: none;
  animation: fadeIn 0.5s ease-out forwards;
}

.view-section.active {
  display: block;
}

/* Ken Burns Hero Slider Styling */
.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero-slider {
    height: 600px;
  }
}

.slides-container {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.slide.active .slide-bg {
  animation: kenburns 6s ease-out forwards;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5, 46, 22, 0.85), rgba(13, 70, 38, 0.75));
  z-index: 0;
}

.slide-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 40px auto 0;
  text-align: center;
  color: white;
  padding: 0 24px;
}

.slide.active .slide-content {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(52, 211, 153, 0.2);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a7f3d0;
  backdrop-filter: blur(4px);
  margin-bottom: 24px;
}

.slide-badge i {
  color: var(--color-yellow-400);
  width: 14px;
  height: 14px;
}

.slide-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

@media (min-width: 640px) {
  .slide-title {
    font-size: 3.5rem;
  }
}

.slide-title .highlight {
  color: var(--color-yellow-400);
}

.slide-desc {
  font-size: 1rem;
  color: var(--color-primary-50);
  max-width: 600px;
  margin: 0 auto 32px;
  font-weight: 500;
  opacity: 0.9;
}

@media (min-width: 640px) {
  .slide-desc {
    font-size: 1.1rem;
  }
}

.slide-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

@media (min-width: 640px) {
  .slide-actions {
    flex-direction: row;
  }
}

/* Buttons style */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-primary-600);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.2);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background-color: var(--color-primary-700);
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(22, 163, 74, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 16px;
  backdrop-filter: blur(4px);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s;
}

.dot.active {
  background-color: var(--color-yellow-400);
  width: 32px;
  border-radius: 50px;
}

/* ==========================================
   6. CATEGORIES DISPLAY (HOME)
   ========================================== */
.home-categories {
  padding: 80px 0;
  background: white;
  border-bottom: 1px solid rgba(5, 46, 22, 0.05);
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-card {
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.7);
  border-radius: 28px;
  box-shadow: 0 10px 25px -10px rgba(5, 46, 22, 0.03);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 30px 60px -15px rgba(5, 46, 22, 0.07);
}

.card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-card .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background-color: var(--color-primary-50);
  color: var(--color-primary-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: inset 0 2px 4px rgba(5, 46, 22, 0.02);
  transition: all 0.3s;
}

.category-card:hover .icon-wrap {
  background-color: var(--color-primary-700);
  color: white;
  transform: scale(1.08);
}

.category-card .icon-wrap i {
  width: 30px;
  height: 30px;
}

.category-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary-950);
  margin-bottom: 12px;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--color-gray-500);
  line-height: 1.5;
  font-weight: 500;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary-800);
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.2s;
}

.category-card:hover .card-link {
  color: var(--color-primary-600);
}

.category-card:hover .card-link i {
  transform: translateX(4px);
}

.card-link i {
  transition: transform 0.2s;
}

/* ==========================================
   7. CTA QUICK BANNER
   ========================================== */
.cta-banner-section {
  padding: 80px 0;
  background: white;
}

.cta-card {
  background: linear-gradient(135deg, var(--color-primary-900) 0%, var(--color-primary-950) 50%, var(--color-primary-900) 100%);
  color: white;
  text-align: center;
  padding: 60px 40px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(5, 46, 22, 0.15);
}

.cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.1), transparent 50%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-card p {
  font-size: 1rem;
  color: var(--color-primary-100);
  max-width: 600px;
  margin: 0 auto 32px;
  font-weight: 500;
}

.btn-cta {
  background-color: var(--color-yellow-500);
  color: var(--color-gray-900);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 16px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(234, 179, 8, 0.2);
  transition: var(--transition-smooth);
}

.btn-cta:hover {
  background-color: var(--color-yellow-600);
  transform: translateY(-2px);
}

/* ==========================================
   8. ABOUT PAGE
   ========================================== */
.page-banner {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 46, 22, 0.85);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.banner-content h1 {
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.breadcrumbs {
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.breadcrumbs span {
  cursor: pointer;
  transition: color 0.2s;
}

.breadcrumbs span:hover {
  color: var(--color-accent-400);
}

.breadcrumbs .separator {
  color: var(--color-yellow-500);
  cursor: default;
}

.breadcrumbs .current {
  color: var(--color-primary-100);
  cursor: default;
}

.about-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-950);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.about-details h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary-950);
  margin-bottom: 20px;
}

.about-details p {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  margin-bottom: 15px;
}

.core-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 30px;
}

@media (min-width: 576px) {
  .core-values {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background: white;
  border: 1px solid rgba(229, 231, 235, 0.7);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(5, 46, 22, 0.02);
}

.value-icon {
  background: var(--color-primary-50);
  color: var(--color-primary-800);
  padding: 8px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon i {
  width: 18px;
  height: 18px;
}

.value-card h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-primary-950);
}

.value-card span {
  font-size: 0.75rem;
  color: var(--color-gray-500);
  font-weight: 500;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .vision-mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.vision-mission-card {
  background: white;
  border: 1px solid rgba(229, 231, 235, 0.7);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 10px 25px -10px rgba(5, 46, 22, 0.03);
}

@media (min-width: 576px) {
  .vision-mission-card {
    flex-direction: row;
  }
}

.vm-icon {
  background: var(--color-primary-50);
  color: var(--color-primary-800);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
}

.vm-icon i {
  width: 28px;
  height: 28px;
}

.vision-mission-card h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-primary-950);
  margin-bottom: 8px;
}

.vision-mission-card p {
  font-size: 0.9rem;
  color: var(--color-gray-600);
}

/* Partners section */
.partners-section {
  border-top: 1px solid var(--color-gray-200);
  padding-top: 60px;
}

.partners-header {
  text-align: center;
  margin-bottom: 40px;
}

.partners-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary-950);
  margin-bottom: 10px;
}

.partners-header p {
  color: var(--color-gray-500);
  font-size: 0.9rem;
  font-weight: 500;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 576px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .partners-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.partner-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 10px 4px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.partner-card:hover {
  transform: scale(1.08);
}

.partner-logo-wrap {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-char {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: var(--transition-smooth);
}

.partner-logo-img {
  max-height: 95px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.home-partners-section {
  padding: 80px 0;
  background: white;
  border-bottom: 1px solid rgba(5, 46, 22, 0.05);
}

/* ==========================================
   9. PRODUCTS CATALOG PAGE
   ========================================== */
.products-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-950);
}

.filter-controls-bar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: white;
  border: 1px solid var(--color-gray-200);
  padding: 18px;
  border-radius: 28px;
  margin-bottom: 50px;
  box-shadow: 0 4px 20px rgba(5, 46, 22, 0.02);
}

@media (min-width: 992px) {
  .filter-controls-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background-color: var(--color-gray-50);
  border: 1px solid rgba(229, 231, 235, 0.4);
  padding: 6px;
  border-radius: 18px;
}

.filter-btn {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray-500);
  padding: 10px 20px;
  border-radius: 12px;
  transition: all 0.25s;
}

.filter-btn:hover {
  background-color: var(--color-gray-100);
  color: var(--color-primary-900);
}

.filter-btn.active {
  background-color: var(--color-primary-700);
  color: white;
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.15);
}

.search-box-wrap {
  position: relative;
  width: 100%;
}

@media (min-width: 992px) {
  .search-box-wrap {
    max-width: 320px;
  }
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary-800);
  width: 16px;
  height: 16px;
}

#search-input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1px solid var(--color-gray-200);
  border-radius: 16px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  background-color: rgba(249, 250, 251, 0.5);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.3s;
}

#search-input:focus {
  outline: none;
  background-color: white;
  border-color: var(--color-primary-600);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.08);
}

/* Products Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 576px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: white;
  border: 1px solid rgba(229, 231, 235, 0.7);
  border-radius: 28px;
  box-shadow: 0 10px 25px -10px rgba(5, 46, 22, 0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.2);
  box-shadow: 0 30px 60px -15px rgba(5, 46, 22, 0.07);
}

.product-img-wrap {
  position: relative;
  height: 220px;
  background-color: var(--color-gray-50);
  border-bottom: 1px solid rgba(229, 231, 235, 0.4);
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-img-wrap img.zoom-block {
  object-position: right center !important;
}

.product-img-wrap img.zoom-brick {
  object-position: left center !important;
  transform: scale(1.4) !important;
}

.product-img-wrap img.crop-sprouts {
  object-position: left center !important;
  transform: scale(1.6) !important;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.04);
}

.product-card:hover .product-img-wrap img.zoom-brick {
  transform: scale(1.45) !important;
}

.product-card:hover .product-img-wrap img.crop-sprouts {
  transform: scale(1.65) !important;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid;
}

.badge-seeds {
  background-color: var(--color-primary-50);
  color: var(--color-primary-800);
  border-color: var(--color-primary-100);
}

.badge-fertilizers {
  background-color: #eff6ff;
  color: #1e40af;
  border-color: #dbeafe;
}

.badge-pesticides {
  background-color: #fffbeb;
  color: #92400e;
  border-color: #fef3c7;
}

.product-details {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-company {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary-700);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-gray-900);
  line-height: 1.4;
  margin-bottom: 12px;
  min-height: 50px;
}

/* Empty state design */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  background-color: rgba(249, 250, 251, 0.5);
  border: 2px dashed var(--color-gray-200);
  border-radius: 28px;
  max-width: 500px;
  margin: 0 auto;
}

.empty-title {
  font-weight: 800;
  color: var(--color-gray-500);
  margin-bottom: 6px;
}

.empty-desc {
  font-size: 0.8rem;
  color: var(--color-gray-400);
}

/* ==========================================
   10. CONTACT & INQUIRY FORM
   ========================================== */
.contact-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-950);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
  }
}

.contact-cards-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-cards-col .contact-card {
  background: white;
  border: 1px solid rgba(229, 231, 235, 0.7);
  border-radius: 28px;
  padding: 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition-smooth);
}

.contact-cards-col .contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.2);
}

.contact-icon {
  background-color: var(--color-primary-50);
  color: var(--color-primary-800);
  padding: 14px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 4px rgba(5, 46, 22, 0.02);
  transition: all 0.3s;
}

.contact-card:hover .contact-icon {
  background-color: var(--color-primary-700);
  color: white;
}

.contact-icon i {
  width: 24px;
  height: 24px;
}

.contact-card-info h4 {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-950);
  margin-bottom: 6px;
}

.contact-card-info p {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  font-weight: 600;
  line-height: 1.5;
}

.contact-card-info a {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary-800);
  margin-bottom: 4px;
}

.contact-card-info a:hover {
  text-decoration: underline;
  color: var(--color-primary-950);
}

.contact-card-info .hours {
  color: var(--color-gray-600);
  font-weight: 700;
}

.contact-card-info .days {
  font-size: 0.75rem;
  color: var(--color-gray-400);
  font-weight: 600;
}

/* Form block */
.contact-form-card {
  background: white;
  border: 1px solid var(--color-gray-200);
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0 4px 20px rgba(5, 46, 22, 0.01);
}

.contact-form-card h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-primary-950);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.heading-icon {
  color: var(--color-primary-700);
}

.form-alert {
  background-color: var(--color-primary-50);
  border: 1px solid var(--color-primary-200);
  color: var(--color-primary-800);
  padding: 16px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  animation: fadeInUp 0.4s ease-out;
}

.form-alert i {
  color: var(--color-primary-600);
  width: 18px;
  height: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 576px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray-400);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--color-gray-200);
  border-radius: 16px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gray-800);
  background-color: rgba(249, 250, 251, 0.5);
  transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-gray-400);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background-color: white;
  border-color: var(--color-primary-600);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.08);
}

.btn-submit {
  width: 100%;
  background-color: var(--color-primary-700);
  color: white;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.15);
  transition: var(--transition-smooth);
}

.btn-submit:hover {
  background-color: var(--color-primary-800);
  transform: translateY(-2px);
}

/* ==========================================
   11. FOOTER SECTION
   ========================================== */
.footer {
  background-color: var(--color-primary-950);
  color: white;
  padding-top: 64px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 576px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-color: white;
  border: 1px solid rgba(5, 46, 22, 0.5);
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand span {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(240, 253, 244, 0.75);
  line-height: 1.6;
  font-weight: 500;
}

.footer-links-col h4,
.footer-contact-col h4,
.footer-follow-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-accent-400);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  font-size: 0.9rem;
  color: rgba(240, 253, 244, 0.75);
  font-weight: 600;
  text-align: left;
  transition: color 0.2s;
}

.footer-links-col a:hover {
  color: white;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(240, 253, 244, 0.75);
}

.footer-contact-item i {
  color: var(--color-accent-400);
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  font-weight: 600;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: white;
}

.footer-follow-col p {
  font-size: 0.9rem;
  color: rgba(240, 253, 244, 0.75);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(5, 46, 22, 0.4);
  border: 1px solid rgba(22, 163, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-100);
  transition: var(--transition-smooth);
}

.social-links a:hover {
  background: var(--color-primary-700);
  border-color: var(--color-primary-600);
  color: white;
  transform: translateY(-2px);
}

.social-links a svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(5, 46, 22, 0.3);
  padding: 32px 20px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(240, 253, 244, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================
   12. FLOATING WHATSAPP ACTION BUTTON
   ========================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ==========================================
   12b. FLOATING CALL ACTION BUTTON
   ========================================== */
.floating-call {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #007AFF;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 122, 255, 0.3);
  transition: var(--transition-smooth);
}

.floating-call:hover {
  background-color: #0066cc;
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 122, 255, 0.4);
}

.floating-call i {
  width: 24px;
  height: 24px;
}

/* ==========================================
   13. GOOGLE MAP STYLING
   ========================================== */
.contact-map-wrap {
  margin-top: 64px;
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: 32px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(5, 46, 22, 0.01);
}

.map-container {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--color-gray-100);
  height: 400px;
  width: 100%;
  position: relative;
}

.map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* SEO Address elements reset */
address {
  font-style: normal;
}
.contact-phones-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ==========================================
   14. GALLERY SECTION & LIGHTBOX
   ========================================== */
.gallery-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary-950);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 80px;
}

@media (min-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  box-shadow: 0 10px 25px -10px rgba(5, 46, 22, 0.03);
  border: 1px solid rgba(229, 231, 235, 0.7);
  transition: var(--transition-smooth);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 46, 22, 0.9) 0%, rgba(5, 46, 22, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.gallery-card-info {
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: white;
}

.gallery-card-info span {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-yellow-400);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 6px;
}

.gallery-card-info h3 {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -15px rgba(5, 46, 22, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card:hover .gallery-card-info {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(5, 46, 22, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content-wrap {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes zoomIn {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
  color: white;
  margin-top: 20px;
  text-align: center;
}

.lightbox-caption span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-yellow-400);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 6px;
}

.lightbox-caption h3 {
  font-size: 1.35rem;
  font-weight: 800;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

