
/* ===== FOOTER ===== */
#footer-container {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: white;
  padding: 60px 20px 30px;
  margin-top: 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-column {
  animation: fadeInUp 0.6s ease forwards;
}

.footer-logo {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(90deg, #facc15, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-column h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: white;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 15px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-column ul li a:hover {
  color: #facc15;
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #ff0080, #6366f1);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
