/* ======================================
   WAAFE ARROW – FOOTER SYSTEM
====================================== */

/* ===============================
   Footer Base
=============================== */
.waafe-footer {
  background: #020617;
  padding: 90px 0 40px;
  color: #e5e7eb;
}

/* Glass Container */
.footer-glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 50px 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

/* ===============================
   Brand Section
=============================== */
.footer-logo {
  width: 56px;
  margin-bottom: 12px;
}

.footer-brand {
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 0.95rem;
  color: #9ca3af;
  line-height: 1.6;
  max-width: 360px;
}

/* ===============================
   Platform Links
=============================== */
.footer-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer-platforms {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-platforms li {
  margin-bottom: 10px;
}

.footer-platforms a {
  font-size: 0.95rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}

.footer-platforms a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

/* ===============================
   Social Icons
=============================== */
.footer-social {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 1.1rem;
  position: relative;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #38bdf8;
  color: #020617;
  transform: translateY(-3px);
}

/* Tooltip */
.footer-social a::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -34px;
  background: #020617;
  color: #ffffff;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.footer-social a:hover::after {
  opacity: 1;
}

/* ===============================
   Footer Bottom
=============================== */
.footer-divider {
  margin: 40px 0 22px;
  border-color: rgba(255,255,255,0.15);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-links a {
  margin-right: 16px;
  font-size: 0.85rem;
  color: #9ca3af;
  text-decoration: none;
}

.footer-links a:hover {
  color: #38bdf8;
}

.footer-copy {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* ===============================
   Responsive
=============================== */
@media (max-width: 576px) {
  .footer-glass {
    padding: 40px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}