.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 4rem 0 1rem;
  font-family: "DM Sans", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  width: 240px;
  height: 96px;
  margin-bottom: 1rem;
}

.footer-description {
  color: #a0a0a0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 24px;
  height: 24px;
  color: #ffffff;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #4a90e2;
}

.footer h3 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: "Montserrat", sans-serif;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.8rem;
}

.footer ul li a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #ffffff;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-icon {
  width: 18px;
  height: 18px;
  color: #fcb900;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  border-top: 1px solid #333;
}

.footer-bottom p {
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer h3 {
    text-align: center;
  }

  .footer ul {
    text-align: center;
  }

  .footer-contact ul li {
    justify-content: center;
  }
}

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

.footer-links-list {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.footer-links,
.footer-services,
.footer-contact {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: start;
  animation: fadeIn 0.5s ease-out forwards;
}

.footer-brand {
  animation: fadeIn 0.5s ease-out forwards;
}
