.site-footer {
  padding: 60px 20px 40px;
  color: var(--text-muted);
  font-size: 14px;
  /* background-color: #f9fafb;  */
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 40px;
  gap: 40px;
  align-items: flex-start;
}

.footer-brand {
  max-width: 300px;
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  width: 36px;
  height: auto;
  margin-bottom: 16px;
}

.footer-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-dark);
}

.footer-subtitle {
  margin: 8px 0 16px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.newsletter-form button {
  padding: 10px 16px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 2;
  min-width: 280px;
}

.footer-links > div {
  min-width: 140px;
}

.footer-links h4 {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary-color);
}

.badge {
  background: #34c759;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
}

.social-icons a {
  margin-left: 10px;
  display: inline-block;
}

.social-icons img {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.social-icons img:hover {
  opacity: 1;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .social-icons a {
    margin: 0 6px;
  }
}
