*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1A237E; --navy-dark: #0D1257; --navy-light: #283593;
  --anthracite: #37474F; --anthracite-light: #546E7A;
  --gold: #FFC107; --gold-dark: #FF8F00;
  --white: #FFFFFF; --off-white: #F5F6FA; --text-muted: #90A4AE; --radius: 4px;
}

html { scroll-behavior: smooth; }

body { 
  font-family: 'Montserrat', sans-serif; 
  background: var(--off-white); 
  color: var(--anthracite); 
  overflow-x: hidden; 
}

::-webkit-scrollbar { width: 6px; } 
::-webkit-scrollbar-track { background: var(--navy-dark); } 
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* Navigation */
nav { 
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 1000; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 0 5%; 
  height: 72px; 
  background: rgba(13,18,87,0.96); 
  backdrop-filter: blur(12px); 
  border-bottom: 1px solid rgba(255,193,7,0.15); 
  transition: height 0.3s; 
}

nav.scrolled { height: 60px; }

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.logo-icon { 
  width: 42px; 
  height: 42px; 
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)); 
  display: grid; 
  place-items: center; 
  font-size: 20px; 
  font-weight: 900; 
  color: var(--navy-dark); 
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); 
  flex-shrink: 0; 
}

.logo-name { font-size: 15px; font-weight: 900; color: var(--white); letter-spacing: 2px; line-height: 1; display: block; }

.logo-sub { font-size: 9px; font-weight: 600; color: var(--gold); letter-spacing: 3px; display: block; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }

.nav-links a { 
  font-size: 12px; 
  font-weight: 700; 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  color: rgba(255,255,255,0.75); 
  text-decoration: none; 
  position: relative; 
  padding-bottom: 4px; 
  transition: color 0.2s; 
}

.nav-links a::after { 
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  width: 0; 
  height: 2px; 
  background: var(--gold); 
  transition: width 0.3s; 
}

.nav-links a:hover { color: var(--white); } 
.nav-links a:hover::after { width: 100%; }

.nav-cta { 
  background: var(--gold) !important; 
  color: var(--navy-dark) !important; 
  padding: 10px 22px !important; 
  border-radius: var(--radius); 
  font-weight: 900 !important; 
}

.nav-cta::after { display: none !important; }

.nav-active { color: var(--gold) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }

.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu { 
  display: none; 
  position: fixed; 
  top: 72px; 
  left: 0; 
  right: 0; 
  background: var(--navy-dark); 
  z-index: 999; 
  flex-direction: column; 
  padding: 24px 5%; 
  border-bottom: 2px solid var(--gold); 
}

.mobile-menu.open { display: flex; }

.mobile-menu a { 
  font-size: 14px; 
  font-weight: 700; 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  color: var(--white); 
  text-decoration: none; 
  padding: 16px 0; 
  border-bottom: 1px solid rgba(255,255,255,0.08); 
}

/* Hero Sections */
.hero { 
  min-height: 100vh; 
  background: linear-gradient(160deg,rgba(13,18,87,0.93) 0%,rgba(26,35,126,0.80) 50%,rgba(55,71,79,0.85) 100%), 
    url('images/12vb.jpg') center/cover no-repeat; 
  display: flex; 
  align-items: center; 
  padding: 140px 5% 80px; 
  position: relative; 
  overflow: hidden; 
}

.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px; background: linear-gradient(to top,var(--off-white),transparent); }

.hero-content { position: relative; z-index: 2; max-width: 700px; }

.hero-badge { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  background: rgba(255,193,7,0.12); 
  border: 1px solid rgba(255,193,7,0.4); 
  padding: 8px 16px; 
  border-radius: 2px; 
  font-size: 10px; 
  font-weight: 700; 
  letter-spacing: 3px; 
  text-transform: uppercase; 
  color: var(--gold); 
  margin-bottom: 28px; 
  animation: fadeUp 0.8s ease both; 
}

@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.3} }

.hero-badge::before { content: '●'; font-size: 8px; animation: pulse 2s infinite; }

.hero h1 { 
  font-size: clamp(36px,6vw,72px); 
  font-weight: 900; 
  color: var(--white); 
  line-height: 1.05; 
  letter-spacing: -1px; 
  margin-bottom: 8px; 
  animation: fadeUp 0.8s 0.1s ease both; 
}

.hero h1 span { color: var(--gold); }

.hero-italic { 
  font-family: 'Crimson Pro',serif; 
  font-style: italic; 
  font-weight: 300; 
  font-size: clamp(20px,3vw,32px); 
  color: rgba(255,255,255,0.70); 
  margin-bottom: 32px; 
  animation: fadeUp 0.8s 0.2s ease both; 
}

.hero-desc { 
  font-size: 15px; 
  line-height: 1.8; 
  color: rgba(255,255,255,0.65); 
  max-width: 520px; 
  margin-bottom: 44px; 
  animation: fadeUp 0.8s 0.3s ease both; 
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s 0.4s ease both; }

@keyframes fadeUp { from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)} }

.btn-primary { 
  background: linear-gradient(135deg,var(--gold),var(--gold-dark)); 
  color: var(--navy-dark); 
  font-weight: 900; 
  font-size: 13px; 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
  text-decoration: none; 
  padding: 16px 36px; 
  border-radius: var(--radius); 
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  transition: transform 0.2s,box-shadow 0.2s; 
  box-shadow: 0 8px 32px rgba(255,193,7,0.35); 
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,193,7,0.5); }

.btn-outline { 
  border: 2px solid rgba(255,255,255,0.35); 
  color: var(--white); 
  font-weight: 700; 
  font-size: 13px; 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
  text-decoration: none; 
  padding: 14px 32px; 
  border-radius: var(--radius); 
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  transition: border-color 0.2s,background 0.2s; 
}

.btn-outline:hover { border-color: var(--gold); background: rgba(255,193,7,0.08); }

/* Stats Bar */
.stats-bar { 
  display: flex; 
  background: var(--white); 
  box-shadow: 0 8px 40px rgba(26,35,126,0.12); 
  border-radius: 6px; 
  overflow: hidden; 
  margin: 0 5% -40px; 
  position: relative; 
  z-index: 10; 
}

.stat-item { 
  flex: 1; 
  padding: 28px 20px; 
  text-align: center; 
  border-right: 1px solid rgba(26,35,126,0.08); 
  position: relative; 
  transition: background 0.3s; 
}

.stat-item:last-child { border-right: none; }

.stat-item:hover { background: rgba(26,35,126,0.03); }

.stat-item::before { 
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 50%; 
  transform: translateX(-50%); 
  width: 0; 
  height: 3px; 
  background: var(--gold); 
  transition: width 0.3s; 
}

.stat-item:hover::before { width: 60%; }

.stat-num { 
  font-size: clamp(24px,4vw,40px); 
  font-weight: 900; 
  color: var(--navy); 
  display: block; 
  line-height: 1; 
}

.stat-num span { color: var(--gold); }

.stat-label { 
  font-size: 10px; 
  font-weight: 700; 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  color: var(--text-muted); 
  margin-top: 6px; 
  display: block; 
}

/* Sections */
section { padding: 100px 5%; }

.section-tag { 
  font-size: 10px; 
  font-weight: 700; 
  letter-spacing: 4px; 
  text-transform: uppercase; 
  color: var(--gold); 
  margin-bottom: 12px; 
  display: block; 
}

.section-title { 
  font-size: clamp(28px,4vw,48px); 
  font-weight: 900; 
  color: var(--navy); 
  line-height: 1.1; 
  margin-bottom: 20px; 
}

.section-sub { 
  font-family: 'Crimson Pro',serif; 
  font-size: 20px; 
  color: var(--anthracite-light); 
  max-width: 560px; 
  line-height: 1.6; 
  margin-bottom: 60px; 
}

.divider { 
  width: 60px; 
  height: 4px; 
  background: linear-gradient(90deg,var(--gold),var(--gold-dark)); 
  border-radius: 2px; 
  margin-bottom: 24px; 
}

.reveal { 
  opacity: 0; 
  transform: translateY(30px); 
  transition: opacity 0.7s ease,transform 0.7s ease; 
}

.reveal.visible { 
  opacity: 1; 
  transform: none; 
}

/* Services */
#services { background: var(--white); padding-top: 140px; }

.services-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); 
  gap: 2px; 
  background: rgba(26,35,126,0.06); 
  border-radius: 6px; 
  overflow: hidden; 
}

.service-card { 
  background: var(--white); 
  padding: 44px 36px; 
  position: relative; 
  overflow: hidden; 
  transition: background 0.3s,transform 0.3s; 
}

.service-card::before { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 4px; 
  height: 0; 
  background: linear-gradient(to bottom,var(--gold),var(--gold-dark)); 
  transition: height 0.4s; 
}

.service-card:hover { background: #FAFBFF; transform: translateY(-2px); }

.service-card:hover::before { height: 100%; }

.service-icon { 
  width: 60px; 
  height: 60px; 
  border-radius: 4px; 
  background: rgba(26,35,126,0.06); 
  display: grid; 
  place-items: center; 
  font-size: 26px; 
  margin-bottom: 24px; 
  border: 1px solid rgba(26,35,126,0.08); 
  transition: background 0.3s; 
}

.service-card:hover .service-icon { 
  background: rgba(255,193,7,0.12); 
  border-color: rgba(255,193,7,0.3); 
}

.service-card h3 { 
  font-size: 17px; 
  font-weight: 900; 
  color: var(--navy); 
  margin-bottom: 14px; 
}

.service-card p { 
  font-size: 14px; 
  line-height: 1.75; 
  color: var(--anthracite-light); 
}

.service-tag { 
  display: inline-block; 
  margin-top: 20px; 
  font-size: 9px; 
  font-weight: 700; 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  color: var(--gold); 
  border: 1px solid rgba(255,193,7,0.3); 
  padding: 4px 10px; 
  border-radius: 2px; 
}

/* Services Illustrés */
.service-illustrated { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 60px; 
  align-items: center; 
  margin-bottom: 80px; 
  background: var(--white); 
  border-radius: 8px; 
  padding: 60px; 
  box-shadow: 0 4px 30px rgba(26,35,126,0.08); 
}

.service-illustrated.reverse { direction: rtl; }

.service-illustrated.reverse > * { direction: ltr; }

.service-image img { 
  width: 100%; 
  height: 400px; 
  object-fit: cover; 
  border-radius: 6px; 
  box-shadow: 0 8px 40px rgba(26,35,126,0.15); 
}

.service-content { 
  padding: 20px 0; 
}

.service-illustrated .service-icon { 
  width: 70px; 
  height: 70px; 
  font-size: 32px; 
  margin-bottom: 30px; 
}

.service-content h3 { 
  font-size: 28px; 
  font-weight: 900; 
  color: var(--navy); 
  margin-bottom: 20px; 
}

.service-content p { 
  font-size: 16px; 
  line-height: 1.8; 
  color: var(--anthracite-light); 
  margin-bottom: 30px; 
}

.service-features { 
  list-style: none; 
  margin-bottom: 30px; 
}

.service-features li { 
  font-size: 14px; 
  color: var(--anthracite); 
  margin-bottom: 12px; 
  padding-left: 20px; 
  position: relative; 
}

.service-features li::before { 
  content: '✓'; 
  position: absolute; 
  left: 0; 
  color: var(--gold); 
  font-weight: bold; 
}

/* Why Section */
#why { 
  background: linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 60%,var(--anthracite) 100%); 
  position: relative; 
  overflow: hidden; 
}

#why::before { 
  content: 'GEROBA'; 
  position: absolute; 
  top: -40px; 
  right: -20px; 
  font-size: 200px; 
  font-weight: 900; 
  color: rgba(255,255,255,0.03); 
  pointer-events: none; 
  user-select: none; 
}

#why .section-title { color: var(--white); }

#why .section-sub { color: rgba(255,255,255,0.5); }

.why-hero { 
  margin-bottom: 60px; 
  text-align: center; 
}

.why-hero-image { 
  position: relative; 
  max-width: 800px; 
  margin: 0 auto; 
  border-radius: 8px; 
  overflow: hidden; 
}

.why-hero-image img { 
  width: 100%; 
  height: 750px; 
  object-fit: cover; 
}

.image-overlay { 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  background: linear-gradient(to top,rgba(13,18,87,0.9),transparent); 
  padding: 40px; 
}

.overlay-content h3 { 
  font-size: 24px; 
  font-weight: 900; 
  color: var(--white); 
  margin-bottom: 10px; 
}

.overlay-content p { 
  font-size: 16px; 
  color: rgba(255,255,255,0.8); 
}

.why-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 24px; 
}

.why-item { 
  display: flex; 
  gap: 20px; 
  align-items: flex-start; 
  background: rgba(255,255,255,0.04); 
  border: 1px solid rgba(255,255,255,0.06); 
  padding: 28px; 
  border-radius: 4px; 
  transition: background 0.3s,border-color 0.3s; 
}

.why-item:hover { 
  background: rgba(255,193,7,0.06); 
  border-color: rgba(255,193,7,0.2); 
}

.why-num { 
  font-size: 36px; 
  font-weight: 900; 
  color: rgba(255,193,7,0.2); 
  line-height: 1; 
  flex-shrink: 0; 
  width: 50px; 
}

.why-item h4 { 
  font-size: 14px; 
  font-weight: 900; 
  color: var(--white); 
  margin-bottom: 8px; 
}

.why-item p { 
  font-size: 13px; 
  color: rgba(255,255,255,0.5); 
  line-height: 1.7; 
}

/* Réalisations */
#realisations { 
  background: var(--off-white); 
}

.realisations-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit,minmax(350px,1fr)); 
  gap: 30px; 
}

.realisation-card { 
  background: var(--white); 
  border-radius: 8px; 
  overflow: hidden; 
  box-shadow: 0 4px 30px rgba(26,35,126,0.08); 
  transition: transform 0.3s,box-shadow 0.3s; 
}

.realisation-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 12px 50px rgba(26,35,126,0.15); 
}

.realisation-image { 
  position: relative; 
  height: 250px; 
  overflow: hidden; 
}

.realisation-image img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.3s; 
}

.realisation-card:hover .realisation-image img { 
  transform: scale(1.05); 
}

.realisation-overlay { 
  position: absolute; 
  top: 20px; 
  right: 20px; 
}

.realisation-category { 
  background: var(--gold); 
  color: var(--navy-dark); 
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  padding: 6px 12px; 
  border-radius: 20px; 
}

.realisation-content { 
  padding: 30px; 
}

.realisation-content h4 { 
  font-size: 18px; 
  font-weight: 900; 
  color: var(--navy); 
  margin-bottom: 15px; 
}

.realisation-content p { 
  font-size: 14px; 
  line-height: 1.7; 
  color: var(--anthracite-light); 
  margin-bottom: 20px; 
}

.realisation-meta { 
  display: flex; 
  gap: 20px; 
  font-size: 12px; 
  color: var(--text-muted); 
}

/* Contact */
#contact { background: var(--white); }

.contact-wrap { 
  display: grid; 
  grid-template-columns: 1fr 1.4fr; 
  gap: 48px; 
}

.contact-info h3 { 
  font-size: 22px; 
  font-weight: 900; 
  color: var(--navy); 
  margin-bottom: 24px; 
}

.contact-detail { 
  display: flex; 
  gap: 16px; 
  margin-bottom: 20px; 
  align-items: flex-start; 
}

.contact-detail-icon { 
  width: 44px; 
  height: 44px; 
  border-radius: 3px; 
  background: linear-gradient(135deg,var(--navy),var(--navy-light)); 
  display: grid; 
  place-items: center; 
  font-size: 18px; 
  flex-shrink: 0; 
}

.contact-detail strong { 
  font-size: 13px; 
  font-weight: 900; 
  color: var(--navy); 
  display: block; 
  margin-bottom: 3px; 
}

.contact-detail span { 
  font-size: 13px; 
  color: var(--anthracite-light); 
}

.map-container { 
  border-radius: 6px; 
  overflow: hidden; 
  box-shadow: 0 8px 40px rgba(26,35,126,0.12); 
  height: 380px; 
  background: linear-gradient(135deg,#E8EAF6,#C5CAE9); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}

.map-placeholder { 
  text-align: center; 
}

.map-pin { 
  font-size: 56px; 
  display: block; 
}

.map-placeholder p { 
  font-size: 14px; 
  color: var(--navy); 
  font-weight: 700; 
  margin-top: 10px; 
}

.map-placeholder small { 
  font-size: 11px; 
  color: var(--anthracite-light); 
  display: block; 
  margin-top: 4px; 
}

.map-open-btn { 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  margin-top: 20px; 
  padding: 12px 24px; 
  background: var(--navy); 
  color: var(--white); 
  text-decoration: none; 
  border-radius: var(--radius); 
  font-size: 12px; 
  font-weight: 700; 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
  transition: background 0.2s; 
}

.map-open-btn:hover { 
  background: var(--navy-light); 
}

/* Hero Contact */
.hero-contact { 
  min-height: 80vh; 
  background: linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 100%); 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  align-items: center; 
  padding: 120px 5% 80px; 
  gap: 60px; 
}

.hero-contact-content { 
  color: var(--white); 
}

.hero-contact-image img { 
  width: 100%; 
  height: 500px; 
  object-fit: cover; 
  border-radius: 8px; 
  box-shadow: 0 20px 60px rgba(0,0,0,0.3); 
}

.contact-hero-quick { 
  display: flex; 
  gap: 16px; 
  margin-top: 40px; 
}

/* Map Section */
.map-section { 
  background: var(--off-white); 
}

.access-info { 
  margin-top: 60px; 
}

.access-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); 
  gap: 30px; 
}

.access-item { 
  background: var(--white); 
  padding: 30px; 
  border-radius: 8px; 
  text-align: center; 
  box-shadow: 0 4px 20px rgba(26,35,126,0.06); 
  transition: transform 0.3s; 
}

.access-item:hover { 
  transform: translateY(-4px); 
}

.access-icon { 
  font-size: 40px; 
  margin-bottom: 20px; 
}

.access-item h4 { 
  font-size: 16px; 
  font-weight: 900; 
  color: var(--navy); 
  margin-bottom: 10px; 
}

.access-item p { 
  font-size: 14px; 
  color: var(--anthracite-light); 
  line-height: 1.6; 
}

/* Urgence Section */
.urgence-section { 
  background: linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 100%); 
  color: var(--white); 
}

.urgence-section .section-title { 
  color: var(--white); 
}

.urgence-section .section-sub { 
  color: rgba(255,255,255,0.6); 
}

.urgence-card { 
  background: rgba(255,255,255,0.05); 
  border: 1px solid rgba(255,255,255,0.1); 
  border-radius: 12px; 
  padding: 50px; 
  text-align: center; 
  max-width: 800px; 
  margin: 0 auto; 
}

.urgence-icon { 
  font-size: 60px; 
  margin-bottom: 30px; 
}

.urgence-card h3 { 
  font-size: 24px; 
  font-weight: 900; 
  margin-bottom: 20px; 
}

.urgence-card p { 
  font-size: 16px; 
  line-height: 1.7; 
  color: rgba(255,255,255,0.8); 
  margin-bottom: 40px; 
}

.urgence-numbers { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 20px; 
  margin-bottom: 40px; 
}

.urgence-btn { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 10px; 
  padding: 30px; 
  background: rgba(255,255,255,0.05); 
  border: 1px solid rgba(255,255,255,0.1); 
  border-radius: 8px; 
  text-decoration: none; 
  color: var(--white); 
  transition: background 0.3s,transform 0.3s; 
}

.urgence-btn:hover { 
  background: rgba(255,193,7,0.1); 
  transform: translateY(-2px); 
}

.urgence-btn.whatsapp { 
  background: rgba(37,211,102,0.1); 
  border-color: rgba(37,211,102,0.3); 
}

.urgence-number { 
  font-size: 20px; 
  font-weight: 900; 
  color: var(--gold); 
}

.urgence-label { 
  font-size: 12px; 
  text-transform: uppercase; 
  letter-spacing: 2px; 
  opacity: 0.8; 
}

.urgence-features { 
  display: flex; 
  justify-content: center; 
  gap: 40px; 
  flex-wrap: wrap; 
}

.urgence-feature { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-size: 14px; 
  color: rgba(255,255,255,0.8); 
}

.feature-icon { 
  font-size: 18px; 
  color: var(--gold); 
}

/* FAQ Section */
.faq-section { 
  background: var(--white); 
}

.faq-grid { 
  display: grid; 
  gap: 20px; 
  max-width: 800px; 
  margin: 0 auto; 
}

.faq-item { 
  background: var(--off-white); 
  border: 1px solid rgba(26,35,126,0.08); 
  border-radius: 8px; 
  overflow: hidden; 
  transition: border-color 0.3s; 
}

.faq-item.open { 
  border-color: var(--gold); 
}

.faq-question { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 25px 30px; 
  cursor: pointer; 
  transition: background 0.3s; 
}

.faq-question:hover { 
  background: rgba(26,35,126,0.02); 
}

.faq-question h4 { 
  font-size: 16px; 
  font-weight: 700; 
  color: var(--navy); 
  margin: 0; 
}

.faq-toggle { 
  font-size: 24px; 
  color: var(--gold); 
  font-weight: 300; 
  transition: transform 0.3s; 
}

.faq-item.open .faq-toggle { 
  transform: rotate(45deg); 
}

.faq-answer { 
  padding: 0 30px; 
  max-height: 0; 
  overflow: hidden; 
  transition: padding 0.3s,max-height 0.3s; 
}

.faq-item.open .faq-answer { 
  padding: 0 30px 25px; 
  max-height: 200px; 
}

.faq-answer p { 
  font-size: 14px; 
  line-height: 1.7; 
  color: var(--anthracite-light); 
}

/* Hero Recrutement */
.hero-recrutement { 
  min-height: 80vh; 
  background: linear-gradient(135deg,var(--anthracite) 0%,var(--navy-dark) 100%); 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  align-items: center; 
  padding: 120px 5% 80px; 
  gap: 60px; 
}

.hero-recrutement-content { 
  color: var(--white); 
}

.hero-recrutement-image img { 
  width: 100%; 
  height: 500px; 
  object-fit: cover; 
  border-radius: 8px; 
  box-shadow: 0 20px 60px rgba(0,0,0,0.3); 
}

.recrutement-hero-stats { 
  display: flex; 
  gap: 40px; 
  margin: 40px 0; 
}

.stat-hero { 
  text-align: center; 
}

.stat-hero .stat-num { 
  font-size: 32px; 
  font-weight: 900; 
  color: var(--gold); 
  display: block; 
  line-height: 1; 
}

.stat-hero .stat-label { 
  font-size: 12px; 
  text-transform: uppercase; 
  letter-spacing: 2px; 
  opacity: 0.8; 
  margin-top: 8px; 
  display: block; 
}

/* Why Join */
#why-join { 
  background: var(--white); 
}

.benefits-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); 
  gap: 30px; 
}

.benefit-card { 
  background: var(--off-white); 
  padding: 40px 30px; 
  border-radius: 8px; 
  text-align: center; 
  border: 1px solid rgba(26,35,126,0.08); 
  transition: transform 0.3s,box-shadow 0.3s; 
}

.benefit-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 12px 40px rgba(26,35,126,0.12); 
}

.benefit-icon { 
  font-size: 40px; 
  margin-bottom: 20px; 
}

.benefit-card h3 { 
  font-size: 18px; 
  font-weight: 900; 
  color: var(--navy); 
  margin-bottom: 15px; 
}

.benefit-card p { 
  font-size: 14px; 
  line-height: 1.7; 
  color: var(--anthracite-light); 
}

/* Postes */
#postes { 
  background: var(--off-white); 
}

.postes-grid { 
  display: grid; 
  gap: 40px; 
}

.poste-card { 
  background: var(--white); 
  border-radius: 12px; 
  overflow: hidden; 
  box-shadow: 0 8px 40px rgba(26,35,126,0.1); 
  transition: transform 0.3s,box-shadow 0.3s; 
}

.poste-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 16px 60px rgba(26,35,126,0.15); 
}

.poste-header { 
  display: flex; 
  align-items: center; 
  gap: 20px; 
  padding: 30px; 
  background: linear-gradient(135deg,var(--navy),var(--navy-light)); 
  color: var(--white); 
}

.poste-icon { 
  font-size: 32px; 
  width: 60px; 
  height: 60px; 
  background: rgba(255,255,255,0.1); 
  border-radius: 50%; 
  display: grid; 
  place-items: center; 
}

.poste-info h3 { 
  font-size: 20px; 
  font-weight: 900; 
  margin-bottom: 5px; 
}

.poste-type { 
  font-size: 12px; 
  opacity: 0.8; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
}

.poste-badge { 
  background: var(--gold); 
  color: var(--navy-dark); 
  font-size: 10px; 
  font-weight: 700; 
  padding: 6px 12px; 
  border-radius: 20px; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  margin-left: auto; 
}

.poste-image { 
  height: 250px; 
  overflow: hidden; 
}

.poste-image img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.poste-content { 
  padding: 40px; 
}

.poste-content h4 { 
  font-size: 16px; 
  font-weight: 900; 
  color: var(--navy); 
  margin-bottom: 15px; 
}

.poste-content ul { 
  margin-bottom: 20px; 
  padding-left: 20px; 
}

.poste-content li { 
  font-size: 14px; 
  color: var(--anthracite-light); 
  margin-bottom: 8px; 
  line-height: 1.6; 
}

.poste-meta { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 15px; 
  margin: 30px 0; 
  padding: 20px; 
  background: var(--off-white); 
  border-radius: 6px; 
  font-size: 12px; 
  color: var(--text-muted); 
}

.poste-meta span { 
  display: flex; 
  align-items: center; 
  gap: 5px; 
}

/* Témoignages */
#temoignages { 
  background: var(--white); 
}

.temoignages-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); 
  gap: 30px; 
}

.temoignage-card { 
  background: var(--off-white); 
  border-radius: 8px; 
  padding: 30px; 
  border: 1px solid rgba(26,35,126,0.08); 
  transition: transform 0.3s; 
}

.temoignage-card:hover { 
  transform: translateY(-4px); 
}

.temoignage-stars { 
  font-size: 16px; 
  margin-bottom: 15px; 
}

.temoignage-content p { 
  font-size: 14px; 
  line-height: 1.7; 
  color: var(--anthracite-light); 
  margin-bottom: 20px; 
  font-style: italic; 
}

.temoignage-author { 
  display: flex; 
  align-items: center; 
  gap: 15px; 
}

.author-avatar { 
  width: 40px; 
  height: 40px; 
  background: var(--navy); 
  border-radius: 50%; 
  display: grid; 
  place-items: center; 
  color: var(--white); 
  font-size: 18px; 
}

.temoignage-author strong { 
  font-size: 14px; 
  font-weight: 900; 
  color: var(--navy); 
  display: block; 
}

.temoignage-author span { 
  font-size: 12px; 
  color: var(--text-muted); 
}

/* Candidature */
#candidature { 
  background: var(--white); 
}

.candidature-wrap { 
  display: grid; 
  grid-template-columns: 1.2fr 1fr; 
  gap: 60px; 
  align-items: start; 
}

.candidature-info h3 { 
  font-size: 22px; 
  font-weight: 900; 
  color: var(--navy); 
  margin-bottom: 30px; 
}

.process-steps { 
  margin-bottom: 40px; 
}

.process-step { 
  display: flex; 
  gap: 20px; 
  margin-bottom: 30px; 
  align-items: flex-start; 
}

.step-number { 
  width: 40px; 
  height: 40px; 
  background: var(--gold); 
  color: var(--navy-dark); 
  border-radius: 50%; 
  display: grid; 
  place-items: center; 
  font-weight: 900; 
  flex-shrink: 0; 
}

.step-content h4 { 
  font-size: 16px; 
  font-weight: 900; 
  color: var(--navy); 
  margin-bottom: 5px; 
}

.step-content p { 
  font-size: 14px; 
  color: var(--anthracite-light); 
  line-height: 1.6; 
}

.candidature-tips { 
  background: var(--off-white); 
  padding: 25px; 
  border-radius: 8px; 
  border-left: 4px solid var(--gold); 
}

.candidature-tips h4 { 
  font-size: 16px; 
  font-weight: 900; 
  color: var(--navy); 
  margin-bottom: 15px; 
}

.candidature-tips ul { 
  list-style: none; 
}

.candidature-tips li { 
  font-size: 14px; 
  color: var(--anthracite-light); 
  margin-bottom: 8px; 
  padding-left: 20px; 
  position: relative; 
}

.candidature-tips li::before { 
  content: '✅'; 
  position: absolute; 
  left: 0; 
}

/* Contact RH */
.contact-rh { 
  background: var(--off-white); 
}

.rh-contact-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); 
  gap: 30px; 
  max-width: 900px; 
  margin: 0 auto; 
}

.rh-contact-item { 
  background: var(--white); 
  padding: 40px 30px; 
  border-radius: 8px; 
  text-align: center; 
  box-shadow: 0 4px 20px rgba(26,35,126,0.06); 
  transition: transform 0.3s; 
}

.rh-contact-item:hover { 
  transform: translateY(-4px); 
}

.rh-contact-icon { 
  font-size: 40px; 
  margin-bottom: 20px; 
}

.rh-contact-item h4 { 
  font-size: 16px; 
  font-weight: 900; 
  color: var(--navy); 
  margin-bottom: 10px; 
}

.rh-contact-item p { 
  font-size: 14px; 
  color: var(--anthracite-light); 
  line-height: 1.6; 
  margin-bottom: 20px; 
}

/* Forms */
#devis { background: var(--off-white); }

.devis-wrap { 
  display: grid; 
  grid-template-columns: 1fr 1.4fr; 
  gap: 60px; 
  align-items: start; 
}

.devis-info h3 { 
  font-size: 22px; 
  font-weight: 900; 
  color: var(--navy); 
  margin-bottom: 16px; 
}

.devis-info p { 
  font-size: 14px; 
  color: var(--anthracite-light); 
  line-height: 1.8; 
  margin-bottom: 32px; 
}

.devis-contact-item { 
  display: flex; 
  gap: 14px; 
  align-items: center; 
  padding: 14px 0; 
  border-bottom: 1px solid rgba(26,35,126,0.08); 
}

.devis-contact-icon { 
  width: 38px; 
  height: 38px; 
  border-radius: 3px; 
  background: rgba(26,35,126,0.06); 
  display: grid; 
  place-items: center; 
  font-size: 18px; 
  flex-shrink: 0; 
}

.devis-contact-item span { 
  font-size: 13px; 
  font-weight: 600; 
  color: var(--navy); 
}

.devis-contact-item small { 
  font-size: 11px; 
  color: var(--text-muted); 
  display: block; 
}

.form-card { 
  background: var(--white); 
  border-radius: 6px; 
  padding: 44px; 
  box-shadow: 0 8px 60px rgba(26,35,126,0.10); 
}

.form-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 16px; 
}

.form-group { 
  margin-bottom: 20px; 
}

.form-group label { 
  font-size: 10px; 
  font-weight: 700; 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  color: var(--navy); 
  display: block; 
  margin-bottom: 8px; 
}

.form-group input,
.form-group select,
.form-group textarea { 
  width: 100%; 
  padding: 13px 16px; 
  border: 1.5px solid rgba(26,35,126,0.12); 
  border-radius: var(--radius); 
  font-family: 'Montserrat',sans-serif; 
  font-size: 13px; 
  color: var(--anthracite); 
  background: var(--off-white); 
  outline: none; 
  transition: border-color 0.2s; 
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { 
  border-color: var(--navy); 
  background: var(--white); 
}

.form-group textarea { 
  resize: vertical; 
  min-height: 100px; 
}

.form-submit { 
  width: 100%; 
  background: linear-gradient(135deg,var(--navy),var(--navy-light)); 
  color: var(--white); 
  border: none; 
  cursor: pointer; 
  font-family: 'Montserrat',sans-serif; 
  font-size: 13px; 
  font-weight: 900; 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  padding: 16px; 
  border-radius: var(--radius); 
  transition: transform 0.2s,box-shadow 0.2s; 
  box-shadow: 0 6px 24px rgba(26,35,126,0.3); 
}

.form-submit:hover { 
  transform: translateY(-2px); 
}

.form-success { 
  display: none; 
  text-align: center; 
  padding: 40px 20px; 
}

.form-success .check { 
  font-size: 48px; 
  margin-bottom: 16px; 
  display: block; 
}

.form-success h4 { 
  font-size: 20px; 
  font-weight: 900; 
  color: var(--navy); 
  margin-bottom: 8px; 
}

.form-success p { 
  font-size: 13px; 
  color: var(--text-muted); 
}

/* Recrutement */
#recrutement { background: var(--white); }

.recru-wrap { 
  display: grid; 
  grid-template-columns: 1.2fr 1fr; 
  gap: 60px; 
  align-items: start; 
}

.recru-form-card { 
  background: var(--off-white); 
  border-radius: 6px; 
  padding: 44px; 
  border: 1px solid rgba(26,35,126,0.08); 
}

.job-card { 
  background: var(--white); 
  border: 1px solid rgba(26,35,126,0.08); 
  border-radius: 4px; 
  padding: 24px; 
  margin-bottom: 16px; 
  display: flex; 
  gap: 16px; 
  align-items: flex-start; 
  transition: border-color 0.2s,box-shadow 0.2s; 
}

.job-card:hover { 
  border-color: var(--gold); 
  box-shadow: 0 4px 24px rgba(255,193,7,0.12); 
}

.job-icon { 
  font-size: 24px; 
  flex-shrink: 0; 
  margin-top: 2px; 
}

.job-card h4 { 
  font-size: 14px; 
  font-weight: 900; 
  color: var(--navy); 
  margin-bottom: 6px; 
}

.job-card p { 
  font-size: 12px; 
  color: var(--text-muted); 
  line-height: 1.6; 
}

.job-badge { 
  display: inline-block; 
  margin-top: 10px; 
  font-size: 9px; 
  font-weight: 700; 
  letter-spacing: 1.5px; 
  text-transform: uppercase; 
  background: rgba(255,193,7,0.12); 
  color: var(--gold-dark); 
  padding: 3px 8px; 
  border-radius: 2px; 
}

/* Blog */
#blog { background: var(--off-white); }

.blog-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); 
  gap: 24px; 
}

.blog-card { 
  background: var(--white); 
  border-radius: 4px; 
  overflow: hidden; 
  box-shadow: 0 2px 20px rgba(26,35,126,0.06); 
  transition: transform 0.3s,box-shadow 0.3s; 
  cursor: pointer; 
}

.blog-card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 16px 48px rgba(26,35,126,0.14); 
}

.blog-img { 
  height: 180px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 48px; 
}

.blog-img-1 { 
  background: linear-gradient(135deg,#1A237E,#283593); 
}

.blog-img-2 { 
  background: linear-gradient(135deg,#37474F,#546E7A); 
}

.blog-img-3 { 
  background: linear-gradient(135deg,#FF8F00,#FFC107); 
}

.blog-body { 
  padding: 24px; 
}

.blog-cat { 
  font-size: 9px; 
  font-weight: 700; 
  letter-spacing: 3px; 
  text-transform: uppercase; 
  color: var(--gold-dark); 
  margin-bottom: 10px; 
  display: block; 
}

.blog-card h3 { 
  font-size: 16px; 
  font-weight: 900; 
  color: var(--navy); 
  line-height: 1.4; 
  margin-bottom: 10px; 
}

.blog-card p { 
  font-size: 12px; 
  color: var(--text-muted); 
  line-height: 1.7; 
}

.blog-meta { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  margin-top: 20px; 
  padding-top: 16px; 
  border-top: 1px solid rgba(26,35,126,0.06); 
  font-size: 10px; 
  color: var(--text-muted); 
  font-weight: 600; 
}

/* Footer */
footer { 
  background: var(--navy-dark); 
  padding: 60px 5% 32px; 
  color: rgba(255,255,255,0.5); 
}

.footer-grid { 
  display: grid; 
  grid-template-columns: 2fr 1fr 1fr 1fr; 
  gap: 40px; 
  margin-bottom: 48px; 
}

.footer-brand p { 
  font-size: 13px; 
  line-height: 1.8; 
  margin-top: 16px; 
  margin-bottom: 24px; 
  color: rgba(255,255,255,0.4); 
}

.footer-social { 
  display: flex; 
  gap: 10px; 
}

.social-btn { 
  width: 36px; 
  height: 36px; 
  border-radius: 3px; 
  border: 1px solid rgba(255,255,255,0.1); 
  display: grid; 
  place-items: center; 
  font-size: 14px; 
  text-decoration: none; 
  color: rgba(255,255,255,0.5); 
  transition: border-color 0.2s,background 0.2s; 
}

.social-btn:hover { 
  border-color: var(--gold); 
  color: var(--gold); 
}

.footer-col h5 { 
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: 3px; 
  text-transform: uppercase; 
  color: var(--white); 
  margin-bottom: 20px; 
}

.footer-col a { 
  display: block; 
  font-size: 13px; 
  color: rgba(255,255,255,0.4); 
  text-decoration: none; 
  margin-bottom: 10px; 
  transition: color 0.2s; 
}

.footer-col a:hover { 
  color: var(--gold); 
}

.footer-bottom { 
  border-top: 1px solid rgba(255,255,255,0.06); 
  padding-top: 24px; 
  display: flex; 
  justify-content: space-between; 
  flex-wrap: wrap; 
  gap: 12px; 
  font-size: 11px; 
}

.footer-bottom span { 
  color: var(--gold); 
  font-weight: 700; 
}

/* Float buttons */
.float-group { 
  position: fixed; 
  bottom: 28px; 
  right: 24px; 
  z-index: 9999; 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
  align-items: flex-end; 
}

.float-btn { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  text-decoration: none; 
  border-radius: 50px; 
  padding: 14px 20px; 
  font-size: 13px; 
  font-weight: 700; 
  box-shadow: 0 6px 24px rgba(0,0,0,0.2); 
  transition: transform 0.2s; 
}

.float-btn:hover { 
  transform: scale(1.05); 
}

.float-whatsapp { 
  background: #25D366; 
  color: var(--white); 
}

.float-call { 
  background: var(--gold); 
  color: var(--navy-dark); 
}

/* Responsive */
@media(max-width:900px) {
  .nav-links { display: none; } 
  .hamburger { display: flex; }
  .stats-bar { flex-wrap: wrap; border-radius: 0; margin: 0; }
  .stat-item { flex: 1 1 45%; }
  .devis-wrap,.recru-wrap,.contact-wrap,.footer-grid,.candidature-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  #why::before { font-size: 80px; }
  .hero { padding: 120px 5% 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-illustrated { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .service-illustrated.reverse { direction: ltr; }
  .hero-contact,.hero-recrutement { grid-template-columns: 1fr; gap: 40px; }
  .recrutement-hero-stats { justify-content: center; }
  .urgence-numbers { grid-template-columns: 1fr; }
  .postes-grid { grid-template-columns: 1fr; }
}

@media(max-width:560px) {
  section { padding: 70px 5%; }
  .float-btn { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .float-btn span.lbl { display: none; }
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(26,35,126,0.08); }
  .footer-grid { grid-template-columns: 1fr; }
  .service-illustrated { padding: 30px 20px; }
  .hero-contact,.hero-recrutement { padding: 100px 5% 60px; }
  .recrutement-hero-stats { flex-direction: column; gap: 20px; }
  .urgence-features { flex-direction: column; gap: 15px; }
  .poste-header { flex-direction: column; text-align: center; gap: 15px; }
  .poste-meta { flex-direction: column; gap: 10px; }
  .process-step { flex-direction: column; text-align: center; }
}