.spa-footer {
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #e5e7eb;
  padding: 32px 20px 16px;
  margin-top: 60px;
  animation: footerFadeUp 0.6s ease;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #facc15;
}

.footer-brand p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.footer-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-link {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #facc15;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #facc15;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  margin-top: 24px;
  font-size: 0.8rem;
  color: #94a3b8;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* =====================
   ANIMATION
===================== */
@keyframes footerFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}