/* ════════════════════════════════════════════════════════════
   ANTO ACA AUTOMOBILE – style.css  v3.0 Premium
   ════════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette premium */
  --blue-night:   #0B1F3A;
  --blue-night2:  #071428;
  --blue-night3:  #050e1e;
  --blue-azure:   #1a6fd4;       /* bleu moins saturé, plus luxe */
  --blue-azure2:  #1459ae;
  --gold:         #C9A96A;
  --gold2:        #b8944f;
  --gold-light:   rgba(201,169,106,.18);
  --anthracite:   #1A1A1A;
  --white:        #FFFFFF;
  --off-white:    #F5F5F5;
  --light-gray:   #EBEBEB;
  --text-dark:    #1A1A1A;
  --text-muted:   #64748b;
  --text-light:   rgba(255,255,255,.6);

  /* Géométrie */
  --radius:       8px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --max-w:        1240px;

  /* Ombres */
  --shadow-sm:    0 2px 12px rgba(11,31,58,.10);
  --shadow:       0 4px 28px rgba(11,31,58,.14);
  --shadow-lg:    0 12px 48px rgba(11,31,58,.22);
  --shadow-gold:  0 4px 24px rgba(201,169,106,.28);
  --glow-blue:    0 0 28px rgba(26,111,212,.35);
  --glow-gold:    0 0 24px rgba(201,169,106,.32);

  /* Transitions */
  --ease:         cubic-bezier(.4,0,.2,1);
  --t-fast:       .22s var(--ease);
  --t-med:        .36s var(--ease);
  --t-slow:       .55s var(--ease);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}


/* ════════════════════════════════════════════════════════════
   SECTIONS GÉNÉRIQUES
   ════════════════════════════════════════════════════════════ */
.section         { padding: 120px 0; }
.section-light   { background: var(--off-white); }
.section-dark    { background: var(--blue-night); }
.section-contact { background: var(--blue-night2); }

/* ── En-tête de section ── */
.section-header { text-align: center; margin-bottom: 72px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-light);
  border: 1px solid rgba(201,169,106,.22);
  padding: 5px 16px;
  border-radius: 40px;
  margin-bottom: 18px;
}
.section-tag--light {
  color: var(--gold);
  background: rgba(201,169,106,.15);
  border-color: rgba(201,169,106,.2);
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--blue-night);
  line-height: 1.18;
  margin-bottom: 18px;
}
.section-title--light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-sub--light { color: rgba(255,255,255,.58); }

/* Ligne décorative or sous le titre */
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px auto 0;
}
.about-title::after { margin-left: 0; }


/* ════════════════════════════════════════════════════════════
   BOUTONS
   ════════════════════════════════════════════════════════════ */

/* ── Btn primaire (plein bleu) ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--blue-azure);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: transform var(--t-fast), box-shadow var(--t-fast), filter var(--t-fast);
  box-shadow: 0 4px 18px rgba(26,111,212,.32);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.2) 50%, transparent 70%);
  transform: translateX(-120%) skewX(-15deg);
  transition: transform .6s var(--ease);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,111,212,.44), var(--glow-blue);
  filter: brightness(1.08);
}
.btn-primary:hover::before { transform: translateX(120%) skewX(-15deg); }

/* ── Btn ghost hero — accent doré ── */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(201,169,106,.65);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition:
    color var(--t-med),
    border-color var(--t-med),
    background var(--t-med),
    box-shadow var(--t-med),
    transform var(--t-fast);
}
.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(201,169,106,.22) 50%, transparent 70%);
  transform: translateX(-120%) skewX(-15deg);
  transition: transform .58s var(--ease);
}
.btn-ghost:hover {
  background: rgba(201,169,106,.1);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--glow-gold), 0 4px 20px rgba(0,0,0,.3);
  transform: translateY(-2px);
}
.btn-ghost:hover::before { transform: translateX(120%) skewX(-15deg); }

/* ── Btn outline hero — secondaire ── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.25);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: var(--radius);
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.btn-outline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06);
  transform: translateY(-2px);
}

/* ── Btn appeler — conversion maximale ── */
.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, var(--blue-azure) 0%, var(--blue-azure2) 100%);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 18px 24px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-fast), filter var(--t-fast);
  box-shadow: 0 4px 20px rgba(26,111,212,.38), 0 1px 0 rgba(255,255,255,.16) inset;
}
.btn-call::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.2) 50%, transparent 70%);
  transform: translateX(-120%) skewX(-15deg);
  transition: transform .55s var(--ease);
}
.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26,111,212,.5), var(--glow-blue);
  filter: brightness(1.06);
}
.btn-call:hover::before { transform: translateX(120%) skewX(-15deg); }


/* ════════════════════════════════════════════════════════════
   ANIMATIONS REVEAL
   ════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity .7s var(--ease),
    transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Variante : slide depuis la gauche */
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
/* Variante : slide depuis la droite */
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }


/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  will-change: background, backdrop-filter;
  transition:
    background .42s var(--ease),
    box-shadow .42s var(--ease);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 116px;
  /* isolation: isolate crée un contexte de composition pour le mix-blend-mode du logo */
  isolation: isolate;
}

/* État initial — transparent sur le hero */
#header:not(.scrolled) { background: transparent; }

/* État scrollé — glassmorphism premium */
#header.scrolled {
  background: rgba(5,14,30,.86);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.07) inset,
    0 6px 40px rgba(0,0,0,.5);
}

/* ── Logo — intégration visuelle premium ── */
.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo {
  height: 110px;
  width: auto;
  object-fit: contain;
  opacity: .97;
  filter:
    brightness(1.08)
    drop-shadow(0 2px 14px rgba(0,0,0,.55))
    drop-shadow(0 0 20px rgba(255,255,255,.06));
  transition:
    height var(--t-med),
    filter var(--t-med),
    opacity var(--t-med);
}
#header.scrolled .logo {
  height: 88px;
  filter:
    brightness(1.05)
    drop-shadow(0 1px 8px rgba(0,0,0,.45));
}

/* ── Navigation desktop ── */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-desktop a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  padding: 9px 14px;
  border-radius: 6px;
  position: relative;
  transition: color var(--t-fast), background var(--t-fast);
}
/* Soulignement animé doré */
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  border-radius: 2px;
  transition: transform .32s var(--ease);
}
.nav-desktop a:hover {
  color: var(--white);
  background: rgba(255,255,255,.06);
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after { transform: scaleX(1); }
.nav-desktop a.active { color: var(--white); }

/* Lien "Contact" → bouton CTA doré */
.nav-desktop a:last-child {
  background: transparent;
  border: 1px solid rgba(201,169,106,.5);
  color: var(--gold);
  padding: 9px 20px;
  border-radius: var(--radius);
  letter-spacing: .1em;
  transition:
    background var(--t-fast),
    color var(--t-fast),
    box-shadow var(--t-fast),
    border-color var(--t-fast);
}
.nav-desktop a:last-child::after { display: none; }
.nav-desktop a:last-child:hover {
  background: var(--gold);
  color: var(--blue-night);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

/* ── Burger mobile ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 17px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
}
.burger span {
  display: block;
  width: 100%; height: 1.5px;
  background: rgba(255,255,255,.88);
  border-radius: 2px;
  transition: all .28s ease;
}
.burger span:last-child { width: 70%; margin-left: auto; }
.burger.open span:nth-child(1) { transform: translateY(7.75px) rotate(45deg); width: 100%; }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7.75px) rotate(-45deg); width: 100%; }

/* ── Navigation mobile ── */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(5,14,30,.98);
  backdrop-filter: blur(24px);
  padding: 12px 32px 36px;
  border-top: 1px solid rgba(201,169,106,.12);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .3s ease, transform .3s ease;
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.nav-mobile a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .84rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .24s ease, padding-left .24s ease;
}
.nav-mobile a:hover { color: var(--white); padding-left: 8px; }
.nav-mobile a:last-child {
  border-bottom: none;
  color: var(--gold);
  margin-top: 8px;
}


/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Image de fond avec léger zoom vivant */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('Hero.png');
  background-size: cover;
  background-position: center 38%;
  transform: scale(1.06);
  animation: heroZoom 16s ease-in-out infinite alternate;
  filter: brightness(.88) contrast(1.08) saturate(1.1);
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.13); }
}

/* Overlay principal : gradient directionnel profond */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Vignette radiale sur les bords */
    radial-gradient(ellipse 130% 100% at 50% 50%,
      transparent 30%,
      rgba(4,10,22,.52) 100%
    ),
    /* Gradient vertical principal */
    linear-gradient(
      175deg,
      rgba(5,14,30,.48) 0%,
      rgba(5,14,30,.65) 35%,
      rgba(4,10,22,.86) 68%,
      rgba(3,8,18,.96) 100%
    );
}

/* Transition fondue — hero → section suivante */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(245,245,245,.15) 45%,
    rgba(245,245,245,.7) 72%,
    var(--off-white) 100%
  );
  pointer-events: none;
  z-index: 3;
}

/* Contenu centré — élargi pour tenir le titre sur 2 lignes */
.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 40px;
  max-width: 1080px;
}

/* Eyebrow doré avec lignes latérales */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  flex: 0 0 52px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,106,.55));
}
.hero-eyebrow::after {
  background: linear-gradient(to left, transparent, rgba(201,169,106,.55));
}

/*
  Titre principal — 2 lignes max :
  clamp(1.9rem, 3.8vw, 3.4rem) permet à "SÉLECTIONNÉS AVEC SOIN"
  de tenir sur une seule ligne dans le conteneur élargi à 1080px
*/
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .045em;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 28px;
  text-shadow: 0 2px 28px rgba(0,0,0,.35);
}

/* Sous-titre — plus visible, mieux espacé */
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin: 0 auto 52px;
  line-height: 1.72;
  letter-spacing: .01em;
}

/* CTA */
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Indicateur de scroll */
.scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 22px; height: 38px;
  border: 1.5px solid rgba(201,169,106,.4);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-dot {
  width: 3px; height: 7px;
  background: var(--gold);
  border-radius: 2px;
  opacity: .7;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: .7; }
  70%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}


/* ════════════════════════════════════════════════════════════
   BARRE DE CONFIANCE
   ════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid rgba(11,31,58,.07);
  position: relative;
  z-index: 2;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-night);
}
.trust-item i {
  color: var(--gold);
  font-size: 1rem;
}

.trust-sep {
  width: 1px; height: 24px;
  background: rgba(11,31,58,.12);
}


/* ════════════════════════════════════════════════════════════
   ANNONCES FACEBOOK
   ════════════════════════════════════════════════════════════ */
.fb-feed-wrapper {
  max-width: 780px;
  margin: 0 auto;
}

.fb-feed-placeholder {
  border: 1.5px dashed rgba(11,31,58,.15);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-med);
}
.fb-feed-placeholder:hover { box-shadow: var(--shadow); }

.fb-placeholder-icon {
  font-size: 2.8rem;
  color: #1877F2;
  margin-bottom: 20px;
}

.fb-placeholder-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue-night);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.fb-placeholder-sub {
  color: var(--text-muted);
  font-size: .95rem;
  max-width: 420px;
  margin: 0 auto 32px;
  line-height: 1.65;
}


/* ════════════════════════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-top: 2px solid rgba(255,255,255,.09);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    background var(--t-med),
    transform var(--t-med),
    box-shadow var(--t-med),
    border-top-color var(--t-med);
}
/* Reflet subtil en haut */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card:hover {
  background: rgba(255,255,255,.07);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
  border-top-color: var(--gold);
}

.service-icon-wrap {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(201,169,106,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  border: 1px solid rgba(201,169,106,.22);
  transition:
    background var(--t-med),
    border-color var(--t-med),
    box-shadow var(--t-med);
}
.service-card:hover .service-icon-wrap {
  background: rgba(201,169,106,.18);
  border-color: rgba(201,169,106,.4);
  box-shadow: var(--glow-gold);
}

.service-icon {
  font-size: 1.65rem;
  color: var(--gold);
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--white);
  margin-bottom: 14px;
}

.service-card p {
  color: rgba(255,255,255,.55);
  font-size: .92rem;
  line-height: 1.7;
}


/* ════════════════════════════════════════════════════════════
   QUI SOMMES-NOUS
   ════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-tag { margin-bottom: 18px; }
.about-title {
  margin-bottom: 28px;
  text-align: left;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.78;
}
.about-text p strong {
  color: var(--blue-night);
  font-weight: 700;
}

.about-values {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 32px 0 40px;
}
.about-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-night);
}
.about-value i { color: var(--gold); }

/* Bloc image */
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(5,14,30,.55) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.about-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}
.about-img-wrapper:hover img { transform: scale(1.05); }

/* Badge flottant */
.about-badge {
  position: absolute;
  bottom: 28px; right: 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: var(--blue-night);
  border-radius: 14px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}
.badge-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  color: var(--blue-night);
}
.badge-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(7,20,40,.75);
  margin-top: 3px;
  display: block;
}


/* ════════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-top: 2px solid rgba(201,169,106,.3);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── Bloc téléphone centré — hiérarchie : icône / label / numéro / bouton ── */
.contact-phone-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding-bottom: 4px;
}

.contact-phone-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(201,169,106,.13);
  border: 1px solid rgba(201,169,106,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-phone-block .contact-label {
  margin-bottom: 0;
}

.contact-phone-block .contact-phone-link {
  font-size: 1.65rem;
  letter-spacing: .04em;
  line-height: 1;
}

.contact-phone-block .btn-call {
  margin-top: 6px;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-icon-wrap {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(201,169,106,.12);
  border: 1px solid rgba(201,169,106,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
  color: var(--gold);
  transition: background var(--t-fast), box-shadow var(--t-fast);
}
.contact-block:hover .contact-icon-wrap {
  background: rgba(201,169,106,.2);
  box-shadow: var(--glow-gold);
}

.contact-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 5px;
}

.contact-phone-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .02em;
  transition: color var(--t-fast);
}
.contact-phone-link:hover { color: var(--gold); }

.contact-link {
  color: var(--gold);
  font-weight: 600;
  font-size: .94rem;
  transition: opacity var(--t-fast);
}
.contact-link:hover { opacity: .75; }

.contact-text {
  color: rgba(255,255,255,.65);
  font-size: .93rem;
  line-height: 1.6;
}

.contact-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(201,169,106,.2), transparent);
}

/* Carte Google Maps */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 440px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
  border-top: 2px solid rgba(201,169,106,.2);
}


/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  background: var(--blue-night3);
  border-top: 1px solid rgba(201,169,106,.12);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 56px;
  padding: 72px 32px 56px;
}

/* Logo footer — fond sombre natif, rendu direct */
.footer-logo {
  height: 88px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.05) drop-shadow(0 1px 8px rgba(0,0,0,.35));
  opacity: .95;
}

.footer-tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.42);
  margin-bottom: 24px;
  max-width: 240px;
  line-height: 1.65;
}

/* Ligne décorative sous la tagline */
.footer-tagline::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 14px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--blue-night);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.footer-nav-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,169,106,.15);
}

.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav nav a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-nav nav a::before {
  content: '';
  width: 5px; height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--t-fast), width var(--t-fast);
}
.footer-nav nav a:hover { color: var(--white); padding-left: 4px; }
.footer-nav nav a:hover::before { opacity: 1; }

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
  line-height: 1.55;
}
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; font-size: .9rem; }
.footer-contact a { color: rgba(255,255,255,.5); transition: color var(--t-fast); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.28);
}
.footer-bottom a {
  color: rgba(255,255,255,.35);
  transition: color var(--t-fast);
}
.footer-bottom a:hover { color: var(--gold); }


/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid    { gap: 52px; }
  .container     { padding: 0 28px; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  /* Layout */
  .nav-desktop { display: none; }
  .burger      { display: flex; }
  .container   { padding: 0 20px; }

  /* Sections */
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }

  /* Hero */
  .hero-title    { font-size: clamp(1.55rem, 6.5vw, 2.4rem); line-height: 1.25; }
  .hero-subtitle { font-size: 1rem; color: rgba(255,255,255,.72); margin-bottom: 40px; }
  .hero::after   { height: 140px; }

  /* Trust bar */
  .trust-sep  { display: none; }
  .trust-item { padding: 6px 16px; font-size: .7rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card  { padding: 36px 28px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-title { text-align: center; }
  .about-title::after { margin: 14px auto 0; }
  .about-text .section-tag { display: block; text-align: center; }
  .about-values { justify-content: center; }
  .about-text .btn-primary { display: flex; justify-content: center; width: fit-content; }
  .about-img-wrapper img { height: 320px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrapper  { min-height: 320px; }
  .contact-card { padding: 36px 28px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding: 52px 20px 40px; }
  .footer-bottom-inner { justify-content: center; text-align: center; padding: 16px 20px; }
}

/* ── Petits mobiles ── */
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-ghost, .btn-outline { text-align: center; justify-content: center; }
  .fb-feed-placeholder  { padding: 48px 24px; }
  .contact-card { gap: 20px; }
  .header-inner { height: 76px; }
  .logo { height: 58px; }
}
