/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-text);
  color: #fff;
  padding: 6rem 0 2rem 0;
  margin-top: 6rem;
  position: relative;
  z-index: 1001;
}

.site-footer .container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-gap);
}

/* ============================================
   FOOTER CONTENT
   ============================================ */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr; /* kiri: info, kanan: nav */
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}

/* Logo / Title */
.footer-logo {
  max-height: 50px;
  margin-bottom: 1.6rem;
  display: block;
  margin-left: -0.9rem;
}

.footer-info h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 1.6rem 0;
  color: var(--color-primary);
}

.footer-description {
  margin: 0 0 1.6rem 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Social links */
.social-links {
  display: flex;
  gap: 1.6rem;
  margin-top: 1rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 2rem; /* supaya ikon cukup besar */
}

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

/* Navigation */
.footer-nav {
  margin-top: 4.6rem;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a.nav-current {
  color: #fff;
}

/* Bottom info */
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
  margin: 0.8rem 0;
}

.footer-bottom a {
  color: var(--color-primary);
  text-decoration: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav ul {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
  }

  .social-links {
    justify-content: center;
  }
}
