/* Footer Styles - Premium Dark Design */
.site-footer {
  background: linear-gradient(180deg, rgba(10, 14, 39, 0.8) 0%, rgba(5, 8, 20, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: rgba(255, 255, 255, 0.9);
  padding: 40px 0 30px;
  margin-top: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-links {
  margin-bottom: 25px;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 6px 12px;
  position: relative;
  font-weight: 400;
  font-size: 16px;
}

.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00D4FF, #0066FF);
  transition: width 0.3s ease;
}

.footer-nav a:hover {
  color: #00D4FF;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

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

.footer-logo {
  margin: 30px 0;
  text-align: center;
}

.footer-logo a {
  display: inline-block;
  transition: transform 0.3s ease;
}

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

.footer-logo img,
.footer-logo .logo-img {
  height: 35px;
  width: auto;
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.3));
  transition: all 0.3s ease;
}

.footer-logo a:hover img,
.footer-logo a:hover .logo-img {
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
}

.footer-logo .logo-text {
  font-size: 24px;
  font-weight: 600;
  background: linear-gradient(135deg, #FFFFFF 0%, #00D4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.3));
}

.footer-logo .logo-highlight {
  background: linear-gradient(135deg, #00D4FF 0%, #0066FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-copyright {
  margin-top: 30px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-copyright p {
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.footer-copyright a {
  color: #00D4FF;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
}

.footer-copyright a:hover {
  color: #0066FF;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .site-footer {
    padding: 30px 0 20px;
    margin-top: 60px;
  }
  
  .footer-logo {
    margin: 25px 0;
  }
  
  .footer-logo img,
  .footer-logo .logo-img {
    height: 32px;
  }
  
  .footer-logo .logo-text {
    font-size: 22px;
  }
  
  .footer-nav a {
    font-size: 14px;
    padding: 8px 12px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  .footer-copyright {
    font-size: 11px;
    text-align: center;
  }
  
  .footer-copyright p {
    font-size: 11px;
    margin: 8px 0;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 12px;
  }
  
  .site-footer {
    padding: 25px 0 18px;
    margin-top: 50px;
  }
  
  .footer-nav {
    gap: 10px;
  }
  
  .footer-logo {
    margin: 20px 0;
  }
  
  .footer-logo img,
  .footer-logo .logo-img {
    height: 28px;
  }
  
  .footer-logo .logo-text {
    font-size: 20px;
  }
  
  .footer-nav a {
    font-size: 13px;
    padding: 6px 10px;
  }
  
  .footer-copyright {
    font-size: 10px;
  }
  
  .footer-copyright p {
    font-size: 10px;
    margin: 6px 0;
  }
}
