/* ============================================================
   footer-new.css — Footer Lavage Marc Gagnon
   ============================================================ */

.footer-new {
  background-color: #00122D;
  font-family: "Open Sans", sans-serif;
  width: 100%;
  margin-top: 0;
  position: relative;
  text-align: center;
}

.footer-new::after {
  content: "";
  background-color: #00122D;
  width: 100vw;
  height: 100%;
  margin-left: -50vw;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  min-width: 350px;
}

.footer-new > * {
  position: relative;
  z-index: 1;
}

/* ── Section principale ── */
.footer-new__main {
  padding: 6vh 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* ── Titre ── */
.footer-new__title {
  font-family: "Gelasio", serif;
  font-size: calc(1.5rem + 0.1vw);
  font-weight: 400;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

/* ── Sous-titre ── */
.footer-new__subtitle {
  font-size: calc(0.9rem + 0.1vw);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

/* ── Bouton ── */
.footer-new__btn {
  background-color: #F5A623 !important;
  color: #fff !important;
  width: auto !important;
  max-width: fit-content !important;
  display: inline-flex !important;
  font-weight: 700 !important;
  padding: 16px 36px !important;
  font-size: calc(0.875rem + 0.1vw) !important;
  border-radius: 4px !important;
  letter-spacing: .4px;
  margin-top: 6px !important;
}

.footer-new__btn:hover {
  background-color: #d4911a !important;
}

/* ── Téléphones ── */
.footer-new__phones {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 4px;
}

.footer-new__phones a {
  color: #F5A623;
  font-size: calc(0.95rem + 0.1vw);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: opacity .2s;
}

.footer-new__phones a svg {
  flex-shrink: 0;
  color: #F5A623;
}

.footer-new__phones a:hover {
  opacity: .8;
}

/* ── Copyright ── */
.footer-new__copyright {
  background-color: #000d1f;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  text-align: center;
  padding: 14px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.footer-new__copyright::after {
  content: "";
  background-color: #000d1f;
  width: 100vw;
  height: 100%;
  margin-left: -50vw;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
}

.footer-new__copyright a {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.footer-new__copyright a:hover {
  color: #F5A623;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .footer-new__phones {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
