footer {
  padding: 4rem 0 2rem;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
  position: relative;
  z-index: 2;
  background: rgba(26, 26, 26, 0.8);
  backdrop-filter: blur(10px);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.logo-icon {
  font-size: 2.2rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.logo-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo:hover {
  transform: translateY(-3px);
}

.footer-logo:hover .logo-icon {
  transform: rotate(15deg) scale(1.1);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.footer-links a:hover {
  color: var(--primary);
  background: rgba(108, 99, 255, 0.1);
  transform: translateY(-2px);
}

.footer-contact {
  text-align: center;
}

.footer-contact p {
  color: var(--light);
  font-size: 1.1rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.footer-contact p::before {
  content: "✉️";
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.8;
}

@media (max-width: 992px) {
  footer {
    padding: 3.5rem 0 1.8rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    gap: 2rem;
  }
  
  .footer-logo {
    font-size: 1.8rem;
  }
  
  .footer-links {
    gap: 1.5rem;
  }
  
  .footer-links a {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }
  
  .footer-contact p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 3rem 0 1.5rem;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-logo {
    font-size: 1.6rem;
    gap: 0.6rem;
  }
  
  .logo-icon {
    font-size: 1.8rem;
  }
  
  .footer-bottom {
    font-size: 0.85rem;
  }
}