.footer-section {
  position: relative;
  background: linear-gradient(180deg, #000000, #111111); /* keep existing background */
  color: #fff;
  padding: 4.5rem 2rem 3.5rem;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

/* Decorative blurred circles */

.footer-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(13rem);
  opacity: 0.26;
  z-index: 0;
}

.footer-blob-top {
  width: 18rem;
  height: 18rem;
  bottom: -7rem;
  left: -7rem;
  background: radial-gradient(circle, rgba(124,58,237,0.4), transparent 65%);
}

.footer-blob-bottom {
  top: -7rem;
  right: -7rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(0,172,238,0.25), transparent 65%);
}

/* Footer Container */

.footer-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
}

/* Subtle dividing line / glow at top of footer */
.footer-logo::before {
  content: "";
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  opacity: 0.35;
}


/* Logo */

.footer-logo {
  position: relative; /* required for ::before positioning */
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 120px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0,0,0,0.7));
}

/* Social Icons */

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.footer-social {
  color: #fff;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.55rem;
  border-radius: 999px;
  text-decoration: none;

  background: rgba(20,20,20,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);

  box-shadow:
    0 10px 25px rgba(0,0,0,0.7),
    0 0 16px rgba(180,106,255,0.25);

  transition:
    transform 0.3s ease,
    box-shadow 0.35s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

/* Default hover — subtle lift */
.footer-social:hover {
  transform: translateY(-3px) scale(1.1);
  border-color: rgba(255,255,255,0.3);
}

/* Per-platform gradient flares */
.footer-social:nth-child(1):hover {
  background: linear-gradient(135deg, #9333ea, #ec4899, #f97316);
  box-shadow:
    0 12px 30px rgba(148, 33, 209, 0.7),
    0 0 20px rgba(236, 72, 153, 0.7);
}

.footer-social:nth-child(2):hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow:
    0 12px 30px rgba(37,99,235,0.75),
    0 0 18px rgba(37,99,235,0.65);
}

.footer-social:nth-child(3):hover {
  background: linear-gradient(135deg, #0ea5e9, #3b82f6);
  box-shadow:
    0 12px 30px rgba(14,165,233,0.8),
    0 0 18px rgba(59,130,246,0.7);
}

.footer-social:nth-child(4):hover {
  background: linear-gradient(135deg, #dc2626, #f43f5e);
  box-shadow:
    0 12px 30px rgba(220,38,38,0.8),
    0 0 18px rgba(244,63,94,0.7);
}

/* Text */

.footer-container p {
  margin-bottom: 0.4rem;
}

.footer-copyright {
  font-size: 0.98rem;
  color: #e5e7eb;
}

.footer-credit {
  font-size: 0.85rem;
  color: #9ca3af;
}

/* Responsive */

@media (max-width: 768px) {
  .footer-section {
    padding: 3.5rem 1.5rem 3rem;
  }

  .footer-container p {
    font-size: 0.85rem;
  }

  .footer-social {
    font-size: 1.2rem;
    padding: 0.35rem;
  }

  .footer-logo-img {
    width: 100px;
  }
}
