.site-footer {
  background: linear-gradient(
    135deg,
    var(--color-slate) 88%,
    rgba(1, 39, 14, 0.938) 100%
  );
  color: var(--color-white);
  padding: 4rem 0 2rem;
  position: relative;
  font-size: 0.95rem;
}


.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.footer-about img {
  width: 150px;
  margin-bottom: 1rem;
}

.footer-about p {
  line-height: 1.6;
  color: #e5e5e5;
} 

/* Links Section */
.footer-links h4,
.footer-newsletter h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--color-green);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #e5e5e5;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-green);
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.6rem;
  border: none;
  border-radius: 4px;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.newsletter-form button {
  padding: 0.6rem 1rem;
  background-color: var(--color-green);
  border: none;
  border-radius: 4px;
  color: var(--color-slate);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #16a34a;
  color: #fff;
}

/* Social Icons */
.footer-social {
  margin-top: 1.5rem;
}

.footer-social a {
  color: var(--color-white);
  margin-right: 1rem;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--color-green);
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}
/* ===== FOOTER LINK UNDERLINE ANIMATION ===== */
.footer-links a {
  position: relative;
  color: #e5e5e5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: var(--color-green);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-green);
}

.footer-links a:hover::after {
  width: 100%;
}

/* ===== H4 UNDERLINE ===== */
.footer-links h4,
.footer-newsletter h4 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--color-green);
}

.footer-links h4::after,
.footer-newsletter h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-green);
  border-radius: 1px;
}
