/* =========================
   FOOTER
========================= */
.footer {
  margin-top: 100px;
  padding: 50px 8% 20px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 2px solid cyan;
  box-shadow: 0 0 25px cyan;
  backdrop-filter: blur(10px);
}
/* CONTAINER */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}
/* BOX */
.footer-box {
  flex: 1;
  min-width: 250px;
}
/* HEADINGS */
.footer-box h2,
.footer-box h3 {
  color: cyan;
  margin-bottom: 20px;
  text-shadow:
    0 0 10px cyan,
    0 0 20px cyan;
}
/* TEXT */
.footer-box p {
  color: white;
  line-height: 1.8;
}
/* STATUS */
.footer-status {
  margin-top: 15px;
  color: cyan;
  font-weight: bold;
  animation: glowText 2s infinite alternate;
}
/* LINKS */
.footer-box a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 12px;
  transition: 0.4s ease;
}
/* HOVER */
.footer-box a:hover {
  color: cyan;
  transform: translateX(8px);
  text-shadow: 0 0 10px cyan;
}
/* SOCIAL ICONS */
.footer-socials {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.footer-socials a {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid cyan;
  font-size: 22px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px cyan;
  transition: 0.4s ease;
  animation: floating 3s ease-in-out infinite;
}
/* SOCIAL HOVER */
.footer-socials a:hover {
  background: cyan;
  color: black;
  transform: translateY(-8px) scale(1.1);
  box-shadow:
    0 0 20px cyan,
    0 0 40px cyan,
    0 0 60px cyan;
}
/* CONTACT */
.footer-contact p {
  margin-bottom: 12px;
  color: white;
  font-size: 15px;
}
.footer-contact a {
  display: inline;
  color: white;
}
/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-bottom p {
  color: white;
  font-size: 14px;
}
/* FLOATING ANIMATION */
@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* GLOW TEXT */
@keyframes glowText {
  from {
    text-shadow: 0 0 10px cyan;
  }
  to {
    text-shadow:
      0 0 20px cyan,
      0 0 40px cyan;
  }
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
  }
}
