/* ===== FOOTER ===== */
.footer-section {
  background: #000;
  color: #aaa;
  padding: 80px 0 40px;
  font-size: 14px;
}

/* Logo */
.footer-logo {
  color: #fff;
  font-family: serif;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

/* Titles */
.footer-title {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Text */
.footer-text {
  line-height: 1.8;
  max-width: 280px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #17b890;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  border-bottom: 1px solid #333;
  max-width: 380px;
}

.newsletter-form input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  flex: 1;
  padding: 10px 0;
}

.newsletter-form button {
  background: none;
  border: none;
  color: #17b890;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Divider */
.footer-divider {
  border-color: #222;
  margin: 40px 0 20px;
}

/* Bottom */
.footer-bottom {
  font-size: 12px;
  color: #666;
}

.footer-policy a {
  color: #666;
  text-decoration: none;
  margin-left: 20px;
}

.footer-policy a:hover {
  color: #17b890;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 18px;
  transition: 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #0f5c45;
  color: #fff;
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .footer-text {
    max-width: 100%;
  }

  .newsletter-form {
    max-width: 100%;
  }

  .footer-policy a {
    margin-left: 10px;
  }
}
