/* ===== CYBERPUNK FOOTER ===== */
.footer {
  background: linear-gradient(145deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
  color: var(--text-body);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(125, 61, 255, 0.2);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(125, 61, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 61, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: inline-block;
  color: var(--text-heading);
  position: relative;
}

.footer-logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--neon-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.footer-logo:hover::after {
  transform: scaleX(1);
}

.footer-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-heading);
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--neon-primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-body);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '>';
  position: absolute;
  left: -1rem;
  color: var(--neon-primary);
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 1rem;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(125, 61, 255, 0.1);
  color: var(--text-body);
  border: 1px solid rgba(125, 61, 255, 0.3);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--neon-primary);
  color: var(--bg-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(125, 61, 255, 0.3);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(125, 61, 255, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  align-items: center;
}

.copyright {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  position: relative;
}

.legal-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--neon-primary);
  transition: width 0.3s ease;
}

.legal-links a:hover {
  color: var(--accent-cyan);
}

.legal-links a:hover::after {
  width: 100%;
}

/* Neon Glow Effect */
.footer-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 61, 255, 0.2) 0%, rgba(125, 61, 255, 0) 70%);
  filter: blur(30px);
  z-index: 0;
}

.glow-1 {
  top: -50px;
  right: -50px;
}

.glow-2 {
  bottom: -50px;
  left: -50px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  .footer-heading {
    margin-top: 1.5rem;
  }
  
  .footer-logo {
    font-size: 1.75rem;
  }
}