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

:root {
  /* Dark Mode Color Palette */
  --primary-green: #4a7c59;
  --light-green: #7fb069;
  --accent-green: #a7c957;
  --soft-green: #c5d86d;
  --warm-brown: #8b4513;
  --light-brown: #d2b48c;

  /* Dark Theme Colors */
  --bg-primary: #0f1419;
  --bg-secondary: #1a1f2e;
  --bg-tertiary: #252b3a;
  --bg-card: #2a3441;
  --bg-hover: #3a4553;

  /* Text Colors */
  --text-primary: #e8eaed;
  --text-secondary: #b8bcc8;
  --text-muted: #8a8f98;
  --text-accent: #a7c957;

  /* Border and Shadow */
  --border-color: #3a4553;
  --shadow-light: rgba(0, 0, 0, 0.3);
  --shadow-medium: rgba(0, 0, 0, 0.5);
  --shadow-heavy: rgba(0, 0, 0, 0.7);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1a1f2e, #252b3a);
  --gradient-accent: linear-gradient(135deg, #4a7c59, #7fb069);
  --gradient-hero: linear-gradient(rgba(15, 20, 25, 0.8), rgba(26, 31, 46, 0.8));
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 20, 25, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.header.scrolled {
  background: rgba(15, 20, 25, 0.98);
  box-shadow: 0 2px 20px var(--shadow-medium);
  border-bottom: 1px solid var(--accent-green);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 0 10px rgba(167, 201, 87, 0.3);
}

.logo i {
  color: var(--soft-green);
  filter: drop-shadow(0 0 5px rgba(197, 216, 109, 0.5));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  font-size: 19px;
}
.buton {
   background: var(--gradient-accent);
   color: white !important;
 box-shadow: 0 4px 15px rgba(199, 233, 120, 0.3);
  border-radius: 5px;
  padding: 10px 15px !important;
  font-size: 19px !important;
}

.buton:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(167, 201, 87, 0.4);
  color: var(--accent-green) !important;
 
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent-green);
  text-shadow: 0 0 8px rgba(167, 201, 87, 0.4);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-green), var(--soft-green));
  transition: width 0.3s ease;
  box-shadow: 0 0 5px rgba(167, 201, 87, 0.5);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--accent-green);
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: var(--gradient-hero), url("FOTO\ MALI.jpg") center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(167, 201, 87, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(74, 124, 89, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--text-primary), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: var(--text-secondary);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Page Header */
.page-header {
  background: var(--gradient-accent);
  color: var(--text-primary);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-header-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-header-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

/* Buttons */
.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 15px rgba(167, 201, 87, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(167, 201, 87, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-green);
  box-shadow: 0 0 10px rgba(167, 201, 87, 0.2);
}

.btn-secondary:hover {
  background: var(--accent-green);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(167, 201, 87, 0.4);
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
}

.btn-link {
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: var(--soft-green);
  text-shadow: 0 0 8px rgba(197, 216, 109, 0.5);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(167, 201, 87, 0.3);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Products */
.products-preview {
  background: var(--bg-secondary);
  position: relative;
}

.products-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(167, 201, 87, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(74, 124, 89, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.product-card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow-light);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid var(--border-color);
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(167, 201, 87, 0.05), rgba(74, 124, 89, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-medium);
  border-color: var(--accent-green);
}

.product-card:hover::before {
  opacity: 1;
}

.product-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.product-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(167, 201, 87, 0.1), rgba(74, 124, 89, 0.1));
}

.product-content {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.product-content h3 {
  font-size: 1.3rem;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 5px rgba(167, 201, 87, 0.3);
}

.product-content p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(42, 52, 65, 0.9);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
  font-size: 1.2rem;
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

/* Detailed Products */
.products-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-detailed-card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
}

.product-detailed-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(167, 201, 87, 0.03), rgba(74, 124, 89, 0.03));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-detailed-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px var(--shadow-medium);
  border-color: var(--accent-green);
}

.product-detailed-card:hover::before {
  opacity: 1;
}

.product-image-detailed {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.product-badge {
  background: rgba(167, 201, 87, 0.9);
  color: var(--bg-primary);
  box-shadow: 0 4px 15px rgba(167, 201, 87, 0.3);
}

.product-badge.popular {
  background: rgba(255, 107, 107, 0.9);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.product-badge.seasonal {
  background: rgba(255, 167, 38, 0.9);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 167, 38, 0.3);
}

.product-badge.premium {
  background: rgba(156, 39, 176, 0.9);
  color: white;
  box-shadow: 0 4px 15px rgba(156, 39, 176, 0.3);
}

.product-badge.bestseller {
  background: rgba(33, 150, 243, 0.9);
  color: white;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.product-info {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.product-info h3 {
  font-size: 1.5rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
  text-shadow: 0 0 5px rgba(167, 201, 87, 0.3);
}

.product-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.product-features span {
  background: var(--bg-tertiary);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.product-features i {
  color: var(--accent-green);
  margin-right: 0.3rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 1rem;
  text-shadow: 0 0 8px rgba(167, 201, 87, 0.3);
}

/* Category Filters */
.category-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--accent-green);
  background: transparent;
  color: var(--accent-green);
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  transition: left 0.3s ease;
  z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
  left: 0;
}

.filter-btn:hover,
.filter-btn.active {
  color: white;
  box-shadow: 0 4px 15px rgba(167, 201, 87, 0.3);
}

/* About Section */
.about-preview,
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2,
.about-text h3 {
  font-size: 1.8rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
  text-shadow: 0 0 8px rgba(167, 201, 87, 0.3);
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.about-text .lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
}

.about-features {
  list-style: none;
  margin-top: 2rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  padding: 0.5rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.about-features li:hover {
  background: var(--bg-tertiary);
}

.about-features i {
  color: var(--accent-green);
  font-size: 1.2rem;
  filter: drop-shadow(0 0 5px rgba(167, 201, 87, 0.5));
}

.about-image {
  height: 400px;
  background: url("/placeholder.svg?height=400&width=600") center / cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px var(--shadow-light);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(167, 201, 87, 0.1), rgba(74, 124, 89, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-image:hover::before {
  opacity: 1;
}

/* Story and Mission */
.story-content,
.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-points {
  margin-top: 2rem;
}

.mission-point {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--bg-tertiary);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.mission-point:hover {
  background: var(--bg-hover);
  border-color: var(--accent-green);
  box-shadow: 0 5px 15px var(--shadow-light);
}

.mission-point i {
  color: var(--accent-green);
  font-size: 1.5rem;
  margin-top: 0.2rem;
  filter: drop-shadow(0 0 5px rgba(167, 201, 87, 0.5));
}

.mission-point h4 {
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}

.mission-point p {
  color: var(--text-secondary);
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(167, 201, 87, 0.05), rgba(74, 124, 89, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-green);
  box-shadow: 0 15px 35px var(--shadow-medium);
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 2px solid var(--border-color);
  position: relative;
  z-index: 2;
}

.value-icon i {
  font-size: 2rem;
  color: var(--accent-green);
  filter: drop-shadow(0 0 8px rgba(167, 201, 87, 0.5));
}

.value-card h3 {
  color: var(--accent-green);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.value-card p {
  color: var(--text-secondary);
  position: relative;
  z-index: 2;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.team-member:hover {
  transform: translateY(-5px);
  border-color: var(--accent-green);
  box-shadow: 0 15px 35px var(--shadow-medium);
}

.member-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.member-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(167, 201, 87, 0.1), rgba(74, 124, 89, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-member:hover .member-image::after {
  opacity: 1;
}

.member-info {
  padding: 1.5rem;
  text-align: center;
}

.member-info h3 {
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--soft-green);
  font-weight: 500;
  margin-bottom: 1rem;
}

.member-info p {
  color: var(--text-secondary);
}

/* Statistics */
.stats-section {
  background: var(--bg-secondary);
  position: relative;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(167, 201, 87, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 25px var(--shadow-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(167, 201, 87, 0.05), rgba(74, 124, 89, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-green);
  box-shadow: 0 15px 35px var(--shadow-medium);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-green);
  display: block;
  text-shadow: 0 0 10px rgba(167, 201, 87, 0.3);
  position: relative;
  z-index: 2;
}

.stat-label {
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 0.5rem;
  position: relative;
  z-index: 2;
}

/* Contact */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-form-container {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow-light);
  border: 1px solid var(--border-color);
}

.contact-form h2 {
  color: var(--accent-green);
  margin-bottom: 2rem;
  text-shadow: 0 0 8px rgba(167, 201, 87, 0.3);
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-family: inherit;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 10px rgba(167, 201, 87, 0.3);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--text-secondary);
}

.contact-info-container {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.contact-info-container h2 {
  color: var(--accent-green);
  margin-bottom: 2rem;
  text-shadow: 0 0 8px rgba(167, 201, 87, 0.3);
}

.contact-info-grid {
  display: grid;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--bg-tertiary);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: var(--bg-hover);
  border-color: var(--accent-green);
  box-shadow: 0 5px 15px var(--shadow-light);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(167, 201, 87, 0.3);
}

.contact-details h3 {
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.contact-details small {
  color: var(--text-muted);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #25d366;
  text-decoration: none;
  font-weight: 500;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.whatsapp-link:hover {
  text-shadow: 0 0 8px rgba(37, 211, 102, 0.5);
}

.social-media-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.social-media-section h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.social-links-large {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.social-link:hover::before {
  left: 100%;
}

.social-link.facebook {
  background: #1877f2;
  color: white;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  box-shadow: 0 4px 15px rgba(240, 148, 51, 0.3);
}


.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Map */
.map-container {
  height: 400px;
  background: var(--bg-card);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: 0 8px 25px var(--shadow-light);
}







/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 20px var(--shadow-light);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-green);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-tertiary);
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-color);
}

.faq-question:hover {
  background: var(--bg-hover);
}

.faq-question h3 {
  color: var(--text-primary);
  font-size: 1.1rem;
}

.faq-question i {
  color: var(--accent-green);
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(167, 201, 87, 0.5));
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--bg-card);
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
}

/* CTA Section */
.cta-section {
  background: var(--gradient-accent);
  color: var(--text-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--bg-primary);
  color: var(--text-primary);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-color);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(167, 201, 87, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(74, 124, 89, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--accent-green);
  text-shadow: 0 0 8px rgba(167, 201, 87, 0.3);
}

.footer-section p,
.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-green);
  text-shadow: 0 0 5px rgba(167, 201, 87, 0.5);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-tertiary);
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.social-links a:hover {
  background: var(--accent-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(167, 201, 87, 0.3);
  border-color: var(--accent-green);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-green);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--soft-green);
}

/* Selection Styling */
::selection {
  background: var(--accent-green);
  color: var(--bg-primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow-medium);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .page-header-content h1 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .products-grid,
  .products-detailed-grid {
    grid-template-columns: 1fr;
  }

  .about-content,
  .story-content,
  .mission-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    order: -1;
    height: 300px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .category-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1rem;
  }

  .filter-btn {
    white-space: nowrap;
  }

  .social-links-large {
    flex-direction: column;
  }

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

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

@media (max-width: 480px) {
  .nav-container {
    padding: 0 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 3rem 0;
  }

  .page-header {
    padding: 6rem 0 3rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

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

  .contact-info-grid {
    gap: 1.5rem;
  }

  .contact-info-item {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    font-size: 1.5rem;
  }

  .product-content,
  .product-info {
    padding: 1rem;
  }
}

/* Dark mode specific enhancements */
@media (prefers-reduced-motion: no-preference) {
  .product-card,
  .value-card,
  .team-member,
  .stat-item {
    animation: glow 3s ease-in-out infinite alternate;
  }
}

@keyframes glow {
  from {
    box-shadow: 0 8px 25px var(--shadow-light);
  }
  to {
    box-shadow: 0 8px 25px var(--shadow-light), 0 0 20px rgba(167, 201, 87, 0.1);
  }
}

/* Focus states for accessibility */
.btn:focus,
.filter-btn:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent-green);
  outline-offset: 2px;
}

/* Loading states */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Enhanced hover effects for dark mode */
.product-card:hover,
.value-card:hover,
.team-member:hover,
.stat-item:hover {
  box-shadow: 0 20px 40px var(--shadow-medium), 0 0 30px rgba(167, 201, 87, 0.1);
}
