/* Footer Styles */
.footer-area {
  background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 50%, #0d1117 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 40px;
  margin-top: 100px;
}

.footer-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #48DBD8, transparent);
  opacity: 0.8;
}

.footer-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.footer-shape-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(72, 219, 216, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.footer-shape-2 {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(72, 219, 216, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

.footer-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(72, 219, 216, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(72, 219, 216, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(72, 219, 216, 0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(72, 219, 216, 0.2), transparent);
  background-repeat: repeat;
  background-size: 150px 100px;
  animation: particles 20s linear infinite;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  50% { 
    transform: translateY(-30px) rotate(5deg); 
  }
}

@keyframes particles {
  0% { transform: translateX(0px); }
  100% { transform: translateX(-150px); }
}

.footer-content-wrapper {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.footer-logo-section {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.footer-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(1.2) drop-shadow(0 0 20px rgba(72, 219, 216, 0.3));
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.3) drop-shadow(0 0 25px rgba(72, 219, 216, 0.5));
}

.footer-tagline h3 {
  color: #48DBD8;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
  background: linear-gradient(45deg, #48DBD8, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(72, 219, 216, 0.3);
}

.footer-description {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.4s forwards;
}

.footer-description p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(72, 219, 216, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-item:hover {
  background: rgba(72, 219, 216, 0.1);
  border-color: rgba(72, 219, 216, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(72, 219, 216, 0.2);
}

.contact-icon {
  font-size: 1.3rem;
  filter: drop-shadow(0 0 10px rgba(72, 219, 216, 0.5));
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

.legal-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.legal-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(72, 219, 216, 0.2), transparent);
  transition: left 0.5s ease;
}

.legal-link:hover {
  color: #48DBD8;
  transform: translateY(-2px);
}

.legal-link:hover::before {
  left: 100%;
}

.separator {
  color: rgba(72, 219, 216, 0.5);
  font-size: 1.2rem;
  margin: 0 5px;
}

.footer-copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(72, 219, 216, 0.2);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 1s forwards;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 5px 0;
  line-height: 1.6;
}

.footer-made-with {
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .footer-area {
    padding: 60px 0 30px;
    margin-top: 60px;
  }
  
  .footer-content-wrapper {
    padding: 0 20px;
  }
  
  .footer-logo {
    max-width: 150px;
  }
  
  .footer-tagline h3 {
    font-size: 1.3rem;
  }
  
  .footer-description p {
    font-size: 1rem;
  }
  
  .footer-contact {
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .contact-item {
    font-size: 1rem;
    padding: 10px 15px;
  }
  
  .footer-legal-links {
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .legal-link {
    font-size: 0.85rem;
    padding: 6px 10px;
  }
  
  .separator {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .contact-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .footer-legal-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .separator {
    display: none;
  }
}