/* ==============================
   FUTURISTIC LIGHT FOOTER — NEUROX STYLE
   ============================== */
.footer-futuristic {
  background: linear-gradient(180deg, #f9fafb 0%, #eef2f6 100%);
  color: #334155;
  position: relative;
  padding: 5rem 2rem 2rem;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

/* Animated top glow line */
.footer-glow-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00c49a, #2563eb, #fcb900, #00c49a);
  background-size: 300% 100%;
  animation: glowMove 8s linear infinite;
  z-index: 3;
  opacity: 0.9;
}
@keyframes glowMove {
  0% { background-position: 0% 0%; }
  100% { background-position: 300% 0%; }
}

/* Subtle particle shimmer */
.footer-particles::before,
.footer-particles::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 196, 154, 0.15), transparent 70%);
  filter: blur(80px);
  animation: floatParticles 8s ease-in-out infinite alternate;
}
.footer-particles::after {
  bottom: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 70%);
  animation-delay: 2s;
}
@keyframes floatParticles {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-20px) scale(1.1); }
}

/* Footer content */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  border-bottom: 1px solid #cbd5e1;
  padding-bottom: 3rem;
}

/* Logo section */
.footer-logo {
  flex: 1.2;
  min-width: 260px;
}
.footer-logo img {
  width: 150px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
/* .footer-logo img:hover {
  transform: scale(1.05);
} */
.footer-logo p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}

/* Links section */
.footer-links {
  display: flex;
  flex: 2;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
}

.footer-column ul li a {
  color: #475569;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: #0f172a;
  transform: translateX(3px);
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c49a, #2563eb);
  color: white;
  margin-right: 10px;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* .social-icons a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
} */

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  color: #64748b;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-logo p {
    margin: 0 auto 2rem;
  }
  .footer-links {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .footer-logo img {
    width: 120px;
  }
  .footer-column h4 {
    font-size: 0.95rem;
  }
}
