    :root{
      --yellow:#F5C800;
      --yellow2:#FFD700;
      --dark:#0B0B0E;
      --dark2:#121216;
      --dark3:#1B1B22;
      --line:rgba(255,255,255,0.10);
      --muted:rgba(255,255,255,0.62);
      --muted2:rgba(255,255,255,0.45);
      --shadow: 0 22px 80px rgba(0,0,0,0.55);
      --shadow2: 0 14px 40px rgba(0,0,0,0.35);
      --r:14px;
      --r2:18px;
      --max:1180px;
    }

    html{scroll-behavior:smooth}
    body{
      font-family:'DM Sans', sans-serif;
      background:
        radial-gradient(circle at 20% 0%, rgba(245,200,0,0.10), transparent 55%),
        radial-gradient(circle at 85% 10%, rgba(245,200,0,0.07), transparent 55%),
        var(--dark);
      color:#fff;
      overflow-x:hidden;
    }

    /* Bootstrap container width closer to your design */
    .container{max-width: var(--max) !important;}

    /* Progress bar */
    .progress-top{
      position:fixed; top:0; left:0; height:3px; width:0;
      background: linear-gradient(90deg, var(--yellow), #ffe176);
      z-index: 1100;
    }

    /* Navbar */
    .navbar-glass{
      background: var(--dark2) !important;
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(245,200,0,0.12);
    }
    .brand-logo{
      font-family:'Bebas Neue', sans-serif;
      letter-spacing:2px;
      font-size: 1.9rem;
      color: var(--yellow) !important;
      line-height:1;
    }
    .brand-logo span{color:#fff}
    .nav-link{
      font-weight:600;
      letter-spacing:0.6px;
      color: rgba(255,255,255,0.72) !important;
    }
    .nav-link:hover{color: var(--yellow) !important;}

    .btn-cta{
      background: var(--yellow) !important;
      color: var(--dark) !important;
      border: none !important;
      font-weight: 800;
      box-shadow: 0 18px 50px rgba(245,200,0,0.22);
      border-radius: 10px;
      transition: transform .2s, box-shadow .2s, background .2s;
    }
   /* .btn-cta:hover{background: var(--yellow2) !important; color: #FFFFFF !important;}*/

     .btn-cta:hover{background: var(--yellow2); transform: translateY(-1px); box-shadow: 0 14px 40px rgba(245,200,0,0.28); color: #FFFFFF !important;}

    /* Hero */
    .hero{
      position:relative;
      min-height: 100vh;
      padding-top: 60px; /* navbar spacing */
      padding-bottom: 56px;
      overflow:hidden;
    }
    .hero-bg{
      position:absolute; inset:0;
      background-image:
        linear-gradient(180deg, rgba(11,11,14,0.82) 0%, rgba(11,11,14,0.55) 40%, rgba(11,11,14,0.92) 100%),
        /*url("{IMG_HERO_BG}")*/;
      background-size: cover;
      background-position: center;
      transform: translate3d(0, var(--pyHero, 0px), 0) scale(1.06);
      will-change: transform;
    }
    .hero-glow{
      position:absolute; inset:0;
      background:
        radial-gradient(circle at 70% 25%, rgba(245,200,0,0.16), transparent 55%),
        radial-gradient(circle at 30% 10%, rgba(245,200,0,0.10), transparent 60%);
      pointer-events:none;
    }
    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      background: rgba(245,200,0,0.10);
      border: 1px solid rgba(245,200,0,0.32);
      color: var(--yellow);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      padding: 0.48rem 1rem;
      border-radius: 10px;
    }
    .hero-badge::before{content:"⚡"; font-size:0.95rem}

    .hero-title{
      font-family:'Bebas Neue', sans-serif;
      font-size: clamp(3.2rem, 6.7vw, 6.6rem);
      line-height: 0.92;
      letter-spacing: 1px;
      margin: 14px 0 16px;
    }
    .hero-title em{color: var(--yellow); font-style: normal;}
    .hero-desc{
      color: rgba(255,255,255,0.70);
      font-size: 1.06rem;
      line-height: 1.75;
      max-width: 560px;
    }
    .hero-kpis .kpi{
      background: rgba(255,255,255,0.06);
      border:1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 14px;
      height:100%;
    }
    .hero-kpis .kpi b{display:block; font-weight:800; margin-bottom:4px;}
    .hero-kpis .kpi span{display:block; color: rgba(255,255,255,0.55); font-size:0.86rem; line-height:1.5;}

    /* Form card */
    .form-card{
      background: rgba(18,18,23,0.92);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 16px;
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    .form-top{
      padding: 18px 18px 16px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(90deg, rgba(245,200,0,0.14), rgba(245,200,0,0.00));
    }
    .form-top h3{
      font-family:'Bebas Neue', sans-serif;
      font-size: 1.5rem;
      letter-spacing: 1px;
      color: var(--yellow);
      margin: 0 0 4px;
    }
    .form-top p{
      margin:0;
      color: rgba(255,255,255,0.55);
      font-size: 0.92rem;
      line-height:1.5;
    }
    .form-body{
      padding: 16px 18px 18px;
    }
    .form-label{
      font-size: 0.78rem;
      color: rgba(255,255,255,0.55);
      letter-spacing: 0.5px;
      font-weight:700;
    }
    .form-control, .form-select{
      background: rgba(255,255,255,0.05) !important;
      border: 1px solid rgba(255,255,255,0.12) !important;
      color: #fff !important;
      border-radius: 12px !important;
      padding: 0.78rem 0.9rem;
    }
    .form-control::placeholder{color: rgba(255,255,255,0.35) !important;}
    .form-control:focus, .form-select:focus{
      border-color: rgba(245,200,0,0.70) !important;
      box-shadow: 0 0 0 .2rem rgba(245,200,0,0.12) !important;
    }
    .form-select option{background: var(--dark3) !important;}
    .btn-form{
      width:100%;
      background: var(--yellow);
      color: var(--dark);
      border:none;
      padding: 0.95rem;
      font-size: 0.98rem;
      font-weight: 900;
      border-radius: 12px;
      cursor:pointer;
      letter-spacing: 0.5px;
      transition: transform .2s, box-shadow .2s, background .2s;
    }
    .btn-form:hover{background: var(--yellow2); transform: translateY(-1px); box-shadow: 0 14px 40px rgba(245,200,0,0.28); color: #FFFFFF !important;}
    .form-fine{color: rgba(255,255,255,0.45); font-size: 0.75rem; line-height: 1.5; margin-top: 10px;}

    /* Stats bar */
    .stats-wrap{
      background: rgba(255,255,255,0.06);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .stat{
      padding: 2.2rem 1.2rem;
      background: var(--dark);
      text-align:center;
      transition: background .25s;
      border-right: 1px solid rgba(255,255,255,0.06);
    }
    .stat:last-child{border-right:none;}
    .stat:hover{background: var(--dark2);}
    .stat .n{
      font-family:'Bebas Neue', sans-serif;
      font-size: 3.1rem;
      color: var(--yellow);
      line-height:1;
      letter-spacing:2px;
    }
    .stat .l{color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 6px; letter-spacing: 0.5px;}

    /* Section headers */
    .section-label{
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--yellow);
      margin-bottom: 10px;
    }
    .section-title{
      font-family:'Bebas Neue', sans-serif;
      font-size: clamp(2.4rem, 4.6vw, 4.2rem);
      line-height: 1;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }
    .section-sub{
      color: rgba(255,255,255,0.55);
      max-width: 740px;
      line-height: 1.75;
      margin-bottom: 34px;
      font-size: 1rem;
    }

    .section-SEO{
      color: rgba(255,255,255,0.55);
    }

    /* Services cards with images */
    .svc{
      background: var(--dark2);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px;
      overflow:hidden;
      transition: transform .25s, border-color .25s;
      height:100%;
    }
    .svc:hover{transform: translateY(-6px); border-color: rgba(245,200,0,0.30);}
    .svc-img{
      height: 300px;
      background-image:
        /*linear-gradient(120deg, rgba(13,13,13,0.70), rgba(13,13,13,0.10)),*/
        var(--img);
      background-size: cover;
      background-position:center;
      transform: translate3d(0, var(--py, 0px), 0) scale(1.03);
      will-change: transform;
    }
    .svc h3{
      font-family:'Bebas Neue', sans-serif;
      font-size: 1.55rem;
      letter-spacing: 1px;
      margin:0 0 8px;
    }
    .svc p{color: rgba(255,255,255,0.55); font-size: 0.92rem; line-height: 1.65; margin:0 0 12px;}
    .chip{
      display:inline-flex; align-items:center; gap:8px;
      padding: 8px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.05);
      color: rgba(255,255,255,0.65);
      font-size: 0.82rem;
      font-weight:700;
      margin-right: 8px;
      margin-bottom: 8px;
    }
    .chip i{width:8px; height:8px; border-radius:2px; background: var(--yellow); display:inline-block}

    /* Gallery mosaic */
    .g{
      position:relative;
      border-radius: 16px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,0.08);
      background: var(--dark2);
      cursor: zoom-in;
      min-height: 190px;
    }
    .g::after{
      content:"";
      position:absolute; inset:0;
      background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.65));
      pointer-events:none;
    }
    .g-bg{
      position:absolute; inset:-10%;
      background-image: var(--img);
      background-size: cover;
      background-position:center;
      transform: translate3d(0, var(--pyG, 0px), 0) scale(1.06);
      will-change: transform;
      filter: saturate(1.05) contrast(1.05);
    }
    .g-cap{
      position:absolute; left:14px; right:14px; bottom:14px;
      display:flex; justify-content:space-between; align-items:flex-end; gap:10px;
      z-index:2;
    }
    .g-cap b{font-weight:900; letter-spacing:0.4px}
    .g-cap small{display:block; color: rgba(255,255,255,0.65); font-weight:600; margin-top:4px}
    .g-tag{
      background: rgba(245,200,0,0.14);
      border:1px solid rgba(245,200,0,0.28);
      color: var(--yellow);
      font-size: 0.75rem;
      font-weight: 900;
      padding: 8px 10px;
      border-radius: 999px;
      white-space:nowrap;
    }

    /* Why section */
    .why{
      background: var(--dark2);
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .why-photo{
      border-radius: 16px;
      overflow:hidden;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: var(--shadow2);
      min-height: 420px;
      background-image:
        linear-gradient(120deg, rgba(13,13,13,0.72), rgba(13,13,13,0.14)),
        url("{IMG_WHY}");
      background-size: cover;
      background-position:center;
      transform: translate3d(0, var(--pyWhy, 0px), 0) scale(1.04);
      will-change: transform;
    }
    .why-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,0.07);
      background: rgba(255,255,255,0.03);
      margin-bottom: 12px;
    }
    .why-dot{
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(245,200,0,0.10);
      border:1px solid rgba(245,200,0,0.30);
      display:flex; align-items:center; justify-content:center;
      flex-shrink:0;
      font-size: 1rem;
    }
    .why-item h4{font-size:1rem; font-weight:800; margin:0 0 4px;}
    .why-item p{margin:0; color: rgba(255,255,255,0.55); font-size: 0.92rem; line-height:1.65;}

    /* CTA band */
    .cta-band{
      background: var(--yellow);
      color: var(--dark);
      padding: 56px 0;
      position:relative;
      overflow:hidden;
    }
    .cta-band::before{
      content:"";
      position:absolute;
      right:-120px; top:-120px;
      width: 420px; height: 420px;
      background: radial-gradient(circle, rgba(13,13,13,0.18), transparent 65%);
      pointer-events:none;
    }
    .cta-title{
      font-family:'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3.6rem);
      line-height: 1;
      letter-spacing: 1px;
      margin:0;
    }
    .phone-big{
      font-family:'Bebas Neue', sans-serif;
      font-size: 2.7rem;
      letter-spacing: 2px;
      color: var(--dark);
      text-decoration:none;
    }
    .btn-dark-cta{
      background: var(--dark2);
      color: var(--yellow);
      border:none;
      border-radius: 10px;
      padding: 0.95rem 1.5rem;
      font-weight: 900;
      cursor:pointer;
      text-decoration:none;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      transition: transform .2s, background .2s;
      white-space:nowrap;
    }
    .btn-dark-cta:hover{background:#111; transform: translateY(-1px); color: #FFFFFF !important;}

    .link-light:hover{color: var(--yellow) !important;}


    /* Footer */
    footer{
      padding: 20px 0;
      border-top:1px solid rgba(255,255,255,0.07);
      background: var(--dark2);
    }
    footer a{color: rgba(255,255,255,0.40); text-decoration:none}
    footer a:hover{color: var(--yellow)}
    footer p{color: rgba(255,255,255,0.40); margin:0}

    /* Reveal */
    .reveal{

      opacity:0;
      transform: translateY(24px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.visible{opacity:1; transform:none;}

    /* Sticky mobile CTA */
    .sticky-cta{
      background: rgba(11,11,14,0.70);
      backdrop-filter: blur(14px);
      border-top:1px solid rgba(255,255,255,0.08);
      z-index: 1050;
    }
    .sticky-left .t{font-weight:900; font-size:0.92rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
    .sticky-left .s{color: rgba(255,255,255,0.55); font-size:0.78rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}

    /* Small improvements */
    .text-muted-custom{color: var(--muted) !important;}
    .text-muted-custom2{color: var(--muted2) !important;}

    /* Prefer reduced motion */
    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      .hero-bg,.svc-img,.g-bg,.why-photo{transform:none !important}
      .reveal{transition:none !important}
    }






/* CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL */
/* CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL */
/* CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL */
/* CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL  CSS GENERAL */


   
/* NavBar */

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(255,255,255)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }



/* Add Shadow Effect on BTN */

.btn{
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
}

/* Font Family */

body{
    font-family: 'Poppins', sans-serif;
}


/* Hover Effect */

.boxGDA:hover {
  box-shadow: 0 0 11px rgba(33,33,33,.2); 
  color: red;
}



/* ═══════════════════════════════════════════
   COOKIE GOOCLE CONSENT + GA
   ═══════════════════════════════════════════ */

/* ===== LNC CMP (simple, propre) ===== */
  #lnc-cmp-banner, #lnc-cmp-modal-backdrop { font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
  #lnc-cmp-banner {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 99999;
    background: #111; color: #fff; border-radius: 14px; padding: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.35);
    display: none;
  }
  #lnc-cmp-banner .lnc-cmp-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: space-between; }
  #lnc-cmp-banner .lnc-cmp-text { max-width: 900px; line-height: 1.35; font-size: 14px; opacity: .95; }
  #lnc-cmp-banner a { color: #fff; text-decoration: underline; }
  .lnc-cmp-actions { display: flex; gap: 10px; flex-wrap: wrap; }
  .lnc-cmp-btn {
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
  }
  .lnc-cmp-btn:hover { background: rgba(255,255,255,.14); }
  .lnc-cmp-btn-primary { background: #fff; color: #111; border-color: #fff; }
  .lnc-cmp-btn-primary:hover { background: #f2f2f2; }
  .lnc-cmp-btn-danger { background: transparent; }

  /* Modal */
  #lnc-cmp-modal-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,.55);
    z-index: 99998; display: none; align-items: center; justify-content: center;
    padding: 16px;
  }
  #lnc-cmp-modal {
    width: min(680px, 100%); background: #fff; color: #111; border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,.35);
    padding: 18px;
  }
  #lnc-cmp-modal h3 { margin: 0 0 8px; font-size: 18px; }
  #lnc-cmp-modal p { margin: 0 0 14px; font-size: 14px; color: #333; line-height: 1.35; }
  .lnc-cmp-item {
    display: flex; gap: 12px; align-items: flex-start; justify-content: space-between;
    padding: 12px; border: 1px solid #eee; border-radius: 12px; margin-bottom: 10px;
  }
  .lnc-cmp-item b { display: block; margin-bottom: 4px; }
  .lnc-cmp-item small { color: #555; display: block; line-height: 1.25; }
  .lnc-cmp-switch { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
  .lnc-cmp-switch input { transform: scale(1.2); }
  .lnc-cmp-footer { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; margin-top: 12px; }

  /* Floating reopen button */
  #lnc-cmp-fab {
    position: fixed; left: 4px; bottom: 85px; z-index: 99997;
    background: #111; color: #fff; border: 1px solid rgba(255,255,255,.15);
    padding: 10px 12px; border-radius: 999px; cursor: pointer; display: none;
    box-shadow: 0 8px 22px rgba(0,0,0,.25);
    font-size: 13px;
  }




    /* Parallax */

.parallaxDND {
  /* The image used */
  /*background-image: url("design/img/technicien-sanitaire-se-trouvant-sous-evier.jpg");*/
  background-image: url("Projects_Medias_9/tableau3.webp");

  /* Set a specific height */
  min-height: 300px; 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}



/* Accordeon */


.accordion-button
{ color: rgba(255,255,255,0.55);
  background-color: var(--dark2);
  font-family:'Bebas Neue', sans-serif;
}


.accordion-button:not(.collapsed){
      color: #FFFFFF;
    background-color: var(--yellow);
}


.accordion{
      --bs-accordion-border-color: var(--yellow);
}


