


/* ═══════════════════════════════════════════════════════════════
   AFRICA CONSORTIUM BTP — CSS GLOBAL FINAL
   Design world-class inspiré de Vinci, Bouygues, Eiffage
   Palette : Orange vif #F56E0F + Or #F0A93C + Noir profond #080808 + Blanc pur
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');


/* ══ FIX MOBILE — empêche le logo de pousser le hamburger hors écran ══ */
@media (max-width: 1024px) {
  .navbar .nav-inner {
    gap: 10px !important;
  }
  .navbar .nav-logo {
    flex-shrink: 1 !important;
    min-width: 0 !important;
    overflow: hidden;
  }
  .navbar .nav-logo .logo-text {
    min-width: 0;
    overflow: hidden;
  }
  .navbar .nav-logo .logo-text strong,
  .navbar .nav-logo .logo-text span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
  }
  .nav-right {
    flex-shrink: 0 !important;
  }
}

/* ══ VARIABLES ════════════════════════════════════════════════ */
:root {
  --orange:     #F56E0F;
  --orange-lt:  #FEF0E6;
  --orange-dk:  #C04E00;
  --orange-glow:rgba(245,110,15,0.25);
  --gold:       #F0A93C;
  --gold-lt:    #FDF1DE;
  --gold-dk:    #B87A16;
  --black:      #080808;
  --black-2:    #111111;
  --gray-900:   #1A1A1A;
  --gray-800:   #242424;
  --gray-700:   #3A3A3A;
  --gray-600:   #525252;
  --gray-500:   #6B6B6B;
  --gray-400:   #8A8A8A;
  --gray-300:   #C4C4C4;
  --gray-200:   #E0E0E0;
  --gray-100:   #F5F5F5;
  --white:      #FFFFFF;
  --cream:      #FDFAF7;
  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.14);
  --shadow-xl:  0 32px 80px rgba(0,0,0,0.2);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* ══ RESET ════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
button { cursor: pointer; font-family: 'Inter', sans-serif; }
input, select, textarea { font-family: 'Inter', sans-serif; }

/* ══ UTILITAIRES ══════════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-alt { background: var(--cream); }

/* Tag badge */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-lt);
  color: var(--orange-dk);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 40px;
  border: 1px solid rgba(245,110,15,0.2);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.section-sub {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 48px;
}

/* ══ LOGO SUR PLAQUE (visibilité garantie sur fond sombre/coloré) ═ */
/* À utiliser partout où le logo est posé sur un fond qui n'est pas
   déjà blanc/clair : <div class="logo-plate"><img ...></div> */
.logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  padding: 5px 9px;
  flex-shrink: 0;
}
.logo-plate img { display: block; }

/* ══ BOUTONS ══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(245,110,15,0.3);
}
.btn-primary:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,110,15,0.45);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 16px rgba(240,169,60,0.3);
}
.btn-gold:hover {
  background: var(--gold-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,169,60,0.4);
}

.btn-dark {
  background: var(--black);
  color: #fff;
}
.btn-dark:hover {
  background: var(--gray-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.btn-white {
  background: #fff;
  color: var(--orange);
  font-weight: 700;
}
.btn-white:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-border-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.45);
  transition: var(--transition);
  cursor: pointer;
}
.btn-border-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* ══ NAVBAR ═══════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.98);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  min-width: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-shrink: 1;
}

.logo-icon {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(245,110,15,0.35);
}

.logo-text {
  min-width: 0;
}
.logo-text strong {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
  display: block;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo-text span {
  font-size: 10px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  padding-bottom: 3px;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active { color: var(--orange); }

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  font-size: 13px;
  color: var(--gray-500);
}
.nav-phone strong { color: var(--black); font-weight: 600; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  z-index: 10;
  position: relative;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
  gap: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--orange);
  padding-left: 8px;
}

/* ══ MARQUEE — noir avec texte or ═══════════════════════════════ */
.marquee-section {
  background: var(--black);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  opacity: 0.95;
}

.marquee-sep {
  color: rgba(240,169,60,0.35);
  font-size: 16px;
}

/* ══ PAGE BANNER ══════════════════════════════════════════════ */
.page-banner {
  background: var(--cream);
  padding: 130px 0 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(245,110,15,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 {
  color: var(--black);
  margin-bottom: 12px;
  font-size: clamp(32px, 5vw, 52px);
}

.page-banner p {
  color: var(--gray-600);
  font-size: 16px;
  max-width: 480px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.breadcrumb a {
  font-size: 13px;
  color: var(--gray-500);
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span    { font-size: 13px; color: var(--gray-300); }
.breadcrumb .current { font-size: 13px; color: var(--orange); font-weight: 600; }

/* ══ SERVICES GRID ════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transition: var(--transition);
  transform-origin: bottom;
  border-radius: 0 0 0 0;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,110,15,0.15);
}

.service-card:hover::before { transform: scaleY(1); }

.service-num {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: rgba(245,110,15,0.07);
  line-height: 1;
  margin-bottom: 10px;
}

.service-icon {
  width: 52px; height: 52px;
  background: var(--orange-lt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--orange);
  transform: scale(1.05) rotate(-3deg);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--black);
}

.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  transition: gap 0.2s;
}

.service-card:hover .service-link { gap: 10px; }

/* ══ STATS SECTION — noir avec chiffres en or ═══════════════════ */
.stats-section {
  background: var(--black);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  background: var(--black);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255,255,255,0.03);
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* ══ PROCESS ══════════════════════════════════════════════════ */
.process-wrap {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}

.process-wrap::before {
  content: '';
  position: absolute;
  top: 36px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0, var(--orange) 8px,
    transparent 8px, transparent 18px
  );
}

.proc-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.proc-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--black);
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.proc-step:hover .proc-circle {
  background: var(--orange);
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(245,110,15,0.15);
}

.proc-step h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.proc-step p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ══ RÉALISATIONS ═════════════════════════════════════════════ */
.real-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.real-btn {
  padding: 8px 18px;
  border-radius: 40px;
  border: 1.5px solid var(--gray-200);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.real-btn:hover { border-color: var(--orange); color: var(--orange); }
.real-btn.active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(245,110,15,0.3);
}

.real-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.real-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.real-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.real-photo {
  width: 100%; height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.real-item:hover .real-photo { transform: scale(1.04); }
.real-item.featured .real-photo { min-height: 460px; }
.real-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.rp1 { background: linear-gradient(145deg,#C06020,#8B3A0A); }
.rp2 { background: linear-gradient(145deg,#A05020,#6B2A05); }
.rp3 { background: linear-gradient(145deg,#D07030,#9B4010); }
.rp4 { background: linear-gradient(145deg,#B06030,#7B3010); }
.rp5 { background: linear-gradient(145deg,#E08040,#B05020); }

.real-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 32px 20px 16px;
}
.real-overlay h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.real-overlay span { font-size: 12px; color: rgba(255,255,255,0.6); }

.real-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ══ TÉMOIGNAGES ══════════════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.testi-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,110,15,0.15);
}

.testi-quote-mark {
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 0.8;
  color: rgba(245,110,15,0.1);
  position: absolute;
  top: 18px; right: 22px;
  pointer-events: none;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testi-stars span { font-size: 16px; color: var(--orange); }

.testi-card p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.testi-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.av1 { background: linear-gradient(135deg,#8B3A0A,#C05010); }
.av2 { background: linear-gradient(135deg,#C05010,#E07020); }
.av3 { background: linear-gradient(135deg,#0A3A8B,#1060C0); }

.testi-name { font-size: 14px; font-weight: 600; color: var(--black); }
.testi-project { font-size: 12px; color: var(--gray-500); }
.testi-verified {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: #10b981;
}

/* ══ CTA BAND — noir avec accent orange ═════════════════════════ */
.cta-band {
  background: var(--black);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 100% 50%, rgba(245,110,15,0.14) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-size: clamp(26px, 4vw, 38px);
  color: #fff;
  margin-bottom: 8px;
}

.cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.7;
}

.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* ══ CONTACT ══════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
}

.contact-info { display: flex; flex-direction: column; gap: 14px; }

.ci-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.ci-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transition: var(--transition);
  transform-origin: bottom;
}

.ci-card:hover {
  border-color: rgba(245,110,15,0.2);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.ci-card:hover::before { transform: scaleY(1); }

.ci-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--orange-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}
.ci-card:hover .ci-icon { background: var(--orange); }

.ci-title { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.ci-val { font-size: 13px; color: var(--gray-700); line-height: 1.75; }
.ci-val a { color: var(--black); font-weight: 500; transition: color 0.2s; }
.ci-val a:hover { color: var(--orange); }

.map-box {
  border-radius: var(--radius-lg);
  height: 160px;
  background: var(--gray-100);
  border: 1px solid rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.map-box:hover { border-color: rgba(245,110,15,0.3); }
.map-box span  { font-size: 32px; }
.map-box p     { font-size: 12px; color: var(--gray-500); }

/* ══ FORMULAIRE ═══════════════════════════════════════════════ */
.contact-form {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-title { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.form-sub   { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-field { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-label span { color: var(--orange); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  border: 1.5px solid var(--gray-200);
  background: #fff;
  color: var(--black);
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,110,15,0.1);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.form-submit:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,110,15,0.4);
}

.form-note {
  font-size: 12px;
  color: var(--gray-500);
  text-align: center;
  margin-top: 12px;
}

/* ══ FOOTER — noir, titres en or, liens gris clair ══════════════ */
.footer {
  background: var(--black);
  padding: 80px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 2.3fr) 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-social { display: flex; gap: 10px; }

.soc-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.soc-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--orange);
  padding-left: 6px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.32);
}

.footer-certifs { display: flex; gap: 8px; flex-wrap: wrap; }

.certif-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  transition: all 0.2s ease;
}

.certif-badge:hover {
  border-color: rgba(240,169,60,0.4);
  color: rgba(255,255,255,0.6);
}

/* ══ WA FLOTTANT ══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-tooltip {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-btn-float {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  border: none;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
  animation: wa-bounce 3s ease-in-out infinite;
}

.wa-btn-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

@keyframes wa-bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ══ BACK TO TOP ══════════════════════════════════════════════ */
.back-top {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  cursor: pointer;
  z-index: 999;
}

.back-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-top:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
}

/* ══ ANIMATIONS SCROLL ════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Délais cascade */
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}

/* ══ LIGHTBOX ═════════════════════════════════════════════════ */
#lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

#lb-img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

#lb-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

#lb-close:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* ══ BLOG ═════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.blog-card {
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  background: #fff;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.blog-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}

.blog-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumb img { transform: scale(1.05); }

.bt1 { background: linear-gradient(145deg,#C06828,#7A2A00); }
.bt2 { background: linear-gradient(145deg,#0A3A8B,#081E50); }
.bt3 { background: linear-gradient(145deg,#3A8B0A,#1A5000); }

.blog-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.blog-body { padding: 22px; }
.blog-meta { font-size: 12px; color: var(--gray-400); margin-bottom: 10px; }

.blog-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.2s;
}

.blog-body h3:hover, .blog-body h3 a:hover { color: var(--orange); }

.blog-body p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.blog-card:hover .blog-link { gap: 10px; }

/* ══ NEWSLETTER ═══════════════════════════════════════════════ */
.newsletter-wrap {
  background: linear-gradient(135deg, #F56E0F 0%, #C04E00 100%);
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 16px 48px rgba(245,110,15,0.25);
}

.nl-content h2 { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.nl-content p  { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; }

.nl-form { display: flex; gap: 10px; }

.nl-input {
  flex: 1;
  padding: 13px 18px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.2);
  font-size: 14px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: var(--transition);
}

.nl-input::placeholder { color: rgba(255,255,255,0.55); }
.nl-input:focus { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }

.nl-btn {
  padding: 13px 22px;
  background: #fff;
  color: var(--orange);
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  font-family: 'Syne', sans-serif;
}
.nl-btn:hover {
  background: var(--black);
  color: #fff;
  transform: translateY(-2px);
}

/* ══ COMPARE TABLE ════════════════════════════════════════════ */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.compare-table th {
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 700;
  background: var(--black);
  color: #fff;
  text-align: left;
}

.compare-table th.highlight { background: var(--orange); }

.compare-table td {
  padding: 14px 24px;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  color: var(--gray-700);
}

.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(0,0,0,0.018); }
.compare-table td.highlight { background: rgba(245,110,15,0.04); font-weight: 600; color: var(--black); }

.check-yes   { color: #10b981; font-weight: 700; font-size: 16px; }
.check-no    { color: var(--gray-300); font-size: 16px; }
.check-maybe { color: #f59e0b; font-size: 13px; }

/* ══ ZONES ════════════════════════════════════════════════════ */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-top: 48px;
}

.zone-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.zone-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,110,15,0.25);
}

.zone-card.principal {
  border-color: var(--orange);
  background: var(--orange-lt);
}

.zone-icon { font-size: 36px; margin-bottom: 12px; }
.zone-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.zone-card p  { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

.zone-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 10px;
}

.zone-badge.secondary { background: var(--gray-900); }

/* ══ CALCULATEUR ══════════════════════════════════════════════ */
.calc-wrap {
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.calc-wrap::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(245,110,15,0.07);
  pointer-events: none;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.calc-title { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.calc-sub   { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 28px; line-height: 1.7; }
.calc-field { margin-bottom: 20px; }

.calc-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}

.calc-input,
.calc-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
}

.calc-input:focus,
.calc-select:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.1);
}

.calc-select option { background: #1a1a1a; color: #fff; }

.calc-result {
  background: rgba(245,110,15,0.1);
  border: 1px solid rgba(245,110,15,0.25);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.calc-result-label { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 8px; }

.calc-result-num {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.calc-result-unit    { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.calc-result-range   { font-size: 12px; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.calc-disclaimer     { font-size: 11px; color: rgba(255,255,255,0.25); margin-top: 14px; line-height: 1.6; }

.calc-features {
  list-style: none;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.calc-features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
}

/* ══ RESPONSIVE ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .nav-right .btn { display: none; }

  .section { padding: 72px 0; }

  .services-grid    { grid-template-columns: repeat(2,1fr); }
  .testi-grid       { grid-template-columns: 1fr 1fr; }
  .blog-grid        { grid-template-columns: 1fr 1fr; }
  .stats-grid       { grid-template-columns: repeat(2,1fr); }
  .process-wrap     { grid-template-columns: repeat(2,1fr); }
  .process-wrap::before { display: none; }
  .footer-grid      { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .contact-grid     { grid-template-columns: 1fr; }
  .newsletter-wrap  { grid-template-columns: 1fr; padding: 36px; }
  .calc-grid        { grid-template-columns: 1fr; }
  .zones-grid       { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .real-grid     { grid-template-columns: 1fr 1fr; }
  .real-item.featured { grid-column: span 2; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }

  .form-row  { grid-template-columns: 1fr; }
  .nl-form   { flex-direction: column; }

  .calc-wrap { padding: 28px; }
  .zones-grid { grid-template-columns: 1fr; }
  .newsletter-wrap { padding: 28px 24px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .logo-text strong { font-size: 12px; max-width: 130px; }
  .logo-text span { font-size: 8.5px; max-width: 130px; }
  .nav-logo img { height: 34px !important; }

  .real-grid { grid-template-columns: 1fr; }
  .real-item.featured { grid-column: span 1; }

  .footer-certifs { justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .wa-float { bottom: 16px; right: 16px; }
  .back-top { bottom: 16px; left: 16px; }
}

/* ══ SCROLLBAR CUSTOM ═════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange-dk); }

/* ══ SÉLECTION TEXTE ══════════════════════════════════════════ */
::selection {
  background: rgba(245,110,15,0.2);
  color: var(--black);
}

.wa-badge-pulse {
  position: absolute;
  top: -2px; right: -2px;
  width: 14px; height: 14px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: wa-badge-ping 1.8s ease-out 1;
}

@keyframes wa-badge-ping {
  0%   { transform: scale(0); opacity: 0; }
  20%  { transform: scale(1.3); opacity: 1; }
  40%  { transform: scale(1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* ══════════════════════════════════════════════════
   SIGNATURE BTP — animations thématiques chantier
   ══════════════════════════════════════════════════ */

/* 1. Barre de progression "mètre de chantier" */
.btp-loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  z-index: 10000;
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0px, var(--orange) 16px,
    var(--black) 16px, var(--black) 32px
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btp-loader.active { transform: scaleX(1); }

/* 2. Bande de sécurité chantier (séparateur de section) */
.btp-hazard-strip {
  height: 10px;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--orange) 0px, var(--orange) 20px,
    var(--black) 20px, var(--black) 40px
  );
}

/* 3. Effet "brique posée" — remplace/enrichit fade-up */
.brick-in {
  opacity: 0;
  transform: translateY(28px) rotate(-2deg);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brick-in.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* 4. Bouton "coup de marteau" */
.btn-hammer:active {
  animation: hammer-tap 0.25s ease;
}
@keyframes hammer-tap {
  0%   { transform: scale(1); }
  40%  { transform: scale(0.94) translateY(2px); }
  100% { transform: scale(1); }
}

.soc-btn-labeled {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}
.soc-btn-labeled:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.footer-social-fb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

/* ══ FOOTER — REDESIGN (structure) ══════════════════════════════ */
.footer-col {
  position: relative;
  padding-left: 28px;
}

.footer-col::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.footer-col h4 {
  margin-bottom: 18px;
}

.footer-col a {
  transition: color 0.2s ease, padding-left 0.2s ease;
}

/* Bloc marque (logo + description + réseaux) mieux structuré */
.footer-brand {
  padding-right: 24px;
}

.footer-brand > div:first-child {
  margin-bottom: 14px !important;
}

.footer-brand strong {
  white-space: nowrap;
}

.footer-social-fb {
  flex-wrap: nowrap;
  margin-top: 0;
  margin-bottom: 12px;
}

.soc-btn-labeled {
  padding: 8px 11px;
  font-size: 11.5px;
  white-space: nowrap;
  background: rgba(255,255,255,0.05);
  color: var(--gold);
}

.footer-brand p {
  margin-bottom: 20px !important;
}

.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 4px;
}

/* Bas de page : ligne de séparation nette + alignement propre */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px !important;
  margin-top: 8px;
}

.footer-bottom p {
  font-size: 12.5px;
  letter-spacing: 0.2px;
}

/* Responsive : on retire les séparateurs verticaux qui n'ont plus de sens en colonne */
@media (max-width: 1024px) {
  .footer-col {
    padding-left: 0;
  }
  .footer-col::before {
    display: none;
  }
}

/* ══ MENU MOBILE — activation + icône animée ══════════════════ */
.mobile-menu.active {
  display: flex !important;
}

.nav-hamburger span {
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

body.menu-open {
  overflow: hidden;
}

/* ══ NAVBAR RÉTRÉCIE AU SCROLL ══════════════════════════════ */
.navbar {
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

.navbar .nav-inner {
  transition: min-height 0.35s cubic-bezier(0.4,0,0.2,1);
}

.navbar.scrolled .nav-inner {
  min-height: 56px !important;
}

.navbar.scrolled .nav-logo img {
  height: 34px !important;
  transition: height 0.35s cubic-bezier(0.4,0,0.2,1);
}

.navbar.scrolled .logo-text strong {
  font-size: 13px;
}

.navbar.scrolled .logo-text span {
  font-size: 9.5px;
}

.nav-logo img {
  transition: height 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ══════════════════════════════════════════════════
   ANIMATIONS 3D — SÉDUCTION UX GLOBALE
   ══════════════════════════════════════════════════ */

/* Boutons — profondeur 3D à l'appui */
.btn:active, .btn-primary:active, .btn-dark:active,
.btn-white:active, .btn-outline:active, .btn-border-white:active,
.btn-gold:active {
  transform: scale(0.94) translateY(2px) !important;
  transition: transform 0.1s ease !important;
}

/* Logo — rotation 3D au survol */
.nav-logo {
  perspective: 400px;
}
.nav-logo img {
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.nav-logo:hover img {
  transform: rotateY(360deg);
}

/* Halo lumineux qui suit le curseur dans le hero */
.cursor-halo {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,110,15,0.14) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cursor-halo.active { opacity: 1; }

/* Témoignages — retournement 3D à l'apparition (uniquement ceux avec fade-up) */
.testi-card.fade-up {
  opacity: 0;
  transform: perspective(1000px) rotateY(-25deg) translateX(-20px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.testi-card.fade-up.visible {
  opacity: 1;
  transform: perspective(1000px) rotateY(0deg) translateX(0);
}

/* ══════════════════════════════════════════════════
   DIRECTION STUDIO — profondeur, hiérarchie, accessibilité
   ══════════════════════════════════════════════════ */

/* Grading photo unifié — à appliquer sur les <img> de galerie */
.graded {
  filter: sepia(0.18) saturate(1.25) hue-rotate(-6deg) brightness(0.96) contrast(1.06);
}

/* Élément "signature" — tilt 3D + glow qui suit la souris.
   À utiliser sur UN SEUL élément par section, jamais toutes les cartes. */
.tilt-signature {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  will-change: transform;
  cursor: pointer;
  position: relative;
}
.tilt-signature::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.tilt-signature:hover::before { opacity: 1; }

/* Éléments secondaires — restent calmes, juste un léger lift */
.lift-calm {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lift-calm:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Icônes sur mesure — trait fin SVG */
.ci-svg {
  width: 34px; height: 34px;
  stroke: var(--orange);
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Séquence narrative — étapes qui s'allument dans l'ordre */
.n-circle {
  transition: all 0.5s cubic-bezier(.2,1,.3,1);
}
.n-circle.done {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: scale(1.08);
}

/* ══ ACCESSIBILITÉ — désactive tout mouvement si demandé par l'utilisateur ══ */
@media (prefers-reduced-motion: reduce) {
  .tilt-signature,
  .lift-calm,
  .fade-up,
  .brick-in,
  .testi-card.fade-up {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
  .tilt-signature::before { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   BLOC FINAL — NAVIGATION, BOUTONS, RESPONSIVE GARANTI
   ═══════════════════════════════════════════════════════════ */

/* ── Hamburger ── */
.nav-hamburger {
  display: none !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 5px !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  z-index: 2000 !important;
  position: relative !important;
  flex-shrink: 0 !important;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span {
  display: block !important;
  width: 24px !important;
  height: 2px !important;
  background: #080808 !important;
  border-radius: 2px !important;
  transition: transform 0.25s ease, opacity 0.25s ease !important;
  pointer-events: none;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg) !important; }
.nav-hamburger.active span:nth-child(2) { opacity: 0 !important; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) !important; }

/* ── Menu mobile déroulant ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
  gap: 2px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1999;
  max-height: 80vh;
  overflow-y: auto;
}
.mobile-menu.active { display: flex !important; }
.mobile-menu a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 14px 4px;
  font-size: 15px;
  font-weight: 500;
  color: #3A3A3A;
  border-bottom: 1px solid #F5F5F5;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:active { background: #FEF0E6; color: #F56E0F; }

body.menu-open { overflow: hidden !important; }

/* ── Media query navbar responsive ── */
@media (max-width: 1024px) {
  .nav-links, .nav-phone { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .nav-right .btn { display: none !important; }
}

/* ── Tous les boutons : zone tactile garantie + feedback au clic ── */
.btn, .btn-primary, .btn-dark, .btn-white, .btn-outline,
.btn-border-white, .btn-gold, .farouk-button,
button, a.btn, a.btn-primary, a.btn-dark {
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}
.btn:active, .btn-primary:active, .btn-dark:active,
.btn-white:active, .btn-outline:active, .btn-border-white:active,
.btn-gold:active {
  transform: scale(0.96) !important;
  transition: transform 0.1s ease !important;
}

/* ── Liens/boutons flottants (WhatsApp, back-to-top) toujours cliquables ── */
.wa-float, .wa-btn-float, .back-top {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ── Empêche tout élément de déborder horizontalement sur petit écran ── */
html, body { overflow-x: hidden; width: 100%; }
img, video, svg { max-width: 100%; height: auto; }

/* ── Ajustements fins par taille d'écran ── */
@media (max-width: 480px) {
  .nav-hamburger { width: 40px !important; height: 40px !important; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .section-title { font-size: 24px; }
}

/* ══ MENU MOBILE — VERSION 100% CSS, INDÉPENDANTE DU JS ══════ */
.nav-toggle-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.nav-toggle-checkbox:checked ~ .mobile-menu {
  display: flex !important;
}
.nav-toggle-checkbox:checked ~ .container .nav-hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle-checkbox:checked ~ .container .nav-hamburger span:nth-child(2) {
  opacity: 0;
}
.nav-toggle-checkbox:checked ~ .container .nav-hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-hamburger { cursor: pointer; }