/* Footer */
.footer {
  background: url(/assets/bg-footer.svg) center/cover no-repeat;
  color: white;
  padding: 49px 52px 12px 52px;
  margin: 0;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 57px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .footer-content {
  opacity: 1;
  transform: translateY(0);
}

/* Partie gauche */
.footer-left {
  flex: 0 0 300px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .footer-left {
  opacity: 1;
  transform: translateX(0);
}

.footer-logo {
  margin-bottom: 40px;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .footer-logo {
  opacity: 1;
  transform: scale(1);
}

.social-section {
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .social-section {
  opacity: 1;
  transform: translateY(0);
}

.social-title {
  font-size: 14px;
  font-weight: 500;
  color: white;
  margin: 0 0 14px 0;
  line-height: 28px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .social-title {
  opacity: 1;
  transform: translateY(0);
}

.social-icons {
  display: flex;
  gap: 15px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .social-icons {
  opacity: 1;
  transform: translateY(0);
}

.social-link {
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer.animate-in .social-link {
  opacity: 1;
  transform: scale(1);
}

.social-link:hover {
  transform: translateY(-2px);
}

/* Partie droite */
.footer-right {
  flex: 1;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .footer-right {
  opacity: 1;
  transform: translateX(0);
}

.footer-columns {
  display: flex;
  gap: 83px;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .footer-columns {
  opacity: 1;
  transform: translateY(0);
}

.footer-column {
  flex: 0 0 200px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .footer-column {
  opacity: 1;
  transform: translateY(0);
}

.column-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin: 0 0 16px 0;
  line-height: 20px;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .column-title {
  opacity: 1;
  transform: translateY(0);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .footer-links {
  opacity: 1;
  transform: translateY(0);
}

.footer-links li {
  margin-bottom: 0;
}

.footer-link {
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  font-size: 14px;
  line-height: 32px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .footer-link {
  opacity: 1;
  transform: translateX(0);
}

.footer-link:hover {
  color: white;
  text-decoration: none;
}

/* Blocs de contact */
.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .contact-blocks {
  opacity: 1;
  transform: translateY(0);
}

.contact-block {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.20);
  padding: 14px 19px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .contact-block {
  opacity: 1;
  transform: translateY(0);
}

.contact-label {
  font-size: 14px;
  font-weight: 500;
  color: white;
  line-height: 28px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .contact-label {
  opacity: 1;
  transform: translateX(0);
}

/* Ligne de séparation */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 9px;
  opacity: 0;
  transform: scaleX(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .footer-divider {
  opacity: 1;
  transform: scaleX(1);
}

/* Bas de footer */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .footer-bottom {
  opacity: 1;
  transform: translateY(0);
}

.footer-dropdown {
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .footer-dropdown {
  opacity: 1;
  transform: translateY(0);
}

.language-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 211px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 10px 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .language-selector {
  opacity: 1;
  transform: translateY(0);
}

.language-selector:hover {
  background: rgba(255, 255, 255, 0.15);
}

.language-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .language-icon {
  opacity: 1;
  transform: scale(1);
}

.language-select {
  background: transparent;
  border: none;
  color: white;
  font-size: 14px;
  cursor: pointer;
  outline: none;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  min-width: 80px;
  z-index: 2;
  position: relative;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .language-select {
  opacity: 1;
  transform: translateX(0);
}

.language-select option {
  background: #1D252B;
  color: white;
}

.language-selector::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid white;
  pointer-events: none;
  z-index: 1;
}

.footer-copyright {
  flex: 1;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .footer-copyright {
  opacity: 1;
  transform: translateY(0);
}

.footer-copyright p {
  font-size: 12px;
  color: #FFF;
  margin: 0;
  line-height: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer.animate-in .footer-copyright p {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
    gap: 60px;
  }

  .footer-left {
    flex: none;
  }

  .footer-columns {
    justify-content: center;
    gap: 60px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 30px 0;
  }

  .footer-content {
    gap: 40px;
    margin-bottom: 40px;
  }

  .logo-img {
    width: 150px;
  }

  .social-title {
    font-size: 16px;
  }

  .social-icons {
    gap: 15px;
  }

  .social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .social-icon {
    max-width: 100%;
    height: auto;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .footer.animate-in .social-icon {
    opacity: 1;
    transform: scale(1);
  }

  .footer-columns {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .footer-column {
    flex: none;
    width: 100%;
    max-width: 300px;
  }

  .column-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .contact-blocks {
    gap: 15px;
  }

  .contact-block {
    padding: 12px 15px;
  }

  .contact-icon {
    width: 35px;
    height: 35px;
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .footer.animate-in .contact-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }

  .icon-img {
    width: 18px;
    height: 18px;
  }

  .contact-label {
    font-size: 14px;
  }

  .footer-divider {
    margin-bottom: 30px;
  }

  .language-select {
    padding: 8px 12px;
    font-size: 13px;
  }

  .footer-copyright p {
    font-size: 13px;
  }
  .footer-left {
    padding: 0 50px;
}
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 0 20px 0;
  }

  .footer-content {
    gap: 30px;
    margin-bottom: 30px;
  }

  .social-title {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .social-icons {
    display: flex;
    gap: 10px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .social-icon {
    max-width: 100%;
    height: auto;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .footer.animate-in .social-icon {
    opacity: 1;
    transform: scale(1);
  }

  .footer-columns {
    gap: 30px;
  }

  .column-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-link {
    font-size: 14px;
  }

  .contact-block {
    padding: 10px 12px;
  }

  .contact-icon {
    width: 30px;
    height: 30px;
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .footer.animate-in .contact-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }

  .icon-img {
    width: 16px;
    height: 16px;
  }

  .contact-label {
    font-size: 13px;
  }

  .footer-divider {
    margin-bottom: 20px;
  }

  .language-select {
    padding: 6px 10px;
    font-size: 12px;
  }

  .footer-copyright p {
    font-size: 12px;
  }
}
