/* ===============================
   BUSINESS HERO (REFINED)
   =============================== */

   .formation-hero {
    width: 100%;
    height: 100vh;
    background: url('../images/formation.jpeg') center / cover no-repeat;
    position: relative;
    border-bottom: 5px solid #bb966a;
}

.formation-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.75)
    );
}

.formation-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.formation-hero-overlay h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 54px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.6px;
}

.formation-hero-overlay h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b8976a, transparent);
    margin: 22px auto 0;
    border-radius: 2px;
}

/* ===============================
   HERO RESPONSIVE
   =============================== */

@media (max-width: 768px) {
    .formation-hero {
        height: 320px;
    }

    .formation-hero-overlay h1 {
        font-size: 34px;
    }
}








/* ===============================
   SECTION BASE
   =============================== */

   .formation-section-dark {
    background: white;
    padding: 140px 0;
    color: #e5e5e5;
  }
  
  /* HEADER */
  .formation-header-dark {
    max-width: 900px;
    margin-bottom: 80px;
  }
  
  .formation-eyebrow {
    font-size: 13px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #000000;
    display: inline-flex;
    gap: 8px;
  }
  
  .formation-header-dark h2 {
    font-size: 44px;
    font-weight: 600;
    color: #fff;
  }
  
  .formation-header-dark hr {
    width: 80px;
    height: 3px;
    background: #000000;
    border: none;
    margin-top: 22px;
  }
  
  /* CARDS */
  .formation-card-dark {
    border-radius: 26px;
    padding: 55px;
    height: 100%;

  }
  
  .glass-card-dark {
    border-left: 5px solid #047fa8 !important;
    background: #152943;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184,151,106,0.25);
    box-shadow: 0 40px 90px rgba(0,0,0,0.6);
  }
  
  .solid-card-dark {
    border-left: 5px solid #038ec6 !important;
    background: 
#152943;
    border: 1px solid rgba(184,151,106,0.25);
    box-shadow: 0 35px 80px rgba(0,0,0,0.6);
  }
  
  /* IMAGES */
  .formation-image-banner img,
  .formation-side-image img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.08);
  }
  
  /* TEXT */
  .formation-card-dark p {
    font-size: 17px;
    line-height: 1.9;
    color: #ffffff;
  }
  
  /* DIVIDERS */
  .formation-divider,
  .soft-hr {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    margin: 30px 0;
  }
  
  /* SUBTITLES */
  .formation-subtitle-dark {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
  }
  
  .formation-subtitle-dark i {
    color: #000000;
    margin-right: 8px;
  }
  
  /* CALLOUT */
  .formation-callout-dark {
    display: flex;
    gap: 14px;
    font-size: 16px;
    color: #e0e0e0;
  }
  
  .formation-callout-dark i {
    color: #000000;
  }
  
  .formation-callout-dark a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
  }
  
  /* SERVICES */
  .formation-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 25px 0 35px;
  }
  
  .service-pill {
    background: linear-gradient(
      145deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.03)
    );
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(184,151,106,0.25);
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 15.5px;
    transition: transform 0.3s ease;
  }
  
  .service-pill:hover {
    transform: translateX(6px);
  }
  
  .service-pill i {
    color: #fbfbfb;
  }
  
  /* LINKS */
  .formation-links-dark a {
    display: block;
    margin-bottom: 14px;
    color: #e5e5e5;
    text-decoration: none;
    font-size: 15.5px;
    transition: all 0.3s ease;
  }
  
  .formation-links-dark a i {
    color: #ffffff;
    margin-right: 8px;
  }
  
  .formation-links-dark a:hover {
    transform: translateX(6px);
    color: 
#02a0c0;
  }
  
  /* CTA */
  .formation-final-cta-dark {
    margin-top: 90px;
    display: flex;
    justify-content: center;
    gap: 22px;
  }
  
  .formation-btn {
    padding: 16px 34px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  
  .formation-btn.primary {
    background: linear-gradient(135deg, #b8976a, #e3cfa4);
    color: #111;
  }
  
  .formation-btn.secondary {
    border: 2px solid #b8976a;
    color: #b8976a;
  }
  
  /* RESPONSIVE */
  @media (max-width: 991px) {
    .formation-header-dark h2 {
      font-size: 34px;
    }
  
    .formation-card-dark {
      padding: 40px 28px;
    }
  
    .formation-final-cta-dark {
      flex-direction: column;
    }
  }
  
