/* ============================================
   Footer Section
   ============================================ */

.site-footer {
  width: 100%;
  color: #ffffff;
  padding: 3rem 6rem;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.footer-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Footer Top */
.footer-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 320px;
}

.brand-logo img {
  width: 80px;
  height: auto;
}

.brand-tagline {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
}

.footer-email {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Satoshi', sans-serif;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-email:hover {
  color: #ffffff;
}

/* Social icons */
.footer-socials {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.25rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.social-link:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Footer Nav */
.footer-nav {
  min-width: 140px;
}

.footer-nav h3 {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1rem 0;
  font-family: 'Satoshi', sans-serif;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  font-family: 'Satoshi', sans-serif;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

/* Footer Divider */
.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(107, 75, 138, 0.07) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(107, 75, 138, 0.07) 100%
  );
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.8rem;
  color: #8b8b8b;
  font-family: 'Satoshi', sans-serif;
}

.legal-links {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
}

.legal-links a {
  font-size: 0.8rem;
  color: #8b8b8b;
  font-family: 'Satoshi', sans-serif;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Footer Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 2.5rem 1.5rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .legal-links {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 2rem 1rem;
  }

  .brand-tagline {
    font-size: 0.9rem;
  }

  .footer-nav a {
    font-size: 0.9rem;
  }
}
