/* WanaLike footer v7 — clean logo, real social links and premium hover states */
.wl-footer {
  position: relative;
  overflow: hidden;
  padding: 76px 24px 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(34, 211, 238, .18), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(139, 92, 246, .20), transparent 38%),
    linear-gradient(180deg, #071123 0%, #040814 100%);
  border-top: 1px solid rgba(148, 163, 184, .16);
  color: #f8fafc;
  isolation: isolate;
}

.wl-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .34;
  pointer-events: none;
  z-index: -2;
}

.wl-footer > * {
  position: relative;
  z-index: 1;
}

.wl-footer-orb {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  filter: blur(62px);
  opacity: .18;
  pointer-events: none;
  z-index: -1;
}

.wl-footer-orb-cyan {
  left: -130px;
  top: -120px;
  background: #22d3ee;
}

.wl-footer-orb-purple {
  right: -110px;
  top: 40px;
  background: #8b5cf6;
}

.wl-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.wl-footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: left;
}

/* Logo wrapper: no colored background, no heavy glow */
.wl-footer-logo-link {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;

  /* 🎯 CONTRASTE FORT */
  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.95),
    rgba(2, 6, 23, 0.95)
  );

  border: 1px solid rgba(255, 255, 255, 0.06);

  /* glow léger derrière */
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(34, 211, 238, 0.12);

  transition: all 0.25s ease;
}

.wl-footer-logo-link:hover {
  transform: translateY(-4px) scale(1.04);

  border-color: rgba(34, 211, 238, 0.45);

  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(34, 211, 238, 0.25),
    0 0 50px rgba(139, 92, 246, 0.12);
}

.wl-footer-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;

  /* glow interne très léger */
  filter: drop-shadow(0 2px 6px rgba(34, 211, 238, 0.25));
}

.wl-footer-brand h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: .02em;
}

.wl-footer-brand span {
  display: block;
  margin-top: 3px;
  color: #94a3b8;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.wl-footer-tagline {
  max-width: 760px;
  margin: 24px auto 42px;
  text-align: center;
  color: #a8b5cc;
  line-height: 1.65;
}

.wl-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  text-align: left;
}

.wl-footer-col {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 23, 42, .64), rgba(15, 23, 42, .42));
  border: 1px solid rgba(148, 163, 184, .13);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.wl-footer-col h4 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: #22d3ee;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.wl-footer-col h4 i {
  width: 18px;
  color: #67e8f9;
  text-align: center;
}

.wl-footer-col a {
  position: relative;
  display: flex;
  gap: 11px;
  align-items: center;
  min-height: 30px;
  margin: 8px 0;
  padding: 6px 8px;
  border-radius: 12px;
  color: #94a3b8;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease, background .2s ease, box-shadow .2s ease;
  overflow-wrap: anywhere;
}

.wl-footer-col a i {
  width: 19px;
  min-width: 19px;
  color: #8b5cf6;
  text-align: center;
  transition: color .2s ease, transform .2s ease;
}

.wl-footer-col a:hover,
.wl-footer-col a:focus-visible {
  color: #f8fafc;
  transform: translateX(5px);
  background: rgba(34, 211, 238, .075);
  box-shadow: inset 3px 0 0 rgba(34, 211, 238, .55);
  outline: none;
}

.wl-footer-col a:hover i,
.wl-footer-col a:focus-visible i {
  color: #22d3ee;
  transform: scale(1.08);
}

.wl-footer-social {
  display: flex;
  justify-content: center;
  gap: 13px;
  margin: 42px 0 26px;
}

.wl-footer-social a {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #f8fafc;
  background: rgba(15, 23, 42, .72);
  border: 1px solid rgba(148, 163, 184, .18);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}

.wl-footer-social a i {
  font-size: 1.08rem;
  line-height: 1;
}

.wl-footer-social a:hover,
.wl-footer-social a:focus-visible {
  color: #22d3ee;
  background: rgba(34, 211, 238, .08);
  border-color: rgba(34, 211, 238, .58);
  box-shadow: 0 0 22px rgba(34, 211, 238, .20), 0 0 32px rgba(139, 92, 246, .10);
  transform: translateY(-4px);
  outline: none;
}

.wl-footer-bottom {
  margin: 0 -24px;
  padding: 24px;
  border-top: 1px solid rgba(148, 163, 184, .12);
  text-align: center;
  color: #74829a;
  font-size: .88rem;
  background: rgba(2, 6, 23, .38);
}

@media (max-width: 980px) {
  .wl-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .wl-footer {
    padding-top: 58px;
  }

  .wl-footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wl-footer-brand {
    justify-content: flex-start;
    max-width: 340px;
    margin: 0 auto;
  }
}