/* =====================================================
   Saste Tools — Footer (Luxury)
   Load after variables.css + animations.css.
   ===================================================== */

.site-footer {
  position: relative;
  margin-top: 60px;
  padding-top: 64px;
  background: var(--black-soft);
  border-top: 1px solid var(--glass-border);
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 240px;
  background: radial-gradient(ellipse, var(--gold-glow-soft), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

/* ---------- Main grid ---------- */
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-about p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 14px 0 20px;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--card-border);
  color: var(--text-light);
  transition: var(--transition-fast);
}
.footer-social a:hover {
  color: #111;
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--text-light);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 3px; }

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.contact-line i { color: var(--gold); width: 16px; }

/* ---------- Payment icons ---------- */
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.payment-icons span {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  color: var(--text-light);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition-fast);
}
.payment-icons span:hover { border-color: var(--gold); color: var(--gold-light); }

/* ---------- Bottom bar ---------- */
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid var(--card-border);
  color: var(--text-faint);
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--text-faint); }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
