/* === Footer Section === */
.footer {
  background: #003b1c;
  color: #9fe4b2;
  padding: 60px 0 30px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.footer-column h3 {
  color: #6ee77b;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #9fe4b2;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

.footer-logo img {
  width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 10px;
}

.footer-logo h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin: 100%;
}

.footer-logo span {
  display: block;
  font-size: 0.85rem;
  color: #9fe4b2;
  margin-top: 2px;
}

.footer-desc {
  margin: 10px 0;
  font-weight: 600;
  color: #9fe4b2;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1b5e20;
  color: white;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.3s ease;
}

.social-icons a.facebook {
  background: #2e7d32;
}
.social-icons a.whatsapp {
  background: #25d366;
}
.social-icons a:hover {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #6ee77b;
  text-decoration: none;
  font-weight: 600;
}
.footer-bottom a:hover {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}
