/* ====== Footer Styling (Green Theme) ====== */
.footer-section {
  background: linear-gradient(180deg, #f7fdf7 0%, #e9f8e4 35%, #1b5e20 100%);
  color: #1b3d1f;
  padding: 70px 0 25px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Footer Columns */
.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 300px;
  min-width: 280px;
}

/* Headings */
.footer-about h4,
.footer-links h5,
.footer-contact h5 {
  font-weight: 700;
  color: #145a32;
  margin-bottom: 18px;
  position: relative;
}

.footer-about h4::after,
.footer-links h5::after,
.footer-contact h5::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(to right, #2ecc71, #a3cb38, #d4ac0d);
  border-radius: 2px;
  margin-top: 6px;
}

/* About Text */
.footer-about p {
  line-height: 1.8;
  color: #1b3d1f;
}

/* Quick Links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #1b3d1f;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-links a:hover {
  color: #2ecc71;
  text-shadow: 0 0 6px rgba(46, 204, 113, 0.5);
}

/* Contact */
.footer-contact p {
  margin-bottom: 10px;
  color: #1b3d1f;
}

.footer-contact i {
  margin-right: 8px;
  color: #2ecc71;
}

/* Social Icons */
.social-links {
  margin-top: 12px;
}

.social-links a {
  color: #1b3d1f;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  color: #43a047;
  transform: scale(1.15);
}


/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .social-links a {
    margin-right: 10px;
  }
}

/* ===== Footer Bottom (Legal Links) ===== */
.footer-bottom {
  background-color: #ffffff;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin-top: 40px;
  padding: 15px 0;
  font-size: 0.95rem;
}

.footer-bottom p {
  margin: 0;
  color: #000000;
}

.footer-bottom a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  color: #006400;
  text-decoration: underline;
}
