/* ===================================
   Footer Styles - Pupuk Indonesia
   Maximum Bootstrap Usage
   =================================== */

:root {
  --primary-green: #4caf50;
  --footer-green: #54a55f;
  --dark-green: #45a049;
  --text-dark: #333333;
  --text-muted: #666666;
  --bg-light: #f8f9fa;
}

/* Footer Main with Pattern Background */
.footer-main {
  background-image: url("/assets/img/footer-pattern.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.footer-main .container {
  position: relative;
  z-index: 2;
}

/* Custom hover effects for links */
.footer-widget a:hover {
  color: var(--primary-green) !important;
  transition: all 0.3s ease;
}

/* Footer Bottom with Green Background */
.bg-success-custom {
  background-color: var(--footer-green) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .footer-main {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

@media (max-width: 767px) {
  .footer-main {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .footer-bottom {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}

/* Add subtle animation on page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
