#contact {
    background: #f8f8f8;
}

#contact form input,
#contact form textarea {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

#contact button {
    background: #111;
    color: #fff;
    padding: 12px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
}
.social-cta {
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
    color: #8d8d8d;
}

.facebook-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    margin-left: 6px;
    background: rgba(24, 119, 242, 0.25);
    border-radius: 8px;
    text-decoration: none;
    color: #8d8d8d;
    font-weight: 500;
    transition: 0.25s ease;
    backdrop-filter: blur(6px);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.45);
    transform: translateY(-2px);
}

.fb-icon {
    width: 20px;
    height: 20px;
}
/* -----------------------------
   POPUP CONFIRMATION CONTACT
------------------------------ */

.contact-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(2px);
}

.contact-popup-box {
    background: #ffffff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    max-width: 420px;
    width: 90%;
    text-align: center;
    animation: popupFade .25s ease-out;
}

@keyframes popupFade {
    from { opacity:0; transform: translateY(12px); }
    to { opacity:1; transform: translateY(0); }
}

.contact-popup-btn {
    margin-top: 18px;
    padding: 10px 20px;
    background: #111;
    color:#fff;
    border:none;
    border-radius: 8px;
    cursor:pointer;
    font-weight:600;
    transition:.2s;
}

.contact-popup-btn:hover {
    background:#333;
}
/* ============================================
   BLOC CONTACT — version ultra discrète
   Sans bordure, sans ombre, intégré au fond
============================================ */
.contact-info-block {
    background: #f9f9f9;              /* comme le fond du site (harmonisé) */
    border: none;                     /* aucune bordure */
    box-shadow: none;                 /* aucun ombrage */
    
    padding: 16px 20px;
    margin: 10px auto 28px;
    max-width: 780px;

    text-align: center;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;

    border-radius: 10px;              /* pour un rendu doux */
}
/* ============================
   CONTACT — POPUP SUCCESS/ERROR
   ============================ */
#contact-popup.contact-popup {
  position: fixed;
  inset: 0;
  display: none;               /* affiché en JS */
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  z-index: 999999;
}

#contact-popup.contact-popup.active {
  display: flex;
}

#contact-popup .contact-popup-box {
  width: 100%;
  max-width: 520px;
  border-radius: 16px;
  padding: 22px 20px;
  background: rgba(245,245,245,0.98);
  color: #111;
  box-shadow: 0 18px 55px rgba(0,0,0,0.35);
  text-align: center;
  position: relative;
}

#contact-popup .contact-popup-box h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

#contact-popup .contact-popup-box p {
  margin: 0 0 16px;
  line-height: 1.45;
  color: #222;
}

#contact-popup .contact-popup-btn {
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  cursor: pointer;
  background: #2978ff;
  color: #fff;
  font-weight: 600;
}

#contact-popup .contact-popup-btn:hover {
  background: #1e5ed6;
}
.google-reviews{
  max-width: 520px;     /* ajuste au goût */
  margin: 14px auto 0;  /* ✅ centre le bloc */
  text-align: center;   /* ✅ centre le texte */
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.google-reviews__top{
  display:flex;
  gap: 8px;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.google-reviews__meta{
  display: flex;
  flex-direction: column;
  align-items: center;      /* ✅ centre titre/étoiles/texte */
}

.google-badge{
  width:34px; height:34px;
  display:grid; place-items:center;
  border-radius:10px;
  background:#fff;   /* garde le fond blanc propre */
}
.google-g{
  width:18px;
  height:18px;
  display:block;
}

.google-reviews__title{ font-weight:800; }
.google-reviews__stars{ letter-spacing:2px; font-size:14px; margin-top:4px; }
.google-reviews__hint{ font-size:12px; opacity:0.85; margin-top:6px; }

.google-reviews__actions{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

.gr-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:12px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
  color: inherit;
  font-weight:700;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}

.gr-btn.primary{
  background:#fff;
  color:#111;
  border-color:#fff;
}

.gr-btn:hover{ transform: translateY(-1px); 
}

.facebook-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.fb-icon{
  width:16px;
  height:16px;
}

.contact-file{
  margin: 10px 0 12px;
  text-align: left;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.contact-file-label{
  display:block;
  font-size: .9rem;
  margin-bottom: 6px;
  color: #111;
}

.contact-file input[type="file"]{
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.15);
  background: #fff;
}

.contact-file-hint{
  display:block;
  margin-top: 6px;
  font-size: .8rem;
  color: rgba(0,0,0,.55);
}
