/* public/css/style.css */

/* ----------------------------------------------------
   1. VARIABLES & STYLES GENERAUX (HARMONISATION LOGO)
------------------------------------------------------- */
:root {
    --primary-color: #e53e3e;   /* Rouge Jarina Logo */
    --secondary-color: #ecc94b; /* Or/Jaune Yango */
    --success-color: #38a169;   /* Vert Performance */
    --orange-color: #ed8936;    /* Orange Liberté */
    --dark-color: #0d152a;      /* Bleu nuit / Noir profond */
    --light-bg: #f8fafc;        /* Fond clair moderne */
    --white: #ffffff;
    --gray-text: #4a5568;
    --border-color: #e2e8f0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-color);
}

body {
    position: relative;
    line-height: 1.6;
}

/* ----------------------------------------------------
   2. BARRE DE RESEAUX SOCIAUX (GAUCHE)
------------------------------------------------------- */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link {
    color: var(--white);
    padding: 14px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 50px;
}

.social-link:hover {
    padding-left: 24px;
    width: 65px;
}

.whatsapp { background-color: #25D366; }
.facebook { background-color: #1877F2; }
.linkedin { background-color: #0A66C2; }

/* ----------------------------------------------------
   3. NAVIGATION HEADER
------------------------------------------------------- */
.brand-logo-wrapper {
    display: flex;
    align-items: center;
}

.logo_img {
    height: 95px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    border-radius: 12px;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link-item {
    color: var(--gray-text);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.25s ease;
}

.nav-link-item:hover {
    color: var(--dark-color);
}

.nav-link-item:hover::after {
    width: 100%;
}

.back-home {
    color: var(--primary-color);
    font-weight: 700;
}
.back-home::after {
    background-color: var(--dark-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-partner-register {
    background-color: var(--primary-color);
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 13.5px;
    padding: 11px 22px;
    border-radius: 8px;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.2);
    transition: all 0.25s ease;
}

.btn-partner-register:hover {
    background-color: #c53030;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(229, 62, 62, 0.3);
}

body {
    padding-top: 100px;
}

/* ----------------------------------------------------
   4. COMPOSANT CHATBOT JARIBOT
------------------------------------------------------- */
.chatbot-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
}

.chatbot-btn {
    background-color: var(--secondary-color);
    color: #000;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.chatbot-btn:hover {
    transform: scale(1.1);
}

.chatbot-window {
    position: absolute;
    bottom: 59px;
    right: 0;
    width: 360px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-header {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.chat-info h3 {
    font-size: 14px;
    font-weight: bold;
}

.chat-status {
    font-size: 10px;
    color: #48bb78;
    display: flex;
    align-items: center;
    gap: 4px;
}

.chat-status::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #48bb78;
    border-radius: 50%;
    display: inline-block;
}

.chat-close-btn {
    background: none;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    font-size: 16px;
}

.chat-messages {
    padding: 16px;
    height: 320px;               /* Ajustez la hauteur selon vos préférences */
    background-color: #f7fafc;
    overflow-y: auto;            /* INDISPENSABLE : Active le scroll vertical uniquement si nécessaire */
    overflow-x: hidden;          /* Évite les barres de défilement horizontales bizarres */
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.msg {
    padding: 12px;
    border-radius: 10px;
    max-width: 85%;
    font-size: 13px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.msg.bot {
    background-color: #edf2f7;
    color: var(--dark-color);
    align-self: flex-start;
}

.msg.user {
    background-color: var(--secondary-color);
    color: #000;
    font-weight: 600;
    align-self: flex-end;
}

.bot-options-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 85%;
    margin-top: 8px;
}

.bot-quick-option {
    text-align: left;
    background-color: var(--white);
    border: 1px solid var(--secondary-color);
    color: var(--dark-color);
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.2s ease;
}

.bot-quick-option:hover {
    background-color: var(--secondary-color);
    color: #000;
}

.chat-input-area {
    padding: 12px;
    border-top: 1px solid var(--border-color);
    background-color: var(--white);
    display: flex;
    gap: 8px;
}

.chat-input-area input {
    flex: 1;
    background-color: #edf2f7;
    border: none;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 13px;
    outline: none;
}

.chat-send-btn {
    background-color: var(--dark-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 12px;
    padding: 10px 14px;
    cursor: pointer;
}

/* ----------------------------------------------------
   5. RESPONSIVE DESIGN & LAYOUT BASE
------------------------------------------------------- */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .formulas-two-grid { grid-template-columns: 1fr !important; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-uppercase { text-transform: uppercase; }
.shadow-sm { box-shadow: 0 4px 6px rgba(0,0,0,0.05); }

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(to right, #0d152a, #1a202c);
    color: var(--white);
    padding: 80px 20px;
    overflow: hidden;
    text-align: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: url('../images/jarina_banier.png');
    background-size: cover;
    background-position: center;
}
.hero-content { position: relative; z-index: 10; max-width: 900px; margin: 0 auto; }
.badge-yango { background-color: var(--secondary-color); color: #000; font-weight: bold; padding: 6px 16px; border-radius: 20px; font-size: 12px; text-transform: uppercase; }
.hero-title { font-size: 42px; font-weight: 900; margin-top: 20px; margin-bottom: 24px; line-height: 1.2; }
.highlight-text { color: var(--primary-color); }
.hero-subtitle { color: #cbd5e0; font-size: 18px; max-width: 700px; margin: 0 auto 40px auto; }
.hero-features { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.feature-tag { background-color: #1a202c; border: 1px solid #2d3748; padding: 12px 24px; border-radius: 12px; font-weight: bold; font-size: 13px; }
.text-red { color: var(--primary-color); }
.text-green { color: var(--success-color); }
.text-yellow { color: var(--secondary-color); }

/* About Section */
.about-section { padding: 80px 0; background-color: var(--white); }
.section-badge { display: inline-block; background-color: #fed7d7; color: var(--primary-color); font-weight: bold; padding: 6px 16px; border-radius: 6px; font-size: 13px; margin-bottom: 16px; }
.section-title { font-size: 32px; font-weight: 900; color: var(--dark-color); margin-bottom: 24px; }
.paragraph-lead { color: var(--gray-text); font-size: 16px; margin-bottom: 24px; }
.quote-box { border-left: 4px solid var(--primary-color); font-style: italic; font-weight: 600; background-color: var(--light-bg); padding: 16px; border-radius: 0 8px 8px 0; }
.mission-box { background-color: var(--light-bg); padding: 32px; border-radius: 16px; border: 1px solid var(--border-color); }
.mission-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.icon-wrapper { background-color: var(--primary-color); color: var(--white); width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.box-title { font-size: 20px; font-weight: bold; }
.box-text { color: var(--gray-text); margin-bottom: 16px; }

/* ----------------------------------------------------
   6. SECTION FORMULES (REFONTE ESTHÉTIQUE FINALE)
------------------------------------------------------- */
.formulas-section { padding: 90px 0; background-color: #f8fafc; }
.title-line { width: 60px; height: 4px; background-color: var(--primary-color); margin: 15px auto 35px; border-radius: 2px; }
.title-line.bg-yellow { background-color: var(--secondary-color); }

.formulas-two-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1050px;
    margin: 40px auto;
    text-align: left;
}

.formula-premium-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(13, 21, 42, 0.04);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.formula-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 21, 42, 0.08);
}

.premium-gold { border-top: 5px solid var(--secondary-color); }
.premium-gold .card-premium-header { background: linear-gradient(135deg, #fefcf2 0%, #fffbf0 100%); border-bottom: 1px solid #f3eacb; }
.premium-gold .card-premium-title { color: #aa7c11; }
.premium-gold .card-premium-badge { background-color: var(--secondary-color); color: #000; }

.liberte-dark { border-top: 5px solid var(--primary-color); }
.liberte-dark .card-premium-header { background: linear-gradient(135deg, #fff5f5 0%, #fff0f0 100%); border-bottom: 1px solid #fed7d7; }
.liberte-dark .card-premium-title { color: var(--primary-color); }
.liberte-dark .card-premium-badge { background-color: var(--primary-color); color: #fff; }

.card-premium-header { padding: 35px 30px; position: relative; }
.card-premium-badge { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; padding: 4px 12px; border-radius: 30px; margin-bottom: 12px; }
.card-premium-title { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.card-premium-tagline { font-size: 14px; color: #4a5568; font-weight: 500; }

.card-premium-body { padding: 30px; flex-grow: 1; }
.formula-premium-intro { font-size: 14px; color: #4a5568; margin-bottom: 25px; }
.block-title-features, .block-title-advantages { font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--dark-color); margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
.block-title-features i { color: var(--primary-color); }
.block-title-advantages i { color: var(--secondary-color); }

.features-premium-list, .advantages-premium-list { list-style: none; padding: 0; margin-bottom: 0px !important; }
.features-premium-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; color: #4a5568; margin-bottom: 12px; }
.features-premium-list li i { color: var(--success-color); font-size: 15px; margin-top: 3px; flex-shrink: 0; }
.advantages-premium-list li { font-size: 13.5px; color: #2d3748; padding: 8px 12px; background-color: #f8fafc; border-radius: 8px; margin-bottom: 8px; border-left: 3px solid var(--secondary-color); font-weight: 500; }

.formula-premium-conclusion { background-color: #fff5f5; border-left: 4px solid var(--primary-color); padding: 15px; border-radius: 0 8px 8px 0; font-size: 13px; font-weight: 600; color: #9b2c2c; margin-top: 15px; }

/* Gestion de l'affichage progressif */
.collapsible-content { display: none; }

.btn-toggle-features {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--gray-text);
    font-size: 13px;
    font-style: italic;
    font-weight: 600;
    cursor: pointer;
    margin: 15px 0;
}
.btn-toggle-features:hover { color: var(--primary-color); }

.card-premium-footer { padding: 0 30px 35px 30px; }
.card-premium-target { text-align: center; font-size: 14px; font-weight: 700; padding: 12px; border-radius: 10px; margin-bottom: 15px; background-color: #f1f5f9; }
.premium-gold .card-premium-target { background-color: #fefcf2; color: #aa7c11; }
.liberte-dark .card-premium-target { background-color: #fff5f5; color: var(--primary-color); }

.btn-premium-select {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
}
.premium-gold .btn-premium-select { background-color: var(--primary-color); color: var(--white); }
.liberte-dark .btn-premium-select { background-color: var(--dark-color); color: var(--white); }
.btn-premium-select:hover { filter: brightness(1.1); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

.formula-disclaimer { font-size: 13px; color: #718096; max-width: 800px; margin: 30px auto 0; font-style: italic; }

/* ==========================================================================
   REFONTE DE LA SECTION ÉTAPES PARCOURS (STYLE ÉPURÉ & PROFESSIONNEL)
   ========================================================================== */

.steps-section {
    padding: 90px 0;
    background-color: #f8fafc; /* Même fond clair et pro que la section formules */
    position: relative;
}

/* Aligne l'ensemble des 4 étapes horizontalement */
.steps-pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0 auto;
    position: relative;
}

/* Base de la carte épurée (Similaire à l'esprit de l'équipe) */
.step-pro-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 35px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(13, 21, 42, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

/* Cercle Numérique Parfait */
.step-circle-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(13, 21, 42, 0.06);
    transition: all 0.4s ease;
    border: 3px solid var(--white);
    margin-bottom: 25px;
}

/* Configuration des déclinaisons chromatiques associées à votre charte */
.num-yellow { background-color: var(--secondary-color); color: #0d152a; }
.num-red    { background-color: var(--primary-color);   color: var(--white); }
.num-green  { background-color: var(--success-color);   color: var(--white); }
.num-blue   { background-color: #3498db;                color: var(--white); }

/* Zone textuelle de l'étape */
.step-pro-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.step-pro-content p {
    font-size: 13.5px;
    color: var(--gray-text);
    line-height: 1.6;
}

/* Interactions dynamiques au survol de la carte */
.step-pro-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color); /* Rappel subtil de la couleur dominante Jarina */
    box-shadow: 0 15px 35px rgba(229, 62, 62, 0.08);
}

.step-pro-card:hover .step-circle-number {
    transform: scale(1.08);
}
/* ----------------------------------------------------
   8. NOUVELLE SECTION : CARROUSEL DES PARTENAIRES
------------------------------------------------------- */
.partners-carousel-section {
    background-color: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}
.partners-intro-text {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-text);
    margin-bottom: 25px;
}
.partners-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}
.partners-track {
    display: flex;
    gap: 80px;
    width: calc(200px * 12);
    animation: scrollInfinite 25s linear infinite;
    align-items: center;
}
.partner-logo {
    width: 160px;
    font-size: 24px;
    color: #cbd5e1;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}
.partner-logo span { color: var(--primary-color); }
@keyframes scrollInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-240px * 6)); }
}

/* ----------------------------------------------------
   9. NOUVELLE SECTION : ÉQUIPE MULTI-PROFILS
------------------------------------------------------- */
.team-section { padding: 90px 0; background-color: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 35px; max-width: 1100px; margin: 40px auto 0; }
.team-card { background: var(--light-bg); border-radius: 16px; border: 1px solid var(--border-color); overflow: hidden; text-align: center; transition: all 0.3s ease; }
.team-card:hover { transform: translateY(-5px); border-color: var(--primary-color); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }
.team-avatar-box { background-color: var(--dark-color); height: 160px; display: flex; align-items: center; justify-content: center; }
.team-avatar-box i { font-size: 60px; color: var(--white); opacity: 0.85; }
.team-info-box { padding: 25px 20px; }
.team-info-box h3 { font-size: 18px; color: var(--dark-color); font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 13.5px; color: var(--primary-color); font-weight: 600; margin-bottom: 15px; }
.team-social { display: flex; justify-content: center; gap: 14px; }
.team-social a { color: #a0aec0; font-size: 16px; text-decoration: none; }
.team-social a:hover { color: var(--dark-color); }

/* ----------------------------------------------------
   10. FOOTER & ALERTS
------------------------------------------------------- */
.main-footer { background-color: var(--dark-color); color: var(--white); padding: 60px 0 30px; border-top: 1px solid #2d3748; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px 40px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; border-bottom: 1px solid #2d3748; }
.footer-column { display: flex; flex-direction: column; gap: 16px; }
.footer-description { color: #a0aec0; font-size: 14px; }
.footer-heading { font-size: 18px; font-weight: bold; color: var(--secondary-color); }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: #a0aec0; }
.footer-contact-list i { margin-right: 8px; }
.footer-badges-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.footer-badge-item { background-color: #1a202c; border: 1px solid #2d3748; padding: 8px 12px; border-radius: 8px; display: flex; align-items: center; gap: 8px; font-size: 11px; }
.footer-badge-item i { color: var(--secondary-color); }
.footer-bottom { text-align: center; font-size: 12px; color: #718096; padding-top: 30px; }


/* ==========================================================================
   REFONTE DE LA SECTION ÉQUIPE COMPACTE & ESTHÉTIQUE (5 MEMBRES)
   ========================================================================== */

.team-section {
    padding: 85px 0;
    background-color: #e8e8e8;
}

/* Grille flexible s'adaptant parfaitement de 1 à 5 colonnes */
.team-grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 45px auto 0 auto;
}

/* Base de la carte épurée */
.team-pro-card {
    background: transparent;
    text-align: center;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

/* Cercle Avatar Parfait */
.team-circle-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background-color: var(--light-bg);
    border: 3px solid var(--border-color);
    box-shadow: 0 8px 20px rgba(13, 21, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-circle-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Effet overlay discret avec icône de fonction au survol du cercle */
.team-avatar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 21, 42, 0.75); /* Teinte sombre Jarina */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.team-avatar-overlay i {
    color: var(--secondary-color); /* Touche Jaune/Or Yango */
    font-size: 24px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

/* Interactions au survol de la carte */
.team-pro-card:hover .team-circle-avatar {
    border-color: var(--primary-color); /* Devient Rouge Jarina */
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(229, 62, 62, 0.15);
}

.team-pro-card:hover .team-circle-avatar img {
    transform: scale(1.08);
}

.team-pro-card:hover .team-avatar-overlay {
    opacity: 1;
}

.team-pro-card:hover .team-avatar-overlay i {
    transform: scale(1);
}

/* Zone d'informations textuelles */
.team-pro-info {
    margin-top: 20px;
    width: 100%;
}

.team-pro-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
    letter-spacing: -0.3px;
}

.team-pro-role {
    font-size: 13px;
    color: var(--primary-color); /* Signature Rouge pour la fonction */
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 34px; /* Aligne horizontalement les icônes réseaux sociaux */
}

/* Réseaux sociaux individuels */
.team-pro-social {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.team-pro-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--gray-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
}

.team-pro-social a:hover {
    background-color: var(--dark-color);
    color: var(--white);
    border-color: var(--dark-color);
    transform: scale(1.05);
}

.team-pro-social a:hover .fa-linkedin-in {
    color: #0077b5; /* Couleur officielle LinkedIn au survol */
}


/* ==========================================================================
   REFONTE DE LA SECTION CONFIANCE (STYLE SAAS PREMIUM & ÉPURÉ)
   ========================================================================== */

.trust-pro-section {
    padding: 95px 0;
    background-color: #ffffff; /* Fond blanc neutre et épuré */
}

/* Grille alignée de manière asymétrique et fluide */
.trust-pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0 auto;
}

/* Base d'une carte de confiance premium */
.trust-pro-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(13, 21, 42, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Conteneur d'icône circulaire stylisé */
.trust-circle-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #fff5f5; /* Fond rouge très léger par défaut */
    color: var(--primary-color); /* Icône Rouge Jarina */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border: 1px solid #fed7d7;
    transition: all 0.3s ease;
}

/* Style de contenu textuel */
.trust-pro-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    line-height: 1.4;
}

.trust-pro-content p {
    font-size: 13.5px;
    color: var(--gray-text);
    line-height: 1.6;
}

/* --- CARTE MISE EN AVANT (La 8ème carte d'engagement) --- */
.highlight-card {
    background: linear-gradient(135deg, #0d152a 0%, #1a202c 100%);
    border: none;
}

.highlight-card .trust-pro-content h3 {
    color: var(--white);
}

.highlight-card .trust-pro-content p {
    color: #cbd5e0;
}

.highlight-card .bg-red-icon {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

/* --- EFFETS DE SURVOL INTERACTIFS --- */
.trust-pro-card:not(.highlight-card):hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(229, 62, 62, 0.06);
}

.trust-pro-card:not(.highlight-card):hover .trust-circle-icon {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Effet spécial de survol pour la carte sombre mise en avant */
.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13, 21, 42, 0.2);
}

.highlight-card:hover .bg-red-icon {
    background-color: var(--secondary-color); /* Bascule vers l'Or Yango au survol */
    color: #000;
    transform: scale(1.05);
}


/* ==========================================================================

X. STYLES SPECIFIQUES DU FORMULAIRE MULTI-ETAPES (PARTENAIRE REGISTER)

========================================================================== */


/* Structure du formulaire */

#multiStepForm {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07) !important;
    border: 1px solid var(--border-color) !important;

}



/* Customisation des champs de saisie */

#multiStepForm .form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--dark-color);
    background-color: var(--light-bg);
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}


#multiStepForm .form-control:focus {
    background-color: var(--white);
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15);
}

#multiStepForm label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-text);
    margin-bottom: 6px;
    display: inline-block;
}



/* Cartes de téléchargement (Upload Cards) style Image 3 */

.upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.upload-card {
    background: var(--light-bg);
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.upload-card:hover {
    border-color: var(--primary-color);
    background: #fff5f5;
    transform: translateY(-2px);
}


.upload-card.has-file {
    border-color: var(--success-color);
    background: #f0fdf4;
}


.upload-card i {
    font-size: 32px;
    color: #64748b;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.upload-card:hover i {color: var(--primary-color);}

.upload-card.has-file i {color: var(--success-color);}

.upload-card-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.upload-card-subtitle {font-size: 11px;color: var(--gray-text);}


/* Boutons de Navigation du Formulaire */

.btn-nav-prev {
    background-color: #718096;
    color: var(--white);
    border: none;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-nav-prev:hover {background-color: #4a5568;}

.btn-nav-next {
    background-color: var(--dark-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-nav-next:hover {background-color: #2d3748;}

.btn-nav-submit {
    background-color: var(--success-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-nav-submit:hover {background-color: #276749;}
