.footer {
  background: linear-gradient(135deg, #0b0b0b, #161616);
  color: #ffffff;
  padding: 60px 20px 25px;
  font-family: Arial, sans-serif;
}

/* CONTENEUR */
.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

/* TITRES */
.footer-block h2 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer-block h3 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
}

/* TEXTE GRIS */
.muted {
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.6;
  margin: 4px 0;
}

/* LIENS (IMPORTANT : évite violet + incohérences) */
.footer a:link,
.footer a:visited {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  transition: 0.25s ease;
}

/* HOVER */
.footer a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* CLICK */
.footer a:active {
  color: #8BC34A;
}

/* BAS DE FOOTER */
.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-bottom a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-bottom a:hover {
  color: #8BC34A;
}

/* SEPARATEUR */
.footer-separator {
  margin: 0 10px;
  opacity: 0.4;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer a {
    transform: none;
  }
}