    :root {
      --gold: #C9A84C;
      --gold-light: #E8C97A;
      --dark: #0A0A0A;
      --deep: #111111;
      --panel: #161616;
      --text: #E8E4DC;
      --muted: #8A8278;
      --accent: #1A3A2A;
    }

  button, 
a, 
input, 
textarea, 
[role="button"] {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

*:focus:not(:focus-visible) {
    outline: none;
}
    body h2{
      font-size: 45px !important;
    }


    body p{
      font-size: 15px !important;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--dark);
      color: var(--text);
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.2rem 5%;
      background: rgba(10,10,10,0.2);
      backdrop-filter: blur(5px);
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }

    .lang-container { position: relative; display: inline-block; }

#lang-menu {
  display: none; /* Caché par défaut */
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background: white;
  border: 1px solid #ccc;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: all 0.3s ease-out;
  margin-top: 0rem;
  margin-left: 2rem;
  padding: 1.2rem 5%;
  background: rgba(237, 228, 228,0.8);
  backdrop-filter: blur(5px);
  border:none;
  border-radius: 10px;
  animation: ani 0.1s ease-out;
}
#lang-btn{
  padding: 3px; 
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#lang-btn:hover {
  background: rgba(201,168,76,0.1); border-radius: 4px;
  
}

/* #lang-menu{
  transition: all 0.3s ease-out;
  margin-top: 0rem;
  margin-left: 2rem;
  padding: 1.2rem 5%;
  background: rgba(237, 228, 228,0.8);
  backdrop-filter: blur(5px);
  border:none;
  border-radius: 10px;
  animation: ani 0.1s ease-out;
} */

@keyframes ani {
  0% { opacity: 0; 
      transform: scale(0.4);
   }
   50% { opacity: 0.5; 
      transform: scale(0.8);
   }
    100% { opacity: 1; 
        transform: scale(1);}

  
}

#lang-menu li { 
  font-weight: 600;
  padding: 10px 20px;
  color: var(--gold);
  border-radius: 10px;
  transition: background 0.3s, color 0.3s;
  transition: transform 0.3s;
 }
 
#lang-menu li:hover { 
  background: grey; 
  color: var(--dark);
  transform: scale(1.1);
}

/* Classe ajoutée par JS pour montrer le menu */
.show { 
  display: block !important; 
}
    .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 30px;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.08em;
      text-decoration: none;
    }

    .logo span { color: var(--text); font-weight: 300; }

   
    /* ── HERO ── */
    .hero {

      position: relative;
      width: 100%;
      min-height: 100vh; /* Ou height: 100vh */
      padding: 0; /* Important : on enlève le padding pour que l'image colle aux bords */
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero-mail-button, .hero-wha-button {
      border: solid 1px var(--gold);
      margin-top: 0.5rem;
      border-radius: 50px;
      font-weight: bold;
      font-style: italic;
      padding: 10px;
      background: rgba(152, 152, 152, 0);
      backdrop-filter: blur(5px);
      color: var(--gold);
      cursor: pointer;
      transition: all 0.3s;
    }
    .hero-mail-button{
      margin-right: 0.1rem;
    }

    .hero-wha-button{
      margin-left: 0.1rem;
    }


    .hero-mail-button:hover, .hero-wha-button:hover {
        transform: scale(1.05);
        background: var(--gold);
        color: var(--dark);
        border: solid 1px var(--dark);
    }

    .hero-mail-button:active, .hero-wha-button:active {
        transform: scale(0.95);
    }

    .hero-slider{
      width: 100%;
        position:absolute;
        inset: 0;
        z-index: 0;
    }

    .hero-image {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
    }

    .hero-image.active {
        opacity: 0.3;
    }
    .hero-content{
        position: relative;
        z-index: 1;
        text-align: center;
        padding: 8rem 5% 5rem;
    }

    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    }

    .hero-badge {
      display: inline-block;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      padding: 0.45rem 1.2rem;
      border-radius: 5px;
      margin-bottom: 2.5rem;
      animation: fadeUp 0.8s ease forwards;
      opacity: 0;
      backdrop-filter: blur(9px);
    }

    .hero-content h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size:70px !important;
      font-weight: bold;
      line-height: 1.08;
      max-width: 900px;
      margin: 0 auto 1.5rem;
      animation: fadeUp 0.9s 0.15s ease forwards;
      opacity: 0;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold);
    }

    .hero p.subtitle {
      font-size: 0.95rem;
      color: var(--muted);
      max-width: 560px;
      margin: 0 auto 3rem;
      line-height: 1.85;
      letter-spacing: 0.02em;
      animation: fadeUp 1s 0.3s ease forwards;
      opacity: 0;
    }


    /* ── STATS BAR ── */
    .stats-bar {
      background: var(--panel);
      border-top: 1px solid rgba(201,168,76,0.12);
      border-bottom: 1px solid rgba(201,168,76,0.12);
      display: flex; justify-content: center; flex-wrap: wrap;
      gap: 0;
    }

    .stat-item {
      padding: 2.5rem 4rem;
      text-align: center;
      border-right: 1px solid rgba(201,168,76,0.1);
      flex: 1; min-width: 180px;
    }

    .stat-item:last-child { border-right: none; }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 0.4rem;
    }

    .stat-label {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* ── SECTIONS ── */
    section { padding: 7rem 5%; }

    .section-tag {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
      display: block;
    }

    h2.section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 4vw, 3.2rem);
      font-weight: bold;
      line-height: 1.2;
      max-width: 700px;
      margin-bottom: 1.5rem;
    }

    h2.section-title em { font-style: italic; color: var(--gold); }

    .section-desc {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.9;
      max-width: 580px;
      margin-bottom: 3rem;
    }

    /* ── WHY AFRICA ── */
    .why-africa {
      background:
        radial-gradient(ellipse 70% 60% at 30% 50%, rgba(26,58,42,0.2) 0%, transparent 70%),
        var(--panel);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .africa-map  {
      position: relative;
      height: 420px;
      display: flex; align-items: center; justify-content: center;;
    }

    .africa-map svg{
      background: transparent;
      width: 100%; 
      height: auto;
      display: block;
    }

    .africa-map svg path {
      fill:none !important;
      stroke:#C9A84C;
      stroke-width: 1.5;
      stroke-linejoin: round;
    }


  

    .africa-map svg:hover path {
      fill: #1A3A2A;
      transition: fill 0.3s;
      stroke: var(--gold);
      stroke-width: 1.5px;
    }



    @keyframes pulse {
      0% { 
        r:4;
        opacity: 0.8;
       }
      100% { 
        r:50;
        opacity: 0;
       }
    }

    .wave {
      animation: pulse 2s infinite;
      transform-origin: center;
    }



    /* ── SERVICES ── */
    .services { background: var(--dark); }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(minmax(300px, 1fr));
        gap: 1.5px;
        margin-top: 3rem;
        background: #a77f101a;
    }

    .service-card {
        background: var(--panel);
        padding: 2.8rem 2.5rem;
        position: relative;
        overflow: hidden;
        transition: all 0.4s;
        cursor: default;
    }

    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      transform: scaleX(0);
      transition: transform 0.4s;
    }

    .service-card:hover {
        background: #1C1C1C; 
    }
    .service-card:hover::before {
        transform: scaleX(1);
     }

    .service-icon {
        font-size: 3rem;
        margin-bottom: 1.2rem;
        display: block;
    }

    .service-num {
        position: absolute;
        top: 2rem; right: 2.5rem;
        font-family: 'Cormorant Garamond', serif;
        font-size: 4rem;
        font-weight: 300;
        color: rgba(201,168,76,0.07);
        line-height: 1;
        user-select: none;
        transition: 0.4s;
    }
    .service-card:hover .service-num{
        color: var(--gold-light);
        transform: scale(1.1);
        text-shadow:0 0px 10px rgba(201,168,76,0.3); ;
    }

    .service-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 600;
      margin-bottom: 0.8rem;
      color: var(--text);
    }

    .service-card p {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.85;
    }

    .section-title{
      font-size: 50px;
      font-weight: bold;
    }



    /* ── process ── */
    .process {
      background: var(--panel);
      border-top: 1px solid rgba(201,168,76,0.1);
      border-bottom: 1px solid rgba(201,168,76,0.1);
    }

    .process-inner {
      max-width: 900px;
      margin: 0 auto;
    }

    .process-inner h2{
      font-size: clamp(3rem, 4vw, 3.2rem);
      font-weight: bold;
    }


    .process-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 3rem;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      left: 2.2rem; top: 0; bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3), transparent);
    }

    .step {
      display: flex;
      gap: 2.5rem;
      align-items: flex-start;
      padding: 2.5rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      
    }

    .step:hover .step-num {
        background: var(--gold);
        color: var(--dark);
        border-color:solid 1px var(--dark);
        transform: scale(1.1);
    }

    .step:last-child { border-bottom: none; }

    .step-num {
        flex-shrink: 0;
        width: 4.5rem; height: 4.5rem;
        border: 1px solid rgba(201,168,76,0.4);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--gold);
        background: var(--dark);
        position: relative; z-index: 1;
        transition: all 0.3s;
    }

    .step h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      animation: flott 1.5s ease infinite;
    }

    .step p {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.85;
      animation: flott 1.5s ease infinite;
    }

    .step:hover .step-content h4 {
        color: var(--gold);
        animation: none;
        
    }

    .process-inner h2{
      font-size: 50px;
    }
    
    .step:hover .step-content p {
        color: var(--gold);
        animation: none;
    }

    @keyframes flott{
        0% { transform: translateY(0); }
        50% { transform: translateY(-4px); }
        100% { transform: translateY(0); }
    }

    /* ── TRUST ── */
    .trust { 
        background: var(--dark);
        text-align: center;
        border-bottom: 1px solid rgba(201,168,76,0.12);
    }

    .trust h2 { margin: 0 auto 1rem; }
    .trust .section-desc { margin: 0 auto 4rem; text-align: center; }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat( minmax(220px, 1fr));
      gap: 1.5px;
      background: rgba(201,168,76,0.1);
      max-width: 900px;
      margin: 0 auto 4rem;
    }

    .trust-item {
      background: var(--panel);
      padding: 2.5rem 8rem;
      text-align: center;
      transition:  0.3s;
    }

    .trust-item:hover{
        background: #1C1C1C; 
    }

    .trust-item:hover .trust-icon {
        transform: scale(1.05);
        
    }

   .trust-item:hover h4 {
        transform: scale(1.05);
         
    }

   .trust-item:hover p {
        transform: scale(1.05);
        
    }


    .trust-icon { 
        font-size: 4rem;
        margin-bottom: 1rem; 
        transition: all 0.3s;
    }
    .trust-item h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      transition: all 0.3s;
    }

    .trust-item p { 
        font-size: 0.8rem;
        color: var(--muted); 
        line-height: 1.7; 
        transition: all 0.3s;
    }


    /* ── CONTACT ── */
     .contact { background: var(--panel); }

     .contact-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
        max-width: 900px;
        margin: 0 auto;
     }

     .contact-form {
        background: #1C1C1C;
        padding: 2.5rem;
        border-radius: 8px;
     }

     .contact-form h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 1.2rem;
      color: var(--text);
    }
    .contact-info h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 4vw, 3.2rem);
      font-weight: bold;
      line-height: 1.3;
      margin-bottom: 1.5rem;
    }

    .contact-info h3 em { font-style: italic; color: var(--gold); }

    .contact-info p {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.9;
      margin-bottom: 2.5rem;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .info-icon {
      width: 40px; height: 40px;
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 50%;
      display: flex; 
      align-items: center; 
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .info-item h5 {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.25rem;
    }

    .info-item p { 
      font-size: 0.85rem; 
      color: var(--muted); 
      margin: 0;
    }

    .mail-button, .wha-button{

      border: solid 1px var(--gold);
      margin-top: 0.5rem;
      border-radius: 50px;
      font-weight: bold;
      font-style: italic;
      padding: 10px;
      background: var(--panel);
      color: var(--gold);
      cursor: pointer;
      transition: all 0.3s;
    }
    .mail-button{
      margin-right: 0.5rem;
    }

    .wha-button{
      margin-left: 0.5rem;
    }

    .mail-button:hover, .wha-button:hover{
        transform: scale(1.05);
        background: var(--gold);
        color: var(--dark);
    }
    .mail-button:active, .wha-button:active{
        transform: scale(0.95);
    }


    /* ── FOOTER ── */
    footer {
        width: 100%;
        background: var(--deep);
        border-top: 1px solid rgba(201,168,76,0.12);
        padding: 3rem 5%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 600;
      color: var(--gold);
    }

    .footer-logo span { color: var(--muted); font-weight: 300; }

    footer p { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.05em; }

    .footer-tagline {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(201,168,76,0.5);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1; transform: translateY(0);
    }




    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size:50px;
      font: weight bold;;
      line-height: 1;
      max-width: 900px;
      margin: 0 auto 1.5rem;
      animation: fadeUp 0.9s 0.15s ease forwards;
      opacity: 0;
    }

  #lang-menu {
  display: none; 
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  background: white;
  border: 1px solid #ccc;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: all 0.3s ease-out;
  margin-top: 0rem;
  margin-left: -2rem;
  padding: 1.2rem 5%;
  background: rgba(237, 228, 228,0.8);
  backdrop-filter: blur(5px);
  border:none;
  border-radius: 10px;
  animation: ani 0.1s ease-out;
}

    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.2rem 5%;
      background: rgba(10,10,10,0.2);
      backdrop-filter: blur(5px);
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }

    #lang-btn{
      font-size: 7px;
    }



    .trust-item {
        background: var(--panel);
        padding: 2.5rem 2rem;
        text-align: center;
        transition:  0.3s;
      }

      .why-africa { grid-template-columns: 1fr; }
      .contact-inner { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .stat-item { padding: 2rem 2rem; }
      section { padding: 5rem 5%; }
      .africa-map { height: 280px; }
    }