/* ========== Footer Modern Altikasa ========== */

.footer-modern {
  background: #0f172a;
  color: #e5e7eb;
  padding: 50px 20px;
  margin-top: 0px;
  font-family: 'Inter', sans-serif;

  width: 100%;
  display: flex;
  justify-content: center;  /* ← centra horizontalmente */
}

.footer-inner {
  width: 100%;
  max-width: 1200px;
  text-align: center;       /* ← centra texto */
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;      /* ← centra contenido */
  gap: 20px;
}
.footer-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.footer-meta {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.6;
}

.footer-meta p {
  margin: 4px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-modern {
    text-align: center;
  }
}