/* ═══════════════════════════════════════════════════
   SOCIÉTÉ MAYA GUINÉE — Design System Premium
   Version 2.0 · Corporate Premium
═══════════════════════════════════════════════════ */

/* ── 1. TOKENS ── */
:root {
  --navy:       #0A1E3C;
  --navy-deep:  #06122b;
  --gold:       #BFA46A;
  --gold-hover: #d4b97e;
  --gold-light: #f0e8d5;
  --off-white:  #F7F8FA;
  --white:      #FFFFFF;
  --charcoal:   #1F2937;
  --grey-dark:  #374151;
  --grey-mid:   #6B7280;
  --grey-light: #E5E7EB;
  --border:     #e2e6ea;

  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  --header-h: 80px;
  --radius:   6px;
  --shadow-sm: 0 2px 8px rgba(10,30,60,.06);
  --shadow-md: 0 8px 32px rgba(10,30,60,.10);
  --shadow-lg: 0 20px 60px rgba(10,30,60,.15);
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); color: var(--navy); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { color: var(--grey-dark); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 100px 0; }
.bg-offwhite { background: var(--off-white); }
.center { text-align: center; }

/* ── 3. BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 2rem; border-radius: var(--radius);
  font-family: var(--font-body); font-size: .9rem; font-weight: 600;
  letter-spacing: .3px; cursor: pointer; transition: var(--transition);
  border: 2px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(191,164,106,.3); }
.btn-gold-sm { background: var(--gold); color: var(--navy); padding: .5rem 1.2rem; font-size: .8rem; border-radius: 4px; }
.btn-gold-sm:hover { background: var(--gold-hover); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-white { border-color: rgba(255,255,255,.6); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ── 4. EYEBROW / SECTION HEADER ── */
.eyebrow {
  font-size: .75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: .75rem; display: block;
}
.eyebrow.light { color: var(--gold-light); }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center h2 { max-width: 700px; margin: 0 auto .75rem; }
.section-lead { font-size: 1.1rem; color: var(--grey-mid); margin-top: .5rem; }
.section-header.space-between { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; flex-wrap: wrap; }

/* ── 5. HEADER ── */
.site-header {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(10,30,60,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(191,164,106,.15);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(6,18,43,.99);
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: .75rem; }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--gold); color: var(--navy);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.2rem;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-maya { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--gold); letter-spacing: 2px; }
.logo-guinee { font-family: var(--font-head); font-weight: 400; font-size: .65rem; color: rgba(255,255,255,.7); letter-spacing: 3px; }

/* Nav */
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; gap: .25rem; align-items: center; }
.nav-link {
  display: flex; align-items: center; gap: .3rem;
  padding: .5rem 1rem; border-radius: 4px;
  color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 500;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active::after { content:''; display: block; }
.chevron { font-size: .75rem; transition: var(--transition); display: inline-block; }
.has-mega:hover .chevron { transform: rotate(90deg); }
.header-cta { padding: .65rem 1.6rem; border-radius: 4px; }

/* Mega Menu */
.has-mega { position: relative; }
.mega-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  min-width: 780px;
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(-12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.has-mega:hover .mega-menu {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.mega-inner { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 0; padding: 0; }
.mega-col { padding: 2rem; }
.mega-col:not(:last-child) { border-right: 1px solid var(--border); }
.mega-title { font-size: .7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.mega-link {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: .85rem; border-radius: 8px; margin-bottom: .25rem;
  transition: var(--transition);
}
.mega-link:hover { background: var(--off-white); }
.mega-icon { font-size: 1.4rem; margin-top: .1rem; flex-shrink: 0; }
.mega-link strong { display: block; font-size: .9rem; color: var(--navy); font-weight: 600; margin-bottom: .1rem; }
.mega-link small { color: var(--grey-mid); font-size: .78rem; line-height: 1.4; }
.mega-cta-block { margin-top: 1.5rem; padding: 1.25rem; background: var(--off-white); border-radius: 8px; }
.mega-cta-block p { font-size: .8rem; color: var(--grey-mid); margin-bottom: .75rem; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed; top: 0; right: -100%; width: 320px; height: 100vh;
  background: var(--navy-deep); z-index: 2000;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-drawer.open { right: 0; }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.1);
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; letter-spacing: 2px;
}
.drawer-close { background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; }
.drawer-nav { padding: 1rem; display: flex; flex-direction: column; }
.d-link {
  color: rgba(255,255,255,.85); padding: .9rem 1rem; border-radius: 6px;
  font-size: .95rem; font-weight: 500; display: block; transition: var(--transition);
}
.d-link:hover { background: rgba(255,255,255,.05); color: var(--white); }
.d-cta { background: var(--gold); color: var(--navy); margin-top: 1rem; text-align: center; font-weight: 700; }
.d-toggle {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between;
}
.d-sub { display: none; padding: 0 .5rem 0 1.5rem; }
.d-sub.open { display: block; }
.d-sub a { color: rgba(255,255,255,.65); padding: .6rem .75rem; display: block; font-size: .88rem; border-radius: 4px; transition: var(--transition); }
.d-sub a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1999; display: none; }
.drawer-overlay.visible { display: block; }

/* ── 6. HERO ── */
.hero-section {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--header-h);
  background: var(--navy); /* Fallback before video/poster loads */
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(6,18,43,.88) 0%, rgba(10,30,60,.65) 60%, rgba(10,30,60,.3) 100%);
}
.hero-content { position: relative; z-index: 10; max-width: 800px; padding: 6rem 1.5rem; margin-left: 2%; text-align: left; }
.hero-badge {
  display: inline-block; border: 1px solid var(--gold); color: var(--gold);
  font-size: .7rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  padding: .4rem 1.1rem; border-radius: 50px; margin-bottom: 1.75rem;
}
.hero-section h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero-section h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.8); margin-bottom: 2.75rem; max-width: 560px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.5); font-size: 1.4rem;
  animation: bounceY 2s infinite;
}
@keyframes bounceY { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(10px)} }

/* ── 7. REASSURANCE BAR ── */
.reassurance-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.reasgrid {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center; padding: 1.75rem 2rem; gap: 0;
}
.reas-item { text-align: center; padding: 0 1.5rem; }
.reas-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.reas-label { font-size: .78rem; color: var(--grey-mid); margin-top: .3rem; font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }
.reas-divider { width: 1px; height: 48px; background: var(--border); }

/* ── 8. GROUP INTRO / SPLIT LAYOUT ── */
.split-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.split-layout.reverse { direction: rtl; }
.split-layout.reverse > * { direction: ltr; }
.split-text h2 { margin-bottom: 1.25rem; }
.split-text p { margin-bottom: 1rem; }
.split-text p:last-of-type { margin-bottom: 2rem; }
.stat-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem 1.5rem; text-align: center;
  transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--gold); }
.stat-icon { font-size: 2.2rem; margin-bottom: .75rem; }
.stat-label { font-size: .85rem; font-weight: 600; color: var(--navy); }

/* ── 9. ACTIVITY CARDS ── */
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.activity-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 2rem 1.75rem; position: relative; overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
}
.activity-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.activity-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.activity-card:hover::before { transform: scaleX(1); }
.acard-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem; }
.acard-icon { font-size: 2rem; }
.acard-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--grey-light); line-height: 1; }
.activity-card h3 { margin-bottom: .75rem; }
.activity-card p { color: var(--grey-mid); font-size: .9rem; flex: 1; margin-bottom: 1.5rem; }
.acard-link { font-size: .82rem; font-weight: 600; color: var(--gold); margin-top: auto; }

/* ── 10. TRUST GRID ── */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.trust-item {
  padding: 2rem; border: 1px solid var(--border); border-radius: 10px;
  transition: var(--transition);
}
.trust-item:hover { box-shadow: var(--shadow-sm); border-color: var(--gold); }
.trust-icon { font-size: 2rem; margin-bottom: 1rem; }
.trust-item h4 { margin-bottom: .75rem; color: var(--navy); }
.trust-item p { font-size: .88rem; color: var(--grey-mid); }

/* ── 11. GOUVERNANCE BANNER ── */
.gouv-banner { background: var(--navy); color: var(--white); padding: 100px 0; }
.gouv-inner { display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: center; }
.gouv-text h2 { color: var(--white); margin-bottom: 1rem; }
.gouv-text p { color: rgba(255,255,255,.75); margin-bottom: 2rem; max-width: 540px; }
.gouv-pillars { display: flex; flex-direction: column; gap: 1.5rem; }
.pillar { display: flex; align-items: center; gap: 1rem; }
.pillar span { font-size: 1.5rem; }
.pillar p { color: rgba(255,255,255,.8); font-weight: 500; font-size: .9rem; margin: 0; }

/* ── 12. SERVICES ── */
.services-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.75rem 1.5rem; transition: var(--transition);
}
.svc-card:hover { box-shadow: var(--shadow-sm); border-color: var(--gold); }
.svc-card h4 { margin-bottom: .75rem; color: var(--navy); font-size: .95rem; }
.svc-card p { font-size: .85rem; color: var(--grey-mid); }

/* ── 13. ZONES ── */
.zone-list { list-style: none; margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: .75rem; }
.zone-list li { color: var(--grey-dark); font-size: .92rem; }
.map-visual { display: flex; align-items: center; justify-content: center; }
.map-placeholder {
  width: 100%; aspect-ratio: 1.2;
  background: var(--off-white); border: 2px solid var(--border);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  flex-direction: column; position: relative; text-align: center;
}
.map-placeholder p { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.map-placeholder small { color: var(--grey-mid); font-size: .8rem; }
.map-dot {
  position: absolute; width: 14px; height: 14px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(191,164,106,.25);
  animation: pulse 2s infinite;
}
.dot-1 { top: 30%; left: 40%; }
.dot-2 { top: 55%; left: 55%; }
.dot-3 { top: 45%; left: 25%; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 4px rgba(191,164,106,.25)} 50%{box-shadow:0 0 0 10px rgba(191,164,106,.08)} }

/* ── 14. ACTUALITES ── */
.actu-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1.5rem; }
.actu-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 2rem; transition: var(--transition);
}
.actu-card.featured { grid-row: span 1; }
.actu-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.actu-tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold);
  padding: .25rem .75rem; border-radius: 50px; margin-bottom: 1rem;
}
.actu-card h3 { font-size: 1rem; margin-bottom: .75rem; }
.actu-card p { font-size: .85rem; color: var(--grey-mid); margin-bottom: 1.25rem; }
.read-more { font-size: .82rem; font-weight: 600; color: var(--gold); }

/* ── 15. CTA FINAL ── */
.cta-final { background: var(--navy); color: var(--white); }
.cta-final h2 { color: var(--white); margin-bottom: 1rem; }
.cta-final p { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto 2.5rem; }
.cta-final-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── 16. FOOTER ── */
.site-footer { background: var(--navy-deep); color: var(--white); }
.footer-main {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem; padding: 80px 2rem 60px;
}
.footer-brand p { color: rgba(255,255,255,.55); font-size: .88rem; margin-top: .5rem; max-width: 260px; }
.site-footer h5 { color: var(--gold); font-size: .7rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem; font-weight: 700; }
.site-footer ul { display: flex; flex-direction: column; gap: .6rem; }
.site-footer li a { color: rgba(255,255,255,.6); font-size: .88rem; transition: var(--transition); }
.site-footer li a:hover { color: var(--white); }
.footer-contact-col p { font-size: .88rem; color: rgba(255,255,255,.6); margin-bottom: .5rem; }
.footer-contact-col a { color: var(--gold); }
.footer-bottom {
  padding: 1.5rem 2rem; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .78rem; }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { color: rgba(255,255,255,.35); font-size: .78rem; transition: var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* ── 17. INTERIOR PAGE HERO ── */
.page-hero {
  background: var(--navy); padding: calc(var(--header-h) + 80px) 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('hero.png') center/cover; opacity: .12;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { color: var(--white); max-width: 780px; margin-bottom: 1.25rem; }
.page-hero .hero-sub { color: rgba(255,255,255,.75); max-width: 620px; font-size: 1.05rem; margin-bottom: 2rem; }
.page-hero .breadcrumb { display: flex; gap: .5rem; color: rgba(255,255,255,.4); font-size: .82rem; margin-top: 2.5rem; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.55); }
.page-hero .breadcrumb span { color: var(--gold); }

/* Interior content helpers */
.content-section { padding: 80px 0; }
.content-section:nth-child(even) { background: var(--off-white); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.icon-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.icon-row { display: flex; gap: 1rem; align-items: flex-start; }
.icon-row .ico { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.icon-row p { margin: 0; font-size: .92rem; }
.bordered-card {
  border: 1px solid var(--border); border-radius: 10px;
  padding: 2rem; transition: var(--transition);
}
.bordered-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.proof-bar {
  background: var(--navy); color: var(--white);
  padding: 48px 0;
}
.proof-bar .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; }
.proof-item { text-align: center; }
.proof-item .p-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--gold); }
.proof-item .p-label { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: .25rem; text-transform: uppercase; letter-spacing: .5px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: .75rem; max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: var(--white);
  border: none; padding: 1.25rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-head); font-size: .95rem; font-weight: 600; color: var(--navy);
  cursor: pointer; transition: var(--transition);
}
.faq-q:hover { background: var(--off-white); }
.faq-q.active { background: var(--navy); color: var(--white); }
.faq-a { display: none; padding: 1.25rem 1.5rem; font-size: .9rem; color: var(--grey-mid); background: var(--white); border-top: 1px solid var(--border); }
.faq-a.open { display: block; }
.faq-toggle { font-size: 1.2rem; color: var(--gold); }

/* Contact Form */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 5rem; align-items: start; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .9rem 1.1rem; border: 1.5px solid var(--border);
  border-radius: 6px; font-family: var(--font-body); font-size: .9rem;
  color: var(--charcoal); transition: var(--transition); background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(191,164,106,.12); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-reassurance { font-size: .78rem; color: var(--grey-mid); margin-top: 1rem; }
.contact-info-card { background: var(--navy); color: var(--white); border-radius: 12px; padding: 2.5rem; }
.contact-info-card h3 { color: var(--white); margin-bottom: 1.5rem; }
.cinfo-row { display: flex; flex-direction: column; gap: 1.25rem; }
.cinfo-item { display: flex; gap: 1rem; align-items: flex-start; }
.cinfo-item .ico { color: var(--gold); font-size: 1.2rem; }
.cinfo-item p { margin: 0; color: rgba(255,255,255,.75); font-size: .88rem; }

/* ── 18. ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── 19. RESPONSIVE ── */
@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }
  .split-layout, .split-layout.reverse { grid-template-columns: 1fr; gap: 3rem; direction: ltr; }
  .trust-grid, .services-row { grid-template-columns: 1fr 1fr; }
  .gouv-inner { grid-template-columns: 1fr; }
  .actu-grid { grid-template-columns: 1fr; }
  .reasgrid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .reas-divider { display: none; }
  .two-col, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .section-header.space-between { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .section-pad { padding: 64px 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .trust-grid, .services-row, .three-col { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-final-btns { flex-direction: column; align-items: center; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
}


/* New Logo Styles */
img.site-logo { max-height: 60px; width: auto; display: block; }
img.drawer-logo { max-height: 50px; width: auto; display: block; }
img.footer-logo { max-height: 160px; width: auto; display: block; }
@media (max-width: 768px) { img.site-logo { max-height: 48px; } img.footer-logo { max-height: 120px; } }

/* ═══════════════════════════════════════════════════
   PREMIUM VISUAL ENHANCEMENTS (Injected)
═══════════════════════════════════════════════════ */

/* Reassurance Bar - Navy with subtle dot pattern */
.reassurance-bar {
  background-color: var(--navy-deep);
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  border-bottom: none;
}
.reassurance-bar .reas-num { color: var(--gold); }
.reassurance-bar .reas-label { color: rgba(255, 255, 255, 0.7); }
.reassurance-bar .reas-divider { background: rgba(255, 255, 255, 0.1); }

/* Activites Section */
.activites-section { background-color: #F8F9FA; }
.activity-card:hover { 
  background-color: var(--navy); 
  border-color: var(--navy); 
}
.activity-card:hover h3, .activity-card:hover p, .activity-card:hover .acard-num { color: var(--white); }
.activity-card:hover .acard-link { color: var(--gold); }
.activity-card * { transition: var(--transition); }

/* Confiance - Image Background with Light Overlay */
.why-trust {
  position: relative;
  background: url('image/4.png') center/cover fixed;
}
.why-trust::before {
  content: ''; position: absolute; inset: 0; background: rgba(255, 255, 255, 0.92); z-index: 0;
}
.why-trust .container { position: relative; z-index: 1; }

/* Gouvernance Banner - Dark Image Background */
.gouv-banner {
  position: relative;
  background: url('image/3.png') center/cover fixed;
}
.gouv-banner::before {
  content: ''; position: absolute; inset: 0; 
  background: linear-gradient(90deg, rgba(5, 16, 36, 0.95) 0%, rgba(5, 16, 36, 0.75) 100%);
  z-index: 0;
}
.gouv-banner .gouv-inner { position: relative; z-index: 1; }

/* Zones - Vector Map background */
.zones-section {
  position: relative;
  background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Africa_map_blank.svg/800px-Africa_map_blank.svg.png') right center / contain no-repeat;
  background-size: 50%;
  background-blend-mode: luminosity;
}
.zones-section::before {
  content: ''; position: absolute; inset: 0; background: rgba(255, 255, 255, 0.85); z-index: 0;
}
.zones-section .container { position: relative; z-index: 1; }

/* CTA Final - Blended Image Background */
.cta-final {
  position: relative;
  background: url('https://images.unsplash.com/photo-1541888086425-d81bb19240f5?auto=format&fit=crop&q=80') center/cover fixed;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0; 
  background: linear-gradient(135deg, rgba(10,30,60, 0.9) 0%, rgba(191,164,106, 0.8) 100%);
  z-index: 0;
}
.cta-final .container { position: relative; z-index: 1; }

/* Page Specific Heroes */
.services-hero::before {
  background-image: url('image/6.png') !important;
  opacity: 0.25; /* Slightly increased for better visibility of the new image */
}

.actualites-hero::before {
  background-image: url('image/7.png') !important;
  opacity: 0.25;
}

.contact-hero::before {
  background-image: url('image/8.png') !important;
  opacity: 0.25;
}

.groupe-hero::before {
  background-image: url('image/9.png') !important;
  opacity: 0.25;
}

.football-hero::before {
  background-image: url('image/10.png') !important;
  opacity: 0.25;
}

.import-export-hero::before {
  background-image: url('image/11.png') !important;
  opacity: 0.25;
}

.mines-hero::before {
  background-image: url('image/12.png') !important;
  opacity: 0.25;
}

.transport-hero::before {
  background-image: url('image/13.png') !important;
  opacity: 0.25;
}

.logistique-hero::before {
  background-image: url('image/14.png') !important;
  opacity: 0.25;
}

.hotellerie-hero::before {
  background-image: url('image/15.png') !important;
  opacity: 0.25;
}

/* ════════════════════════ LANGUAGES ════════════════════════ */
.lang-selector {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--navy);
  transition: color 0.3s ease;
}

.lang-selector:hover .lang-current {
  color: var(--gold);
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(10, 31, 64, 0.1);
  border-radius: 4px;
}

.lang-current svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  min-width: 120px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 6px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.lang-selector:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.lang-link {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.2s ease;
}

.lang-link:hover {
  background: var(--off-white);
  color: var(--gold);
}

.lang-link.active {
  font-weight: 700;
  color: var(--gold);
}

/* Mobile Language Styles */
.mobile-lang-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 2rem;
  padding: 0 5%;
}

.m-lang-btn {
  text-align: center;
  padding: 10px;
  border: 1px solid rgba(10, 31, 64, 0.15);
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.m-lang-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* Specific Font for Mandarin */
.lang-zh {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  line-height: 1.6;
}

.lang-zh h1, .lang-zh h2, .lang-zh h3 {
  font-family: inherit;
  font-weight: 700;
}
/* Floating Language Selector */
.floating-lang {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--navy);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  cursor: pointer;
  z-index: 2000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid var(--gold);
}

.floating-lang:hover {
  transform: scale(1.1) translateY(-5px);
  background: var(--gold);
}

.floating-lang svg {
  width: 24px;
  height: 24px;
}

.floating-lang .fl-dropdown {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: var(--white);
  min-width: 140px;
  border-radius: 10px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.15);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.floating-lang:hover .fl-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fl-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--navy);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.fl-link:hover {
  background: var(--off-white);
  color: var(--gold);
}

.fl-link.active {
  color: var(--gold);
}

.fl-link span {
  font-size: 0.75rem;
  opacity: 0.6;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .floating-lang {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}
