/* ========================================
   FOOTER
   ======================================== */

.footer {
  background-color: var(--neutral-900);
  color: var(--neutral-300);
  padding: 3rem 0 0;
}

.footer-note{
  margin: 10px 0 0;                    /* ✅ plus de "auto" */
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.08);

  max-width: none;                      /* ✅ enlève le bloc centré */
  width: 100%;
  text-align: left;                     /* ✅ aligné à gauche */
  font-size: .82rem;
  line-height: 1.45;
  opacity: .62;
}


/* Mobile: aligné à gauche = plus lisible */
@media (max-width: 680px){
  .footer-note{
    text-align: left;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.footer-bottom{
  padding-left: 0;
  padding-right: 0;
}




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

.footer-column h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-column p {
  color: var(--neutral-400);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.footer-column a {
  color: var(--neutral-400);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-column a:hover {
  color: var(--primary-light);
}

.footer-nap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nap-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-nap-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-nap-text {
  color: var(--neutral-300);
  margin: 0;
}

.footer-phone {
  color: var(--white);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.25rem;
}

.footer-phone:hover {
  color: var(--primary-light);
}

.footer-email {
  color: var(--neutral-300);
  text-decoration: none;
}

.footer-email:hover {
  color: var(--primary-light);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -1.25rem;
  opacity: 0;
  transition: all var(--transition-base);
}

.footer-links a:hover::before {
  opacity: 1;
  left: -1rem;
}

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

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--neutral-800);
  border-radius: var(--radius-full);
  color: var(--neutral-300);
  transition: all var(--transition-base);
}

.footer-social-link:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-bottom {
  border-top: 1px solid var(--neutral-800);
  padding: 2rem var(--container-padding);
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: var(--neutral-400);
  font-size: 0.875rem;
  margin: 0;
}

.footer-credit {
  color: var(--neutral-500);
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-credit:hover {
  color: var(--neutral-400);
}

.footer-credit strong {
  color: var(--neutral-400);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-title {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-text {
  color: var(--neutral-400);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.footer-section .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section .footer-links a {
  color: var(--neutral-400);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-section .footer-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid var(--neutral-800);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--neutral-400);
  font-size: 0.875rem;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}
