/* ======================================================
   FOOTER — GRACE IVOIRE
====================================================== */

footer.gi-footer {
  background: #000;
  color: #bbb;
  width: 100%;
  padding: 80px 40px 40px;
}

/* ================= CONTAINER ================= */
footer.gi-footer .gi-footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 70px;
  align-items: start;
  box-sizing: border-box;
}

footer.gi-footer .gi-footer-col {
  min-width: 0;
}

/* ================= TITRES ================= */
footer.gi-footer .gi-footer-title {
  color: #d4af37;
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 14px;
  text-shadow: 0 0 18px rgba(212, 175, 55, .12);
}



footer.gi-footer .gi-footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #aaa;
  margin-bottom: 20px;
}

footer.gi-footer .gi-footer-col h4 {
  color: #d4af37;
  margin-bottom: 20px;
  font-size: 15px;
  letter-spacing: 1px;
  text-shadow: 0 0 18px rgba(212, 175, 55, .12);
}

/* ================= RÉSEAUX SOCIAUX ================= */
footer.gi-footer .gi-footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

footer.gi-footer .gi-footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 14px;
  padding: 0;
  transition: color .25s ease, border-color .25s ease, transform .25s ease, background .25s ease;
}

footer.gi-footer .gi-footer-socials a:hover {
  color: #d4af37;
  border-color: #d4af37;
  background: rgba(212, 175, 55, .08);
  transform: translateY(-2px);
}

/* ================= LISTES ================= */
footer.gi-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer.gi-footer li {
  margin-bottom: 12px;
}

footer.gi-footer a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  transition: color .25s ease, padding-left .25s ease;
}

footer.gi-footer a:hover {
  color: #d4af37;
  padding-left: 4px;
}

/* ================= CONTACT LISTE ================= */
footer.gi-footer .gi-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}

footer.gi-footer .gi-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #bbb;
}

footer.gi-footer .gi-footer-contact li i {
  color: #d4af37;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

footer.gi-footer .gi-footer-contact a {
  color: #bbb;
  padding-left: 0;
}

footer.gi-footer .gi-footer-contact a:hover {
  color: #d4af37;
  padding-left: 0;
}

/* ================= MAP ================= */
footer.gi-footer .gi-map {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  border: 1px solid rgba(212, 175, 55, .12);
  transition: border-color .3s ease;
}

footer.gi-footer .gi-map:hover {
  border-color: rgba(212, 175, 55, .35);
}

footer.gi-footer .gi-map iframe {
  width: 100%;
  height: 140px;
  border: 0;
  display: block;
  filter: grayscale(.4) brightness(.85);
  transition: filter .3s ease;
}

footer.gi-footer .gi-map:hover iframe {
  filter: grayscale(0) brightness(1);
}

/* ================= FOOTER BOTTOM ================= */
footer.gi-footer .gi-footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #1a1a1a;
  font-size: 13px;
  color: #555;
  position: relative;
}

footer.gi-footer .gi-footer-bottom::before {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  margin: 0 auto 18px;
  background: rgba(212, 175, 55, .35);
}

/* ================= BOUTON WHATSAPP FLOTTANT ================= */
.gi-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
  transition: transform .3s ease, box-shadow .3s ease;
  text-decoration: none;
}

.gi-whatsapp:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 12px 36px rgba(37, 211, 102, .55);
  color: #fff;
}

/* ======================================================
   TABLETTE
====================================================== */
@media (max-width: 1024px) {

  footer.gi-footer {
    padding: 70px 28px 36px;
  }

  footer.gi-footer .gi-footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }

  footer.gi-footer .gi-map iframe {
    height: 150px;
  }
}

/* ======================================================
   MOBILE
====================================================== */
@media (max-width: 600px) {

  footer.gi-footer {
    padding: 56px 16px 28px;
  }

  /* Grille 2 colonnes avec cartes */
  footer.gi-footer .gi-footer-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  /* Toutes les colonnes = cartes arrondies */
  footer.gi-footer .gi-footer-col {
    padding: 14px 12px;
    border: 1px solid rgba(212, 175, 55, .12);
    border-radius: 14px;
    background: #000;
    text-align: center;
  }

  /* COL 1 BRAND — pleine largeur */
  footer.gi-footer .gi-footer-col:nth-child(1) {
    grid-column: 1 / -1;
  }

  /* COL 4 CONTACT — pleine largeur */
  footer.gi-footer .gi-footer-col:nth-child(4) {
    grid-column: 1 / -1;
  }

  /* Réseaux sociaux centrés */
  footer.gi-footer .gi-footer-socials {
    justify-content: center;
  }

  /* Listes centrées */
  footer.gi-footer ul {
    text-align: center;
  }

  footer.gi-footer a {
    padding: 6px 10px;
    border-radius: 8px;
  }

  footer.gi-footer a:hover {
    background: rgba(212, 175, 55, .08);
    padding-left: 10px;
    color: #d4af37;
  }

  /* Contact centré */
  footer.gi-footer .gi-footer-contact li {
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  footer.gi-footer .gi-footer-contact a {
    padding: 0;
  }

  footer.gi-footer .gi-footer-contact a:hover {
    padding-left: 0;
    background: none;
  }

  /* Map */
  footer.gi-footer .gi-map {
    margin-top: 14px;
    border-radius: 14px;
  }

  footer.gi-footer .gi-map iframe {
    height: 160px;
  }

  /* Footer bottom */
  footer.gi-footer .gi-footer-bottom {
    max-width: 520px;
    margin: 28px auto 0;
    text-align: center;
  }

  /* WhatsApp plus petit */
  .gi-whatsapp {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
    font-size: 22px;
  }
}