/* ═══════════════════════════════════════════════
   VARIABLES & RESET
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bleu:        #0A2463;
  --bleu-mid:    #1B4F9B;
  --bleu-clair:  #3A86FF;
  --or:          #F4A11D;
  --or-clair:    #FFD166;
  --vert:        #06D6A0;
  --blanc:       #FAFAF8;
  --texte:       #1a1a2e;
  --gris:        #64748b;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--blanc);
  color: var(--texte);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ═══════════════════════════════════════════════
   LOADER
═══════════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bleu);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.loader.hidden { opacity: 0; visibility: hidden; }

.loader-inner { text-align: center; }

.loader-plane {
  font-size: 48px;
  animation: planeFly 1.2s ease-in-out infinite alternate;
  display: block;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 20px rgba(244,161,29,0.6));
}

@keyframes planeFly {
  from { transform: translateX(-20px) rotate(-5deg); }
  to   { transform: translateX(20px) rotate(5deg); }
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin: 0 auto 16px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--or), var(--or-clair));
  border-radius: 2px;
  animation: loaderFill 1.8s ease-in-out forwards;
}

@keyframes loaderFill {
  from { width: 0; }
  to   { width: 100%; }
}

.loader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--ease);
}

#nav.scrolled {
  background: rgba(10,36,99,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 5%;
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-brand-icon {
  font-size: 26px;
  filter: drop-shadow(0 0 8px rgba(244,161,29,0.5));
  animation: iconBob 3s ease-in-out infinite;
}

@keyframes iconBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.nav-brand-name em { color: var(--or); font-style: italic; }

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--or);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--or) !important;
  color: var(--bleu) !important;
  font-weight: 700 !important;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.3s !important;
  box-shadow: 0 4px 20px rgba(244,161,29,0.4);
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  background: var(--or-clair) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,161,29,0.55) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.nav-burger span {
  display: block;
  width: 25px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

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

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,36,99,0.88) 0%,
    rgba(10,36,99,0.70) 50%,
    rgba(10,36,99,0.85) 100%
  );
}

/* Particules */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0%   { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100px) translateX(var(--dx,0)) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 120px 5% 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-content-inner {
  max-width: 740px;
}

/* Animations entrée hero */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
}

.animate-in.visible {
  animation: fadeUp 0.8s var(--ease) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(244,161,29,0.15);
  border: 1px solid rgba(244,161,29,0.45);
  color: var(--or-clair);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--or);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244,161,29,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(244,161,29,0); }
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.title-gradient {
  background: linear-gradient(135deg, var(--or), var(--or-clair), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255,255,255,0.65);
  font-style: italic;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-desc strong { color: var(--or-clair); }

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Boutons */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--or), #e8920a);
  color: var(--bleu);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: 0 8px 28px rgba(244,161,29,0.45);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(244,161,29,0.6);
}

.btn-gold:hover::before { opacity: 1; }

.pulse-btn { animation: btnPulse 2.5s ease-in-out infinite; }

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(244,161,29,0.45); }
  50%       { box-shadow: 0 8px 28px rgba(244,161,29,0.45), 0 0 0 10px rgba(244,161,29,0.12); }
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: all 0.3s var(--ease);
}

.btn-outline:hover {
  border-color: var(--or);
  color: var(--or);
  transform: translateY(-3px);
  background: rgba(244,161,29,0.08);
}

/* Stats hero */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat { text-align: left; }

.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--or);
  line-height: 1;
}

.stat-s {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--or);
}

.stat-l {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  font-weight: 400;
}

.hero-stat-div {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--or);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ═══════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════ */
.trust-bar {
  background: var(--or);
  padding: 18px 5%;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--bleu);
  white-space: nowrap;
}

.trust-sep { color: rgba(10,36,99,0.3); font-size: 18px; }

/* ═══════════════════════════════════════════════
   SECTIONS COMMUNES
═══════════════════════════════════════════════ */
.section { padding: 100px 0; }

.section-head { text-align: center; margin-bottom: 64px; }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--bleu);
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.section-title em { color: var(--or); font-style: italic; }

.section-sub {
  font-size: 17px;
  color: var(--gris);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 560px;
}

.section-head .section-sub { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 32px;
}

.service-card {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.14);
}

.service-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}

.service-etudes .service-card-glow {
  background: radial-gradient(circle at 50% 0%, rgba(10,36,99,0.06) 0%, transparent 70%);
}

.service-travail .service-card-glow {
  background: radial-gradient(circle at 50% 0%, rgba(244,161,29,0.06) 0%, transparent 70%);
}

.service-card:hover .service-card-glow { opacity: 1; }

/* Vidéo miniature */
.service-video-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-card:hover .service-video { transform: scale(1.05); }

.service-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,36,99,0.2), rgba(10,36,99,0.7));
}

.service-video-badge {
  position: absolute;
  bottom: 16px; left: 20px;
  background: rgba(244,161,29,0.95);
  color: var(--bleu);
  font-weight: 700;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 50px;
}

.service-body {
  padding: 36px 36px 40px;
  position: relative;
  z-index: 1;
}

.service-title-card {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--bleu);
  margin-bottom: 14px;
  line-height: 1.2;
}

.service-title-card em { color: var(--or); font-style: italic; }

.service-desc-card {
  font-size: 15px;
  color: var(--gris);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--texte);
}

.check {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, var(--or), var(--or-clair));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--bleu);
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-service-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--bleu), var(--bleu-mid));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  box-shadow: 0 6px 20px rgba(10,36,99,0.25);
  width: 100%;
  justify-content: center;
}

.btn-service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(10,36,99,0.35);
  background: linear-gradient(135deg, #0d3472, var(--bleu));
}

.arrow-anim {
  transition: transform 0.3s;
}

.btn-service-card:hover .arrow-anim { transform: translateX(6px); }

/* ═══════════════════════════════════════════════
   SECTION VIDÉO IMMERSIVE
═══════════════════════════════════════════════ */
.video-immersive {
  position: relative;
  height: 65vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vi-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,36,99,0.82), rgba(10,36,99,0.65));
}

.vi-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 5%;
  max-width: 700px;
}

.vi-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.vi-title em { color: var(--or); font-style: italic; }

.vi-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 28px;
}

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

.why-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s var(--ease);
}

.why-item:hover {
  background: #fff;
  border-color: var(--or);
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.why-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(244,161,29,0.1);
  border-radius: 14px;
}

.why-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--bleu);
  margin-bottom: 5px;
}

.why-item p {
  font-size: 14px;
  color: var(--gris);
  line-height: 1.6;
}

/* Visual pourquoi */
.why-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 520px;
  box-shadow: 0 30px 70px rgba(10,36,99,0.2);
}

.why-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,36,99,0.7));
}

.why-float-card, .why-float-card-2 {
  position: absolute;
  background: rgba(255,255,255,0.97);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  text-align: center;
  z-index: 10;
  animation: cardFloat 5s ease-in-out infinite alternate;
}

.why-float-card { bottom: 30px; left: -24px; }
.why-float-card-2 { top: 30px; right: -24px; animation-delay: 2.5s; }

@keyframes cardFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-12px); }
}

.wf-icon { font-size: 26px; margin-bottom: 4px; }
.wf-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--bleu);
  line-height: 1;
}
.wf-label { font-size: 12px; color: var(--gris); margin-top: 3px; }

/* ═══════════════════════════════════════════════
   PROCESSUS
═══════════════════════════════════════════════ */
.dark-section {
  background: var(--bleu);
  position: relative;
  overflow: hidden;
}

.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(244,161,29,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(6,214,160,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.process-step {
  text-align: center;
  padding: 36px 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s var(--ease);
  cursor: default;
}

.process-step:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(244,161,29,0.4);
  transform: translateY(-6px);
}

.ps-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(244,161,29,0.2);
  line-height: 1;
  margin-bottom: 8px;
}

.ps-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.process-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.process-arrow {
  font-size: 24px;
  color: rgba(244,161,29,0.4);
  align-self: center;
  padding-top: 20px;
}

/* ═══════════════════════════════════════════════
   TÉMOIGNAGES
═══════════════════════════════════════════════ */
.testi-track-wrap {
  overflow: hidden;
  margin-top: 8px;
  padding: 20px 0;
  -webkit-mask: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testi-track {
  display: flex;
  gap: 24px;
  animation: testiScroll 35s linear infinite;
  width: max-content;
}

.testi-track:hover { animation-play-state: paused; }

@keyframes testiScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testi-card {
  width: 340px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
}

.testi-card:hover {
  border-color: var(--or);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.testi-stars { color: var(--or); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }

.testi-text {
  font-size: 14px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}

.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-name { font-weight: 700; font-size: 14px; color: var(--bleu); }
.testi-loc  { font-size: 12px; color: var(--gris); margin-top: 2px; }

/* ═══════════════════════════════════════════════
   CTA VIDÉO
═══════════════════════════════════════════════ */
.cta-video-section {
  position: relative;
  height: 55vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.cta-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244,161,29,0.75), rgba(10,36,99,0.8));
}

.cta-video-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 5%;
  max-width: 680px;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.cta-title em { color: var(--or-clair); font-style: italic; }

.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.big-btn { font-size: 17px !important; padding: 18px 38px !important; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37,211,102,0.6);
  background: #1ebe5d;
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-section { background: var(--blanc); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: start;
}

.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(10,36,99,0.04);
  border: 1px solid rgba(10,36,99,0.07);
  text-decoration: none;
  transition: all 0.3s;
}

.contact-info-item:hover {
  background: rgba(10,36,99,0.08);
  border-color: var(--or);
  transform: translateX(6px);
}

.ci-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--or), #e8920a);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(244,161,29,0.3);
}

.ci-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gris); margin-bottom: 3px; }
.ci-val   { font-size: 15px; font-weight: 600; color: var(--bleu); }

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.soc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.soc-btn.wa { background: #25D366; color: #fff; }
.soc-btn.em { background: var(--bleu); color: #fff; }
.soc-btn.fb { background: #1877F2; color: #fff; }
.soc-btn:hover { transform: translateY(-3px); opacity: 0.9; }

/* Formulaire */
.contact-form-wrap {
  background: #fff;
  border-radius: 28px;
  padding: 44px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

.form-head { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--bleu); margin-bottom: 4px; }
.form-subhead { font-size: 13px; color: var(--gris); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-form .form-group { margin-bottom: 18px; }

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--bleu);
  margin-bottom: 7px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--texte);
  background: #f8f9fa;
  transition: all 0.3s;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--bleu-clair);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(58,134,255,0.1);
}

.contact-form textarea { resize: vertical; min-height: 110px; }

.btn-submit-form {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--bleu), var(--bleu-mid));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(10,36,99,0.28);
  margin-top: 8px;
}

.btn-submit-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(10,36,99,0.38);
}

.form-success-msg, .form-error-msg {
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-bottom: 24px;
}

.form-success-msg {
  background: rgba(6,214,160,0.1);
  border: 1px solid rgba(6,214,160,0.3);
}

.form-success-icon { font-size: 48px; margin-bottom: 12px; }
.form-success-msg h3 { color: #059669; font-size: 22px; margin-bottom: 8px; }
.form-success-msg p  { color: var(--gris); font-size: 14px; line-height: 1.6; }

.form-error-msg {
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.2);
  color: #dc2626;
  font-size: 14px;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer-top {
  background: #070d1e;
  padding: 64px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-logo em { color: var(--or); font-style: italic; }

.footer-brand-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 280px;
}

.footer-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--or);
  font-size: 15px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--or); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }

.footer-contact div { font-size: 13px; color: rgba(255,255,255,0.5); }

.footer-contact a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--or); }

.footer-bottom {
  background: #04091a;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal { display: flex; gap: 24px; }

.footer-legal a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--or); }

/* ═══════════════════════════════════════════════
   BOUTONS FLOTTANTS
═══════════════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  transition: all 0.3s;
  overflow: hidden;
}

.wa-fab:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.65);
}

.wa-fab-icon { font-size: 22px; }

.wa-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: inherit;
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}

.back-top {
  position: fixed;
  bottom: 30px; left: 30px;
  z-index: 990;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bleu);
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(10,36,99,0.3);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
}

.back-top:hover {
  background: var(--or);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal       { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid   { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: 1fr; gap: 50px; }
  .why-float-card, .why-float-card-2 { display: none; }
  .process-grid    { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-arrow   { display: none; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid    { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu  { display: none; }
  .nav-burger { display: flex; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stat-div { width: 60px; height: 1px; }
  .trust-bar-inner { gap: 16px; }
  .trust-sep { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .wa-fab-text { display: none; }
  .wa-fab { padding: 14px; border-radius: 50%; }
  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn-gold, .btn-outline { justify-content: center; }
  .process-grid { grid-template-columns: 1fr; }
}
