.footer-section {
  position: relative;
  width: 100%;
  padding: 48px 20px;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(0, 207, 155, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(31, 99, 255, 0.13),
      transparent 30%
    ),
    linear-gradient(
      140deg,
      #020a15 0%,
      #06182c 52%,
      #020b17 100%
    );
  overflow: hidden;
}

.footer-container {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0 auto;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.footer-logo-link {
  display: inline-flex;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.footer-logo-link:hover {
  transform: translateY(-4px) scale(1.03);
  filter: drop-shadow(
    0 10px 22px rgba(0, 207, 155, 0.25)
  );
}

.footer-logo {
  display: block;
  width: 170px;
  height: auto;
  object-fit: contain;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.footer-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    #00cf9b,
    #38efc3
  );
  transform: translateY(105%);
  transition: transform 0.35s ease;
}

.footer-social a:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 239, 195, 0.5);
  color: #02120f;
  box-shadow:
    0 12px 25px rgba(0, 207, 155, 0.24);
}

.footer-social a:hover::before {
  transform: translateY(0);
}

.footer-social svg {
  position: relative;
  z-index: 2;
  width: 17px;
  height: 17px;
}

.footer-social .youtube-play {
  color: #02120f;
}

.footer-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.footer-glow-one {
  top: -110px;
  left: -90px;
  width: 280px;
  height: 280px;
  background: rgba(0, 207, 155, 0.09);
  animation: footerGlowOne 9s ease-in-out infinite alternate;
}

.footer-glow-two {
  right: -100px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  background: rgba(31, 99, 255, 0.1);
  animation: footerGlowTwo 11s ease-in-out infinite alternate;
}

@keyframes footerGlowOne {
  from {
    transform: translate(0, 0) scale(0.95);
  }

  to {
    transform: translate(50px, 30px) scale(1.12);
  }
}

@keyframes footerGlowTwo {
  from {
    transform: translate(0, 0) scale(0.92);
  }

  to {
    transform: translate(-45px, -25px) scale(1.14);
  }
}

@media (max-width: 600px) {
  .footer-section {
    padding: 40px 16px;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-logo-link {
    margin-bottom: 17px;
  }

  .footer-social {
    gap: 8px;
  }

  .footer-social a {
    width: 37px;
    height: 37px;
    border-radius: 10px;
  }

  .footer-social svg {
    width: 16px;
    height: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-section *,
  .footer-section *::before,
  .footer-section *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}