.footer {
  border-top: 1px solid #ff7900;
  padding: 32px 64px;
  position: relative;
  z-index: 1000;
  width: 100% !important;
  max-width: 100% !important;
}

/* Footer centré */
.footer {
  padding: 20px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.footer .container,
.footer .container-xxl {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.separator {
  color: #fff;
  margin: 0 10px;
  font-size: 14px;
}

/* Pour la version simple */
.footer {
  text-align: center;
}

.footer * {
  text-align: center;
  justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 15px 10px;
  }

  .footer-links {
    flex-direction: column;
    gap: 5px;
  }

  .separator {
    display: none !important;
  }
}

/* Si vous utilisez la version simple du footer */
.footer.navbar {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* Centrage pour tous les éléments enfants du footer */
.footer > div,
.footer > * {
  margin: 0 auto;
  text-align: center;
}
