/* ===================  VARIABLES / RESET  =================== */
:root{
  --green:#199137;          
  --red:#CF262E;            
  --red-gradian:#cf262fa5;            
  --dark:#1D1D1B;
  --dark-gradian:#9BA1A8;
  --primary:#2064B7;
  --gray:#9BA1A8;
  --soft:#F6F6F6;
  --soft-2:#FAFAFA;
  --card:#F6F6F6;
  --shadow: 0 10px 25px rgba(0,0,0,.08);
  --shadow--nav: 0 10px 25px rgba(202, 25, 25, 0.571);
  --radius-lg:18px;
  --radius-md:14px;
  --radius-sm:10px;
  --container: 1180px;
  
  --shadow-alpha: 0.70;

}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: 'Montserrat',  -apple-system, sans-serif;
  color: var(--dark);
  background:#fff;
  line-height:1.45;
  overflow-x: hidden;
}
img{max-width:100%;display:block}
/* ---------- HEADER : top red bar + nav vert ---------- */
/* HEADER FIXE */
header {
  width:100%;
  /* box-shadow: 0 3px 10px rgba(0,0,0,0.06); */
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* --- BARRE ROUGE --- */
.top-red {
  background: var(--red);
  color: white;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 18px;
  font-size:13px;
}
.top-red .mac-dots { display:flex; gap:8px; align-items:center; }
.dot { width:12px; height:12px; border-radius:50%; }
.dot.red { background:#ff605c; }
.dot.yellow { background:#ffbd2e; }
.dot.green { background: var(--green); }

.top-red .search {
  max-width:600px; width:50%;
  display:flex; justify-content:flex-end; gap:8px; align-items:center;
}
.search-box { display:flex; align-items:center; width:300px; }
.search-box input {
  flex:1; padding:10px 12px; border:1px solid #ccc; border-right:none;
  border-radius:6px 0 0 6px; outline:none;
}
.search-box button {
  padding:10px 15px; border:1px solid #ccc; border-radius:0 6px 6px 0;
  background: var(--red-gradian); color:#fff; cursor:pointer;
}
.search-box button:hover { background: var(--red); }
.top-red select { border-radius:6px; border:none; padding:10px 12px; font-size:13px; }

/* --- NAV --- */
nav.main-nav {
  background: var(--soft-2);
  padding:16px 20px;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position: sticky;
  top: 0; /* reste visible au scroll */
  z-index: 999;
}

.navnav { 
    box-shadow: 0 6px 18px rgba(176,75,75, var(--shadow-alpha)), 0 1px 0 rgba(251, 16, 16, 0.04) inset !important;
      
}

nav.main-nav img { width: 10%; }
nav.main-nav .wrap {
  display:flex;
  gap:28px;
}
nav.main-nav a {
  color: var(--dark);
  text-decoration:none;
  font-family: "Montserrat", sans-serif;
  font-weight:700;
  font-size:15px;
  position: relative;
}
nav.main-nav a::after {
  content:""; position:absolute; left:0; bottom:-4px;
  width:0%; height:2px; background: var(--dark);
  transition:width 0.3s ease;
}
nav.main-nav a:hover::after { width:100%; }

/* --- MENU BURGER --- */
.menu-toggle {
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.menu-toggle span {
  display:block;
  width:25px;
  height:3px;
  background: var(--dark);
}

/* --- MENU MOBILE --- */
.mobile-menu {
  position:fixed;
  top:0; left:-250px;
  width:250px; height:100%;
  background:#fff;
  box-shadow:2px 0 10px rgba(0,0,0,0.2);
  display:flex; flex-direction:column;
  padding:20px;
  transition:left 0.3s ease;
  z-index:1001;
}
.mobile-menu a {
  margin:12px 0;
  text-decoration:none;
  color: var(--dark);
  font-family:"Montserrat",sans-serif;
  font-weight:600;
}
.close-btn {
  font-size:28px;
  cursor:pointer;
  align-self:flex-end;
  margin-bottom:20px;
}
.overlay {
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.5);
  display:none;
  z-index:1000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav.main-nav .wrap { display:none; }
  .menu-toggle { display:flex; }
  .traduire{ display: none;}
  nav.main-nav img { width: 25%; }
  nav.main-nav a::after {
  content:""; position:absolute; left:0; bottom:-4px;
  width:0%; height:2px; background: var(--dark);
  transition:width 0.3s ease;
}
nav.main-nav a:hover::after { width:100%; }

}


    /* nav.main-nav {
      background: var(--soft-2);
      padding:16px 0px;
      width: 100%;
      display: flex;
      justify-content: space-between;
    }
    nav.main-nav .wrap {
      max-width: var(--max-width);
      margin: 0 auto;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:28px;
    }
    nav.main-nav img {
      width: 10%;
    }
    nav.main-nav a {
      color: var(--dark);
      text-decoration:none;
      font-family: "Montserrat", sans-serif;
      font-weight:700;
      letter-spacing:0.5px;
      font-size:15px;
    } */

/* ---------- HERO ---------- */
    .hero {position:relative; min-height: 560px; background-image: url('../img/bgbaner.jpg'); background-size: cover; background-position: center; display:flex; align-items:center;justify-content:center; padding: 30px; overflow:hidden;
    }
    /* sombre overlay */
    .hero::before{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.3) 100%);  pointer-events:none;
    }

    .hero-inner{position:relative; max-width: var(--max-width); width:100%; padding:24px; display:flex;flex-direction:column; align-items:flex-start;
    }

    /* GRAND slogan à la maquette : police principale (Cute Maple), trait blanc autour */
    .hero-title{ color: #fff; font-size: clamp(34px, 6.5vw, 76px); line-height: 0.95; font-weight: 700; margin: 10px 0 18px 0; text-transform: none;
      /* contour blanc comme sur la maquette */
      -webkit-text-stroke: 3.2px rgba(255,255,255,0.95);
      text-shadow:
         0 2px 0 rgba(0,0,0,0.45),
         0 6px 20px rgba(0,0,0,0.35);
      letter-spacing: 1px;
      font-family: "Poppins" !important;
    }

    .hero-sub{ color: rgba(255,255,255,0.95);font-family: "Montserrat", sans-serif; font-size: clamp(14px, 1.6vw, 20px); font-weight:600; margin-bottom:18px; max-width:760px;
    }

    .hero-ctas { display:flex; gap:14px; margin-top:4px; flex-wrap:wrap;
    }
    .btn{ display:inline-flex; align-items:center; justify-content:center; padding:12px 22px; border-radius:12px; font-weight:700; text-decoration:none; cursor:pointer; font-family: "Montserrat", sans-serif;
    }
    .btn-green{ background: var(--green) !important; color: white !important; box-shadow: 0 6px 18px rgba(10,138,10,0.18), inset 0 -3px 0 rgba(0,0,0,0.06) !important;
    }
    .btn-outline{ background: rgba(255,255,255,0.12) !important;  color: white !important; border:2px solid rgba(255,255,255,0.16); backdrop-filter: blur(3px);
    }

/* ===================  CONTAINER HELPERS  =================== */
.section{padding:64px 16px;}
.container{max-width:var(--container);margin:0 auto;}

/* ===================  SERVICES INTRO (titre + 2 colonnes)  =================== */
.section-title{
  text-align:center ; 
  font-weight:800;
  font-size: clamp(26px, 3.2vw, 44px);
  margin:0 0 28px;
}

    /* ---------- SECTION: services intro (two columns) ---------- */
    .section {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 56px 20px;
    }

    .services-intro {
      display:grid;
      grid-template-columns: 1fr 360px;
      gap:32px;
      align-items:center;
    }

    .services-intro h2 {
      font-family: "Montserrat", sans-serif;
      font-weight:800;
      font-size: clamp(26px, 3.2vw, 44px);
      
      margin:0 0 18px 0;
      color: var(--dark);
    }
    .services-intro p {
      font-size:25px;
      line-height:1.6;
      color:#666;
      margin:0 0 12px 0;
      text-align: justify;
    }
    .services-intro .intro-img{
      width:100%;
      border-radius:18px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.06);
      border:8px solid rgba(255,255,255,0.9);
      background: #fff;
      margin-bottom: 20px;
    }
/* ===================  “NOS SERVICES”  =================== */
.section-gray{
    background:#FCFCFC;
    border-top:1px solid #EEE;
    border-bottom:1px solid #EEE
}
.services-cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:28px;
  margin-top:30px;
}
.card-service{
  text-align:center;
  background:#fff;
  border-radius:18px;
  border:2px solid rgba(208,48,43,.25);
  padding:26px 18px;
  height: 250px;
  box-shadow:0 6px 14px rgba(0,0,0,.04);
}
.card-service .ico{
  width:58px;height:58px;margin:2px auto 12px auto;
  color: var(--red);
}
.card-service h3{
  margin:6px 0 6px;font-size:16px;font-weight:800;letter-spacing:.4px;
}
.card-service p{margin:0;color:#585858;font-size:14px}

/* ===================  “POURQUOI NOUS CHOISIR ?”  =================== */
.grid-reasons{
  margin-top:20px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:28px;
}
.reason{
  background:#fff;border-radius:20px;padding:14px 16px 18px;
  border:2px solid rgba(208,48,43,.22);
  box-shadow: var(--shadow);
  
}
.reason .thumb{
  overflow:hidden;
  border-radius:14px;
  margin-bottom:12px;
  width: 100%;
  display: flex;
  justify-content: center;
  
}
.thumb img{
width: 90%;
/* width:100%; */
      border-radius:18px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.06);
      border:8px solid rgba(255,255,255,0.9);
      background: #fff;
}
.reason h4{
  margin:6px 0 8px;
  font-size:18px;
  font-weight:800;
  text-align: center;
}
.reason p{

  margin:0;
  color:#585858;
  font-size:14px;
  line-height:1.6;
  text-align: center;
}

/* ===================  PREUVE SOCIALE  =================== */
.social-wrap .top{
  text-align:center;margin-bottom:10px;
}
.social-wrap .kpi{
  display:flex;align-items:center;justify-content:center;gap:12px;
  margin:14px 0 28px;
}
.kpi .visits{
  color: var(--red); font-weight:800; font-size:22px;
}
.social-grid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap:32px;
  align-items:start;
}
.block-left h3{
  margin:8px 0 14px;font-weight:800;font-size:28px;
}
.block-left .legend{color:#666}
.big-photo{
  position:relative;background:#fff;border-radius:20px;padding:8px;
  border:3px solid #28A745; /* cadre vert */
  box-shadow: var(--shadow);
}
.big-photo img{border-radius:14px}
/* bulles “réactions” superposées */
.reac{position:absolute;top:14px;left:14px;display:flex;gap:10px}
.badge{
  background:#fff;
  border-radius:22px;
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
  padding:6px 10px;
  font-weight:700;
  font-size:13px;
  display:flex;
  gap:6px;
  align-items:center;
  color: var(--dark) !important;
}
.badge::before{
  content:"";width:14px;height:14px;border-radius:50%;
  background:#EAEAEA;display:inline-block;
}
.badge:nth-child(2){top:0;left:auto}
.badge.gray{opacity:.9}

/* lignes de témoignages */
.reviews{
  display:flex;flex-direction:column;gap:18px;margin-top:8px;
}
.review{
  display:grid;grid-template-columns: 76px 1fr; gap:12px; align-items:center;
}
.review .avatar{
  border:3px solid #28A745;border-radius:16px;padding:4px;background:#fff;
}
.review .avatar img{border-radius:12px;height:68px;width:100%;object-fit:cover}
.review .bubble{
  background:#fff;border-radius:38px;padding:16px 18px;
  box-shadow: var(--shadow);
  color:#555;font-size:14px;
}

 /* Conteneur des boutons flottants */
    .floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

    /* Style commun aux boutons */
    .floating-buttons a, 
    .floating-buttons button {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      font-size: 24px;
      color: white;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      transition: transform 0.2s ease-in-out;
      text-decoration: none;
    }

    .floating-buttons a:hover,
    .floating-buttons button:hover {
      transform: scale(1.1);
    }

    /* Bouton WhatsApp */
    .whatsapp-btn {
      background-color: #25D366;
    }

    /* Bouton Commentaire */
    .comment-btn {
      background-color: var(--dark);
    }


      footer {
      background: var(--red);
      color: #fff;
      padding: 50px 20px 20px;
      font-family: "Montserrat", Arial, sans-serif;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1400px;
      margin: auto;
    }

    .footer-logo h2 {
      font-size: 22px;
      margin-bottom: 10px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .footer-logo p {
      font-size: 14px;
      line-height: 1.6;
      color: #f1f1f1;
    }

    .footer-column h3 {
      margin-bottom: 15px;
      font-size: 18px;
      position: relative;
    }

    .footer-column h3::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 40px;
      height: 2px;
      background: #fff;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column ul li {
      margin: 10px 0;
    }

    .footer-column ul li a {
      color: #f1f1f1;
      text-decoration: none;
      transition: 0.3s;
    }

    .footer-column ul li a:hover {
      color: var(--green);
    }

    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 15px;
    }

    .social-icons a {
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      color: var(--red);
      border-radius: 50%;
      font-size: 18px;
      text-decoration: none;
      transition: 0.3s;
    }

    .social-icons a:hover {
      background: var(--green);
      color: #000;
    }

    /* COPYRIGHT */
    .footer-bottom {
      text-align: center;
      margin-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 15px;
      font-size: 14px;
      color: #ddd;
    }

    #preuve-sociale {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

#preuve-sociale h2 {
  font-size: 2rem;
  font-weight: bold;
}

#preuve-sociale .subtitle {
  color: #555;
  margin-bottom: 40px;
}

#preuve-sociale .content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.circle-progress {
  position: relative;
  width: 150px;
  height: 150px;
}

.circle-progress svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

circle {
  fill: none;
  stroke-width: 12;
  stroke-linecap: round;
}

circle.bg {
  stroke: #eee;
}

circle.progress {
  stroke: #b71c1c; /* Rouge foncé */
  stroke-dasharray: 339.292; /* 2 * π * r (r=54) */
  stroke-dashoffset: 339.292;
  transition: stroke-dashoffset 1s linear;
}

.counter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.counter small {
  font-size: 12px;
  color: #666;
}


.articles-section {
  background: #f8f8f8;
  padding: 60px 20px;
}

.articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.article-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.article-card:hover {
  transform: translateY(-5px);
}
.article-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.article-content {
  padding: 20px;
}
.article-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
}
.article-intro {
  color: #666;
}
.article-full {
  margin-top: 15px;
  color: #444;
}
.hidden {
  display: none;
}
.read-more {
  margin-top: 10px;
  background: #007BFF;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
}
.read-more:hover {
  background: #0056b3;
}
.reactions {
  margin-top: 15px;
}
.reaction-btn {
  background: #eee;
  border: none;
  margin-right: 8px;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}
.reaction-btn:hover {
  background: #ddd;
}
.share {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #555;
}
.share-btn {
  margin-left: 8px;
  color: #007BFF;
  text-decoration: none;
}
.share-btn:hover {
  text-decoration: underline;
}




    .newsletter h2 {
      margin-bottom: 15px;
      font-size: 28px;
      color: #333;
    }

    .newsletter p {
      margin-bottom: 25px;
      color: #666;
    }

    .newsletter-form {
      display: flex;
      max-width: 450px;
      width: 100%;
      margin: 0 auto;
      background: white;
      border-radius: 50px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .newsletter-form input[type="email"] {
      flex: 1;
      border: none;
      padding: 15px 20px;
      font-size: 16px;
      outline: none;
    }

    .newsletter-form button {
      background: var(--red);
      border: none;
      color: white;
      padding: 0 5px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .newsletter-form button:hover {
      background: var(--red-gradian);
    }
/* ===================  RESPONSIVE  =================== */
@media (max-width: 1060px){
  .intro-grid{grid-template-columns:1fr}
  .intro-text{column-count:1}
  .services-cards{grid-template-columns:repeat(2,1fr)}
  .grid-reasons{grid-template-columns:repeat(2,1fr)}
  .social-grid{grid-template-columns:1fr}
}
@media (max-width: 620px){
  .services-cards{grid-template-columns:1fr}
  .grid-reasons{grid-template-columns:1fr}
  .newsletter-form{width: 100%;}
  .newsletter-form input[type="email"] {
      width: 30%;
    }
    .newsletter-form button {
      width: 40%;
    }
     .services-intro p {
      
      text-align: center;
    }
     .about-intro div p {
      
      text-align: center;
    }
    
    .imm-hero-inner .btn-outline{
      display: none;
    }
  
}
@media (max-width: 980px){
      .services-intro { grid-template-columns: 1fr 300px; }
      .about-intro { grid-template-columns: 1fr 300px; }
      .grid-choisir { grid-template-columns: repeat(2,1fr); }
      .big-photo { width:100%; height:220px; }
      .newsletter-form{width: 100%;}
      .newsletter-form input[type="email"] {
      width: 30%;
    }
    .newsletter-form button {
      width: 40%;
    }
    .services-intro p {
      
      text-align: center;
    }
     .about-intro div p {
      
      text-align: center;
    }
    }
    @media (max-width: 700px){
      body{
        width: 102%;
      }
      .top-red .search { width:38%; }
      nav.main-nav .wrap { gap:12px; flex-wrap:wrap; }
      .services-intro { grid-template-columns: 1fr; }
      .about-intro { grid-template-columns: 1fr; }
      .grid-choisir { grid-template-columns: 1fr; }
      .hero-inner { align-items:center; text-align:left; }
      .hero-sub { max-width:420px; margin:0 auto 16px auto; }
      .newsletter-form{width: 100%;}
  .newsletter-form input[type="email"] {
      width: 30%;

    }
     .services-intro p {
      
      text-align: center;
    }
     .about-intro div p {
      
      text-align: center;
    }

    .newsletter-form button {
      width: 40%;
    }
    }

    /* ===================  ANIMATIONS GLOBALES  =================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ===================  HERO =================== */
.hero-title {
  animation: fadeInUp 1.2s ease-out forwards;
}
.hero-sub {
  animation: fadeInUp 1.6s ease-out forwards;
}
.hero-ctas {
  animation: fadeInUp 2s ease-out forwards;
}
.hero::before {
  animation: fadeIn 1.4s ease-out forwards;
}

/* ===================  CTA BUTTONS =================== */
.btn {
  transition: all 0.3s ease;
}
.btn-green:hover {
  background: #0f6d24;
  box-shadow: 0 10px 24px rgba(10,138,10,0.35);
  transform: translateY(-3px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-3px);
}

/* Pulse animation au survol */
.btn-green:active, .btn-outline:active {
  animation: pulse 0.4s ease;
}

/* ===================  SERVICES =================== */
.card-service {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card-service:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* ===================  REASONS (Pourquoi nous choisir) =================== */
.reason {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.reason:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

/* ===================  PREUVE SOCIALE =================== */
.review {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}
.review:nth-child(1){ animation-delay: .2s; }
.review:nth-child(2){ animation-delay: .4s; }
.review:nth-child(3){ animation-delay: .6s; }
.review:nth-child(4){ animation-delay: .8s; }

.badge {
  animation: float 3s ease-in-out infinite;
}
.badge:nth-child(2){ animation-delay: 1.5s; }

/* ===================  SCROLL ANIMATIONS =================== */
.section, .card-service, .reason, .review {
  opacity: 0;
  transform: translateY(40px);
}
.section.show, .card-service.show, .reason.show, .review.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}
/* ===================  BOUTONS =================== */
.btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: all 0.35s ease;
}
.btn:hover::after {
  left: 0;
}
.btn-green:hover {
  background: #0f6d24;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(10,138,10,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-3px) scale(1.03);
}
.btn:active {
  transform: scale(0.95);
  transition: transform 0.15s;
}

/* ===================  NAVIGATION =================== */
/* nav.main-nav a {
  position: relative;
  padding: 4px 0;
}
nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--dark);
  transition: width 0.3s ease;
}
nav.main-nav a:hover::after {
  width: 100%;
} */

/* ===================  HERO TITLE =================== */
.hero-title {
  animation: fadeInUp 1.2s ease-out forwards;
  transition: text-shadow 0.3s ease, transform 0.3s ease;
}
.hero-title:hover {
  text-shadow: 0 0 18px rgba(255,255,255,0.9), 0 0 30px rgba(23,141,47,0.6);
  transform: scale(1.02);
}
.hero-sub {
  transition: opacity 0.3s ease;
}
.hero-sub:hover {
  opacity: 0.8;
}

/* ===================  CARTES SERVICES =================== */
.card-service {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.card-service:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--green);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.card-service:active {
  transform: scale(0.96);
}

/* ===================  REASONS =================== */
.reason {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.reason:hover {
  transform: translateY(-10px) rotateZ(-1deg);
  border-color: var(--green);
  box-shadow: 0 16px 32px rgba(0,0,0,0.15);
}
.reason:active {
  transform: scale(0.96) rotateZ(0deg);
}

/* ===================  IMAGES =================== */
.thumb img, .services-intro .intro-img, .big-photo img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.thumb img:hover, 
.services-intro .intro-img:hover, 
.big-photo img:hover {
  transform: scale(1.05);
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}

/* ===================  TEMOIGNAGES =================== */
.review {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}
.review:active {
  transform: scale(0.98);
}

/* ===================  BADGES REACTIONS =================== */
.badge {
  animation: float 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.badge:hover {
  transform: scale(1.1) rotate(-5deg);
  cursor: pointer;
}


/* INTRO */
    .about-intro {
      display:flex;
      flex-direction: column;

      grid-template-columns: 1fr 360px;
      gap:32px;
      align-items:center;
      
    }
    /* .about-intro img {
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    } */

    .about-intro  p {
      font-size:25px;
      line-height:1.6;
      color:#666;
      margin:0 0 12px 0;
      text-align: justify;
    }
    .about-intro img{
      width:100%;
      border-radius:18px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.06);
      border:8px solid rgba(255,255,255,0.9);
      background: #fff;
      margin-bottom: 20px;
    }

    /* MISSIONS */
    .missions {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      max-width: 1100px;
      margin: auto;
    }
    .mission-card {
      background: white;
      padding: 25px;
      border-radius: 12px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 3px 6px rgba(0,0,0,0.06);
    }
    .mission-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    }
    .mission-card i {
      font-size: 40px;
      margin-bottom: 15px;
      color: var(--red);
    }

    /* TEAM */
    .accordion { max-width: 900px; margin: auto; }
    .accordion-item {
      border-bottom: 1px solid #ddd;
    }
    .accordion-header {
      padding: 15px;
      cursor: pointer;
      background: #fff;
      font-weight: bold;
      display: flex; justify-content: space-between; align-items: center;
    }
    .accordion-header:hover { background: #f3f3f3; }
    .accordion-content {
      display: none;
      padding: 20px;
      animation: fadeIn 0.4s ease;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }
    .team-card {
      text-align: center;
      padding: 15px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }
    .team-card:hover { transform: translateY(-5px); }
    .team-card img {
      width: 90px; height: 90px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 10px;
    }
    .team-card h4 { margin: 5px 0; }
    .team-card p { font-size: 14px; color: #666; }
    .team-card a { color: var(--red); font-size: 14px; display:block; }

    /* PARTNERS */
    .partners-carousel {
      display: flex;
      gap: 40px;
      overflow: hidden;
      position: relative;
    }
    .partner {
      min-width: 150px;
      text-align: center;
    }
    .partner img { width: 100px; height: auto; margin-bottom: 10px; }

    /* CAREER */
    .career {
      text-align: center;
      background: var(--red-gradian);
      color: white;
      padding: 60px 20px;
      border-radius: 12px;
      max-width: 1000px;
      margin: auto;
    }
    .career h3 { font-size: 28px; margin-bottom: 15px; }
    .career p { margin-bottom: 20px; }
    .btn { padding: 12px 25px; border-radius: 6px; font-weight: bold; text-decoration: none; }
    .btn-outline { border: 2px solid #fff; color: #fff; }
    .btn-outline:hover { background: #fff; color: var(--red); }

    /* ANIMATIONS */
    @keyframes fadeIn {
      from {opacity:0; transform: translateY(15px);}
      to {opacity:1; transform: translateY(0);}
    }
    .reveal { opacity:0; transform: translateY(20px); transition: all 0.6s ease; }
    .reveal.visible { opacity:1; transform: translateY(0); }

    .articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.card-article {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-article:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.article-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.article-body {
  padding: 18px;
  font-family: "Montserrat", sans-serif;
}

.article-body h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}

.article-body .intro {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.article-meta {
  font-size: 12px;
  color: #888;
  margin-bottom: 12px;
}

.article-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.article-footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* LANGUES */
.card-langue {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}
.card-langue:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.card-langue img {
  width: 60px;
  margin-bottom: 12px;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all .3s ease;
  border: 2px solid transparent;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
}
.pricing-card.popular {
  border: 2px solid var(--red);
  background: linear-gradient(135deg, #fff5f5, #fff);
}
.price {
  font-size: 20px;
  font-weight: bold;
  margin: 12px 0;
  color: var(--red);
}

/* FAQ */
.faq-item {
  background: #fff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .3s;
}
.faq-item:hover { background: #f9f9f9; }
.faq-item h3 { font-size: 16px; margin-bottom: 6px; }
.faq-item p { display: none; }
.faq-item.active p { display: block; }

/* CTA */
.hero-cta {
  background: linear-gradient(135deg, var(--red), var(--red-gradian));
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.ui-autocomplete {
  z-index: 99999 !important; /* Force à être au-dessus des modals Bootstrap */
  background-color: white;
  border: 1px solid #ccc;
  max-height: 300px;
  overflow-y: auto;
  position: absolute;
}



.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.carousel-slide {
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background-size: cover;
  background-position: center;
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition: opacity 1s ease-in-out;
}
.carousel-slide.active { opacity:1; }
.carousel-content { text-align:center; color:white; background:rgba(0,0,0,0.4); padding:30px; border-radius:12px; }
.carousel-nav { position:absolute; top:50%; left:0; right:0; display:flex; justify-content:space-between; padding:0 20px; color:white; font-size:2rem; cursor:pointer; }

.why-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(280px,1fr)); gap:30px; margin-top:40px; }
.why-card { background:white; padding:20px; border-radius:12px; box-shadow:0 3px 10px rgba(0,0,0,0.08); transition:transform .3s; text-align:center; }
.why-card:hover { transform:translateY(-8px); }

.timeline { position:relative; margin:40px 0; }
.timeline::before { content:""; position:absolute; top:0; left:50%; transform:translateX(-50%); width:4px; height:100%; background:var(--red); }
.timeline-item { display:flex; justify-content:flex-start; align-items:center; margin:30px 0; position:relative; }
.timeline-item .circle { background:var(--red); color:white; border-radius:50%; width:40px; height:40px; display:flex; align-items:center; justify-content:center; font-weight:bold; margin-right:20px; }

.countries-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(300px,1fr)); gap:20px; margin-top:30px; }
.country-card { position:relative; height:250px; background-size:cover; background-position:center; border-radius:12px; overflow:hidden; }
.country-card .overlay { position:absolute; inset:0; background:rgba(0,0,0,0.4); display:flex; flex-direction:column; justify-content:flex-end; color:white; padding:20px; opacity:0; transition:.4s; }
.country-card:hover .overlay { opacity:1; }

.cta { background: var(--red-gradian); color:white; text-align:center; padding:60px 20px; border-radius:12px; margin:50px 0; }
