/* ==========================================================================
   NAMANKHA TRANSIT — style.css
   Design system : Route Corridor
   -------------------------------------------------------------------------
   Palette :
     --forest-deep   #0B3D2E  (vert forêt profond — confiance, autorité)
     --forest-dark   #082A20  (fond sombre, contraste header/hero)
     --gold          #C9A227  (or — accent premium)
     --gold-light    #E3C567  (or clair — hover, highlights)
     --white         #FFFFFF
     --gray-light    #F5F6F4  (fond des sections claires)
     --ink           #12201A  (texte, vert-noir)
   Typographie :
     Display : "Fraunces"  (titres — caractère, chaleur premium)
     Texte   : "Manrope"   (corps de texte, UI, boutons)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* Couleurs */
  --forest-deep: #0B3D2E;
  --forest-dark: #082A20;
  --forest-mid: #124A38;
  --gold: #C9A227;
  --gold-light: #E3C567;
  --white: #FFFFFF;
  --gray-light: #F5F6F4;
  --gray-mid: #E4E7E3;
  --ink: #12201A;
  --ink-soft: #4A5A52;

  /* Typo */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Rythme */
  --radius-s: 8px;
  --radius-m: 16px;
  --radius-l: 28px;
  --shadow-soft: 0 12px 40px rgba(11, 61, 46, 0.12);
  --shadow-strong: 0 20px 60px rgba(8, 42, 32, 0.28);
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);

  --header-h: 92px;
  --header-h-scrolled: 68px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest-deep);
  line-height: 1.15;
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--forest-deep);
  padding: 12px 20px;
  z-index: 10000;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* Eyebrow / labels de section */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 16px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

.section-pad { padding: 110px 0; }
.bg-light { background: var(--gray-light); }
.bg-forest {
  background: linear-gradient(160deg, var(--forest-dark) 0%, var(--forest-deep) 100%);
  color: var(--white);
}
.bg-forest h2, .bg-forest h3 { color: var(--white); }

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--forest-dark);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(201, 162, 39, 0.45); }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-3px); }
.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--forest-deep);
  color: var(--forest-deep);
}
.btn-outline-dark:hover { background: var(--forest-deep); color: var(--white); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ==========================================================================
   LOADER
   ========================================================================== */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  width: 84px;
  height: 84px;
  animation: pulse-logo 1.6s ease-in-out infinite;
}
@keyframes pulse-logo {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}
.loader-track {
  width: 160px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  overflow: hidden;
}
.loader-track::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: loader-bar 1.1s ease-in-out infinite;
}
@keyframes loader-bar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(8, 42, 32, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: height var(--transition), background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  height: var(--header-h-scrolled);
  background: rgba(8, 42, 32, 0.92);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.header-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img { height: 42px; width: 42px; transition: height var(--transition), width var(--transition); }
.site-header.scrolled .brand img { height: 34px; width: 34px; }
.brand-text {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.1;
}
.brand-text span { display: block; font-family: var(--font-body); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; color: var(--gold-light); text-transform: uppercase; margin-top: 2px; }

.main-nav { display: flex; }
.main-nav ul { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 10px 16px;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.main-nav a:hover { background: rgba(255,255,255,0.1); color: var(--gold-light); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn-gold { padding: 12px 24px; font-size: 0.9rem; }

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,0.08);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 86vw);
  height: 100vh;
  background: var(--forest-dark);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform var(--transition);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: -20px 0 60px rgba(0,0,0,0.3);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav .btn { margin-top: 24px; }
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 20, 15, 0.6);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(155deg, var(--forest-dark) 0%, var(--forest-deep) 55%, var(--forest-mid) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-shapes svg { position: absolute; }
.shape-ring-1 { top: -60px; right: -60px; width: 320px; opacity: 0.5; }
.shape-ring-2 { bottom: -100px; left: -80px; width: 280px; opacity: 0.35; }
.shape-route { top: 50%; left: 0; width: 100%; opacity: 0.22; transform: translateY(-50%); }

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 24px 60px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(227,197,103,0.35);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 26px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,39,0.25); }

.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .sub {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 18px;
  font-weight: 500;
}
.hero p.desc {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-trust { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-trust div strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--white); }
.hero-trust div span { font-size: 0.8rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.06em; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 460px;
}
.hero-visual .orbit {
  position: absolute;
  border: 1px dashed rgba(227, 197, 103, 0.3);
  border-radius: 50%;
}
.orbit-1 { width: 380px; height: 380px; }
.orbit-2 { width: 300px; height: 300px; }
.hero-visual .node {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201,162,39,0.18);
}
.node-1 { top: 6%; left: 12%; }
.node-2 { bottom: 10%; right: 8%; }
.node-3 { top: 45%; right: -2%; width: 8px; height: 8px; }

.logo-plate {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.14), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float-logo 5s ease-in-out infinite;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.logo-plate img { width: 62%; height: 62%; object-fit: contain; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35)); }
@keyframes float-logo {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-cue .line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: scroll-cue-anim 1.8s ease infinite; }
@keyframes scroll-cue-anim { 0% { opacity: 0.2; } 50% { opacity: 1; } 100% { opacity: 0.2; } }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   A PROPOS
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  position: relative;
  background: var(--forest-deep);
  border-radius: var(--radius-l);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-visual .route-graphic { width: 82%; }
.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 20%, rgba(201,162,39,0.25), transparent 55%);
}
.about-badge {
  position: absolute;
  bottom: -26px;
  left: -26px;
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 22px 26px;
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-badge strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--forest-deep); display: block; }
.about-badge span { font-size: 0.78rem; color: var(--ink-soft); }

.about-text p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.02rem; }
.about-list { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.95rem; color: var(--forest-deep); }
.about-list li svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-m);
  padding: 34px 26px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--forest-deep), var(--forest-mid));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.06); }
.service-icon svg { width: 28px; height: 28px; color: var(--gold-light); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 0.93rem; margin-bottom: 18px; }
.service-link { font-weight: 700; font-size: 0.85rem; color: var(--forest-deep); display: inline-flex; align-items: center; gap: 6px; }
.service-link svg { width: 15px; height: 15px; transition: transform var(--transition); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ==========================================================================
   DESTINATIONS
   ========================================================================== */
.destinations-map {
  position: relative;
  padding: 20px 0 60px;
}
.route-line-svg { width: 100%; height: auto; display: block; }
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-top: -20px;
}
.destination-card {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform var(--transition);
}
.destination-card:hover { transform: translateY(-6px); }
.destination-flag { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.destination-card h3 { font-size: 1.25rem; margin-bottom: 4px; }
.destination-card .city { font-weight: 700; color: var(--gold); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.08em; margin-bottom: 14px; display: block; }
.destination-card p { color: var(--ink-soft); font-size: 0.92rem; }
.destination-card .route-index {
  position: absolute; top: 26px; right: 26px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gray-mid);
  font-weight: 600;
}
.destination-card.add-more {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  border: 2px dashed var(--gray-mid);
  box-shadow: none;
  color: var(--ink-soft);
}
.destination-card.add-more svg { width: 30px; height: 30px; color: var(--gold); margin-bottom: 12px; }

/* ==========================================================================
   POURQUOI NOUS CHOISIR
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-l);
  overflow: hidden;
}
.why-item {
  background: var(--forest-deep);
  padding: 40px 28px;
  transition: background var(--transition);
}
.why-item:hover { background: var(--forest-mid); }
.why-item svg { width: 30px; height: 30px; color: var(--gold-light); margin-bottom: 18px; }
.why-item h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.why-item p { color: rgba(255,255,255,0.62); font-size: 0.86rem; }

/* ==========================================================================
   STATISTIQUES
   ========================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item strong {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--forest-deep);
  display: block;
}
.stat-item strong .suffix { color: var(--gold); }
.stat-item span { color: var(--ink-soft); font-weight: 600; font-size: 0.92rem; }

/* ==========================================================================
   TEMOIGNAGES
   ========================================================================== */
.testimonial-slider { position: relative; max-width: 780px; margin: 0 auto; }
.testimonial-track { overflow: hidden; }
.testimonial-slides { display: flex; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.testimonial-slide { min-width: 100%; padding: 20px 10px; text-align: center; }
.testimonial-slide .quote-mark { font-family: var(--font-display); font-size: 3.5rem; color: var(--gold); line-height: 1; display: block; margin-bottom: 6px; }
.testimonial-slide p.text { font-family: var(--font-display); font-size: 1.35rem; color: var(--forest-deep); line-height: 1.5; margin-bottom: 26px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-deep), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-display); font-weight: 600;
}
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--forest-deep); }
.testimonial-author span { font-size: 0.8rem; color: var(--ink-soft); }
.testimonial-note { text-align: center; font-size: 0.78rem; color: var(--ink-soft); margin-top: 20px; opacity: 0.75; font-style: italic; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px; }
.testimonial-controls button {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--gray-mid);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}
.testimonial-controls button:hover { background: var(--forest-deep); border-color: var(--forest-deep); }
.testimonial-controls button:hover svg { color: var(--white); }
.testimonial-controls button svg { width: 18px; height: 18px; color: var(--forest-deep); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-mid); padding: 0; }
.testimonial-dots button.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* ==========================================================================
   PARTENAIRES
   ========================================================================== */
.partners-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.partner-tile {
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-m);
  padding: 26px 20px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.partner-tile:hover { border-color: var(--gold); transform: translateY(-4px); }
.partner-tile .partner-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--forest-deep);
  font-weight: 600;
  margin-bottom: 4px;
}
.partner-tile .partner-tag { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); font-weight: 700; }
.partners-note { text-align: center; color: var(--ink-soft); font-size: 0.85rem; margin-top: 30px; font-style: italic; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  text-align: left;
  font-weight: 700;
  font-size: 1rem;
  color: var(--forest-deep);
}
.faq-question .icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.faq-question .icon svg { width: 14px; height: 14px; color: var(--forest-deep); transition: transform var(--transition); }
.faq-item.open .faq-question .icon { background: var(--gold); }
.faq-item.open .faq-question .icon svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer div { padding: 0 26px 24px; color: var(--ink-soft); font-size: 0.95rem; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; }
.contact-info-card {
  background: var(--forest-deep);
  border-radius: var(--radius-l);
  padding: 44px 36px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.68); font-size: 0.92rem; margin-bottom: 32px; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-row:first-of-type { border-top: none; }
.contact-row .ic {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row .ic svg { width: 20px; height: 20px; color: var(--gold-light); }
.contact-row .label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); margin-bottom: 3px; }
.contact-row .value { font-weight: 600; font-size: 0.96rem; }
.contact-row .value a { transition: color var(--transition); }
.contact-row .value a:hover { color: var(--gold-light); }
.contact-social { display: flex; gap: 10px; margin-top: 30px; }
.contact-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.contact-social a:hover { background: var(--gold); transform: translateY(-3px); }
.contact-social a svg { width: 18px; height: 18px; color: var(--white); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius-l);
  padding: 44px 40px;
}
.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-form-wrap > p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--forest-deep); margin-bottom: 8px; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-s);
  background: var(--gray-light);
  transition: border-color var(--transition), background var(--transition);
  color: var(--ink);
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error { display: none; color: #B3261E; font-size: 0.78rem; margin-top: 6px; font-weight: 600; }
.form-group.invalid input, .form-group.invalid textarea { border-color: #B3261E; background: #FDF3F2; }
.form-group.invalid .form-error { display: block; }
.form-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 14px; text-align: center; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #EAF6EF;
  border: 1px solid #B7DFC4;
  color: #1E6B3C;
  padding: 16px 18px;
  border-radius: var(--radius-s);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--forest-dark); color: rgba(255,255,255,0.75); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 44px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { height: 40px; }
.footer-brand span { font-family: var(--font-display); color: var(--white); font-size: 1.1rem; font-weight: 600; }
.footer-col p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 0.9rem; transition: color var(--transition), padding-left var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--gold); }
.footer-social a svg { width: 16px; height: 16px; color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold-light); }

/* Back to top */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-strong);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 900;
}
#back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-4px); }
#back-to-top svg { width: 20px; height: 20px; }

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 900;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; color: var(--white); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p.desc { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-visual { height: 340px; order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav, .header-actions .btn-gold { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 80px 0; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-info-card, .contact-form-wrap { padding: 32px 24px; }
  .about-badge { position: static; margin-top: -40px; margin-left: 20px; margin-right: 20px; }
  .hero-trust { gap: 20px; }
  #back-to-top { right: 18px; bottom: 18px; width: 44px; height: 44px; }
  .whatsapp-float { left: 18px; bottom: 18px; width: 50px; height: 50px; }
}
