/* ── Footer Styles (Common) ── */
.wb-footer {
  background: #090d16 !important;
  color: #fff !important;
  padding: 80px 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.wb-footer-top {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
}
.wb-footer-brand p {
  margin-top: 20px;
  color: #9ca3af !important;
  font-size: 0.9rem;
  max-width: 300px;
}
.wb-footer-col h4 {
  margin-bottom: 24px;
  font-size: 1rem;
  color: #fff !important;
  font-weight: 700;
}
.wb-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wb-footer-col ul li {
  margin-bottom: 12px;
}
.wb-footer-col ul li a {
  color: #9ca3af !important;
  transition: all 0.25s ease;
  font-size: 0.9rem;
}
.wb-footer-col ul li a:hover {
  color: #60a5fa !important;
}

.wb-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: #9ca3af !important;
}

.wb-footer-socials {
  display: flex;
  gap: 14px;
}

.wb-footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7) !important;
  transition: all 0.25s ease;
}

.wb-footer-socials a:hover {
  background: #2563eb;
  color: #fff !important;
  transform: translateY(-2px);
}

/* ── Footer Responsiveness ── */
@media (max-width: 1024px) {
  .wb-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .wb-footer-brand {
    grid-column: span 2;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .wb-footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .wb-footer {
    padding: 60px 20px 30px;
  }
  .wb-footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .wb-footer-brand {
    grid-column: 1;
    margin-bottom: 10px;
  }
  .wb-footer-brand p {
    margin: 16px auto 0;
  }
}
