/* Professional Footer Styles */
.site-footer {
  background: linear-gradient(135deg, #0B0A4E 0%, #1a1a2e 100%);
  color: #ffffff;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

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

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 2rem;
}

.footer-section h4 {
  color: #56FFBD;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background: #56FFBD;
  border-radius: 1px;
}

/* Brand Section */
.footer-brand {
  padding-right: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

.footer-logo h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.footer-description {
  color: #b8b9c7;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(86, 255, 189, 0.1);
  border: 1px solid rgba(86, 255, 189, 0.2);
  border-radius: 8px;
  color: #56FFBD;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #56FFBD;
  color: #0B0A4E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(86, 255, 189, 0.3);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #b8b9c7;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a:hover {
  color: #56FFBD;
  padding-left: 0.5rem;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: #56FFBD;
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 0.25rem;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: #b8b9c7;
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: #b8b9c7;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #56FFBD;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-section:nth-child(4),
  .footer-section:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 1rem;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0 1.5rem;
  }
  
  .footer-brand {
    padding-right: 0;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 2rem 0 1rem;
  }
  
  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
  }
}

/* Animation for footer reveal */
.site-footer {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover effect for the entire footer */
.footer-section:hover h4 {
  color: #ffffff;
  transition: color 0.3s ease;
}

/* Subtle background pattern */
.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(86, 255, 189, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(86, 255, 189, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(86, 255, 189, 0.03) 0%, transparent 50%);
  pointer-events: none;
}