/* =============================================
   GROUPE MG RÉNOV — styles.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ----- Variables ----- */
:root {
  --primary: #1B2A4A;
  --primary-light: #243660;
  --primary-dark: #111c32;
  --gold: #E8A020;
  --gold-light: #f5b93c;
  --gold-dark: #c4891a;
  --white: #ffffff;
  --light: #f8f9fc;
  --light-gray: #eef0f5;
  --gray: #8892a4;
  --text: #2c3e50;
  --text-light: #5a6a7e;
  --border: #dde3ef;
  --shadow: 0 4px 24px rgba(27,42,74,0.10);
  --shadow-lg: 0 12px 48px rgba(27,42,74,0.16);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: 0.25s ease;
  --max-width: 1200px;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ----- Typography ----- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-desc { font-size: 1.05rem; color: var(--text-light); max-width: 600px; }

/* ----- Container ----- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 90px 0; }
.section-alt { background: var(--light); }
.section-dark { background: var(--primary); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p, .section-dark .section-desc { color: rgba(255,255,255,0.7); }
.section-dark .section-label { color: var(--gold); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--gold);
  color: var(--primary);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,160,32,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ----- HEADER ----- */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
#header.scrolled {
  background: rgba(27,42,74,0.98);
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { color: var(--primary); }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.03em;
}
.logo-text span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav a:hover, .nav a.active {
  color: var(--gold);
  background: rgba(232,160,32,0.1);
}

/* ----- NAV DROPDOWN ----- */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
}
.nav-dropdown-toggle:hover, .nav-dropdown-toggle.active {
  color: var(--gold);
  background: rgba(232,160,32,0.1);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--primary-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.5rem;
  min-width: 240px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: 0.6rem 0.85rem;
  border-radius: 6px;
  text-transform: none;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}
.nav-dropdown-menu a:hover {
  color: var(--gold);
  background: rgba(232,160,32,0.1);
}
.nav-dropdown-menu a svg {
  color: var(--gold);
  flex-shrink: 0;
}
.nav-dropdown-menu a:first-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0.3rem;
  padding-bottom: 0.8rem;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ----- BREADCRUMB BAR ----- */
.breadcrumb-bar {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
}
.breadcrumb-item a {
  color: var(--primary);
  transition: color var(--transition);
}
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-item--current span {
  color: var(--gold-dark);
}
.breadcrumb-sep {
  color: var(--border);
  display: flex;
  align-items: center;
}

/* ----- RELATED PAGES ----- */
.related-pages-section { }
.related-pages-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.related-pages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.related-page-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  transition: all var(--transition);
  cursor: pointer;
}
.related-page-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.related-page-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,160,32,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: all var(--transition);
}
.related-page-card:hover .related-page-icon {
  background: var(--gold);
  color: var(--primary);
}
.related-page-body {
  flex: 1;
  min-width: 0;
}
.related-page-body strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.related-page-body span {
  font-size: 0.78rem;
  color: var(--gray);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-page-arrow {
  color: var(--border);
  flex-shrink: 0;
  transition: color var(--transition), transform var(--transition);
}
.related-page-card:hover .related-page-arrow {
  color: var(--gold);
  transform: translateX(3px);
}

/* ----- HERO ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,28,50,0.92) 0%, rgba(27,42,74,0.75) 50%, rgba(17,28,50,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 1.5rem 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-left { }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.4);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
.hero h1 span { color: var(--gold); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
}
.hero-trust-item strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-trust-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition);
}
.hero-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(5px);
}
.hero-card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.hero-card-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.hero-card-text span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* ----- STATS / CHIFFRES ----- */
.stats { background: var(--primary); padding: 60px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { }
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
  display: block;
}
.stat-divider {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0.75rem auto 0;
}

/* ----- ABOUT / INTRO ----- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--primary);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.about-badge span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
}
.about-points { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-light);
}
.about-point-icon {
  width: 24px;
  height: 24px;
  background: rgba(232,160,32,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

/* ----- SERVICES ----- */
.services-intro { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,160,32,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
}
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p { flex: 1; font-size: 0.92rem; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 1.25rem;
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 0.75rem; }

/* ----- PROCESS ----- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(232,160,32,0.2));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
}
.process-number {
  width: 72px;
  height: 72px;
  background: var(--primary);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--gold);
}
.process-step h4 {
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--primary);
}
.process-step p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}
.section-dark .process-step h4 { color: var(--white); }
.section-dark .process-step p { color: rgba(255,255,255,0.6); }
.section-dark .process-number { background: rgba(255,255,255,0.05); }

/* ----- ENGAGEMENTS ----- */
.engagements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.engagement-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}
.engagement-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.engagement-icon {
  width: 60px;
  height: 60px;
  background: rgba(232,160,32,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.engagement-item h3 { color: var(--white); margin-bottom: 0.5rem; }
.engagement-item p { color: rgba(255,255,255,0.65); font-size: 0.92rem; margin: 0; }

/* ----- ZONES IDF ----- */
.zones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.zones-map-placeholder {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  border: 2px dashed var(--border);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.zones-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.zone-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--light);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.zone-tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.zone-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ----- RÉALISATIONS ----- */
.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.realisation-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
}
.realisation-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.realisation-card:hover img { transform: scale(1.08); }
.realisation-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(17,28,50,0.9));
  padding: 2rem 1.5rem 1.5rem;
}
.realisation-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
}
.realisation-overlay h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

/* ----- TEMOIGNAGES ----- */
.temoignages-intro { text-align: center; max-width: 600px; margin: 0 auto 3rem; }
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.temoignage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.temoignage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.temoignage-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.temoignage-stars span { color: var(--gold); font-size: 1rem; }
.temoignage-text {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.temoignage-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.temoignage-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.temoignage-author strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}
.temoignage-author span {
  font-size: 0.8rem;
  color: var(--gray);
}
.temoignage-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 4rem;
  color: var(--light-gray);
  font-family: Georgia, serif;
  line-height: 1;
}

/* ----- FAQ ----- */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  transition: all 0.3s ease;
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--primary);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}
.faq-answer p { color: var(--text-light); font-size: 0.92rem; line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.5rem 1.25rem; }

/* ----- CTA BAND ----- */
.cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(232,160,32,0.08);
  border-radius: 50%;
}
.cta-band-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.cta-band-text h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-band-text p { color: rgba(255,255,255,0.7); margin: 0; }
.cta-band-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ----- GOOGLE REVIEWS ----- */
.reviews-section { }
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.reviews-rating-global {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  box-shadow: var(--shadow);
}
.rating-score {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.rating-stars { display: flex; gap: 3px; margin: 0.25rem 0; }
.rating-stars span { color: var(--gold); font-size: 1.1rem; }
.rating-count { font-size: 0.82rem; color: var(--gray); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ----- FOOTER ----- */
#footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin: 1rem 0 1.5rem;
  line-height: 1.8;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
}
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ----- PAGE HERO (sous-pages) ----- */
.page-hero {
  background: var(--primary);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,28,50,0.92) 0%, rgba(27,42,74,0.80) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ----- INTRO PAGE ----- */
.page-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.page-intro-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.prestation-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.prestation-item:hover {
  border-color: var(--gold);
  background: rgba(232,160,32,0.05);
}
.prestation-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.prestation-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.prestation-item span { font-size: 0.78rem; color: var(--text-light); }

/* ----- CONTACT FORM ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,160,32,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.contact-info-item span, .contact-info-item a {
  font-size: 0.92rem;
  color: var(--text-light);
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--light);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* ----- ZONES MAP ----- */
.zones-idf-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ----- SCROLL REVEAL ----- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ----- BACK TO TOP ----- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(232,160,32,0.5);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-4px); }

/* ----- UTILITIES ----- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.inline-flex { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ---- MOBILE NAV ---- */
@media (max-width: 1024px) {
  .nav { display: none; }
  .mobile-toggle { display: flex; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: var(--primary-dark);
    padding: 5rem 1.5rem 2rem;
    z-index: 1001;
    gap: 0.15rem;
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
    overflow-y: auto;
  }
  .nav a { padding: 0.75rem 1rem; font-size: 0.9rem; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle { width: 100%; padding: 0.75rem 1rem; font-size: 0.9rem; justify-content: space-between; }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 0;
    transition: max-height 0.3s ease, padding 0.3s ease, visibility 0s 0.3s;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    visibility: visible;
    max-height: 400px;
    padding: 0.5rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .nav-dropdown-menu a { font-size: 0.82rem; padding: 0.55rem 0.85rem; }
  .nav-dropdown-menu a:first-child { border-bottom: 1px solid rgba(255,255,255,0.06); }
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 600px; }
  .about-badge { right: 0; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .temoignages-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-right { display: none; }
  .engagements-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr; }
  .page-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .related-pages-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .realisations-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .zones-list { grid-template-columns: repeat(2, 1fr); }
  .prestations-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-content { padding: 100px 1.5rem 60px; }
  .related-pages-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-trust { gap: 1.5rem; }
  .realisations-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .engagements-grid { grid-template-columns: 1fr; }
}