/* Footer */
footer {
  background: black;
  padding: 4rem 5%;
  border-top: 1px solid rgba(108, 99, 255, 0.2);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.footer-logo {
  height: 100px;
  width: auto;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(232, 233, 243, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:hover {
  color: white;
  transform: translateY(-2px);
}

.copyright {
  color: rgba(232, 233, 243, 0.5);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

/* Tablet Devices */
@media (max-width: 1024px) {
  footer {
    padding: 3.5rem 4%;
  }

  .footer-logo {
    height: 90px;
  }

  .footer-links {
    gap: 2.5rem;
  }

  .copyright {
    font-size: 0.92rem;
  }
}

/* Small Tablets and Large Phones */
@media (max-width: 768px) {
  footer {
    padding: 3rem 5%;
  }

  .footer-logo-container {
    margin-bottom: 2rem;
  }

  .footer-logo {
    height: 80px;
  }

  .footer-links {
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .footer-links a {
    font-size: 0.95rem;
  }

  .copyright {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}

/* Mobile Devices */
@media (max-width: 576px) {
  footer {
    padding: 2.5rem 5%;
  }

  .footer-logo-container {
    margin-bottom: 1.8rem;
  }

  .footer-logo {
    height: 70px;
  }

  .footer-links {
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-direction: column;
  }

  .footer-links a {
    font-size: 1rem;
    padding: 0.8rem 0;
  }

  .footer-links a::after {
    bottom: 0.3rem;
  }

  .copyright {
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 0 1rem;
  }
}

/* Extra Small Devices */
@media (max-width: 375px) {
  footer {
    padding: 2rem 4%;
  }

  .footer-logo {
    height: 60px;
  }

  .footer-links {
    gap: 1.2rem;
  }

  .footer-links a {
    font-size: 0.95rem;
  }

  .copyright {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}
