/* ============================================================
   layouts/footer.css
   Footer Styles
   ============================================================ */

.footer {
  background: #0a0f1a;
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 30px;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}

.footer-title {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13.5px;
  transition: color var(--transition);
}

.footer a:hover {
  color: white;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 48px;
  padding-top: 24px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Footer Grid - DESKTOP (4 kolom) */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand > div {
    justify-content: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-title {
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

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