/* =============================================
   Footer
============================================= */
.site-footer {
  position: relative;
  width: 100%;
  background: linear-gradient(to bottom, #0d1217 0%, rgba(13, 18, 23, 0) 15%), #0d1217 url('../../assets/background/footer.webp') center/cover no-repeat;
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem 5vw 1rem;
  z-index: 30;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.footer-logo img {
  width: 80px;
}

.footer-brand h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 0 0.5rem 0;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-right {
  display: flex;
  gap: 6rem;
}

.footer-col h4 {
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
}

.footer-col p,
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
  }

  .footer-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .footer-right {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-col h4 {
    font-size: 0.9rem;
  }

  .footer-col p,
  .footer-col a {
    font-size: 1rem;
  }

  .rights-text {
    display: block;
    margin-top: 0.25rem;
  }
}
