/* ═══════════════════════════════════════════════
   VARIABLES & RESET — Palette BigForTravel
   Vert foncé + Vert moyen + Or — depuis le logo
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --vert-fonce:   #1B4D3E;
  --vert-mid:     #2D6A4F;
  --vert-clair:   #3D8B6E;
  --vert-pale:    #EAF4EF;
  --or:           #C9A84C;
  --or-clair:     #F0C040;
  --or-pale:      #FDF6E3;
  --blanc:        #FAFAF6;
  --texte:        #1a2e1a;
  --gris:         #5a7a5a;
  --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 CINÉMATIQUE
═══════════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  background: #0d2218;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}

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

/* Fond étoilé */
.loader-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(240,192,64,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 25%, rgba(240,192,64,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 80%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 40%, rgba(240,192,64,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 90%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 55%, rgba(240,192,64,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 10%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 40% 45%, rgba(240,192,64,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 30%, rgba(255,255,255,0.4) 0%, transparent 100%);
  animation: starsShimmer 4s ease-in-out infinite alternate;
}

@keyframes starsShimmer {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}

/* Nuages/brume en bas */
.loader-fog {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(27,77,62,0.6), transparent);
  animation: fogRise 3s ease-out forwards;
}

@keyframes fogRise {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Ligne d'horizon lumineuse */
.loader-horizon {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  top: 62%;
  background: linear-gradient(to right, transparent, var(--or), rgba(240,192,64,0.3), var(--or), transparent);
  animation: horizonGlow 2s ease-in-out infinite alternate;
  filter: blur(1px);
}

@keyframes horizonGlow {
  from { opacity: 0.4; filter: blur(1px); }
  to   { opacity: 1;   filter: blur(0px) drop-shadow(0 0 8px var(--or)); }
}

/* Avion cinématique */
.loader-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-plane-wrap {
  position: relative;
  width: 200px;
  height: 80px;
  margin-bottom: 32px;
}

.loader-plane-svg {
  width: 90px;
  height: 60px;
  filter: drop-shadow(0 0 20px rgba(240,192,64,0.8));
  animation: planeJourney 2.8s var(--ease) infinite;
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
}

@keyframes planeJourney {
  0%   { transform: translateX(-120px) translateY(12px) rotate(-5deg); opacity: 0; }
  15%  { opacity: 1; }
  50%  { transform: translateX(-10px) translateY(-8px) rotate(2deg); }
  85%  { opacity: 1; }
  100% { transform: translateX(120px) translateY(-20px) rotate(8deg); opacity: 0; }
}

/* Traînée de l'avion */
.loader-trail {
  position: absolute;
  top: 34px; left: 10px; right: 10px;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(240,192,64,0.6), transparent);
  animation: trailFade 2.8s var(--ease) infinite;
  border-radius: 2px;
}

@keyframes trailFade {
  0%   { opacity: 0; transform: scaleX(0) translateX(-60px); }
  30%  { opacity: 1; transform: scaleX(1) translateX(0); }
  70%  { opacity: 0.4; }
  100% { opacity: 0; }
}

/* Logo centré pendant le chargement */
.loader-logo-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 20px;
  animation: logoReveal 1s var(--ease) 0.5s both, logoPulse 3s ease-in-out 1.5s infinite alternate;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.6));
}

@keyframes logoReveal {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes logoPulse {
  from { filter: drop-shadow(0 0 20px rgba(201,168,76,0.5)); }
  to   { filter: drop-shadow(0 0 40px rgba(240,192,64,0.9)); }
}

.loader-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--or-clair);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 6px;
  animation: brandReveal 0.8s var(--ease) 1s both;
}

@keyframes brandReveal {
  from { opacity: 0; letter-spacing: 12px; }
  to   { opacity: 1; letter-spacing: 4px; }
}

.loader-tagline {
  font-size: 13px;
  color: rgba(240,192,64,0.65);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 28px;
  animation: fadeIn 0.8s var(--ease) 1.4s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.loader-progress {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  animation: fadeIn 0.5s var(--ease) 1.6s both;
}

.loader-progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--or), var(--or-clair));
  border-radius: 2px;
  animation: progressLoad 1.6s var(--ease) 1.6s forwards;
  width: 0;
}

@keyframes progressLoad {
  0%   { width: 0; }
  60%  { width: 70%; }
  100% { width: 100%; }
}

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

#nav.scrolled {
  background: rgba(13,34,24,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 5%;
  box-shadow: 0 4px 40px rgba(0,0,0,0.4),
              0 1px 0 rgba(201,168,76,0.2);
}

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

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.4));
  transition: all 0.3s;
}

#nav.scrolled .nav-logo-img { height: 38px; }

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

.nav-brand-name em { color: var(--or-clair); 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;
  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: var(--or-clair); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--or), var(--or-clair)) !important;
  color: var(--vert-fonce) !important;
  font-weight: 700 !important;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.3s !important;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}

.nav-cta::after { display: none; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.6) !important;
  color: var(--vert-fonce) !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;
  filter: brightness(0.9) saturate(1.1);
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,34,24,0.72) 0%,
    rgba(27,77,62,0.42) 50%,
    rgba(13,34,24,0.68) 100%
  );
}

/* Grain texturé subtil sur le hero */
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

.particle {
  position: absolute; border-radius: 50%;
  background: rgba(240,192,64,0.25);
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  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: 760px; }

.animate-in { opacity: 0; transform: translateY(30px); }
.animate-in.visible { animation: fadeUp 0.9s 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(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,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(201,168,76,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(201,168,76,0); }
}

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

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

.title-gradient::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--or), transparent);
  border-radius: 2px;
}

.hero-slogan {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2vw, 23px);
  color: rgba(240,192,64,0.7); font-style: italic; margin-bottom: 20px;
}

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

.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), var(--or-clair));
  color: var(--vert-fonce); 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(201,168,76,0.45);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201,168,76,0.65);
  background: linear-gradient(135deg, var(--or-clair), #fffbe8);
}

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

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(201,168,76,0.45); }
  50%       { box-shadow: 0 8px 28px rgba(201,168,76,0.45), 0 0 0 10px rgba(201,168,76,0.1); }
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06); 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-clair);
  transform: translateY(-3px); background: rgba(201,168,76,0.08);
}

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

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

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

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

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

.hero-stat-div { width: 1px; height: 55px; background: rgba(201,168,76,0.2); }

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

.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(201,168,76,0.4);
  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(14px); opacity: 0; }
}

/* ═══════════════════════════════════════════════
   BANDEAU CONFIANCE
═══════════════════════════════════════════════ */
.trust-bar {
  background: linear-gradient(135deg, var(--or), var(--or-clair));
  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: 700; font-size: 14px; color: var(--vert-fonce);
  white-space: nowrap;
}

.trust-icon {
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
}

.trust-sep { color: rgba(27,77,62,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(--vert-fonce); 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 { background: var(--blanc); }

.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(27,77,62,0.1);
  border: 1px solid rgba(27,77,62,0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

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

.service-video-thumb {
  position: relative; height: 260px; overflow: hidden;
}

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

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

.service-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(27,77,62,0.05), rgba(13,34,24,0.5));
}

.service-video-badge {
  position: absolute; bottom: 16px; left: 20px;
  background: linear-gradient(135deg, var(--or), var(--or-clair));
  color: var(--vert-fonce); font-weight: 700; font-size: 13px;
  padding: 7px 16px; border-radius: 50px;
  box-shadow: 0 4px 14px rgba(201,168,76,0.4);
}

.service-body { padding: 36px 36px 40px; }

.service-title-card {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 700;
  color: var(--vert-fonce); 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(--vert-fonce); flex-shrink: 0; margin-top: 2px;
}

.btn-service-card {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--vert-fonce), var(--vert-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(27,77,62,0.28);
  width: 100%; justify-content: center;
}

.btn-service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(27,77,62,0.38);
  background: linear-gradient(135deg, var(--vert-mid), var(--vert-clair));
}

.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;
  filter: brightness(1.05) saturate(1.1);
}

.vi-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,34,24,0.65), rgba(27,77,62,0.45));
}

.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, 68px); font-weight: 700; color: #fff;
  line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 18px;
}

.vi-title em { color: var(--or-clair); font-style: italic; }
.vi-desc { font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 28px; }

/* ═══════════════════════════════════════════════
   POURQUOI NOUS
═══════════════════════════════════════════════ */
.why { background: var(--vert-pale); position: relative; overflow: hidden; }

.why::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, var(--vert-fonce), var(--or), var(--vert-clair));
}

.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.8);
  border: 1px solid rgba(27,77,62,0.08);
  transition: all 0.3s var(--ease); cursor: default;
}

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

.why-icon {
  font-size: 22px; flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px;
}

.why-item h4 { font-size: 16px; font-weight: 700; color: var(--vert-fonce); margin-bottom: 5px; }
.why-item p  { font-size: 14px; color: var(--gris); line-height: 1.6; }

.why-item-ai {
  border-color: rgba(201,168,76,0.3) !important;
  background: linear-gradient(135deg, rgba(201,168,76,0.05), rgba(255,255,255,0.9)) !important;
}

.why-item-ai .why-icon {
  background: linear-gradient(135deg, var(--or), var(--or-clair));
  border-color: transparent; color: var(--vert-fonce);
  font-size: 18px; font-weight: 900;
}

.why-visual {
  position: relative; border-radius: 28px; overflow: hidden;
  height: 520px;
  box-shadow: 0 30px 70px rgba(27,77,62,0.25);
  border: 3px solid rgba(201,168,76,0.2);
}

.why-video { width: 100%; height: 100%; object-fit: cover; filter: brightness(1.05) saturate(1.1); }

.why-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13,34,24,0.6));
}

.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.2);
  text-align: center; z-index: 10;
  animation: cardFloat 5s ease-in-out infinite alternate;
  border: 1px solid rgba(201,168,76,0.2);
}

.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: 24px; margin-bottom: 4px; }
.wf-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 700; color: var(--vert-fonce); line-height: 1;
}
.wf-label { font-size: 12px; color: var(--gris); margin-top: 3px; }

/* ═══════════════════════════════════════════════
   PROCESSUS
═══════════════════════════════════════════════ */
.dark-section {
  background: linear-gradient(135deg, var(--vert-fonce), #0d2218, var(--vert-fonce));
  position: relative; overflow: hidden;
}

.dark-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(201,168,76,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(240,192,64,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.dark-section .section-title { color: #fff; }
.dark-section .section-sub   { color: rgba(255,255,255,0.6); }

.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.04);
  border: 1px solid rgba(201,168,76,0.15);
  transition: all 0.3s var(--ease); cursor: default;
}

.process-step:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-6px);
}

.ps-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 700;
  color: rgba(201,168,76,0.2); line-height: 1; margin-bottom: 8px;
}

.ps-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--or), var(--or-clair));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
  color: var(--vert-fonce); font-weight: 700;
}

.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: 20px; color: rgba(201,168,76,0.4); align-self: center; padding-top: 20px; }

/* ═══════════════════════════════════════════════
   TÉMOIGNAGES
═══════════════════════════════════════════════ */
.testimonials { background: var(--blanc); }

.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 38s 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(27,77,62,0.08);
  border-radius: 24px; padding: 30px;
  box-shadow: 0 4px 20px rgba(27,77,62,0.06);
  transition: all 0.3s;
}

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

.testi-stars { color: var(--or); font-size: 16px; margin-bottom: 14px; letter-spacing: 3px; }
.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(--vert-fonce); }
.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;
  filter: brightness(1.05) saturate(1.1);
}

.cta-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.58), rgba(13,34,24,0.65));
}

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

.cta-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;
}

.cta-title em { color: var(--or-clair); font-style: italic; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.85); 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.4);
}

.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(27,77,62,0.04);
  border: 1px solid rgba(27,77,62,0.08);
  text-decoration: none; transition: all 0.3s;
}

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

.ci-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--or), var(--or-clair));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(201,168,76,0.3); color: var(--vert-fonce);
}

.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(--vert-fonce); }

.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(--vert-fonce); 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(27,77,62,0.1);
  border: 1px solid rgba(27,77,62,0.08);
}

.form-head     { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--vert-fonce); 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(--vert-fonce); margin-bottom: 7px; }

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--vert-mid); background: #fff;
  box-shadow: 0 0 0 4px rgba(45,106,79,0.1);
}

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

.btn-submit-form {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--vert-fonce), var(--vert-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(27,77,62,0.3); margin-top: 8px;
}

.btn-submit-form:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(27,77,62,0.4); }

.form-success-msg, .form-error-msg { border-radius: 16px; padding: 32px; text-align: center; margin-bottom: 24px; }
.form-success-msg { background: rgba(45,106,79,0.08); border: 1px solid rgba(45,106,79,0.25); }
.form-success-icon { font-size: 48px; margin-bottom: 12px; }
.form-success-msg h3 { color: var(--vert-mid); 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: linear-gradient(160deg, var(--vert-fonce), #0d2218 60%, #0a1a12);
  padding: 64px 0 48px;
  border-top: 3px solid var(--or);
}

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

.footer-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}

.footer-logo-img { height: 50px; width: auto; object-fit: contain; filter: brightness(1.1); }

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: #fff;
}

.footer-brand-name em { color: var(--or-clair); 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: var(--or-clair); 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-clair); }

.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-clair); }

.footer-bottom { background: #070e09; padding: 20px 0; border-top: 1px solid rgba(201,168,76,0.12); }

.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-clair); }

/* ═══════════════════════════════════════════════
   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: 20px; }

.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(--vert-fonce); color: var(--or-clair);
  border: 1px solid rgba(201,168,76,0.3); font-size: 18px; cursor: pointer;
  box-shadow: 0 6px 20px rgba(27,77,62,0.35); transition: all 0.3s;
  opacity: 0; visibility: hidden;
}

.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--or); color: var(--vert-fonce); 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; }
}
