/* ══════════════════════════════════════════════════════════════
   BATIMM RENOV — STYLE ÉLÉGANT — Couche de refinement visuel
   Design épuré · Aéré · Professionnel · Animations hover
   ══════════════════════════════════════════════════════════════ */

/* ── Variables de design élégant ── */
:root {
  --card-radius: 16px;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(189, 147, 99, 0.08);
  --shadow-hover: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(189, 147, 99, 0.2), 0 0 60px rgba(189, 147, 99, 0.06);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --or-glow: rgba(189, 147, 99, 0.15);
  --border-subtle: rgba(189, 147, 99, 0.1);
  --bg-card: #162036;
  --bg-card-hover: #1c2a46;
}

/* ══════════════════════════════════════════════════════════════
   1. NAVIGATION — Plus élégante, plus aérée
   ══════════════════════════════════════════════════════════════ */
nav {
  padding: 20px 72px !important;
}

nav.sc {
  padding: 14px 72px !important;
  background: rgba(9, 14, 26, 0.88) !important;
  backdrop-filter: blur(32px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(32px) saturate(180%) !important;
  border-bottom: 1px solid rgba(189, 147, 99, 0.1) !important;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25) !important;
}

.nav-links {
  gap: 44px !important;
}

.nav-links a {
  font-size: 11px !important;
  letter-spacing: 2.5px !important;
  transition: color 0.3s ease, opacity 0.3s ease !important;
}

.nav-cta {
  padding: 10px 28px !important;
  border-radius: 8px !important;
  background: rgba(189, 147, 99, 0.07) !important;
  border: 1px solid rgba(189, 147, 99, 0.4) !important;
  letter-spacing: 1.5px !important;
  font-size: 11px !important;
  transition: all 0.35s var(--ease-premium) !important;
}

.nav-cta:hover {
  background: var(--or) !important;
  color: var(--noir) !important;
  border-color: var(--or) !important;
  box-shadow: 0 4px 24px rgba(189, 147, 99, 0.35) !important;
  transform: none !important;
}

/* ══════════════════════════════════════════════════════════════
   2. GLOBAL SECTIONS — Espacement généreux
   ══════════════════════════════════════════════════════════════ */
section {
  padding: 130px 80px !important;
}

.sec-tag {
  font-size: 11px !important;
  letter-spacing: 5px !important;
  margin-bottom: 18px !important;
  opacity: 0.9 !important;
}

.sec-title {
  letter-spacing: 1px !important;
  margin-bottom: 18px !important;
}

.sec-sub {
  font-size: 15px !important;
  line-height: 1.85 !important;
  opacity: 0.65 !important;
}

/* Séparateur optique entre sections */
.services, .reals, .about, .testi, .faq-section, .zones-section, .contact {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* ══════════════════════════════════════════════════════════════
   3. SECTION PRESTATIONS — Grille 3×2 photo cards plein cadre
   ══════════════════════════════════════════════════════════════ */

/* ── En-tête ── */
.svc-hd {
  margin-bottom: 56px !important;
}

/* ══ Conteneur principal — flex colonne ══ */
.prest-grid {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 120px !important;
  width: 100% !important;
  margin: 0 auto !important;
}

/* ══ Chaque ligne — flex row centré ══ */
.prest-row {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  gap: 60px !important;
  flex-wrap: nowrap !important;
}

/* ── Carte photo — carré fixe ── */
.prest-card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  width: 220px !important;
  height: 220px !important;
  aspect-ratio: unset !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  text-decoration: none !important;
  cursor: pointer !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.40) !important;
  transition:
    transform 0.55s var(--ease-premium),
    box-shadow 0.55s var(--ease-premium) !important;
}

.prest-card:hover {
  transform: translateY(-8px) scale(1.015) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.65) !important;
}

/* ── Photo de fond ── */
.prest-photo {
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.75s var(--ease-premium) !important;
}
.prest-card:hover .prest-photo {
  transform: scale(1.08) !important;
}

/* ── Dégradé obscur ── */
.prest-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    to top,
    rgba(5, 10, 20, 0.92) 0%,
    rgba(8, 14, 26, 0.60) 45%,
    rgba(5, 10, 20, 0.18) 100%
  ) !important;
  transition: background 0.55s ease !important;
}
.prest-card:hover .prest-overlay {
  background: linear-gradient(
    to top,
    rgba(5, 10, 20, 0.88) 0%,
    rgba(8, 14, 26, 0.50) 45%,
    rgba(189, 147, 99, 0.10) 100%
  ) !important;
}

/* ── Badge marque (haut gauche) ── */
.prest-badge {
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 8px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: rgba(189, 147, 99, 0.92) !important;
  border: 1px solid rgba(189, 147, 99, 0.38) !important;
  padding: 4px 9px !important;
  border-radius: 50px !important;
  background: rgba(5, 10, 20, 0.55) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 2 !important;
  transition: border-color 0.3s ease, color 0.3s ease !important;
}
.prest-card:hover .prest-badge {
  border-color: rgba(189, 147, 99, 0.65) !important;
  color: #d4aa7a !important;
}

/* ── Corps texte (bas) ── */
.prest-body {
  position: relative !important;
  z-index: 2 !important;
  padding: 16px 18px 16px !important;
}

/* ── Trait doré en haut du corps ── */
.prest-body::before {
  content: '' !important;
  display: block !important;
  width: 32px !important;
  height: 2px !important;
  background: linear-gradient(90deg, var(--or), transparent) !important;
  margin-bottom: 12px !important;
  transition: width 0.45s var(--ease-premium) !important;
}
.prest-card:hover .prest-body::before {
  width: 56px !important;
}

/* ── Titre ── */
.prest-title {
  font-family: 'Barlow', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: #eae2d7 !important;
  margin: 0 0 6px !important;
  line-height: 1.25 !important;
  transition: color 0.3s ease !important;
}
.prest-card:hover .prest-title {
  color: #d4aa7a !important;
}

/* ── Description ── */
.prest-desc {
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: rgba(234, 226, 215, 0.72) !important;
  margin: 0 0 10px !important;
}

/* ── Lien Découvrir ── */
.prest-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  color: var(--or) !important;
  opacity: 0.75 !important;
  transition: opacity 0.3s ease, gap 0.3s ease !important;
}
.prest-cta svg {
  stroke: var(--or) !important;
  flex-shrink: 0 !important;
  transition: transform 0.3s ease !important;
}
.prest-card:hover .prest-cta {
  opacity: 1 !important;
  gap: 10px !important;
}
.prest-card:hover .prest-cta svg {
  transform: translateX(3px) !important;
}

/* ── Responsive tablette : 2 colonnes de 3 ── */
@media (max-width: 900px) {
  .prest-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    column-gap: 20px !important;
    row-gap: 20px !important;
    width: 95% !important;
  }
  .prest-card:nth-child(n) { grid-column: auto / span 1 !important; }
}

/* ── Responsive mobile : 2 colonnes ── */
@media (max-width: 560px) {
  .prest-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    column-gap: 14px !important;
    row-gap: 14px !important;
  }
  .prest-title { font-size: 11px !important; letter-spacing: 0.8px !important; }
  .prest-desc { display: none !important; }
  .prest-cta { font-size: 9px !important; }
}

.svc-hd {
  margin-bottom: 64px !important;
}

/* Carte de base — fond image toujours visible */
.svc-card {
  border-radius: var(--card-radius) !important;
  padding: 46px 38px 42px !important;
  background: #0e1726 !important;
  border: 1px solid rgba(189, 147, 99, 0.14) !important;
  box-shadow: var(--shadow-card) !important;
  transition:
    transform 0.5s var(--ease-premium),
    box-shadow 0.5s var(--ease-premium),
    border-color 0.4s ease !important;
}

/* Masquer les grands numéros de fond (trop chargés) */
.svc-n {
  display: none !important;
}

/* Icône : encadrée, épurée */
.svc-ic {
  width: 54px !important;
  height: 54px !important;
  border-radius: 12px !important;
  background: rgba(189, 147, 99, 0.08) !important;
  border: 1px solid rgba(189, 147, 99, 0.18) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 28px !important;
  font-size: 0 !important;
  color: var(--or) !important;
  transition:
    background 0.4s var(--ease-premium),
    border-color 0.4s ease,
    transform 0.4s var(--ease-premium) !important;
}

.svc-ic svg {
  width: 22px !important;
  height: 22px !important;
  stroke: var(--or) !important;
  display: block !important;
}

/* Titre de service */
.svc-nm {
  font-size: 17px !important;
  letter-spacing: 1.2px !important;
  margin-bottom: 12px !important;
  line-height: 1.2 !important;
  transition: color 0.35s ease !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6) !important;
}

/* Description */
.svc-dc {
  font-size: 13.5px !important;
  line-height: 1.78 !important;
  color: rgba(234, 226, 215, 0.75) !important;
  margin-bottom: 24px !important;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5) !important;
}

/* Lien "En savoir plus" */
.svc-more {
  font-size: 11px !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  color: var(--or) !important;
  opacity: 0.6 !important;
  font-weight: 600 !important;
  transition: opacity 0.3s ease, letter-spacing 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Trait doré en bas de carte */
.svc-card::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, var(--or), var(--or-clair), transparent) !important;
  border-radius: 0 0 var(--card-radius) var(--card-radius) !important;
  transition: width 0.55s var(--ease-premium) !important;
  animation: none !important;
  z-index: 10 !important;
}

/* HOVER — Élégant et précis */
.svc-card:hover {
  transform: translateY(-10px) !important;
  border-color: rgba(189, 147, 99, 0.22) !important;
  background: var(--bg-card-hover) !important;
  box-shadow: var(--shadow-hover) !important;
}

.svc-card:hover .svc-ic {
  background: rgba(189, 147, 99, 0.16) !important;
  border-color: rgba(189, 147, 99, 0.35) !important;
  transform: scale(1.06) !important;
}

.svc-card:hover .svc-nm {
  color: #d4aa7a !important;
}

.svc-card:hover .svc-more {
  opacity: 1 !important;
  letter-spacing: 3px !important;
}

.svc-card:hover::after {
  width: 100% !important;
  animation: none !important;
}

/* ── Image bien visible en fond de carte (effet premium) ── */
.svc-tex-bg {
  opacity: 0.75 !important;
  transform: scale(1.02) !important;
  transition: opacity 0.65s var(--ease-premium), transform 0.65s var(--ease-premium) !important;
}

/* Overlay : léger voile sombre uniquement pour la lisibilité du texte */
.svc-card .svc-wood-overlay {
  opacity: 1 !important;
  background: linear-gradient(
    170deg,
    rgba(5, 10, 20, 0.72) 0%,
    rgba(8, 14, 26, 0.50) 50%,
    rgba(5, 10, 20, 0.60) 100%
  ) !important;
  transition: background 0.65s var(--ease-premium) !important;
}

/* Au hover : image encore plus nette, voile encore plus léger */
.svc-card:hover .svc-tex-bg {
  opacity: 0.92 !important;
  transform: scale(1.06) !important;
}
.svc-card:hover .svc-wood-overlay {
  opacity: 1 !important;
  background: linear-gradient(
    170deg,
    rgba(5, 10, 20, 0.58) 0%,
    rgba(8, 14, 26, 0.32) 50%,
    rgba(189, 147, 99, 0.12) 100%
  ) !important;
}

/* Supprimer le reflet brillant (superflu) */
.svc-card .svc-shine,
.svc-card:hover .svc-shine {
  display: none !important;
}

/* S'assurer que tout le contenu texte est bien au-dessus */
.svc-ic,
.svc-nm,
.svc-dc,
.svc-more {
  position: relative !important;
  z-index: 4 !important;
}

/* Bouton toggle services */
.svc-toggle-btn {
  border-radius: 50px !important;
  padding: 14px 32px !important;
  background: rgba(189, 147, 99, 0.06) !important;
  border: 1px solid rgba(189, 147, 99, 0.2) !important;
  transition: all 0.35s var(--ease-premium) !important;
}
.svc-toggle-btn:hover {
  background: rgba(189, 147, 99, 0.12) !important;
  border-color: rgba(189, 147, 99, 0.4) !important;
}

/* ══════════════════════════════════════════════════════════════
   4. GALERIE RÉALISATIONS — Plus aérée et raffinée
   ══════════════════════════════════════════════════════════════ */

.rl-hd {
  margin-bottom: 60px !important;
}

.rl-grid {
  gap: 12px !important;
}

.rl-item {
  border-radius: 12px !important;
  overflow: hidden !important;
  transition:
    transform 0.5s var(--ease-premium),
    box-shadow 0.5s var(--ease-premium) !important;
}

.rl-item:hover {
  transform: translateY(-7px) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55) !important;
}

.rl-img {
  transition: transform 0.75s var(--ease-premium) !important;
  display: block !important;
}

.rl-item:hover .rl-img {
  transform: scale(1.05) !important;
}

.rl-ov {
  background: linear-gradient(
    to top,
    rgba(9, 14, 26, 0.94) 0%,
    rgba(9, 14, 26, 0.5) 50%,
    transparent 100%
  ) !important;
  padding: 24px 22px !important;
  border-radius: 0 0 12px 12px !important;
}

.rl-lbl {
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  margin-bottom: 4px !important;
}

.rl-sub {
  font-size: 12px !important;
  color: var(--or) !important;
  letter-spacing: 1.5px !important;
  opacity: 0.9 !important;
}

/* ══════════════════════════════════════════════════════════════
   5. AVANT / APRÈS — Plus aérée
   ══════════════════════════════════════════════════════════════ */
.avap {
  padding: 130px 80px !important;
}

.bt-grid {
  gap: 14px !important;
}

.bt-cell {
  border-radius: 14px !important;
  overflow: hidden !important;
}

/* ══════════════════════════════════════════════════════════════
   6. À PROPOS — Plus claire
   ══════════════════════════════════════════════════════════════ */
.about {
  padding: 130px 80px !important;
}

.ab-wrap {
  gap: 80px !important;
}

.ab-intro {
  font-size: 15px !important;
  line-height: 1.85 !important;
  color: rgba(234, 226, 215, 0.72) !important;
  margin-bottom: 22px !important;
}

.ab-feat {
  border-radius: 12px !important;
  padding: 16px 18px !important;
  background: #131d30 !important;
  border: 1px solid rgba(189, 147, 99, 0.1) !important;
  transition: border-color 0.35s ease, background 0.35s ease !important;
}

.ab-feat:hover {
  border-color: rgba(189, 147, 99, 0.22) !important;
  background: #1a2840 !important;
}

.ab-feat-ic {
  border-radius: 10px !important;
  background: rgba(189, 147, 99, 0.08) !important;
  border: 1px solid rgba(189, 147, 99, 0.15) !important;
}

/* ══════════════════════════════════════════════════════════════
   7. TÉMOIGNAGES — Plus propres
   ══════════════════════════════════════════════════════════════ */
.testi {
  padding: 130px 80px !important;
}

/* ══════════════════════════════════════════════════════════════
   8. CONTACT — Épuré, professionnel
   ══════════════════════════════════════════════════════════════ */
.contact {
  padding: 130px 80px !important;
}

/* Infos contact : items épurés */
.ct-item {
  border-radius: 12px !important;
  padding: 16px 20px !important;
  background: #131d30 !important;
  border: 1px solid rgba(189, 147, 99, 0.1) !important;
  margin-bottom: 10px !important;
  transition: border-color 0.3s ease, background 0.3s ease !important;
}

.ct-item:hover {
  border-color: rgba(189, 147, 99, 0.22) !important;
  background: #1a2840 !important;
}

.ct-ic {
  width: 40px !important;
  height: 40px !important;
  border-radius: 10px !important;
  background: rgba(189, 147, 99, 0.1) !important;
  border: 1px solid rgba(189, 147, 99, 0.18) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.ct-lbl {
  font-size: 10px !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  color: rgba(189, 147, 99, 0.8) !important;
  font-weight: 600 !important;
  margin-bottom: 4px !important;
}

.ct-val {
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 0.3px !important;
}

/* Wizard de contact : inputs */
.fr-inp,
.fr-ta {
  border-radius: 10px !important;
  background: rgba(18, 28, 48, 0.5) !important;
  border: 1px solid rgba(189, 147, 99, 0.12) !important;
  color: var(--blanc) !important;
  padding: 14px 18px !important;
  font-size: 14px !important;
  font-family: 'Barlow', sans-serif !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
  width: 100% !important;
}

.fr-inp:focus,
.fr-ta:focus {
  outline: none !important;
  border-color: rgba(189, 147, 99, 0.4) !important;
  box-shadow: 0 0 0 3px rgba(189, 147, 99, 0.07) !important;
  background: rgba(22, 34, 58, 0.6) !important;
}

.fr-inp::placeholder,
.fr-ta::placeholder {
  color: rgba(234, 226, 215, 0.3) !important;
}

.fr-lbl {
  font-size: 11px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  color: rgba(189, 147, 99, 0.75) !important;
  margin-bottom: 8px !important;
  display: block !important;
}

/* Chips de sélection */
.wz-chip {
  border-radius: 50px !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  border: 1px solid rgba(189, 147, 99, 0.18) !important;
  background: rgba(189, 147, 99, 0.04) !important;
  color: rgba(234, 226, 215, 0.65) !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  font-family: 'Barlow', sans-serif !important;
}

.wz-chip:hover,
.wz-chip.active {
  background: rgba(189, 147, 99, 0.14) !important;
  border-color: rgba(189, 147, 99, 0.5) !important;
  color: #d4aa7a !important;
}

/* Wizard : progression */
.wz-step span {
  border-radius: 50% !important;
}

/* ══════════════════════════════════════════════════════════════
   9. FAQ — Cartes épurées
   ══════════════════════════════════════════════════════════════ */
.faq-section {
  padding: 130px 80px !important;
}

.faq-hd {
  margin-bottom: 56px !important;
}

.faq-item {
  border-radius: 12px !important;
  background: #131d30 !important;
  border: 1px solid rgba(189, 147, 99, 0.1) !important;
  margin-bottom: 8px !important;
  overflow: hidden !important;
  transition: border-color 0.3s ease, background 0.3s ease !important;
}

.faq-item:hover {
  border-color: rgba(189, 147, 99, 0.22) !important;
  background: #1a2840 !important;
}

.faq-q {
  padding: 22px 28px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  letter-spacing: 0.2px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  color: var(--blanc) !important;
  cursor: pointer !important;
  text-align: left !important;
}

.faq-icon {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(189, 147, 99, 0.3) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  color: var(--or) !important;
  flex-shrink: 0 !important;
  transition: background 0.3s ease, transform 0.35s var(--ease-premium) !important;
}

.faq-q[aria-expanded="true"] .faq-icon {
  background: rgba(189, 147, 99, 0.15) !important;
  transform: rotate(45deg) !important;
}

.faq-a {
  padding: 0 28px 22px !important;
  font-size: 14px !important;
  line-height: 1.82 !important;
  color: rgba(234, 226, 215, 0.72) !important;
}

/* ══════════════════════════════════════════════════════════════
   10. ZONES D'INTERVENTION — Plus aérée
   ══════════════════════════════════════════════════════════════ */
.zones-section {
  padding: 130px 80px !important;
}

/* ══════════════════════════════════════════════════════════════
   11. STATS BAR — Raffinée
   ══════════════════════════════════════════════════════════════ */
.stats-inner {
  border-color: rgba(189, 147, 99, 0.18) !important;
  padding: 32px 80px !important;
}

.st-num {
  font-size: 50px !important;
}

.st-lbl {
  font-size: 11px !important;
  letter-spacing: 3.5px !important;
  opacity: 0.6 !important;
}

.st-div {
  background: rgba(234, 226, 215, 0.15) !important;
}

/* ══════════════════════════════════════════════════════════════
   12. BOUTONS — Raffinés, sans le clip-path agressif
   ══════════════════════════════════════════════════════════════ */
.btn-p {
  clip-path: none !important;
  border-radius: 8px !important;
  padding: 16px 42px !important;
  background: linear-gradient(135deg, #bd9363, #d4aa7a) !important;
  color: #0d1525 !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  font-size: 12.5px !important;
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium), filter 0.35s ease !important;
  box-shadow: 0 4px 20px rgba(189, 147, 99, 0.22) !important;
}

.btn-p:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 40px rgba(189, 147, 99, 0.38) !important;
  filter: brightness(1.07) !important;
  background-position: unset !important;
}

/* Bouton secondaire */
.btn-s .arr {
  border-radius: 50% !important;
  transition: all 0.35s var(--ease-premium) !important;
}

/* ══════════════════════════════════════════════════════════════
   13. SCROLL REVEAL — Animations fluides
   ══════════════════════════════════════════════════════════════ */
.rv,
.rv-l,
.rv-r {
  opacity: 0;
  will-change: opacity, transform;
  transition:
    opacity 0.9s var(--ease-premium),
    transform 0.9s var(--ease-premium) !important;
  filter: none !important;
}

.rv   { transform: translateY(40px) !important; }
.rv-l { transform: translateX(-40px) !important; }
.rv-r { transform: translateX(40px) !important; }

.rv.on,
.rv-l.on,
.rv-r.on {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* Stagger delays */
.rv-d1 { transition-delay: 0.08s !important; }
.rv-d2 { transition-delay: 0.16s !important; }
.rv-d3 { transition-delay: 0.24s !important; }
.rv-d4 { transition-delay: 0.32s !important; }
.rv-d5 { transition-delay: 0.40s !important; }
.rv-d6 { transition-delay: 0.48s !important; }

/* ══════════════════════════════════════════════════════════════
   14. FOOTER — Plus propre
   ══════════════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid rgba(189, 147, 99, 0.1) !important;
  padding-top: 60px !important;
}

/* ══════════════════════════════════════════════════════════════
   15. SCROLLBAR — Plus fine et élégante
   ══════════════════════════════════════════════════════════════ */
::-webkit-scrollbar {
  width: 5px !important;
}
::-webkit-scrollbar-thumb {
  border-radius: 3px !important;
  background: linear-gradient(to bottom, rgba(189,147,99,0.5), rgba(212,170,122,0.5)) !important;
}

/* ══════════════════════════════════════════════════════════════
   16. BADGE PHOTO À PROPOS
   ══════════════════════════════════════════════════════════════ */
.ab-badge {
  border-radius: 14px !important;
  backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(189, 147, 99, 0.2) !important;
}

.ab-photo-frame {
  border-radius: 18px !important;
  overflow: hidden !important;
}

.ab-img {
  border-radius: 18px !important;
}

/* ══════════════════════════════════════════════════════════════
   17. HERO — Légèrement retravaillé
   ══════════════════════════════════════════════════════════════ */
.hero-c {
  padding: 0 80px !important;
}

.hero-btns {
  gap: 28px !important;
}

/* ══════════════════════════════════════════════════════════════
   18. MOBILE — Adaptations
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  nav {
    padding: 16px 28px !important;
  }
  nav.sc {
    padding: 12px 28px !important;
  }
  section {
    padding: 88px 28px !important;
  }
  .avap, .about, .testi, .faq-section, .zones-section, .contact {
    padding: 88px 28px !important;
  }
  .svc-grid {
    gap: 10px !important;
  }
  .svc-card {
    padding: 36px 28px !important;
  }
  .stats-inner {
    padding: 28px 20px !important;
  }
  .hero-c {
    padding: 0 28px !important;
  }
  .rl-grid {
    gap: 8px !important;
  }
}

@media (max-width: 600px) {
  section {
    padding: 72px 20px !important;
  }
  .svc-card {
    padding: 32px 24px !important;
  }
  .btn-p {
    padding: 15px 32px !important;
    font-size: 12px !important;
  }
  .faq-q {
    padding: 18px 20px !important;
    font-size: 14px !important;
  }
  .faq-a {
    padding: 0 20px 18px !important;
  }
  .ct-item {
    padding: 14px 16px !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   MENU MOBILE — design en accord avec le site
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* Menu plein écran centré */
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    background: #0d1525 !important;
    background-image:
      linear-gradient(rgba(189,147,99,.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(189,147,99,.025) 1px, transparent 1px) !important;
    background-size: 52px 52px !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    transform: translateY(100%) !important;
    transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .25s ease !important;
    box-shadow: none !important;
    border-left: none !important;
  }

  .nav-links.open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: all !important;
  }

  /* Barre or à gauche (bord visible du panneau) */
  .nav-links::before {
    content: '' !important;
    display: block !important;
    width: 100% !important;
    height: 3px !important;
    flex-shrink: 0 !important;
    background: linear-gradient(90deg, transparent, #bd9363 30%, #d4aa7a 60%, transparent) !important;
  }

  /* Header logo + close */
  .mn-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 20px 24px !important;
    border-bottom: 1px solid rgba(189,147,99,.12) !important;
    flex-shrink: 0 !important;
  }

  .mn-logo {
    height: 36px !important;
    width: auto !important;
  }

  .mn-header-right {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }

  /* Badge Google dans le menu mobile */
  .mn-google-badge {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    text-decoration: none !important;
    background: rgba(189,147,99,.08) !important;
    border: 1px solid rgba(189,147,99,.2) !important;
    border-radius: 20px !important;
    padding: 5px 10px !important;
  }

  .mn-stars {
    color: #FBBC05 !important;
    font-size: 11px !important;
    letter-spacing: 1px !important;
  }

  .mn-score {
    font-family: 'Raleway', sans-serif !important;
    font-size: 14px !important;
    color: #eae2d7 !important;
    letter-spacing: 1px !important;
  }

  /* Bouton fermer */
  .mn-close {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(189,147,99,.3) !important;
    background: rgba(189,147,99,.07) !important;
    color: rgba(234,226,215,.7) !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: background .2s, color .2s !important;
  }
  .mn-close:hover {
    background: rgba(189,147,99,.18) !important;
    color: #eae2d7 !important;
  }

  /* Liens nav mobile */
  .nav-links > li:not(:first-child) {
    border-bottom: 1px solid rgba(189,147,99,.07) !important;
  }

  .nav-links a,
  .nav-links > li > button:not(.mn-close):not(.nav-tel-btn) {
    font-family: 'Raleway', sans-serif !important;
    font-size: 26px !important;
    letter-spacing: 4px !important;
    color: rgba(234,226,215,.85) !important;
    padding: 18px 28px !important;
    text-align: left !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    transition: color .2s, background .2s, padding-left .2s !important;
  }

  .nav-links a:hover,
  .nav-links > li > button:not(.mn-close):not(.nav-tel-btn):hover {
    color: #bd9363 !important;
    background: rgba(189,147,99,.05) !important;
    padding-left: 36px !important;
  }

  /* Chevron Services */
  .nav-chevron {
    stroke: rgba(189,147,99,.6) !important;
  }

  /* Bouton téléphone dans menu mobile */
  .nav-links .nav-tel-btn {
    width: calc(100% - 48px) !important;
    height: auto !important;
    border-radius: 10px !important;
    border: 1px solid rgba(189,147,99,.35) !important;
    background: linear-gradient(135deg, rgba(189,147,99,.12), rgba(189,147,99,.05)) !important;
    margin: 12px 24px !important;
    padding: 14px 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 12px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #bd9363 !important;
    font-weight: 600 !important;
    animation: none !important;
    box-shadow: none !important;
  }
  .nav-links .nav-tel-btn::before,
  .nav-links .nav-tel-btn::after { display: none !important; }
  .nav-links .nav-tel-btn .nav-tel-ring { display: none !important; }
  .nav-links .nav-tel-btn svg {
    stroke: #bd9363 !important;
    animation: none !important;
  }
  .nav-links .nav-tel-btn::after {
    content: 'Appeler maintenant' !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 12px !important;
    letter-spacing: 2px !important;
  }

  /* CTA Devis dans menu mobile */
  .nav-links .nav-cta {
    display: block !important;
    margin: 8px 24px 24px !important;
    padding: 16px !important;
    background: linear-gradient(135deg, #bd9363, #d4aa7a) !important;
    color: #0d1525 !important;
    text-align: center !important;
    border-radius: 10px !important;
    font-family: 'Barlow', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border: none !important;
    clip-path: none !important;
    width: calc(100% - 48px) !important;
    box-shadow: 0 4px 20px rgba(189,147,99,.3) !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   PHONE MODAL — carte de visite moderne & pro
   ══════════════════════════════════════════════════════════════ */

/* Reset des styles originaux qu'on override */
#phone-box {
  position: relative !important;
  z-index: 1 !important;
  background: linear-gradient(160deg, #131d30 0%, #0d1525 55%, #0f1a2e 100%) !important;
  border: 1px solid rgba(189, 147, 99, 0.18) !important;
  border-radius: 20px !important;
  padding: 0 !important;
  min-width: 440px !important;
  max-width: 480px !important;
  width: 90vw !important;
  overflow: hidden !important;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04) inset !important;
  text-align: left !important;
  transform: scale(.88) translateY(16px) !important;
  opacity: 0 !important;
  transition: transform .45s cubic-bezier(.34,1.4,.64,1), opacity .35s ease !important;
}

#phone-overlay.show #phone-box {
  transform: scale(1) translateY(0) !important;
  opacity: 1 !important;
}

/* Barre dorée en haut */
#phone-box::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent, #bd9363 30%, #d4aa7a 60%, transparent) !important;
  border-radius: 20px 20px 0 0 !important;
  width: 100% !important;
}
#phone-box::after { display: none !important; }
.ph-corner-tr, .ph-corner-bl { display: none !important; }

/* Bouton fermer */
.ph-close {
  position: absolute !important;
  top: 14px !important; right: 14px !important;
  width: 30px !important; height: 30px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(189, 147, 99, 0.25) !important;
  background: rgba(189, 147, 99, 0.07) !important;
  color: rgba(234, 226, 215, 0.6) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  font-size: 0 !important;
  transition: background .2s, border-color .2s, color .2s !important;
  z-index: 2 !important;
}
.ph-close:hover {
  background: rgba(189, 147, 99, 0.18) !important;
  border-color: rgba(189, 147, 99, 0.55) !important;
  color: #eae2d7 !important;
}

/* ── En-tête carte ── */
.ph-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 28px 28px 20px !important;
}

.ph-brand {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.ph-brand-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important; height: 42px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, rgba(189,147,99,.2), rgba(189,147,99,.08)) !important;
  border: 1px solid rgba(189, 147, 99, 0.3) !important;
  flex-shrink: 0 !important;
}
.ph-brand-icon svg { stroke: #bd9363 !important; }

.ph-brand-text {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
}

.ph-brand-name {
  font-family: 'Raleway', sans-serif !important;
  font-size: 20px !important;
  letter-spacing: 3px !important;
  color: #eae2d7 !important;
  line-height: 1 !important;
}

.ph-brand-job {
  font-size: 10px !important;
  letter-spacing: 1.5px !important;
  color: rgba(189, 147, 99, 0.75) !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
}

/* Badge disponible */
.ph-status {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 10px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: rgba(52, 199, 89, 0.9) !important;
  background: rgba(52, 199, 89, 0.1) !important;
  border: 1px solid rgba(52, 199, 89, 0.25) !important;
  border-radius: 20px !important;
  padding: 5px 10px !important;
  font-weight: 500 !important;
}

.ph-status-dot {
  width: 6px !important; height: 6px !important;
  border-radius: 50% !important;
  background: #34c759 !important;
  box-shadow: 0 0 6px rgba(52,199,89,0.7) !important;
  animation: status-blink 2s ease-in-out infinite !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
}

@keyframes status-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* Séparateur */
.ph-sep {
  height: 1px !important;
  margin: 0 28px !important;
  background: linear-gradient(90deg, rgba(189,147,99,.3) 0%, rgba(189,147,99,.08) 100%) !important;
}

/* ── Bloc numéro ── */
.ph-number-block {
  padding: 24px 28px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.ph-number-label {
  font-size: 10px !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  color: rgba(189, 147, 99, 0.7) !important;
  font-family: 'Barlow', sans-serif !important;
}

/* Numéro principal — reset + override */
.ph-num {
  font-family: 'Raleway', sans-serif !important;
  font-size: 48px !important;
  letter-spacing: 5px !important;
  line-height: 1 !important;
  background: linear-gradient(90deg, #bd9363, #d4aa7a, #bd9363) !important;
  background-size: 200% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: shimmer 3s linear infinite !important;
  opacity: 0 !important;
  transition: opacity .4s ease .1s !important;
}
#phone-overlay.show .ph-num { opacity: 1 !important; }

/* Heures */
.ph-hours-row {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: rgba(234, 226, 215, 0.5) !important;
}
.ph-hours-row svg { stroke: rgba(189,147,99,0.6) !important; flex-shrink: 0 !important; }

/* Override anciens styles */
.ph-icon, .ph-label, .ph-line, .ph-sub { display: none !important; }

/* ── Boutons d'action ── */
.ph-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding: 4px 28px 28px !important;
}

.ph-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 14px 20px !important;
  border-radius: 12px !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  clip-path: none !important;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease !important;
  opacity: 0 !important;
  transform: translateY(8px) !important;
}

#phone-overlay.show .ph-btn {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity .35s ease .3s, transform .35s ease .3s,
              box-shadow .2s ease 0s, filter .2s ease 0s !important;
}

#phone-overlay.show .ph-btn.ph-btn-wa {
  transition-delay: .4s, .4s, 0s, 0s !important;
}

/* Bouton appeler — doré */
.ph-btn:not(.ph-btn-wa) {
  background: linear-gradient(135deg, #bd9363, #d4aa7a) !important;
  color: #0d1525 !important;
  box-shadow: 0 4px 20px rgba(189,147,99,.3) !important;
}
.ph-btn:not(.ph-btn-wa):hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 32px rgba(189,147,99,.5) !important;
  filter: brightness(1.05) !important;
}

/* Bouton WhatsApp — vert sobre, texte blanc */
.ph-btn-wa {
  background: #25d366 !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 18px rgba(37,211,102,.25) !important;
}
.ph-btn-wa svg {
  fill: #ffffff !important;
}
.ph-btn-wa:hover {
  transform: translateY(-2px) !important;
  background: #1fba58 !important;
  box-shadow: 0 8px 28px rgba(37,211,102,.4) !important;
}

/* ══════════════════════════════════════════════════════════════
   NAV — barre réduite, liens centrés, CTA à droite
   ══════════════════════════════════════════════════════════════ */

/* Logo plus compact */
.logo-img-nav {
  height: 48px !important;
  width: auto !important;
}

/* Liens centrés — desktop uniquement */
@media (min-width: 901px) {
  .nav-links {
    flex: 1 !important;
    justify-content: center !important;
    gap: 28px !important;
  }
}

/* Cacher nav-right-group sur mobile */
@media (max-width: 900px) {
  #navbar .nav-right-group,
  nav .nav-right-group,
  .nav-right-group {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    overflow: hidden !important;
  }
}

/* Burger à droite sur mobile */
@media (max-width: 900px) {
  #navbar {
    padding: 10px 20px !important;
  }
  #burger {
    display: flex !important;
    margin-left: auto !important;
    order: 3 !important;
  }
  .logo-wrap {
    order: 1 !important;
  }
}

/* Logo wrap fixe à gauche, pas d'étirement */
.logo-wrap {
  flex-shrink: 0 !important;
}

/* CTA Devis Gratuit à droite — style affiné */
nav > .nav-cta {
  flex-shrink: 0 !important;
  padding: 9px 22px !important;
  font-size: 10.5px !important;
  letter-spacing: 1.5px !important;
  white-space: nowrap !important;
}

/* ── Groupe droite : téléphone + CTA ── */
.nav-right-group {
  display: flex !important;
  align-items: center !important;
  gap: 32px !important;
  flex-shrink: 0 !important;
}

/* ── Bouton téléphone animé ── */
.nav-tel-btn {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  border: none !important;
  background: linear-gradient(135deg, #bd9363, #d4aa7a) !important;
  box-shadow: 0 0 0 0 rgba(189, 147, 99, 0.7) !important;
  animation: tel-pulse 2.2s ease-in-out infinite !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  padding: 0 !important;
  cursor: pointer !important;
}

.nav-tel-btn:hover {
  transform: scale(1.12) !important;
  animation: none !important;
  box-shadow: 0 0 0 8px rgba(189, 147, 99, 0.15), 0 4px 20px rgba(189, 147, 99, 0.5) !important;
}

.nav-tel-btn svg {
  stroke: #0d1525 !important;
  position: relative !important;
  z-index: 2 !important;
  animation: tel-shake 2.2s ease-in-out infinite !important;
}

.nav-tel-btn:hover svg {
  animation: none !important;
}

/* Anneaux de propagation */
.nav-tel-ring {
  position: absolute !important;
  inset: 0 !important;
  border-radius: 50% !important;
  border: 2px solid rgba(189, 147, 99, 0.6) !important;
  animation: tel-ring 2.2s ease-out infinite !important;
}

.nav-tel-ring2 {
  animation-delay: 0.7s !important;
}

/* ── Keyframes ── */
@keyframes tel-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(189, 147, 99, 0.6); }
  50%       { box-shadow: 0 0 0 10px rgba(189, 147, 99, 0); }
}

@keyframes tel-ring {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

@keyframes tel-shake {
  0%, 90%, 100% { transform: rotate(0deg); }
  92%           { transform: rotate(-15deg); }
  94%           { transform: rotate(15deg); }
  96%           { transform: rotate(-10deg); }
  98%           { transform: rotate(8deg); }
}

/* ══════════════════════════════════════════════════════════════
   BADGE GOOGLE FIXE — côté gauche, toujours visible
   ══════════════════════════════════════════════════════════════ */
.google-badge-fixed {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-4px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #0d1525;
  border: 1px solid rgba(189, 147, 99, 0.35);
  border-left: none;
  border-radius: 0 12px 12px 0;
  padding: 16px 14px 14px 16px;
  text-decoration: none;
  box-shadow: 4px 0 32px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(189, 147, 99, 0.12);
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(.22,.68,0,1.2), box-shadow 0.25s ease, border-color 0.25s ease;
  min-width: 88px;
}

.google-badge-fixed:hover {
  transform: translateY(-50%) translateX(0px);
  box-shadow: 6px 0 40px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(189, 147, 99, 0.2), 0 0 24px rgba(189, 147, 99, 0.1);
  border-color: rgba(189, 147, 99, 0.65);
}

/* Partie haute : étoiles + score */
.gbf-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.gbf-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  filter: drop-shadow(0 0 4px rgba(251, 188, 5, 0.5));
}

.gbf-score {
  font-family: 'Raleway', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #eae2d7;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* Séparateur doré */
.gbf-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #bd9363, transparent);
}

/* Partie basse : logo Google + texte */
.gbf-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.gbf-glogo {
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

.gbf-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.gbf-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #eae2d7;
  line-height: 1;
}

.gbf-count {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(212, 170, 122, 0.85);
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

/* Mobile : badge plus petit, repositionné en bas */
@media (max-width: 768px) {
  .google-badge-fixed {
    top: auto;
    bottom: 80px;
    transform: translateX(-4px);
    padding: 12px 11px 11px 13px;
    min-width: 76px;
    border-radius: 0 10px 10px 0;
  }
  .google-badge-fixed:hover {
    transform: translateX(0px);
  }
  .gbf-score {
    font-size: 18px;
  }
  .gbf-stars svg {
    width: 13px !important;
    height: 13px !important;
  }
  .gbf-glogo {
    width: 18px !important;
    height: 18px !important;
  }
  .gbf-count {
    font-size: 8px;
  }
}

