 
    :root{
      --brand:#d3e8c2;
      --brand-900: #2c522b;
      --text:#555;
      --muted:#64748b;
      --bg:#ffffff;
      --panel:#f8fafc;
      --ring:rgba(15,163,107,.35);
      --radius:12px;
      --shadow:0 4px 15px rgba(2,6,23,.08);

    }

    *{box-sizing:border-box;
      margin:0;padding:0;
      font-family: 'poppins',sans-serif;
    }
    body{
      background:#e4e7ee;
    }
    .wrapper{width:min(90vw,1100px);
       margin-inline:auto}
    
  /* — Hero avec image de fond — */
.hero {
  margin-top:70px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/image/bannerslide.png");  /* essaie aussi ../image/... si besoin */
  background-repeat: no-repeat;
  background-position: left;   
  background-size: cover;
  height: 90vh;
  color: #fff;
  text-align: center;
  z-index: 1;
  
}

/* Optionnel: léger voile pour lisibilité du texte */
.hero::before {
 content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   width: 100%;
   background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
   z-index:-1;
   background-size: cover;
   background-position: center;
   -webkit-filter: blur(2px) brightness(0.6);
   filter: blur(2px) brightness(0.6);
}


/* S’assure qu’aucune ancienne règle ne casse l’image */

    .hero-text h1{font-size:3rem;margin-bottom:12px;color:var(--bg)}
    .hero-text p{font-size:1rem;color:var(--bg)}

    /* Contact info */
    .contact-section{padding:60px 20px}
    .contact-section h2{text-align:left;margin-bottom:30px;color:#2c522b;}
    .contact-flex{display:flex;gap:30px;justify-content:space-between;align-items:stretch;flex-wrap:wrap}
    .contact-info{flex:1 1 300px;display:grid;gap:20px}
    .info-item{display:flex;align-items:flex-start;gap:14px;background:var(--bg);padding:16px;border-radius:var(--radius);box-shadow:var(--shadow)}
    .info-item i{font-size:20px;color:#2c522b;margin-top:4px}
    .info-item h3{margin:0;font-size:1rem;color:#000;}
    .info-item p,.info-item a{font-size:.95rem;color:var(--text)}
    .info-item a{color: #0727ca;text-decoration:none}
    .info-item a:hover{text-decoration:underline;color:var(--brand-900)}

    .socials{display:flex;justify-content:flex-start;gap:12px;margin-top:10px}
    .socials a{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:#2c522b;color:var(--bg);font-size:16px;transition:.2s}
    .socials a:hover{background: #5d8c4a;color:#fff}

    /* Map equal height next to info */
    .map-wrap{flex:1 1 300px;display:flex}
    .map{border:0;width:100%;height:auto;min-height:300px;border-radius:var(--radius);box-shadow:var(--shadow);flex:1}

    @media(max-width:900px){
      .contact-flex{flex-direction:column}
      .map{width:100%;height:250px}
       .hero-text h1{font-size:2rem;}
       .hero-text p{font-size:14px;}

    }

    /* Form */
    .form-section{background:#e9f3ed;padding:60px 20px;text-align:center}
     .form-section h2{
        color: #2c522b;
        margin-bottom: 15px;
      }
       .form-section p{
        color: #000;
        margin-bottom: 10px;
       }
    .form-card{max-width:700px;margin:0 auto;background:#fff;padding:32px;border-radius:var(--radius);box-shadow:var(--shadow);color:var(--text);text-align:left;position:relative;z-index:2}
    form{display:grid;gap:18px}
    .two-col{display:flex;gap:16px}
    .two-col > div{flex:1}
    @media(max-width:600px){
      .two-col{flex-direction:column;
    }
  }
    label{font-weight:600;
      font-size:.9rem;margin-bottom:4px;
      display:block;
      color: #2c522b;
    }


    input, textarea{width:100%;padding:12px 14px;border:1.5px solid #e2e8f0;border-radius:10px;background:#fff;font:inherit;color:var(--text);caret-color:var(--text);-webkit-text-fill-color:var(--text);}
    input::placeholder, textarea::placeholder{color:var(--muted);opacity:.9}
    input:focus, textarea:focus{outline:none;border-color:var(--brand);box-shadow:0 0 0 3px var(--ring)}
    textarea{height:120px;resize:vertical;
    overflow-y: scroll;}
    .btn{background:#2c522b;border:none;color:#fff;font-weight:600;padding:14px;border-radius:10px;cursor:pointer;transition:.2s;width:100%}
    .btn:hover{background:var(--brand-900)}
  
    input, textarea{background-clip:padding-box}
  