/* FOOTER */

.footer {
  width: 100vw;
  background: #000000;
  color: #ffffff;
  padding: 6vw 0 3vw 0;
  display: flex;
  justify-content: center;
}

.footer-inner {
  width: 90vw;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4vw;
  margin-bottom: 3vw;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.footer-logo img {
  width: 16vw;
  height: auto;
}

.footer-description {
  font-size: 1.1vw;
  line-height: 1.8;
  color: #b8c5d1;
  max-width: 25vw;
}

.footer-description strong {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.2vw;
}

.footer-description em {
  color: #ffffff;
  font-style: italic;
  font-weight: 500;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}

.footer-title {
  font-size: 1.2vw;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}

.footer-list li a {
  color: #b8c5d1;
  text-decoration: none;
  font-size: 1vw;
  transition: color 0.3s ease;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.contact-info p {
  color: #b8c5d1;
  font-size: 1vw;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1vw;
  margin-top: 1vw;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5vw;
  height: 2.5vw;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.social-links img {
  width: 1.2vw;
  height: 1.2vw;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2vw;
  border-top: 1px solid #2a3a4a;
}

.footer-copyright p {
  color: #9ca2aa;
  font-size: 0.9vw;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 2vw;
}

.footer-legal a {
  color: #9ca2aa;
  text-decoration: none;
  font-size: 0.9vw;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

@media only screen and (max-width: 768px) {
  .footer {
    padding: 8vw 0 5vw 0;
  }

  .footer-inner {
    width: 95vw;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 6vw;
  }

  .footer-logo img {
    width: 50vw;
  }

  .footer-description {
    font-size: 3.5vw;
    max-width: 100%;
    line-height: 1.6;
  }

  .footer-description strong {
    font-size: 4vw;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 4vw;
  }

  .footer-title {
    font-size: 4vw;
  }

  .footer-list li a {
    font-size: 3.2vw;
  }

  .contact-info p {
    font-size: 3.2vw;
  }

  .social-links {
    gap: 2vw;
  }

  .social-links a {
    width: 8vw;
    height: 8vw;
  }

  .social-links img {
    width: 4vw;
    height: 4vw;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 3vw;
    text-align: center;
  }

  .footer-copyright p {
    font-size: 2.8vw;
  }

  .footer-legal {
    gap: 4vw;
  }

  .footer-legal a {
    font-size: 2.8vw;
  }
}
