/* Footer Base */
.site-footer {
  background: linear-gradient(135deg, var(--mountain-purple), var(--eco-green));
  color: var(--white);
  padding: 40px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

/* Footer Layout */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  gap: 40px;
}

/* About Section */
.footer-about {
  flex: 1 1 300px;
}

.footer-about h3 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.footer-about p {
  line-height: 1.6;
  color: #e0e0e0;
}

/* Quick Links */
.footer-links {
  flex: 1 1 200px;
}

.footer-links h3 {
  color: var(--white);
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--white);
}

/* Contact Section */
.footer-contact {
  flex: 1 1 250px;
}

.footer-contact h3 {
  color: var(--white);
  margin-bottom: 15px;
}

.footer-contact p {
  margin: 8px 0;
  color: #e0e0e0;
  font-size: 0.95rem;
}

.footer-contact i {
  color: #ffcc33;
  margin-right: 8px;
}

/* Social Icons */
.footer-social {
  margin-top: 15px;
}

.footer-social a {
  color: var(--white);
  margin-right: 12px;
  font-size: 1.3rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-social a:hover {
  color: #ffcc33;
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  text-align: center;
  padding-top: 15px;
  margin-top: 30px;
}

.footer-bottom p {
  color: #d5d5d5;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
  }

  .footer-social a {
    margin-right: 10px;
  }
}
