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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Cursor Follower */
.cursor-follower {
  position: fixed;
  width: 16px;
  height: 16px;
  background: rgba(34, 197, 94, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.3s ease;
  transform: scale(0);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
  transition: all 0.3s ease;
}

.navbar:hover {
  background: rgba(255, 255, 255, 0.95);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

img.one {
  height: 10%;
  width: 10%;
}

img.two {
  height: 40%;
  width: 40%;
}
img.three {
  height: 55%;
  width: 55%;
}

.nav-logo:hover {
  transform: translateX(4px);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #16a34a, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.nav-logo:hover .logo-icon {
  transform: scale(1.1) rotate(12deg);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.logo-text h1 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #166534;
  transition: color 0.3s ease;
}

.logo-text p {
  font-size: 0.7rem;
  color: #16a34a;
  transition: color 0.3s ease;
}

.nav-logo:hover .logo-text h1 {
  color: #14532d;
}

.nav-logo:hover .logo-text p {
  color: #15803d;
}

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

.nav-link {
  text-decoration: none;
  color: #15803d;
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #16a34a;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #14532d;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #16a34a;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: #ecfdf5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 6%;
}

.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

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

.hero-container {
  text-align: center;
  z-index: 10;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-logo {
  margin-bottom: 2rem;
  cursor: pointer;
  transition: all 0.5s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
}

.hero-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #16a34a, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 3rem;
  box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
  transition: all 0.5s ease;
}

.hero-logo:hover .hero-icon {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 25px 50px rgba(34, 197, 94, 0.4);
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  color: #166534;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #16a34a;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-logo:hover .hero-title {
  color: #14532d;
}

.hero-logo:hover .hero-subtitle {
  color: #15803d;
}

.hero-description {
  font-size: 1.25rem;
  color: #374151;
  margin-bottom: 2rem;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.hero-description:hover {
  color: #1f2937;
}

.highlight {
  color: #15803d;
  font-weight: 600;
  transition: color 0.3s ease;
}

.hero-description:hover .highlight {
  color: #166534;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

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

.btn-primary {
  background: linear-gradient(135deg, #16a34a, #059669);
  color: white;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.btn-primary:hover i {
  transform: translateX(4px);
}

.btn-secondary {
  background: transparent;
  color: #16a34a;
  border: 2px solid #16a34a;
}

.btn-secondary:hover {
  background: rgba(34, 197, 94, 0.1);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 670px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 64px;
  height: 64px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #16a34a;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
  background: rgba(34, 197, 94, 0.2);
  transform: scale(1.2) rotate(12deg);
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #166534;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.stat-item p {
  color: #16a34a;
  transition: color 0.3s ease;
}

.stat-item:hover h3 {
  color: #14532d;
  transform: scale(1.1);
}

.stat-item:hover p {
  color: #15803d;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #16a34a;
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  transform: translateX(-50%) scale(1.1);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Product Gallery */
.product-gallery {
  padding: 5rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.gallery-item {
  cursor: pointer;
  transition: all 0.5s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.gallery-item:hover .gallery-image {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 101, 52, 0.8), transparent);
  color: white;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.9);
}

/* Infographics */
.infographics {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f0fdf4, white);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.comparison-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  cursor: pointer;
}

.comparison-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plastic-card {
  border-left: 4px solid #ef4444;
}

.maize-card {
  border-left: 4px solid #16a34a;
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.plastic-card .card-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.maize-card .card-icon {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.comparison-card:hover .card-icon {
  transform: scale(1.1);
}

.comparison-card h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #1f2937;
}

.comparison-stats {
  space-y: 1rem;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.stat-value.bad {
  color: #ef4444;
  font-weight: bold;
}

.stat-value.good {
  color: #16a34a;
  font-weight: bold;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #f3f4f6;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  height: 100%;
  transition: width 2s ease;
}

.progress-fill.bad {
  background: #ef4444;
}

.progress-fill.good {
  background: #16a34a;
}

/* Impact Statistics */
.impact-stats {
  background: linear-gradient(135deg, #16a34a, #059669);
  border-radius: 2rem;
  padding: 3rem;
  color: white;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.impact-stats h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.impact-item {
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.impact-item:hover {
  transform: translateY(-5px);
}

.impact-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.impact-item:hover .impact-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.impact-item h4 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: inline;
}

.counter-suffix {
  font-size: 2.5rem;
  font-weight: bold;
}

.impact-item p {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.5rem;
}

/* Process Section */
.process-section {
  text-align: center;
}

.process-section h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #166534;
  margin-bottom: 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  align-items: center;
  max-width: 1146px;
  margin: 0 auto;
}

.process-item {
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.process-item:hover {
  transform: translateY(-10px);
}

.process-icon {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #16a34a, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
  transition: all 0.5s ease;
}

.process-item:hover .process-icon {
  transform: scale(1.25) rotate(12deg);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.process-emoji {
  font-size: 2rem;
}

.process-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: #166534;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.process-item:hover .process-number {
  transform: scale(1.1);
}

.process-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #166534;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.process-item p {
  font-size: 0.9rem;
  color: #6b7280;
  transition: color 0.3s ease;
}

.process-item:hover h4 {
  color: #14532d;
}

.process-item:hover p {
  color: #374151;
}

.process-arrow {
  color: #16a34a;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
}

/* About Section */
.about {
  padding: 5rem 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-features {
  space-y: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(8px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #16a34a, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  transition: all 0.5s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.25) rotate(12deg);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.feature-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #166534;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.feature-text p {
  color: #6b7280;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.feature-item:hover .feature-text h3 {
  color: #14532d;
}

.feature-item:hover .feature-text p {
  color: #374151;
}

.about-image {
  position: relative;
  cursor: pointer;
  transition: all 0.5s ease;
}

.about-image:hover {
  transform: scale(1.05) rotate(1deg);
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mission-statement {
  background: linear-gradient(135deg, #16a34a, #059669);
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  color: white;
  cursor: pointer;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.mission-statement:hover {
  transform: scale(1.02);
}

.mission-statement h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.mission-statement p {
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.mission-statement:hover h3 {
  transform: scale(1.05);
}

.mission-statement:hover p {
  color: rgba(255, 255, 255, 0.95);
}

/* Products Section */
.products {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f0fdf4, white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.product-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  cursor: pointer;
  border: 1px solid rgba(34, 197, 94, 0.1);
}

.product-card:hover {
  transform: translateY(-15px) rotate(1deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.product-card:hover .product-icon {
  transform: scale(1.25) rotate(12deg);
}

.product-content {
  padding: 1.5rem;
  text-align: center;
}

.product-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #166534;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.product-card:hover .product-content h3 {
  color: #14532d;
}

.product-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.1);
  color: #166534;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.product-card:hover .product-badge {
  background: rgba(34, 197, 94, 0.2);
}

.product-details {
  margin-bottom: 1rem;
}

.product-details p {
  color: #6b7280;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.product-details span {
  font-weight: 600;
}

.product-price {
  color: #16a34a !important;
  font-weight: 500;
}

.product-card:hover .product-details p {
  color: #374151;
}

.product-features {
  space-y: 0.5rem;
}

.feature-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #6b7280;
  transition: all 0.3s ease;
}

.feature-check i {
  color: #16a34a;
  transition: all 0.3s ease;
}

.product-card:hover .feature-check {
  color: #374151;
}

.product-card:hover .feature-check i {
  transform: scale(1.1);
}

/* Why Choose Section */
.why-choose {
  text-align: center;
  margin-top: 4rem;
}

.why-choose h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #166534;
  margin-bottom: 3rem;
}

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

.benefit-item {
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #16a34a, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
  transition: all 0.5s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.25) rotate(12deg);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.benefit-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #166534;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.benefit-item p {
  font-size: 0.9rem;
  color: #6b7280;
  transition: color 0.3s ease;
}

.benefit-item:hover h4 {
  color: #14532d;
}

.benefit-item:hover p {
  color: #374151;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: linear-gradient(135deg, #166534, #059669);
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  space-y: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(8px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.5s ease;
}

.contact-item:hover .contact-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(12deg);
}

.contact-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.contact-text p {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-text h3 {
  color: rgba(255, 255, 255, 0.95);
}

.contact-item:hover .contact-text p {
  color: white;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.5s ease;
}

.contact-form:hover {
  background: rgba(255, 255, 255, 0.15);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-form:hover h3 {
  color: rgba(255, 255, 255, 0.95);
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.25);
}

.form-group input:hover,
.form-group textarea:hover {
  background: rgba(255, 255, 255, 0.25);
}

.form-group textarea {
  resize: none;
}

/* Footer */
.footer {
  background: #14532d;
  color: white;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.footer .logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-logo:hover .logo-icon {
  transform: scale(1.1) rotate(12deg);
}

.footer .logo-text h3 {
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.footer .logo-text p {
  font-size: 0.7rem;
  color: #22c55e;
  transition: all 0.3s ease;
}

.footer-logo:hover .logo-text h3 {
  color: rgba(255, 255, 255, 0.95);
}

.footer-logo:hover .logo-text p {
  color: #16a34a;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-description:hover {
  color: rgba(255, 255, 255, 0.95);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom p:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .hero-subtitle {
    font-size: 1.2rem;
  }

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

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

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

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

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

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

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

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

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

  .process-arrow {
    display: none;
  }

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

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

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

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

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

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

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

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #16a34a;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #15803d;
}
