/* ==========================================================================
   TABLE DES MATIÈRES
   1.  VARIABLES CSS
   2.  RESET & BASE
   3.  TYPOGRAPHIE
   4.  GOOGLE TRANSLATE (nettoyage)
   5.  NAVBAR & MENU DESKTOP
   6.  MENU MOBILE (Offcanvas)
   7.  BOUTONS GÉNÉRIQUES
   8.  HERO CINEMA
   9.  SECTIONS & LAYOUT
   10. COMPOSANTS (Cards, Stats, Bento...)
   11. BLOG & ARTICLES
   12. SIDEBAR
   13. PAGINATION
   14. PARTENAIRES (Ticker)
   15. BOUTIQUE & PRODUITS
   16. PANIER & CHECKOUT
   17. FORMULAIRE DE DON (Donate Card)
   18. TICKER DONATEURS
   19. GALERIE LIGHTBOX
   20. FOOTER
   21. PAGES GÉNÉRIQUES (Template)
   22. ABOUT (Timeline)
   23. ANIMATIONS (@keyframes)
   24. RESPONSIVE (Media Queries)
   25. RECHERCHE GLOBALE
   26. PAGES SPÉCIFIQUES (Custom extrait des blades)
   ========================================================================== */


/* ==========================================================================
   1. VARIABLES CSS
   ========================================================================== */

:root {
    /* Brand */
    --brand-blue: #3e4db2;
    --brand-blue-hover: #2d3985;
    --deep-blue: #2c3682;
    --light-blue: #37B6FF;
    --cyan: #5CE1E6;
    --anniv-gold: #F2D411;
    --brand-pink: #E85D75;
    --brand-pink-hover: #D64563;

    /* Couleurs sémantiques */
    --brand-success: #28a745;
    --brand-success-hover: #1e7e34;
    --brand-warning: #ffb800;
    --brand-warning-hover: #e6a600;
    --brand-danger: #dc3545;
    --brand-danger-hover: #bd2130;
    --brand-info: #17a2b8;
    --brand-info-hover: #117a8b;
    --brand-secondary: #6c757d;
    --brand-secondary-hover: #545b62;
    --brand-dark: #1a1f3c;
    --brand-dark-hover: #0d1021;
    --brand-light: #f8f9fa;
    --brand-light-hover: #e9ecef;

    /* Soft backgrounds */
    --primary-soft: rgba(62, 77, 178, 0.1);
    --warning-soft: rgba(242, 212, 17, 0.15);
    --success-soft: rgba(40, 167, 69, 0.1);
    --pink-soft: rgba(232, 93, 117, 0.1);

    /* Footer */
    --footer-top-blue: #2c3682;

    /* Easing */
    --ease-cinematic: cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-soft-warning {
    background-color: var(--warning-soft) !important;
}

.bg-soft-success {
    background-color: var(--success-soft) !important;
}

.bg-pink {
    background-color: #FF00A9 !important;
}

.border-brand-blue {
    border-bottom: 4px solid var(--brand-blue) !important;
}

.border-brand-success {
    border-bottom: 4px solid var(--brand-success) !important;
}

.border-brand-warning {
    border-bottom: 4px solid var(--anniv-gold) !important;
}

.border-brand-pink {
    border-bottom: 4px solid var(--brand-pink) !important;
}


/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    padding-top: 56px;
}

::selection {
    background-color: var(--brand-blue);
    color: white;
}

a {
    text-decoration: none;
    color: #2c36a0;
}

a:hover {
    text-decoration: underline;
}

.row, .col-lg-3, .col-lg-9, .col-md-6, .col-md-4, .col-12,
.section-padding, .blog-section, #articleContent,
.container, .container-fluid {
    overflow: visible !important;
}


/* ==========================================================================
   3. TYPOGRAPHIE
   ========================================================================== */

h1, h2, h3 {
    font-family: 'Archivo Black', sans-serif;
    margin-bottom: 1rem;
}

.modern-title {
    font-family: 'Archivo Black';
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 35px;
    color: var(--brand-blue);
}

.h3-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1rem, 3vw, 2.5rem);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--brand-blue);
}

.text-outline-brand {
    -webkit-text-stroke: 1px var(--brand-blue);
    color: transparent;
}

.dropcap::first-letter {
    font-family: 'Archivo Black', sans-serif;
    float: left;
    font-size: 4.5rem;
    line-height: 0.8;
    padding-top: 4px;
    padding-right: 12px;
    color: var(--brand-blue);
}

.page-lead {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.page-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.fw-black {
    font-weight: 900;
}

.fs-7 {
    font-size: 0.85rem;
}

.tracking-widest {
    letter-spacing: 0.15em;
}

.text-muted-color {
    color: #888;
}

.text-gold {
    color: var(--anniv-gold);
}

.color-brand {
    color: var(--brand-blue);
    font-size: 1.1em;
    vertical-align: middle;
}

.heart-framed-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: 'Archivo Black', sans-serif;
    color: var(--brand-blue);
    text-transform: uppercase;
    position: relative;
}

.heart-framed-title i {
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.heart-left {
    color: #e74c3c;
    font-size: 0.9em;
    animation: heartBeat 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.heart-right {
    color: var(--light-blue);
    font-size: 0.7em;
    animation: heartBeat 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-delay: 0.3s;
}

blockquote {
    border-left: 4px solid #2c36a0;
    padding-left: 1rem;
    font-style: italic;
    color: #555;
    margin: 1.5rem 0;
}


/* ==========================================================================
   4. GOOGLE TRANSLATE (nettoyage)
   ========================================================================== */

#goog-gt-tt,
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.skiptranslate,
.goog-te-gadget-icon {
    display: none !important;
    visibility: hidden !important;
}

/* font {
    background-color: transparent !important;
    box-shadow: none !important;
    all: unset !important;
} */

.nav-icon-link.no-caret::after {
    display: none;
}

.translate-link:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.alert-flash {
    border-radius: 12px !important;
    padding: 16px 20px;
    font-size: 0.95rem;
    animation: slideDown 0.3s ease;
}

.alert-flash .alert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.25);
}

.alert-success .alert-icon {
    color: #0a3622;
}

.alert-warning .alert-icon {
    color: #664d03;
}

.alert-danger .alert-icon {
    color: #fff;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==========================================================================
   5. NAVBAR & MENU DESKTOP
   ========================================================================== */

.navbar-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1030;
    padding: 10px 0;
    background: rgba(44, 54, 130, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-main .container-fluid {
    flex-wrap: nowrap !important;
    justify-content: space-between;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo {
    max-height: 80px;
    width: auto;
}

.nav-link-top {
    color: #fff !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    margin: 0 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-don-main .d-none.d-xl-inline {
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.navbar .nav-item.dropdown {
    display: inline-flex;
    align-items: center;
    position: relative;
    height: 100%;
}

.navbar .nav-link-top.dropdown-toggle {
    padding: 0 !important;
    margin: 0 15px;
    display: inline-flex;
    align-items: center;
}

.navbar .dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: middle;
}

.navbar .dropdown-menu {
    background-color: #fff !important;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-top: 10px;
    min-width: 200px;
    overflow: hidden;
}

.navbar .dropdown-item {
    color: var(--brand-blue) !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    transform: translateX(5px);
    font-weight: 900;
}

.nav-icon-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-icon-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

.nav-icon-link .badge {
    transform: translate(-50%, -30%) !important;
    font-size: 0.45rem !important;
    padding: 0.2em 0.4em !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.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='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#page-menu-wrap {
    position: sticky;
    top: 0;
    width: 100%;
    height: 50px;
    background-color: var(--brand-blue);
    z-index: 1100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-menu-row {
    height: 50px;
}

.page-menu-nav ul li a {
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 20px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    text-decoration: none;
}

.search-modal-content {
    background: rgba(15, 17, 26, 0.97) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    will-change: opacity;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.modal.fade .modal-dialog {
    transition: transform 0.2s ease-out;
}

.search-input-group {
    max-width: 800px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.search-input-group .form-control {
    background: transparent !important;
    border: none !important;
    color: white !important;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    padding: 0;
}

.search-input-group .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-input-group .form-control:focus {
    box-shadow: none;
}

.btn-search-submit {
    color: white;
    font-size: 2.5rem;
    padding: 0;
    transition: transform 0.3s ease;
}

.btn-search-submit:hover {
    color: var(--anniv-gold);
    transform: translateX(10px);
}

.search-suggestions .badge {
    transition: all 0.3s ease;
    background: transparent;
}

.search-suggestions .badge:hover {
    background: white;
    color: black !important;
}

/* Méga menu desktop (≥1200px) */
@media (min-width: 1200px) {
    .navbar-main {
        position: fixed !important;
    }

    .has-mega-menu {
        position: static !important;
    }

    .mega-menu-content {
        display: block !important;
        visibility: hidden;
        opacity: 0;
        position: absolute !important;
        top: 100% !important;
        left: 50% !important;
        transform: translateX(-50%) translateY(10px) !important;
        width: 800px;
        background: #ffffff !important;
        border: none !important;
        border-radius: 0 0 24px 24px !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
        padding: 2.5rem !important;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        pointer-events: none;
        z-index: 1000;
    }

    .nav-item.dropdown:hover .mega-menu-content {
        visibility: visible;
        opacity: 1;
        transform: translateX(-50%) translateY(0) !important;
        pointer-events: auto;
    }

    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu>.dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
        visibility: hidden;
        opacity: 0;
        display: block;
        transition: all 0.2s;
        border-radius: 12px !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .dropdown-submenu:hover>.dropdown-menu {
        visibility: visible;
        opacity: 1;
        margin-left: 0px;
    }

    .dropdown-submenu>.dropdown-item:after {
        content: "\F285";
        font-family: "bootstrap-icons";
        float: right;
        border: none;
        font-size: 0.8rem;
        margin-top: 3px;
    }

    .mega-col-title {
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 1.5px;
        color: var(--brand-blue);
        text-transform: uppercase;
        margin-bottom: 1.25rem;
        display: block;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .dropdown-item {
        border-radius: 8px;
        padding: 0.6rem 1rem !important;
        transition: all 0.2s ease;
    }

    .dropdown-item:hover {
        background: var(--primary-soft) !important;
        color: var(--brand-blue) !important;
        transform: translateX(5px);
    }
}


/* ==========================================================================
   6. MENU MOBILE (Offcanvas)
   ========================================================================== */

#mobileMenu {
    border-radius: 0 25px 25px 0;
    max-width: 85%;
}

.offcanvas {
    background-color: #fff !important;
}

.offcanvas-body .nav-link {
    font-weight: 600;
    padding: 0.75rem 0;
    color: var(--brand-blue) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-section-title {
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #adb5bd;
    margin-bottom: 15px;
}

.menu-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 15px;
    padding: 12px 15px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
}

.menu-card-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.menu-card:active {
    background: #f8f9fa;
    transform: scale(0.98);
}

.menu-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.quick-action-card {
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #333;
    font-size: 0.85rem;
    font-weight: 700;
}

.quick-action-card i {
    font-size: 1.5rem;
    color: var(--brand-blue);
}

.btn-close-custom {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
}

.social-mini {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    border: 1px solid #eee;
    text-decoration: none;
}


/* ==========================================================================
   7. BOUTONS GÉNÉRIQUES
   ========================================================================== */

.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn:hover, .btn:focus {
    transform: translateY(-2px);
}

.text-primary {
    color: var(--brand-blue) !important;
}

.bg-primary {
    background-color: var(--brand-blue) !important;
}

.btn-primary {
    background-color: var(--brand-blue) !important;
    border-color: var(--brand-blue) !important;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--brand-blue-hover) !important;
    border-color: var(--brand-blue-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(62, 77, 178, 0.3);
}

.text-success {
    color: var(--brand-success) !important;
}

.bg-success {
    background-color: var(--brand-success) !important;
}

.btn-success {
    background-color: var(--brand-success) !important;
    border-color: var(--brand-success) !important;
}

.btn-success:hover, .btn-success:focus {
    background-color: var(--brand-success-hover) !important;
    border-color: var(--brand-success-hover) !important;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.text-warning {
    color: var(--brand-warning) !important;
}

.bg-warning {
    background-color: var(--brand-warning) !important;
}

.btn-warning {
    background-color: var(--brand-warning) !important;
    border-color: var(--brand-warning) !important;
    color: #fff !important;
}

.btn-warning:hover, .btn-warning:focus {
    background-color: var(--brand-warning-hover) !important;
    border-color: var(--brand-warning-hover) !important;
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.3);
}

.text-danger {
    color: var(--brand-danger) !important;
}

.bg-danger {
    background-color: var(--brand-danger) !important;
}

.btn-danger {
    background-color: var(--brand-danger) !important;
    border-color: var(--brand-danger) !important;
}

.btn-danger:hover, .btn-danger:focus {
    background-color: var(--brand-danger-hover) !important;
    border-color: var(--brand-danger-hover) !important;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

.text-info {
    color: var(--brand-info) !important;
}

.bg-info {
    background-color: var(--brand-info) !important;
}

.btn-info {
    background-color: var(--brand-info) !important;
    border-color: var(--brand-info) !important;
    color: #fff !important;
}

.btn-info:hover, .btn-info:focus {
    background-color: var(--brand-info-hover) !important;
    border-color: var(--brand-info-hover) !important;
    box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
}

.text-secondary {
    color: var(--brand-secondary) !important;
}

.bg-secondary {
    background-color: var(--brand-secondary) !important;
}

.btn-secondary {
    background-color: var(--brand-secondary) !important;
    border-color: var(--brand-secondary) !important;
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--brand-secondary-hover) !important;
    border-color: var(--brand-secondary-hover) !important;
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

.text-dark {
    color: var(--brand-dark) !important;
}

.bg-dark {
    background-color: var(--brand-dark) !important;
}

.btn-dark {
    background-color: var(--brand-dark) !important;
    border-color: var(--brand-dark) !important;
}

.btn-dark:hover, .btn-dark:focus {
    background-color: var(--brand-dark-hover) !important;
    border-color: var(--brand-dark-hover) !important;
    box-shadow: 0 5px 15px rgba(26, 31, 60, 0.3);
}

.text-light {
    color: var(--brand-light) !important;
}

.bg-light {
    background-color: var(--brand-light) !important;
}

.btn-light {
    background-color: var(--brand-light) !important;
    border-color: var(--brand-light-hover) !important;
    color: var(--brand-dark) !important;
}

.btn-light:hover, .btn-light:focus {
    background-color: var(--brand-light-hover) !important;
    border-color: var(--brand-light-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bg-primary-soft {
    background-color: var(--primary-soft) !important;
    color: var(--brand-blue) !important;
}

.bg-success-soft {
    background-color: rgba(40, 167, 69, 0.1) !important;
    color: var(--brand-success) !important;
}

.bg-warning-soft {
    background-color: rgba(255, 184, 0, 0.1) !important;
    color: var(--brand-warning) !important;
}

.bg-danger-soft {
    background-color: rgba(220, 53, 69, 0.1) !important;
    color: var(--brand-danger) !important;
}

.bg-info-soft {
    background-color: rgba(23, 162, 184, 0.1) !important;
    color: var(--brand-info) !important;
}

.text-primary-soft {
    color: rgba(62, 77, 178, 0.25);
}

.brand-bg-blue {
    background: var(--brand-blue);
}

.btn-don-sidebar {
    display: block;
    text-align: center;
    background: var(--anniv-gold);
    color: var(--brand-blue);
    font-weight: 900;
    padding: 12px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-don-sidebar:hover {
    background: var(--brand-blue);
    color: #fff;
    transform: translateY(-2px);
}

.btn-don-sidebar:active {
    top: 6px;
    box-shadow: 0 0 0 var(--deep-blue);
    background: #F2D411;
}

.btn-don-sidebar i {
    color: inherit;
}

.btn-don-top {
    background: var(--anniv-gold);
    color: var(--brand-blue);
    font-weight: 900;
    padding: 12px 35px;
    border: none;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
    transition: 0.3s;
}

.btn-don-main {
    background-color: #F2D411 !important;
    color: #3e4db2 !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    text-decoration: none !important;
    font-size: 0.85rem;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    min-height: 45px;
    border: none;
    transition: all 0.3s ease;
}

.btn-don-pulse {
    animation: pulse-sdj-final 2s infinite;
}

.btn-don-main i {
    display: inline-block;
    animation: heartBeat 1.5s infinite;
}

/* Protéger le bouton don dans le offcanvas pour qu'il garde son texte */
.offcanvas .btn-don-main i {
    display: inline-block;
    margin-right: 8px;
}

.btn-don-ultra {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #3e4db2 !important;
    background: linear-gradient(45deg, #F2D411, #FFEB3B, #F2D411);
    background-size: 200% auto;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 20px rgba(242, 212, 17, 0.3);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: gradientShift 3s ease infinite, ultraPulse 2s infinite;
    cursor: pointer;
    overflow: hidden;
}

.btn-don-ultra::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
    animation: shine 4s infinite;
}

.btn-don-ultra:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 30px rgba(242, 212, 17, 0.5);
    background-position: right center;
}

.btn-don-ultra:hover i.bi-heart-fill {
    animation: heartBeat 0.8s infinite;
}

.btn-don-slim {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #3e4db2 !important;
    background: linear-gradient(45deg, #F2D411, #FFEB3B, #F2D411);
    background-size: 200% auto;
    border-radius: 30px;
    border: none;
    box-shadow: 0 4px 12px rgba(242, 212, 17, 0.2);
    position: relative;
    transition: all 0.3s ease;
    animation: gradientShift 3s ease infinite, slimPulse 2s infinite;
    white-space: nowrap;
    cursor: pointer;
}

.btn-don-slim:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(242, 212, 17, 0.4);
    background-position: right center;
}

.btn-don-slim:hover i.bi-heart-fill {
    animation: heartBeat 0.8s infinite;
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    margin-top: 40px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-weight: 800;
    text-decoration: none;
    padding: 15px 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero-ghost:hover {
    background: #fff;
    color: var(--brand-blue);
    transform: translateY(-3px);
}

.btn-readmore {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-readmore::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.blog-card:hover .btn-readmore::after {
    transform: translateX(5px);
}

.read-article {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: var(--brand-blue);
    margin-top: auto;
    padding-top: 15px;
    transition: transform 0.25s ease;
}

.read-article .arrow {
    margin-left: 5px;
    transition: transform 0.25s ease;
}

.read-article:hover .arrow {
    transform: translateX(4px);
}

.btn-refresh {
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s var(--ease-cinematic);
}

.btn-refresh:active {
    transform: rotate(180deg);
}


/* ==========================================================================
   8. HERO CINEMA
   ========================================================================== */

.hero-cinema {
    position: relative;
    width: 100%;
    height: 75vh;
    background-color: var(--deep-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-cinema .hero-content {
    opacity: 1 !important;
    visibility: visible !important;
    color: #fff !important;
    z-index: 10;
}

.hero-cinema .hero-title, .hero-cinema .hero-tag, .hero-cinema .hero-gala-line {
    color: #ffffff !important;
    opacity: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-cinema .fade-step {
    opacity: 0;
}

.hero-cinema .fade-step.active {
    opacity: 1 !important;
    transition: opacity 1s ease-in-out;
}

.hero-cinema .text-outline-white {
    -webkit-text-stroke: 1px #ffffff !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    opacity: 1 !important;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.brand-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.35) 100%), linear-gradient(135deg, rgba(62, 77, 178, 0.88) 0%, rgba(44, 54, 130, 0.65) 100%);
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-gala-line {
    font-family: 'Archivo Black';
    font-size: clamp(1.4rem, 6vw, 6rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    white-space: normal;
    word-break: break-word;
}

.anniv-text {
    color: var(--anniv-gold);
}

.hero-title {
    font-family: 'Archivo Black';
    font-size: clamp(2.5rem, 10vw, 7.5rem);
    line-height: 0.85;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.hero-tag {
    font-weight: 800;
    letter-spacing: 12px;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.fade-step {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    opacity: 0;
    filter: blur(20px);
    transition: all 1.2s var(--ease-cinematic);
}

.fade-step.visible {
    opacity: 1;
    filter: blur(0);
}

.fade-step.exit {
    opacity: 0;
    filter: blur(30px);
    transform: translate(-50%, -70%);
}

.hero-home-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    color: #ffffff !important;
}

.fade-step-home {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1), transform 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    text-align: center;
}

.fade-step-home.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fade-step-home.exit {
    opacity: 0;
    transform: translateY(-30px);
    filter: blur(5px);
}

.hero-home-wrapper h1, .hero-home-wrapper h2, .hero-home-wrapper p {
    color: #ffffff !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-jumpto {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    color: #fff;
    font-size: 2rem;
    animation: bounce 2s infinite;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.hero-jumpto:hover {
    opacity: 1;
    color: var(--anniv-gold);
}

.cd-wrapper-clean {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.cd-val {
    display: block;
    font-family: 'Archivo Black';
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--anniv-gold);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.cd-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}


/* ==========================================================================
   9. SECTIONS & LAYOUT
   ========================================================================== */

.section-padding {
    padding: 60px 0;
}

.bento-card {
    background: #f8f9fa;
    padding: 40px;
    height: 100%;
    border-radius: 4px;
}

.icon-brand {
    font-size: 2.5rem;
    color: var(--brand-blue);
    margin-bottom: 15px;
    display: block;
}

.stat-big {
    font-family: 'Archivo Black';
    font-size: 5rem;
    color: var(--anniv-gold);
    line-height: 1;
}

.stat-label {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.grayscale img {
    filter: grayscale(1);
    opacity: 0.5;
    transition: 0.3s;
}

.grayscale img:hover {
    filter: grayscale(0);
    opacity: 1;
}

.pattern-top-left, .pattern-top-right, .pattern-bottom-left, .pattern-bottom-right {
    position: absolute;
    width: 380px;
    height: 380px;
    opacity: 0.3;
    animation: floatPattern 12s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

.pattern-top-left {
    top: 50px;
    left: -100px;
}

.pattern-top-right {
    top: 200px;
    right: -100px;
}

.pattern-bottom-left {
    bottom: 10%;
    left: -80px;
}

.pattern-bottom-right {
    bottom: 15%;
    right: -80px;
}

.pattern-top-left circle:nth-child(2) {
    animation: pulse-radar 4s infinite ease-in-out;
}

.page-patterns {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.page-patterns svg {
    position: absolute;
    width: 280px;
    height: 280px;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.page-quote {
    border-left: 5px solid #F2D411;
    background: #fdfaf0;
    padding: 2.5rem;
    margin: 3.5rem 0;
    border-radius: 0 20px 20px 0;
    position: relative;
}

.page-quote p {
    font-style: italic;
    font-size: 1.4rem;
    color: var(--brand-blue);
    margin-bottom: 0;
    line-height: 1.6;
}

.page-quote::before {
    content: '"';
    font-family: 'Archivo Black', serif;
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(242, 212, 17, 0.3);
}

.glass-image-container {
    display: inline-block;
    position: relative;
    padding: 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.glass-boxed-img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.text-center .glass-image-container {
    margin-left: auto;
    margin-right: auto;
}

.video-container-wrapper {
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    margin: 4rem 0;
    transition: transform 0.3s ease;
}

.video-container-wrapper:hover {
    transform: scale(1.01);
}

.video-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #000;
}

.video-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-caption {
    margin-top: 1.5rem;
    text-align: center;
}

.video-caption h4 {
    font-family: 'Archivo Black', sans-serif;
    color: var(--brand-blue);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}


/* ==========================================================================
   10. COMPOSANTS (Cards, Stats, Poles, Missions, Impact, Ateliers...)
   ========================================================================== */

.impact-patterns {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.pattern-top-left, .pattern-top-right {
    z-index: 1;
    pointer-events: none;
    animation: floatPattern 8s ease-in-out infinite alternate;
}

.impact-card {
    transition: all 0.4s var(--ease-cinematic);
    border: none !important;
}

.impact-card:hover {
    transform: translateY(-5px);
    border-color: #3e4db2 !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.impact-card:active {
    transform: scale(0.98);
}

.atelier-card {
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
    border: 1px solid #eee;
}

.atelier-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-blue) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pole-card {
    background: #fff;
    padding: 45px 35px;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.pole-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.pole-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.pole-card h3 {
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 12px;
}

.pole-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 28px;
}

.pole-read {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: .25s;
}

.arrow {
    transition: transform .25s ease;
}

.pole-card:hover .arrow {
    transform: translateX(6px);
}

.pole-1 {
    border-top: 4px solid #3E4EB2;
}

.pole-2 {
    border-top: 4px solid #37B6FF;
}

.pole-3 {
    border-top: 4px solid #5CE1E6;
}

.pole-4 {
    border-top: 4px solid #3E4EB2;
}

.pole-patterns {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.pole-patterns svg.pattern {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.5;
    filter: drop-shadow(0 0 20px rgba(62, 77, 178, 0.4));
    transform-origin: center;
}

.pattern-1 {
    top: 10%;
    left: 10%;
    animation: float1 6s ease-in-out infinite alternate;
}

.pattern-2 {
    top: 30%;
    left: 80%;
    animation: float2 7s ease-in-out infinite alternate;
}

.pattern-3 {
    top: 55%;
    left: 40%;
    animation: float3 8s ease-in-out infinite alternate;
}

.mission-item {
    transition: all 0.4s ease;
    position: relative;
}

.mission-item:hover {
    background-color: #fafafa;
    padding-left: 15px !important;
}

.mission-number {
    font-size: 3.5rem;
    opacity: 0.3;
    line-height: 1;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.mission-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.engagement-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

.engagement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: #F2D411;
}

.stat-item {
    padding: 20px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.structure-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.structure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(62, 77, 178, 0.1) !important;
}

.text-brand-blue {
    color: var(--brand-blue) !important;
}

.text-brand-success {
    color: var(--brand-success) !important;
}

.text-brand-warning {
    color: var(--brand-warning) !important;
}

.text-brand-info {
    color: var(--brand-info) !important;
}

.text-brand-pink {
    color: var(--brand-pink) !important;
}

.bg-soft-primary {
    background-color: var(--primary-soft) !important;
}

.bg-soft-pink {
    background-color: var(--pink-soft) !important;
}


/* ==========================================================================
   11. BLOG & ARTICLES
   ========================================================================== */

  /* ============================================
   FEATURED POST MODERN (type agence / wahou)
   ============================================ */
.featured-post-modern {
    position: relative;
    margin: 4rem 0;
    overflow-x: hidden;
}

.featured-post-modern .row {
    min-height: 550px;
}

.featured-img-wrap {
    position: relative;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
}

.featured-img-zoom {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    will-change: transform;
}

.featured-img-wrap:hover .featured-img-zoom {
    transform: scale(1.05);
}

.featured-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(62,77,178,0.2) 0%, rgba(242,212,17,0.1) 100%);
    mix-blend-mode: overlay;
    pointer-events: none;
}

.featured-content-modern {
    max-width: 500px;
    margin: 0 auto;
}

.featured-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f0f0ff;
    color: #3e4db2;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.featured-title-modern {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1a1f3c;
    margin-bottom: 1rem;
}

@media (max-width: 992px) {
    .featured-title-modern {
        font-size: 2rem;
    }
}

.category-pill {
    display: inline-block;
    background: #3e4db2;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 500;
    text-decoration: none;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.2s;
}

.category-pill:hover {
    background: #2d3985;
    color: white;
}

.featured-intro-modern {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.btn-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #3e4db2;
    text-decoration: none;
    border-bottom: 2px solid #3e4db2;
    padding-bottom: 0.25rem;
    transition: gap 0.2s ease;
}

.btn-link-modern:hover {
    gap: 1rem;
    color: #2d3985;
    border-bottom-color: #2d3985;
}

.btn-link-modern svg {
    transition: transform 0.2s;
}

.btn-link-modern:hover svg {
    transform: translateX(4px);
}

/* Formes flottantes décoratives */
.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}

.shape {
    position: absolute;
    background: rgba(62, 77, 178, 0.05);
    border-radius: 50%;
    animation: floatShape 12s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: -80px;
    left: -80px;
    background: radial-gradient(circle, rgba(242,212,17,0.1), rgba(62,77,178,0.02));
    animation-duration: 18s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    bottom: -40px;
    right: 10%;
    background: rgba(92,225,230,0.08);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-duration: 14s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 30%;
    left: 5%;
    background: rgba(232,93,117,0.07);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-duration: 20s;
}

.shape-4 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 20%;
    background: rgba(242,212,17,0.1);
    animation-duration: 16s;
}

@keyframes floatShape {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, -15px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Ajustement responsive */
@media (max-width: 992px) {
    .featured-post-modern .row {
        min-height: auto;
    }
    .featured-img-wrap {
        min-height: 300px;
    }
    .featured-content-modern {
        padding: 2rem;
        text-align: center;
    }
    .floating-shapes {
        display: none;
    }
}
/*  */

.blog-section {
    background: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.blog-section .row {
    display: flex;
    flex-wrap: wrap;
}

.blog-section .col-md-6 {
    display: flex;
    margin-bottom: 30px;
}

.blog-card-simple {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-simple img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.blog-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12) !important;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform .35s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}


.blog-card:hover {
    transform: translateY(-8px);
}

.blog-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 16px;
    color: #666;
}

.blog-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

.blog-content h5 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.blog-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-intro {
    flex-grow: 1;
    margin-bottom: 15px;
}

.blog-meta {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    color: var(--brand-blue);
    transition: color 0.3s ease;
}

.blog-meta:hover {
    color: #F2D411;
}

.blog-categories-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.blog-categories-wrapper .cat-link {
    text-decoration: none;
    display: inline-flex;
}

.cat-separator {
    color: #ccc;
    font-size: 0.8rem;
}

.title-link {
    text-decoration: none;
    color: inherit;
}

.title-link h5 {
    transition: color 0.3s ease;
}

.title-link:hover h5 {
    color: var(--brand-blue);
}

.blog-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.blog-tag-link {
    text-decoration: none !important;
}

.blog-meta-tag {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    color: #8e44ad;
    background-color: rgba(142, 68, 173, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-tag-link:hover .blog-meta-tag {
    background-color: rgba(142, 68, 173, 0.2);
    color: #732d91;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(142, 68, 173, 0.15);
}

.blog-slider-wrapper {
    position: relative;
    z-index: 1;
    margin-left: calc((100vw - 1200px) / 2);
}

.blogSwiper {
    overflow: visible;
    padding-right: 80px;
}

.swiper-slide {
    width: 420px;
    display: flex;
    height: auto;
}

.blog-nav {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    justify-content: flex-start;
}

.blog-prev, .blog-next {
    position: relative;
    color: var(--brand-blue);
    transition: color 0.3s;
}

.blog-prev:hover, .blog-next:hover {
    color: var(--anniv-gold);
}

.swiper-button-prev, .swiper-button-next {
    top: auto;
    bottom: -60px;
    width: 35px;
    height: 35px;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    left: 50px;
}

.swiper-button-prev:after, .swiper-button-next:after {
    font-size: 22px;
}

.hero-article {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 40px;
}

.hero-article .hero-content {
    position: relative;
    z-index: 10;
    color: white;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-article .overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at center, rgba(62, 77, 178, 0.95) 0%, rgba(44, 54, 130, 0.95) 100%);
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1440px !important;
    }
}

.container {
    width: 100%;
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
}

.hero-article h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1.6rem, 5vw, 4rem);
    line-height: 1.15;
    text-transform: uppercase;
    width: 100%;
    /* max-width: 1250px; */
    margin: 0 auto;
    text-align: center;
    display: block;
    overflow: visible;
    text-wrap: balance;
    hyphens: none !important;
    word-break: normal;
    overflow-wrap: break-word;
    opacity: 1;
    transform: translateY(0);
    transition: all 1.2s var(--ease-cinematic);
}

.hero-article .breadcrumb {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #F2D411;
    margin-top: 25px;
    opacity: 1;
    transform: translateY(0);
    display: inline-block;
    width: 100%;
    text-align: center;
}

.hero-article.visible h1, .hero-article.visible .breadcrumb {
    opacity: 1 !important;
    transform: translateY(0) !important;
    display: block !important;
    visibility: visible !important;
}

.hero-article.visible .breadcrumb a {
    color: #fff;
    text-decoration: none;
}

#articleContent .container {
    position: relative;
    z-index: 10;
}

.single-article img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
}

.entry-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.article-footer-share {
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.related-posts-section {
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.btn-share-colored {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff !important;
    text-decoration: none;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-share-colored.fb {
    background: linear-gradient(135deg, #1877F2, #0a56bd);
}

.btn-share-colored.x-twitter {
    background: linear-gradient(135deg, #1d1d1d, #000000);
}

.btn-share-colored.in {
    background: linear-gradient(135deg, #0077b5, #005987);
}

.btn-share-colored.wa {
    background: linear-gradient(135deg, #25D366, #1bd75f);
}

.btn-share-colored.copy {
    background: linear-gradient(135deg, #3e4db2, #2a3682);
}

.btn-share-colored.ig {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.btn-share-colored:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
}

.btn-share-colored:active {
    transform: translateY(0) scale(0.95);
}

.inspiration-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-image-wrapper {
    overflow: hidden;
    position: relative;
    padding-top: 60%;
    display: block;
}

.inspiration-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.inspiration-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.inspiration-card:hover .inspiration-img {
    transform: scale(1.1);
}

.inspiration-content {
    flex-grow: 1;
}

.inspiration-title a {
    color: var(--brand-blue);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.inspiration-card:hover .inspiration-title a {
    color: #5CE1E6;
}

.inspiration-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.inspiration-category {
    font-size: 0.75rem;
    font-weight: 700;
}


/* ==========================================================================
   12. SIDEBAR
   ========================================================================== */

.sidebar {
    position: sticky;
    top: 100px;
    z-index: 1001;
    width: 100%;
    min-height: 200px;
    padding: 0 25px 25px 25px;
    border-radius: 12px;
    background: #fff;
    overflow: visible !important;
}

.sidebar .sidebar-title {
    font-family: 'Archivo Black', sans-serif;
    color: #2d3436;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 12px;
}

.sidebar .sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #F2D411;
    border-radius: 2px;
}

.sidebar .sidebar-title i {
    color: var(--brand-blue);
    font-size: 1.1rem;
}

.sidebar .list-group-item {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
}

.categories-compact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-compact li {
    margin-bottom: 2px;
}

.categories-compact .cat-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 6px 0;
    color: #444;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.categories-compact .cat-dot {
    flex-grow: 1;
    border-bottom: 1px dotted #e0e0e0;
    margin: 0 10px;
    position: relative;
    top: -4px;
}

.categories-compact .cat-name {
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.categories-compact .cat-count {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #888;
    font-weight: 700;
    background: #f0f0f5;
    padding: 2px 8px;
    border-radius: 6px;
    min-width: 30px;
    text-align: center;
    transition: all 0.2s ease;
}

.categories-compact .cat-link:hover .cat-name {
    color: var(--brand-blue);
    transform: translateX(5px);
}

.categories-compact .cat-link:hover .cat-dot {
    border-bottom-color: var(--brand-blue);
    opacity: 0.5;
}

.categories-compact .cat-link:hover .cat-count {
    background: var(--brand-blue);
    color: #fff;
}

.recent-post-blog {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f5f5f9;
}

.recent-post-blog:last-child {
    border-bottom: none;
}

.recent-post-blog img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

.recent-post-blog h5 {
    font-size: 1rem;
    margin: 0.5rem 0;
    color: #333;
}

.recent-post-blog .read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-blue);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 10px;
}

.tagcloud a {
    background: #f0f0ff;
    color: var(--brand-blue);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s;
    text-decoration: none;
}

.tagcloud a:hover {
    background: var(--anniv-gold);
    color: var(--brand-blue);
}

.sidebar-shop-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    border-left: 4px solid var(--brand-blue);
    padding-left: 15px;
}

.cat-link {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
    border-bottom: 1px solid #eee;
}

.cat-link:hover {
    color: var(--brand-blue);
}

.cat-count {
    background: #eee;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
}


/* ==========================================================================
   13. PAGINATION
   ========================================================================== */

.pagination {
    gap: 8px;
    justify-content: center;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50% !important;
    color: #555;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.pagination .page-item.active .page-link {
    background-color: var(--brand-blue) !important;
    color: #fff !important;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(62, 77, 178, 0.3);
}

.pagination .page-link:hover {
    background-color: #F2D411;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 212, 17, 0.4);
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
    background: #f1f1f1;
    pointer-events: none;
}

.page-link:focus {
    box-shadow: none;
}

.pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
    border-radius: 25px !important;
    width: auto;
    padding: 0 20px;
}

nav .flex-1.d-none.d-md-flex, nav .small.text-muted {
    display: none !important;
}

nav .justify-content-between {
    justify-content: center !important;
}


/* ==========================================================================
   14. PARTENAIRES (Ticker)
   ========================================================================== */

#partenaires {
    background-color: #fefefe;
    padding: 80px 0;
    position: relative;
    border-radius: 10px;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.03);
}

#partenaires::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 80" xmlns="http://www.w3.org/2000/svg"><path fill="%23D0E7FF" fill-opacity="0.3" d="M0,32L48,26.7C96,21,192,11,288,16C384,21,480,43,576,48C672,53,768,43,864,48C960,53,1056,75,1152,74.7C1248,75,1344,53,1392,42.7L1440,32L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top center;
    background-size: cover;
    pointer-events: none;
    z-index: 0;
}

#partenaires .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.partners-description {
    /* max-width: 700px; */
    margin: 0 auto 40px auto;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
}

.ticker-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: ticker 30s linear infinite;
}

.ticker-track img {
    max-height: 50px;
    width: auto;
    filter: grayscale(0.2);
    opacity: 0.85;
    transition: filter 0.3s, transform 0.3s, opacity 0.3s;
}

.ticker-track img:hover {
    filter: grayscale(0);
    transform: scale(1.05);
    opacity: 1;
}


/* ==========================================================================
   15. BOUTIQUE & PRODUITS
   ========================================================================== */

.product-card {
    border: none;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-img-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.img-hover {
    opacity: 0;
}

.product-card:hover .img-main {
    opacity: 0;
    transform: scale(1.1);
}

.product-card:hover .img-hover {
    opacity: 1;
    transform: scale(1.05);
}

.btn-quickview {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: var(--brand-blue);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.product-card:hover .btn-quickview {
    bottom: 20px;
}

.product-image-container {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f8f9fa;
}

.img-main, .img-hover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-image-container:hover .img-hover {
    opacity: 1;
}

.product-image-container:hover .img-main {
    transform: scale(1.05);
}

#sp-container {
    --sp-blue: #3e4db2;
    --sp-yellow: #F2D411;
    --sp-light-bg: #f8f9fa;
}

.sp-product-gallery {
    position: sticky;
    top: 100px;
}

.sp-main-frame {
    height: 550px;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sp-main-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

.sp-thumb-list {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 15px;
}

.sp-thumb-box {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.2s;
}

.sp-thumb-box.sp-active, .sp-thumb-box:hover {
    opacity: 1;
    border-color: var(--sp-blue);
    transform: translateY(-3px);
}

.sp-thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-qty-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 4px;
    width: fit-content;
}

.sp-btn-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--sp-light-bg);
    font-weight: bold;
    transition: 0.2s;
}

.sp-btn-step:hover {
    background: var(--sp-blue);
    color: white;
}

.sp-badge-solidarity {
    background: rgba(62, 77, 178, 0.1);
    color: var(--sp-blue);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.sp-btn-main {
    background: var(--sp-blue);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
}

.sp-btn-main:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(62, 77, 178, 0.3);
    color: white;
}

.sp-tabs-nav {
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}

.sp-tab-trigger {
    background: none;
    border: none;
    padding: 10px 0;
    color: #888;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sp-tab-trigger.active {
    color: var(--sp-blue) !important;
}

.sp-tab-trigger.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--sp-blue);
    border-radius: 50px;
}

#sp-target-view {
    transition: opacity 0.2s ease-in-out !important;
    will-change: opacity;
}

#sp-container input::-webkit-outer-spin-button, #sp-container input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#sp-container input[type=number] {
    -moz-appearance: textfield;
}

#sp-container input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.tab-pane.fade {
    transition: opacity 0.2s linear;
}

.thumb-item {
    width: 60px;
    height: 60px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0.6;
}

.thumb-item:hover, .thumb-item.active {
    opacity: 1;
    border-color: var(--brand-blue);
    transform: translateY(-3px);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transition-img {
    transition: opacity 0.3s ease-in-out;
}

.btn-outline-light-custom {
    border: 1px solid #eee;
    background: #f8f9fa;
    border-radius: 12px;
    width: 45px;
    height: 45px;
    font-weight: bold;
    transition: all 0.2s;
}

.btn-outline-light-custom:hover, .btn-outline-light-custom.active {
    background: var(--brand-blue);
    color: white;
    border-color: var(--brand-blue);
}

.btn-hover-grow {
    transition: transform 0.2s;
}

.btn-hover-grow:hover {
    transform: scale(1.02);
}


/* ==========================================================================
   16. PANIER & CHECKOUT
   ========================================================================== */

.cart-section {
    background-color: #f8f9fc;
    min-height: 60vh;
}

.cart-table-container {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-img-wrapper img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.quantity-control {
    background: #f0f2f5;
    padding: 2px 5px;
}

.quantity-control .btn {
    padding: 0 5px;
    border: none;
    color: var(--brand-blue);
}

.quantity-control .btn:hover {
    color: var(--anniv-gold) !important;
}

.promo-group .form-control {
    border-color: transparent;
}

.promo-group .form-control:focus {
    box-shadow: none;
    background: #fff;
    border: 1px solid #ced4da;
}

.sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

.cart-header-icon .icon-circle {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--brand-blue);
    border: 2px solid rgba(62, 77, 178, 0.1);
    transition: transform 0.3s ease;
}

.cart-header-icon:hover .icon-circle {
    transform: scale(1.1) rotate(-10deg);
}

.step-number {
    width: 35px;
    height: 35px;
    background-color: var(--brand-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(62, 77, 178, 0.2);
}

.payment-card-option {
    cursor: pointer;
    transition: all 0.3s var(--ease-cinematic);
    border: 2px solid #eee !important;
}

.payment-card-option:has(input:checked) {
    border-color: var(--brand-blue) !important;
    background-color: rgba(62, 77, 178, 0.02);
}

.card-details-form {
    border-style: dashed !important;
}

.checkout-form-wrapper .form-control:focus {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 4px rgba(62, 77, 178, 0.1);
    background-color: #fff;
}

.thankyou-section {
    min-height: 85vh;
    background: linear-gradient(135deg, #ffffff 0%, #f4f6ff 100%);
    padding: 80px 0;
}

.thankyou-icon-wrapper {
    position: relative;
    display: inline-block;
}

.icon-circle-main {
    width: 120px;
    height: 120px;
    background: var(--brand-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    z-index: 2;
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: rgba(62, 77, 178, 0.2);
    border-radius: 50%;
    z-index: 1;
    animation: pulseWave 2s infinite;
}

.confirmation-card {
    background: #ffffff;
    border-radius: 20px;
    border-top: 5px solid var(--brand-blue) !important;
}

.reveal-up {
    animation: revealUp 1s ease-out forwards;
}


/* ==========================================================================
   17. FORMULAIRE DE DON (Donate Card)
   ========================================================================== */

.row:has(#DonateCard) {
    display: flex !important;
    align-items: stretch !important;
}

#DonateCard {
    will-change: transform, top, position;
    transition: none !important;
}

.donate-overlap-section, .donate-overlap-section>.container {
    overflow: visible !important;
}

.donate-overlap-section {
    background: #fff;
    padding-bottom: 120px;
    z-index: 10;
    position: relative;
    overflow: visible !important;
}

.donate-sticky-card-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    z-index: 1000;
    height: fit-content !important;
    width: 100%;
    margin-top: -100px;
    will-change: transform;
}

.donate-overlap-section .col-lg-4 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: auto !important;
}

.donate-overlap-section .row {
    display: flex !important;
    align-items: flex-start !important;
    overflow: visible !important;
}

.donate-patterns-wrapper {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.signup-card {
    border-radius: 0 !important;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3) !important;
    overflow: hidden;
}

.signup-card .card-title {
    font-family: 'Archivo Black', sans-serif;
    color: var(--brand-blue);
    font-size: 1.8rem;
    line-height: 1.2;
}

.signup-card .form-control {
    border-radius: 0;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.signup-card .form-control:focus {
    background-color: #fff;
    border-color: var(--brand-blue);
}

.signup-card .form-label {
    letter-spacing: 1px;
    color: #6b7280;
    margin-bottom: 8px;
}

.signup-card .btn-don-sidebar {
    margin-top: 10px;
    cursor: pointer;
}

.custom-input-group .input-group-text {
    border-radius: 0;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    font-weight: bold;
    color: var(--brand-blue);
}

.btn-amounts-container {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
}

.btn-amount {
    flex: 1;
    padding: 10px 5px;
    font-size: 0.85rem;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--light-blue) 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-cinematic);
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(62, 77, 178, 0.15);
}

.btn-amount:hover {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--cyan) 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(50, 50, 93, 0.1);
}

.btn-amount:active {
    transform: translateY(-1px);
    background: linear-gradient(135deg, var(--anniv-gold) 0%, #FFEA61 100%);
    color: var(--brand-blue);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-amounts-container .btn-amount {
    background-color: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 8px !important;
    padding: 10px 5px !important;
    transition: all 0.2s ease-in-out !important;
    flex: 1;
    font-weight: 600;
    color: #fff !important;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-amounts-container .btn-amount:hover {
    border-color: #3e4db2 !important;
    color: #3e4db2 !important;
    background-color: #ffffff !important;
}

.btn-amounts-container .btn-amount.active {
    background-color: #3e4db2 !important;
    color: #F2D411 !important;
    border-color: #3e4db2 !important;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(62, 77, 178, 0.2) !important;
}

.custom-progress-bar {
    background-color: #f0f2f5 !important;
    border-radius: 50px !important;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.custom-progress-bar .progress-bar {
    background-color: #F2D411 !important;
    border-radius: 50px;
    transition: width 1.5s cubic-bezier(0.1, 0.5, 0.5, 1);
}

.custom-dropdown {
    border-radius: 0 !important;
    padding: 12px 15px;
    border: 1px solid #e5e7eb !important;
    background-color: #f9fafb !important;
    font-size: 0.95rem;
    color: #4b5563;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%233e4db2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    transition: all 0.3s ease;
}

.custom-dropdown:focus {
    background-color: #fff !important;
    border-color: var(--brand-blue) !important;
    color: var(--brand-blue);
    box-shadow: 0 4px 12px rgba(62, 77, 178, 0.08) !important;
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-dropdown option {
    font-family: 'Inter', sans-serif;
    padding: 10px;
    background: #fff;
    color: #333;
}

.anon-toggle-container {
    position: relative;
    width: 100%;
    height: 45px;
    background: #f4f5f7;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 4px;
    display: flex;
    align-items: center;
}

.anon-input {
    display: none;
}

.anon-label {
    display: flex;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 0;
}

.anon-label span {
    z-index: 2;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: color 0.3s ease;
    color: #9ca3af;
}

.choice-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--light-blue) 100%);
    border-radius: 2px;
    z-index: 1 !important;
    transition: transform 0.4s var(--ease-cinematic);
    box-shadow: 0 4px 10px rgba(62, 77, 178, 0.2);
}

.choice-public {
    color: #fff !important;
}

.anon-input:checked+.anon-label .choice-slider {
    transform: translateX(100%);
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--brand-blue) 100%);
}

.anon-input:checked+.anon-label .choice-anon {
    color: #fff !important;
}

.anon-input:checked+.anon-label .choice-public {
    color: #9ca3af !important;
}

.anon-label:hover .choice-slider {
    opacity: 0.9;
    filter: brightness(1.1);
}

#RegisterModal .form-control {
    border-radius: 10px !important;
    border: 1px solid #e9ecef !important;
    background-color: #f8f9fa !important;
    color: #212529 !important;
}

#RegisterModal .form-control:focus {
    background-color: #ffffff !important;
    border-color: #3e4db2 !important;
    box-shadow: 0 0 0 4px rgba(62, 77, 178, 0.1) !important;
}

.rounded-6 {
    border-radius: 1.5rem !important;
}

.btn-close {
    filter: none !important;
    opacity: 0.5;
}


/* ==========================================================================
   18. TICKER DONATEURS
   ========================================================================== */

.donor-ticker-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: transparent;
    padding: 10px 0;
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
}

.donor-ticker-track {
    display: flex;
    width: max-content;
    transform: translateX(100%);
    animation: donorTickerLoop 10s linear infinite;
}

.donor-item {
    display: flex;
    align-items: center;
    background: #f0f0ff;
    color: var(--brand-blue);
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    border-radius: 2px;
    margin-right: 25px;
    border: 1px solid rgba(62, 77, 178, 0.05);
}

.donor-item i.bi-heart-fill {
    font-size: 0.9em;
    color: #e74c3c;
}

.donor-ticker-wrapper:hover .donor-ticker-track {
    animation-play-state: paused;
    cursor: default;
}

@keyframes donorTickerLoop {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* ==========================================================================
   19. GALERIE LIGHTBOX
   ========================================================================== */

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-cinematic);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(62, 77, 178, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: var(--anniv-gold);
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.modal-content {
    background-color: rgba(0, 0, 0, 0.9);
    border: none;
}

.modal-header .btn-close {
    filter: invert(1);
}


/* ==========================================================================
   20. FOOTER
   ========================================================================== */

.footer-sdj {
    background-color: #0d112b;
    color: #ffffff;
}

.footer-main {
    background-color: var(--footer-top-blue) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.footer-bottom {
    background-color: var(--brand-blue) !important;
}

.footer-brand {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2rem;
    color: #fff;
}

.dot-gold {
    color: var(--anniv-gold);
}

.footer-title {
    color: var(--anniv-gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.text-footer-muted {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--anniv-gold);
}

.copyright-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.insta-label-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    transition: 0.3s;
}

.insta-label-badge:hover {
    background: #fff;
    color: var(--footer-top-blue);
}

.insta-placeholder {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.insta-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-cinematic);
    filter: brightness(0.9);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 54, 130, 0.8);
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.insta-placeholder:hover img {
    transform: scale(1.15);
    filter: brightness(1.05);
}

.insta-placeholder:hover .insta-overlay {
    opacity: 1;
}

.newsletter-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-input {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    font-size: 0.9rem;
}

.btn-newsletter {
    background: var(--anniv-gold);
    color: var(--brand-blue);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: 0.3s;
}

.btn-newsletter:hover {
    transform: scale(1.1);
    background: #fff;
}

.social-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.social-circle:hover {
    background: #fff;
    color: var(--brand-blue);
    transform: translateY(-3px);
}

.footer-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.f-shape {
    position: absolute;
    color: #fff;
    opacity: 0.15;
    font-size: 3.5rem;
    display: inline-block;
    animation: floatAnim 8s infinite ease-in-out;
}

.shape-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    bottom: 15%;
    left: 20%;
    font-size: 2.2rem;
    animation-delay: 2s;
}

.shape-3 {
    top: 30%;
    right: 10%;
    font-size: 2.8rem;
    animation-delay: 4s;
}

.shape-4 {
    bottom: 20%;
    right: 25%;
    animation-delay: 1s;
    opacity: 0.1;
}


/* ==========================================================================
   21. PAGES GÉNÉRIQUES (Template)
   ========================================================================== */

#page-section {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    z-index: 1;
    padding: 80px 0;
}

#page-section .container {
    position: relative;
    z-index: 10;
}

#page-section .row:first-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}


/* ==========================================================================
   22. ABOUT (Timeline)
   ========================================================================== */

.history-slider-section {
    padding: 100px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.history-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.history-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    scrollbar-width: none;
}

.history-slider::-webkit-scrollbar {
    display: none;
}

.history-card {
    min-width: 320px;
    max-width: 320px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.history-card:hover {
    transform: translateY(-10px);
}

.card-image {
    position: relative;
    height: 200px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-year {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: #F2D411;
    color: var(--brand-blue);
    font-family: 'Archivo Black', sans-serif;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-body-history {
    padding: 30px 20px 20px;
}

.card-body-history h5 {
    font-weight: 900;
    color: var(--brand-blue);
    margin-bottom: 10px;
}

.card-body-history p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--brand-blue);
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background: var(--brand-blue);
    color: white;
}

.slider-nav.prev {
    left: -10px;
}

.slider-nav.next {
    right: -10px;
}


/* ==========================================================================
   23. ANIMATIONS (@keyframes)
   ========================================================================== */

/* Homepage patterns - Anniversary */
/* ========================================
   PATTERNS ANNIVERSAIRE (section #anniversary) – uniquement pour l'anniversaire
   ======================================== */

.site-title {
    white-space: nowrap;     /* Empêche le retour à la ligne */
    overflow: hidden;        /* Cache le débordement */
    text-overflow: ellipsis; /* Ajoute "..." si trop long */
}

#anniversary {
    position: relative;
    overflow: hidden;
    padding-bottom: 6rem;
}

.anniversary-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Confetti SVG */
.anniversary-confetti {
    position: absolute;
    top: 10%;
    left: -30px;
    width: 200px;
    height: auto;
    opacity: 0.7;
    animation: anniversaryFloatConfetti 12s ease-in-out infinite;
}

/* Cercles flottants */
.anniversary-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(242, 212, 17, 0.15);
    backdrop-filter: blur(2px);
    animation: anniversaryFloatCircle 8s ease-in-out infinite;
}

.anniversary-circle-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    right: -40px;
    background: radial-gradient(circle, rgba(242, 212, 17, 0.2), rgba(62, 77, 178, 0.05));
    animation-delay: 0s;
}

.anniversary-circle-2 {
    width: 80px;
    height: 80px;
    bottom: 5%;
    left: -30px;
    background: radial-gradient(circle, rgba(92, 225, 230, 0.2), rgba(232, 93, 117, 0.05));
    animation-delay: 2s;
}

.anniversary-circle-3 {
    width: 40px;
    height: 40px;
    top: 40%;
    left: 15%;
    background: rgba(232, 93, 117, 0.2);
    backdrop-filter: blur(4px);
    animation-delay: 5s;
}

/* Bandes ondulées (style confetti longs) */
.anniversary-stripe {
    position: absolute;
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, #F2D411, #E85D75);
    border-radius: 3px;
    transform: rotate(15deg);
    opacity: 0.3;
    animation: anniversaryFloatStripe 10s linear infinite;
}

.anniversary-stripe-1 {
    top: 20%;
    left: 10%;
    width: 100px;
    animation-duration: 14s;
}

.anniversary-stripe-2 {
    bottom: 25%;
    right: 5%;
    width: 140px;
    transform: rotate(-20deg);
    animation-duration: 18s;
}

/* Keyframes */
@keyframes anniversaryFloatConfetti {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(20px) rotate(10deg);
        opacity: 0.7;
    }

    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
}

@keyframes anniversaryFloatCircle {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(10px, -15px) scale(1.05);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes anniversaryFloatStripe {
    0% {
        transform: translateX(-20px) rotate(15deg);
        opacity: 0;
    }

    50% {
        transform: translateX(10px) rotate(20deg);
        opacity: 0.5;
    }

    100% {
        transform: translateX(40px) rotate(15deg);
        opacity: 0;
    }
}
/*  */



@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes heartBeat {
    0% {
        transform: scale(0.95);
    }

    5% {
        transform: scale(1.1);
    }

    10% {
        transform: scale(0.95);
    }

    15% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(0.95);
    }
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes donorTickerLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes float1 {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-30px) rotate(20deg);
    }
}

@keyframes float2 {
    0% {
        transform: translateY(0) rotate(-10deg);
    }

    100% {
        transform: translateY(-25px) rotate(15deg);
    }
}

@keyframes float3 {
    0% {
        transform: translateY(0) rotate(10deg);
    }

    100% {
        transform: translateY(-35px) rotate(-20deg);
    }
}

@keyframes floatPattern {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(-5deg);
    }
}

@keyframes floatAnim {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(15px, -25px) rotate(8deg);
    }

    66% {
        transform: translate(-10px, -15px) rotate(-8deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes pulse-sdj-final {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 212, 17, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(242, 212, 17, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(242, 212, 17, 0);
    }
}

@keyframes ultraPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 212, 17, 0.7), 0 0 0 0 rgba(242, 212, 17, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(242, 212, 17, 0), 0 0 0 40px rgba(242, 212, 17, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(242, 212, 17, 0), 0 0 0 0 rgba(242, 212, 17, 0);
    }
}

@keyframes slimPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 212, 17, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(242, 212, 17, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(242, 212, 17, 0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

@keyframes pulse-radar {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    80% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulseWave {
    0% {
        width: 120px;
        height: 120px;
        opacity: 0.8;
    }

    100% {
        width: 250px;
        height: 250px;
        opacity: 0;
    }
}

@keyframes revealUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* ==========================================================================
   24. RESPONSIVE (Media Queries)
   ========================================================================== */

@media (min-width: 576px) {
    .border-end-sm {
        border-right: 1px solid #eee;
    }
}

@media (min-width: 992px) {
    .navbar-main {
        background: rgba(44, 54, 130, 0.95) !important;
        position: fixed !important;
        padding: 12px 0 !important;
    }

    .navbar-logo {
        max-height: 55px !important;
    }

    body {
        padding-top: 80px !important;
    }

    .btn-don-main {
        border-radius: 50px !important;
        padding: 10px 25px;
    }

    .btn-don-main:hover {
        transform: translateY(-2px);
        filter: brightness(1.1);
        box-shadow: 0 5px 15px rgba(242, 212, 17, 0.4);
    }

    .footer-main {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

@media (max-width: 1200px) {
    .navbar-logo {
        height: 50px !important;
        max-height: none !important;
        transition: height 0.3s ease;
    }

    .navbar-main {
        padding: 15px 0 !important;
    }

    .nav-links-wrapper {
        display: none !important;
    }

    .navbar-toggler {
        display: block !important;
    }

    .hero-article h1 {
        display: block !important;
        overflow: visible !important;
        -webkit-line-clamp: none !important;
        font-size: clamp(1.6rem, 6vw, 2.8rem);
        padding: 0 20px;
    }
}

@media (max-width: 991px) {
    .navbar-main {
        position: fixed !important;
        top: 0;
        width: 100%;
        max-width: 100vw;
        background: rgba(44, 54, 130, 0.95) !important;
        backdrop-filter: blur(10px);
        padding: 8px 0 !important;
        z-index: 1030;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-main .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
        flex-wrap: nowrap !important;
    }

    .navbar-logo {
        max-height: 32px !important;
    }

    .nav-icon-link {
        font-size: 1rem;
        color: #fff !important;
        padding: 4px;
    }

    body {
        padding-top: 52px;
    }

    .nav-links-wrapper, .btn-don-top {
        display: none !important;
    }

    .btn-don-main {
        border-radius: 50px !important;
        padding: 6px 10px !important;
        font-size: 0.7rem !important;
        min-height: auto !important;
        white-space: nowrap;
    }

    /* .btn-don-main span.d-none.d-xl-inline {
        display: inline !important;
        font-size: 0.7rem !important;
    } */

    .navbar-main .btn-don-main .d-none.d-xl-inline {
        letter-spacing: 1px;
        font-size: 0.8rem;
    }

    .btn-don-main i.bi-heart-fill {
        margin-right: 4px;
        font-size: 0.8rem;
    }

    .navbar .btn-don-main {
        width: auto;
        height: auto;
        padding: 6px 10px;
    }

    .btn-don-pulse {
        padding: 6px 10px !important;
        font-size: 0.7rem !important;
    }

    .btn-don-mobile-adaptive {
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        clip-path: none;
        font-size: 1.1rem;
    }

    .sidebar {
        position: static !important;
    }

    .navbar .d-flex.align-items-center.gap-2 {
        flex-wrap: nowrap !important;
    }

    .cart-summary, .checkout-summary {
        margin-top: 2rem;
    }

    .donate-sticky-card-wrapper {
        position: relative !important;
        top: 0 !important;
        margin-top: 30px !important;
        align-self: stretch !important;
    }

    .donate-overlap-section {
        padding-top: 40px;
    }

    .signup-card .card-body {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .navbar-logo {
        max-height: 40px;
    }

    .hero-gala-line {
        font-size: clamp(1.2rem, 8vw, 2.5rem);
    }

    .btn-hero-ghost {
        padding: 12px 25px;
        font-size: 0.75rem;
    }

    .hero-cinema {
        height: 60vh;
        min-height: 400px;
    }

    .history-slider-wrapper {
        padding: 0;
    }

    .slider-nav {
        display: none;
    }

    .pattern-top-left, .pattern-top-right, .pattern-bottom-left, .pattern-bottom-right {
        width: 180px;
        height: 180px;
        opacity: 0.15;
    }

    .pattern-top-left {
        top: 10px;
        left: -30px;
    }

    .pattern-top-right {
        top: 150px;
        right: -30px;
    }

    .pattern-bottom-left {
        bottom: 20px;
        left: -30px;
    }

    .pattern-bottom-right {
        bottom: 100px;
        right: -30px;
    }

    .page-patterns svg {
        width: 150px;
        height: 150px;
    }

    .heart-framed-title {
        gap: 10px;
        font-size: 1.2rem;
    }

    .heart-framed-title i {
        font-size: 0.8em;
    }

    .hero-article {
        min-height: 40vh;
        padding-top: 70px;
        padding-bottom: 30px;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .hero-article h1 {
        font-size: 1.8rem !important;
        padding: 0 15px;
        line-height: 1.2;
    }

    .hero-article .breadcrumb {
        display: block !important;
        width: 100% !important;
        margin: 20px auto 0 auto !important;
        text-align: center !important;
    }

    .ticker-track {
        gap: 10px;
    }

    .ticker-track img {
        max-height: 35px;
    }

    .swiper-slide {
        width: 280px !important;
    }

    .blog-slider-wrapper {
        margin-left: 20px;
    }

    /* Responsive commun (extras) */
    .feat-row {
        flex-direction: column;
        text-align: center;
    }

    .feat-icon-box {
        width: 100%;
        height: 80px;
    }

    .cnia-box {
        padding: 30px;
    }

    .cnia-badge {
        right: 20px;
        font-size: 0.8rem;
    }

    .emergency-alert-box {
        padding: 25px;
    }

    .timeline-container::before {
        left: 30px;
    }

    .age-step, .age-step:nth-child(even) {
        flex-direction: row;
    }

    .age-number {
        min-width: 80px;
        height: 80px;
        font-size: 0.9rem;
    }

    .age-content, .age-step:nth-child(even) .age-content {
        margin-left: 20px;
        margin-right: 0;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .navbar-logo {
        height: 28px !important;
    }

    .navbar-main .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .navbar-main {
        padding: 6px 0 !important;
    }

    body {
        padding-top: 44px;
    }

    /* Ajustement du contenu général sur mobile */
    .section-padding {
        padding-left: 15px;
        padding-right: 15px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Hero cinema plus compact */
    /* .hero-cinema {
        height: 70vh;
        min-height: 450px;
    } */

    /* Titres plus petits */
    .modern-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    h2.display-5 {
        font-size: 1.8rem;
    }

    /* Cartes et éléments en pleine largeur */
    .mission-card {
        padding: 25px 20px 35px 20px;
    }
}


/* ==========================================================================
   25. RECHERCHE GLOBALE
   ========================================================================== */

.search-suggestions-live {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.search-suggestion-type {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    padding: 0 10px;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-bottom: 2px;
}

.search-suggestion-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transform: translateX(4px);
}

.search-bar-global .form-control {
    border-right: none;
    border-radius: 50px 0 0 50px !important;
    padding: 14px 24px;
    font-size: 1rem;
    border-color: #e5e7eb;
    background: #f9fafb;
}

.search-bar-global .form-control:focus {
    background: #fff;
    border-color: var(--brand-blue);
    box-shadow: none;
}

.search-bar-global .btn {
    border-radius: 0 50px 50px 0 !important;
    border-color: var(--brand-blue);
}

.search-result-card {
    display: block;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fff;
    transition: all 0.3s ease;
    height: 100%;
    color: inherit;
}

.search-result-card:hover {
    border-color: var(--brand-blue);
    box-shadow: 0 8px 25px rgba(62, 77, 178, 0.08);
    transform: translateY(-3px);
    color: inherit;
    text-decoration: none;
}

.search-result-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.search-result-type {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-blue);
    display: block;
    margin-bottom: 4px;
}

.search-result-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.search-result-card:hover .search-result-title {
    color: var(--brand-blue);
}

.search-result-excerpt {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.5;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.page-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--deep-blue);
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.page-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--brand-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.page-content ul li:hover {
    transform: translateX(5px);
}

.page-content ul li:hover::before {
    background-color: var(--anniv-gold);
    transform: rotate(45deg);
}

.page-content ul li ul {
    margin-top: 10px;
    margin-bottom: 0;
}

.page-content ul li ul li::before {
    background-color: var(--light-blue);
    width: 6px;
    height: 6px;
}

.engagement-card .bi {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}


/* ==========================================================================
   26. PAGES SPÉCIFIQUES (Custom extrait des blades)
   ========================================================================== */

/* --- Slider Home (Frontpage) --- */
/* --- Carousel Genèse Home --- */
#geneseCarousel .carousel-item img {
    height: 400px;
    object-fit: cover;
}

#geneseCarousel .carousel-control-prev-icon,
#geneseCarousel .carousel-control-next-icon {
    background-color: rgba(62, 77, 178, 0.6);
    border-radius: 50%;
    padding: 10px;
    background-size: 60%;
}

#geneseCarousel .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--brand-blue);
}

@media (max-width: 768px) {
    #geneseCarousel .carousel-item img {
        height: 300px;
    }
}

/* --- Home (Frontpage) --- */
.mission-card {
    background: #fcfcfc;
    border-radius: 28px;
    padding: 45px 35px 55px 35px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07), 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    z-index: 1;
    overflow: hidden;
}

.mission-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    clip-path: polygon(0% 0%, 100% 85%, 100% 100%, 0% 100%);
    border-radius: 0 0 28px 28px;
    transition: opacity 0.3s ease;
}

.card-gradient-1::after {
    background: linear-gradient(to right, #563B85 10%, rgba(86, 59, 133, 0) 100%);
}

.card-gradient-2::after {
    background: linear-gradient(to right, #EE7CAE 10%, rgba(238, 124, 174, 0) 100%);
}

.card-gradient-3::after {
    background: linear-gradient(to right, #7DC4A3 10%, rgba(125, 196, 163, 0) 100%);
}

.card-gradient-4::after {
    background: linear-gradient(to right, #ffc107 10%, rgba(255, 193, 7, 0) 100%);
}

.mission-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.08);
}

.mission-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mission-icon-wrapper {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.7rem;
    margin-bottom: 25px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.circle-1 {
    color: #563B85;
}

.circle-2 {
    color: #EE7CAE;
}

.circle-3 {
    color: #7DC4A3;
}

.circle-4 {
    color: #ffc107;
}

.mission-body h3 {
    font-weight: 800;
    color: #2d3436;
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.mission-body p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.mission-link {
    margin-top: auto;
    text-decoration: none;
    font-weight: 700;
    color: #333;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mission-link i {
    transition: transform 0.3s ease;
}

.mission-card:hover .mission-link i {
    transform: translateX(5px);
}

/* --- Mécénat --- */
.mecenat-patterns {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.mecenat-patterns .pattern-top-left, .mecenat-patterns .pattern-top-right {
    animation: floatPatternMecenat 10s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 10px rgba(62, 77, 178, 0.1));
    transition: all 0.5s ease;
}

@keyframes floatPatternMecenat {
    0% {
        transform: translateY(0) rotate(-2deg) scale(1);
    }

    50% {
        transform: translateY(-30px) rotate(5deg) scale(1.05);
    }

    100% {
        transform: translateY(0) rotate(-5deg) scale(1);
    }
}

#page-section:hover .mecenat-patterns .pattern-top-left, #page-section:hover .mecenat-patterns .pattern-top-right {
    opacity: 0.8 !important;
    filter: drop-shadow(0 0 15px rgba(62, 77, 178, 0.2));
}

.equal-height-row {
    display: flex;
    flex-wrap: wrap;
}

.equal-height-row>[class*='col-'] {
    display: flex;
    flex-direction: column;
}

.card-mecenat {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: #ffffff;
    border-radius: 24px !important;
    padding: 2.5rem !important;
    transition: all 0.3s ease;
    box-shadow: none !important;
}

.card-mecenat:hover {
    transform: translateY(-5px);
    border-color: var(--brand-blue) !important;
    background: #fcfcff;
}

.btn-mecenat-flat {
    margin-top: auto;
    border: none;
    border-radius: 14px;
    padding: 16px 24px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white !important;
}

.btn-mecenat-flat:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.btn-flat-primary {
    background: var(--brand-blue);
}

.btn-flat-success {
    background: var(--brand-success);
}

.btn-flat-warning {
    background: var(--brand-warning);
}

.btn-flat-info {
    background: var(--brand-info);
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.stat-box {
    border-bottom: 4px solid var(--brand-blue);
    padding: 25px;
    background: white;
    border-radius: 18px;
    text-align: center;
    height: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.list-custom li {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    color: #4a5568;
}

.list-custom li i {
    color: var(--brand-blue);
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1.1rem;
}

/* --- Partenaires --- */
.partners-patterns {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.partners-patterns .pattern-top-left, .partners-patterns .pattern-top-right {
    animation: floatPatternPartners 12s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 5px rgba(62, 77, 178, 0.05));
}

@keyframes floatPatternPartners {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(20px, -30px) rotate(5deg) scale(1.05);
    }

    100% {
        transform: translate(-10px, 10px) rotate(-5deg) scale(1);
    }
}

.card-partner {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    background: #ffffff;
    border-radius: 24px !important;
    padding: 2.5rem !important;
    transition: all 0.3s var(--ease-cinematic);
    position: relative;
}

.card-partner:hover {
    border-color: var(--brand-blue) !important;
    transform: translateY(-5px);
    background: #fcfcff;
}

.badge-step {
    width: 70px;
    height: 70px;
    background: var(--brand-blue);
    color: white;
    clip-path: polygon(20% 0%, 100% 0%, 100% 80%, 80% 100%, 0% 100%, 0% 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem auto;
    position: relative;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-col {
    position: relative;
    padding: 0 15px;
}

.step-title {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2d3748;
    line-height: 1.2;
}

@media (min-width: 992px) {
    .step-col:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 35px;
        right: -20%;
        width: 40%;
        height: 2px;
        background: linear-gradient(90deg, var(--brand-blue), transparent);
        z-index: 1;
    }

    .step-col:not(:last-child) .badge-step::after {
        content: '➤';
        position: absolute;
        right: -110%;
        top: 50%;
        transform: translateY(-50%);
        color: var(--brand-blue);
        font-size: 1.2rem;
        animation: slide-arrow 1.5s infinite;
    }
}

@keyframes slide-arrow {
    0% {
        transform: translate(-10px, -50%);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(15px, -50%);
        opacity: 0;
    }
}

.step-col:hover .badge-step {
    transform: scale(1.15) rotate(-3deg);
    background: var(--brand-warning);
    clip-path: polygon(0% 0%, 80% 0%, 100% 20%, 100% 100%, 20% 100%, 0% 80%);
}

.step-col:hover .step-title {
    color: var(--brand-blue);
}

.btn-partner-flat {
    margin-top: auto;
    border: none;
    border-radius: 14px;
    padding: 16px 24px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white !important;
    transition: 0.3s;
}

.btn-partner-flat:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.text-brand {
    color: var(--brand-blue);
}

.bg-soft-blue {
    background: var(--primary-soft);
}

.faq-card {
    background: #f8fafc;
    border: 1px solid rgba(62, 77, 178, 0.05);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(62, 77, 178, 0.08);
    border-color: var(--brand-blue);
}

.faq-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--brand-blue);
    opacity: 0.05;
    position: absolute;
    top: -10px;
    right: 10px;
    line-height: 1;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 15px;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-answer {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    border-left: 3px solid var(--brand-blue);
    padding-left: 15px;
}

.faq-card:hover .faq-answer {
    border-left-color: var(--brand-warning);
}

.floating-svg {
    animation: heroFloat 12s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 10px rgba(92, 225, 230, 0.3));
}

@keyframes heroFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(40px, -20px) rotate(10deg);
    }
}

/* --- Ressources --- */
.resources-patterns {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.resources-patterns .pattern {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
    animation: floatPatternRessources 8s ease-in-out infinite alternate;
}

.resources-patterns .pattern-top-left {
    top: -50px;
    left: -100px;
    width: 450px;
    height: 450px;
}

.resources-patterns .pattern-top-right {
    top: -50px;
    right: -100px;
    width: 450px;
    height: 450px;
    animation-delay: 2s;
}

@keyframes floatPatternRessources {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.resource-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.badge-method {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 10px;
}

/* --- Pathways (test.blade) --- */
.pathways-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.pathways-badge {
    background: #3e4db2;
    color: white;
    padding: 8px 28px;
    border-radius: 60px;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(62, 77, 178, 0.2);
    transition: all 0.3s ease;
    animation: softPulse 2.5s ease-in-out infinite;
}

@keyframes softPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(62, 77, 178, 0.2);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 6px 20px rgba(62, 77, 178, 0.35);
        transform: scale(1.02);
    }
}

.pathways-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: #1a2a3a;
}

.pathways-title span {
    color: #3e4db2;
}

.pathways-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.pathway-card {
    background: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid #eef2f8;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border-radius: 28px;
    animation: cardReveal 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
    opacity: 0;
}

.pathway-card:nth-child(1) {
    animation-delay: 0.05s;
}

.pathway-card:nth-child(2) {
    animation-delay: 0.1s;
}

.pathway-card:nth-child(3) {
    animation-delay: 0.15s;
}

.pathway-card:nth-child(4) {
    animation-delay: 0.2s;
}

.pathway-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.pathway-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3e4db2, #5CE1E6, #F2D411);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.pathway-card:hover::before {
    transform: scaleX(1);
}

.pathway-card-inner {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.pathway-card.parent-card .pathway-icon {
    background: #FDF8E3;
    box-shadow: 0 8px 20px rgba(253, 248, 227, 0.5);
}

.pathway-card.parent-card .pathway-icon i {
    color: #d4a017;
}

.pathway-card.parent-card .pathway-list li i {
    color: #FDF8E3;
    text-shadow: 0 0 2px #d4a017;
}

.pathway-card.parent-card .pathway-btn {
    background: #FDF8E3;
    color: #b8860b;
    box-shadow: 0 4px 12px rgba(253, 248, 227, 0.6);
}

.pathway-card.parent-card .pathway-btn:hover {
    box-shadow: 0 8px 20px rgba(253, 248, 227, 0.8);
    background: #fdf4d0;
}

.pathway-card.parent-card .pathway-btn i {
    color: #b8860b;
}

.pathway-card.parent-card:hover .pathway-card-title {
    color: #d4a017;
}

.pathway-card.pro-card .pathway-icon {
    background: #ECEDF7;
    box-shadow: 0 8px 20px rgba(236, 237, 247, 0.5);
}

.pathway-card.pro-card .pathway-icon i {
    color: #3e4db2;
}

.pathway-card.pro-card .pathway-list li i {
    color: #ECEDF7;
    text-shadow: 0 0 2px #3e4db2;
}

.pathway-card.pro-card .pathway-btn {
    background: #ECEDF7;
    color: #3e4db2;
    box-shadow: 0 4px 12px rgba(236, 237, 247, 0.6);
}

.pathway-card.pro-card .pathway-btn:hover {
    box-shadow: 0 8px 20px rgba(236, 237, 247, 0.8);
    background: #e2e4f5;
}

.pathway-card.pro-card .pathway-btn i {
    color: #3e4db2;
}

.pathway-card.pro-card:hover .pathway-card-title {
    color: #3e4db2;
}

.pathway-card.entreprise-card .pathway-icon {
    background: #EDF7ED;
    box-shadow: 0 8px 20px rgba(237, 247, 237, 0.5);
}

.pathway-card.entreprise-card .pathway-icon i {
    color: #2e7d32;
}

.pathway-card.entreprise-card .pathway-list li i {
    color: #EDF7ED;
    text-shadow: 0 0 2px #2e7d32;
}

.pathway-card.entreprise-card .pathway-btn {
    background: #EDF7ED;
    color: #2e7d32;
    box-shadow: 0 4px 12px rgba(237, 247, 237, 0.6);
}

.pathway-card.entreprise-card .pathway-btn:hover {
    box-shadow: 0 8px 20px rgba(237, 247, 237, 0.8);
    background: #e0f4e0;
}

.pathway-card.entreprise-card .pathway-btn i {
    color: #2e7d32;
}

.pathway-card.entreprise-card:hover .pathway-card-title {
    color: #2e7d32;
}

.pathway-card.curieux-card .pathway-icon {
    background: #FEEFF1;
    box-shadow: 0 8px 20px rgba(254, 239, 241, 0.5);
}

.pathway-card.curieux-card .pathway-icon i {
    color: #e85d75;
}

.pathway-card.curieux-card .pathway-list li i {
    color: #FEEFF1;
    text-shadow: 0 0 2px #e85d75;
}

.pathway-card.curieux-card .pathway-btn {
    background: #FEEFF1;
    color: #c82333;
    box-shadow: 0 4px 12px rgba(254, 239, 241, 0.6);
}

.pathway-card.curieux-card .pathway-btn:hover {
    box-shadow: 0 8px 20px rgba(254, 239, 241, 0.8);
    background: #fce2e5;
}

.pathway-card.curieux-card .pathway-btn i {
    color: #c82333;
}

.pathway-card.curieux-card:hover .pathway-card-title {
    color: #e85d75;
}

.pathway-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pathway-card:hover .pathway-icon {
    transform: scale(1.02) rotate(3deg);
}

.pathway-icon i {
    font-size: 1.8rem;
}

.pathway-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #1a2a3a;
    transition: color 0.3s ease;
}

.pathway-card-text {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.pathway-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.pathway-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #4a5a6a;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.pathway-list li:hover {
    transform: translateX(5px);
}

.pathway-list li i {
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.pathway-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
}

.pathway-btn:hover {
    animation: none;
    transform: translateY(-3px);
    gap: 16px;
}

.pathway-btn:active {
    transform: translateY(0);
}

.pathway-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.pathway-btn:active::before {
    width: 300px;
    height: 300px;
}

.pathway-btn i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.pathway-btn:hover i {
    transform: translateX(6px);
}

@keyframes cardReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .pathways-section {
        padding: 60px 0;
    }

    .pathway-card-inner {
        padding: 1.5rem;
    }

    .pathway-card-title {
        font-size: 1.3rem;
    }

    .pathway-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .pathway-btn {
        padding: 12px 16px;
        font-size: 0.75rem;
    }
}

/* --- Understand Autism --- */
.understand-patterns {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

.understand-patterns .pattern-top-left, .understand-patterns .pattern-top-right {
    z-index: 1;
    pointer-events: none;
    animation: floatPatternUnderstand 8s ease-in-out infinite alternate;
}

@keyframes floatPatternUnderstand {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(-5deg);
    }
}

.stat-card {
    transition: transform 0.3s ease;
    border: none;
    border-top: 4px solid #0d6efd;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #e7f1ff;
    color: #0d6efd;
    font-weight: bold;
}

.faq-section .accordion-button {
    font-weight: 600;
    padding: 1.25rem;
}

/* --- Volunteers --- */
.volunteers-patterns {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.volunteers-patterns .pattern-top-left, .volunteers-patterns .pattern-top-right {
    position: absolute;
    animation: floatPatternVolunteers 12s ease-in-out infinite alternate;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
}

.volunteers-patterns .pattern-top-left {
    top: -80px;
    left: -80px;
    width: 550px;
    height: 550px;
}

.volunteers-patterns .pattern-top-right {
    top: -100px;
    right: -100px;
    width: 650px;
    height: 650px;
}

@keyframes floatPatternVolunteers {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(30px, 20px) rotate(3deg) scale(1.05);
    }

    100% {
        transform: translate(-15px, -10px) rotate(-3deg) scale(1);
    }
}

.btn-cta-rounded {
    border-radius: 50px;
    padding: 15px 40px !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    text-decoration: none;
    border: none;
}

.btn-cta-blue {
    background-color: var(--brand-blue) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 20px rgba(62, 77, 178, 0.3);
}

.btn-cta-blue:hover {
    background-color: #2c3682 !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 25px rgba(62, 77, 178, 0.4);
    color: #fff !important;
}

.timeline-steps {
    position: relative;
    padding-left: 70px;
    margin-top: 50px;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, var(--brand-blue) 0%, rgba(62, 77, 178, 0) 100%);
}

.step-item {
    position: relative;
    padding-bottom: 50px;
}

.step-item::before {
    content: attr(data-step);
    position: absolute;
    left: -63px;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    z-index: 2;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px var(--brand-blue);
}

.testimonial-card {
    background: #fff;
    border-radius: 25px;
    padding: 50px 40px;
    margin: 30px auto;
    max-width: 850px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    color: #333;
}

.testimonial-card::after {
    content: "\201C";
    position: absolute;
    top: 10px;
    left: 30px;
    font-size: 8rem;
    color: #5CE1E6;
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
    filter: invert(1);
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px !important;
    background: #f8f9fa;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    padding: 25px 30px !important;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: none !important;
}

.faq-accordion .accordion-body {
    padding: 0 30px 30px 30px !important;
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
}

.bg-soft-blue {
    background-color: rgba(62, 77, 178, 0.1);
    color: var(--brand-blue);
}

.bg-soft-cyan {
    background-color: rgba(92, 225, 230, 0.1);
    color: #008085;
}

.bg-soft-yellow {
    background-color: rgba(242, 212, 17, 0.1);
    color: #857400;
}

.section-title {
    color: var(--brand-blue);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    font-size: 1.25rem;
    color: var(--brand-blue);
    font-weight: 600;
    font-style: italic;
    border-left: 5px solid #5CE1E6;
    padding-left: 20px;
    margin: 2rem 0;
    text-align: left;
}

/* --- Press --- */
.text-outline-navy {
    -webkit-text-stroke: 1.5px #1B2875;
    color: transparent;
}

.text-navy {
    color: #1B2875;
}

.text-cyan {
    color: #5CE1E6;
}

.text-yellow {
    color: #F2D411;
}

.featured-video-container {
    max-width: 1000px;
    margin: 0 auto 60px auto;
    position: relative;
}

.canal-featured-card {
    background: #000;
    padding: 8px;
    box-shadow: 0 40px 80px rgba(27, 40, 117, 0.25);
    border-radius: 4px;
    overflow: hidden;
}

.canal-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    height: 500px;
    background: #000;
}

.canal-thumbnail img.cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.canal-thumbnail:hover img.cover {
    transform: scale(1.05);
    opacity: 0.6;
}

.canal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    z-index: 2;
}

.canal-logo-top {
    height: 30px;
    object-fit: contain;
    align-self: flex-start;
    filter: brightness(0) invert(1);
}

.play-btn-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: #FFFFFF;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    transition: all 0.4s ease;
    z-index: 3;
}

.canal-thumbnail:hover .play-btn-main {
    background: #F2D411;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 30px rgba(242, 212, 17, 0.4);
}

.canal-info h3 {
    color: #FFFFFF;
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    margin: 0;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.agency-polaroid {
    background: #FFFFFF;
    padding: 15px 15px 40px 15px;
    box-shadow: 0 20px 40px rgba(27, 40, 117, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.agency-polaroid:hover {
    transform: translateY(-10px) rotate(0deg) !important;
    border-color: #5CE1E6;
}

.video-thumbnail-wrapper {
    position: relative;
    overflow: hidden;
    background: #1B2875;
}

.video-thumbnail-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    opacity: 0.9;
}

.play-btn-agency {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #F2D411;
    color: #1B2875;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.press-card {
    background: #FFFFFF;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
}

.press-card:hover {
    border-color: #F2D411;
    transform: translateX(5px);
}

.press-logo-box {
    height: 45px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.press-logo-box img {
    max-height: 100%;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}

.press-card:hover .press-logo-box img {
    filter: grayscale(0%);
    opacity: 1;
}

.press-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.25rem;
    color: #3e4db2;
    margin-bottom: 12px;
}

.press-excerpt {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.btn-readmore-agency {
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    color: #1B2875;
    border-bottom: 2px solid #F2D411;
    text-decoration: none;
    align-self: flex-start;
    padding-bottom: 2px;
}

.btn-agency {
    display: inline-block;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    padding: 16px 35px;
    font-size: 13px;
    transition: 0.3s;
    border-radius: 0;
}

/* --- Posts Show --- */
#articleContent {
    position: relative;
    overflow: visible !important;
    perspective: 1000px;
}

#articleContent .puzzle {
    position: absolute;
    width: var(--puzzle-size);
    height: var(--puzzle-size);
    background: var(--puzzle-color);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    opacity: 0.15;
    backdrop-filter: blur(2px);
    transform-style: preserve-3d;
    animation: floatPuzzle var(--puzzle-speed) ease-in-out infinite alternate;
    z-index: 1;
    pointer-events: none;
}

@keyframes floatPuzzle {
    0% {
        transform: translate3d(var(--x0), var(--y0), var(--z0)) rotate(var(--r0));
    }

    50% {
        transform: translate3d(var(--x1), var(--y1), var(--z1)) rotate(var(--r1));
    }

    100% {
        transform: translate3d(var(--x0), var(--y0), var(--z0)) rotate(var(--r0));
    }
}

#articleContent .puzzle-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* --- Posts Archives --- */
.archive-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    padding-bottom: 60px;
}

.press-entry {
    background: #FFFFFF;
    padding: 30px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: 0.3s all ease;
    position: relative;
}

.press-entry:hover {
    border-color: #1B2875;
    box-shadow: 15px 15px 0px #5CE1E6;
    transform: translate(-5px, -5px);
}

.press-entry::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    background: #e2e8f0;
    border-radius: 50%;
}

.entry-date {
    font-family: 'Archivo Black', sans-serif;
    font-size: 10px;
    color: #3e4db2;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

.entry-svg {
    width: 35px;
    height: 35px;
    margin-bottom: 20px;
    fill: #1B2875;
}

.entry-source {
    font-weight: 900;
    font-size: 13px;
    color: #1B2875;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: #F2D411;
    display: inline-block;
    padding: 2px 8px;
}

.entry-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #1a202c;
}

.entry-excerpt {
    font-size: 13.5px;
    color: #4a5568;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 20px;
}

.entry-link {
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    color: #1B2875;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.entry-link:hover {
    color: #3e4db2;
}

.entry-link i {
    margin-left: 8px;
    transition: 0.3s;
}

.entry-link:hover i {
    transform: translateX(5px);
}

/* --- Campaigns Index --- */
.campaign-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(62, 77, 178, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    animation: campaignFadeUp 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
    opacity: 0;
}

.campaign-card:nth-child(1) {
    animation-delay: 0s;
}

.campaign-card:nth-child(2) {
    animation-delay: 0.1s;
}

.campaign-card:nth-child(3) {
    animation-delay: 0.2s;
}

.campaign-card:nth-child(4) {
    animation-delay: 0.3s;
}

.campaign-card:nth-child(5) {
    animation-delay: 0.4s;
}

.campaign-card:nth-child(6) {
    animation-delay: 0.5s;
}

.campaign-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(62, 77, 178, 0.12);
    border-color: rgba(62, 77, 178, 0.15);
}

.campaign-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.campaign-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.campaign-card:hover .campaign-card-img img {
    transform: scale(1.08);
}

.campaign-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(62, 77, 178, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.campaign-card:hover .campaign-card-img::after {
    opacity: 1;
}

.campaign-card-body {
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.campaign-card-tag {
    display: inline-block;
    background: rgba(92, 225, 230, 0.12);
    color: #008085;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    align-self: flex-start;
}

.campaign-card-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: #1a1f3c;
    margin-bottom: 10px;
    line-height: 1.3;
    text-transform: uppercase;
}

.campaign-card-text {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.campaign-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: #3e4db2;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.campaign-card-btn:hover {
    background: #2c3682;
    color: #ffffff;
    gap: 16px;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(62, 77, 178, 0.3);
}

.campaign-card-btn i {
    transition: transform 0.3s ease;
}

.campaign-card-btn:hover i {
    transform: translateX(5px);
}

@keyframes campaignFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Checkout & Cart Patterns --- */
.cart-patterns {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.cart-patterns .pattern-top-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 350px;
    height: 350px;
}

.cart-patterns .pattern-top-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 450px;
    height: 450px;
}

.cart-patterns .pattern-top-left, .cart-patterns .pattern-top-right {
    animation: floatPatternCheckout 8s ease-in-out infinite alternate;
}

@keyframes floatPatternCheckout {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(-10deg);
    }
}

.thanks-patterns {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.thanks-patterns .pattern-top-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 350px;
    height: 350px;
}

.thanks-patterns .pattern-top-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 450px;
    height: 450px;
}

.thanks-patterns .pattern-top-left, .thanks-patterns .pattern-top-right {
    animation: floatPatternThanks 8s ease-in-out infinite alternate;
}

@keyframes floatPatternThanks {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(-10deg);
    }
}

/* --- Produits --- */
.dropdown-item:active {
    background-color: var(--brand-blue) !important;
}

.dropdown-item {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(62, 77, 178, 0.1);
    color: var(--brand-blue);
}

.variant-label {
    cursor: pointer;
    border: 1px solid #dee2e6 !important;
    color: #6c757d;
    background-color: transparent;
    transition: all 0.2s ease;
    padding: 0.5rem 1.25rem;
}

.variant-label:hover {
    border-color: #adb5bd !important;
    color: #495057;
}

.btn-check:checked+.variant-label {
    border-color: #0d6efd !important;
    color: #0d6efd !important;
    background-color: rgba(13, 110, 253, 0.05);
    font-weight: bold;
}

/* --- Chatbot --- */
#sdj-chatbot-container .cb-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0d6efd;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 99999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
}

#sdj-chatbot-container .cb-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 370px;
    height: 580px;
    max-height: 80vh;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 99998;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: sans-serif;
}

#sdj-chatbot-container .cb-header {
    background: #0d6efd;
    color: white;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#sdj-chatbot-container .cb-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#sdj-chatbot-container .cb-msg {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    max-width: 85%;
    line-height: 1.4;
    word-wrap: break-word;
}

#sdj-chatbot-container .cb-msg-user {
    align-self: flex-end;
    background: #0d6efd;
    color: white !important;
}

#sdj-chatbot-container .cb-msg-model {
    align-self: flex-start;
    background: white;
    border: 1px solid #ddd;
    color: #333;
}

#sdj-chatbot-container .cb-faq-area {
    background: white;
    border-top: 1px solid #eee;
    padding: 10px;
}

#sdj-chatbot-container .cb-faq-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 7px 10px;
    font-size: 11px;
    border: none;
    background: #f0f7ff;
    margin-bottom: 4px;
    border-radius: 5px;
    color: #0d6efd;
    cursor: pointer;
    transition: 0.2s;
}

#sdj-chatbot-container .cb-faq-btn:hover {
    background: #e0eeff;
}

#sdj-chatbot-container .cb-footer {
    padding: 10px;
    border-top: 1px solid #eee;
    background: white;
}

#sdj-chatbot-container .cb-input-group {
    display: flex;
    gap: 8px;
    background: #f0f2f5;
    padding: 5px 12px;
    border-radius: 25px;
    align-items: center;
}

#sdj-chatbot-container .cb-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 13px;
    padding: 5px 0;
    color: #333;
}

#sdj-chatbot-container .prose ul {
    list-style: disc !important;
    padding-left: 20px !important;
    margin: 8px 0 !important;
}

#sdj-chatbot-container .prose li {
    margin-bottom: 4px !important;
}

/* --- Commun (SEO H1, Structure Card, City Badge, Patterns) --- */
.h1-seo {
    font-weight: 800;
    color: var(--brand-blue);
    letter-spacing: -1px;
    margin-bottom: 2rem;
    position: relative;
    display: block !important;
    width: 100%;
    padding-bottom: 15px;
    text-align: center !important;
}

.h1-seo::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--anniv-gold);
    border-radius: 10px;
}

.structure-card {
    background: white;
    border-radius: 25px;
    padding: 35px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.structure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(62, 77, 178, 0.08);
}

.city-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(62, 77, 178, 0.05);
    color: var(--brand-blue);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin: 4px;
}

.mission-patterns, .training-patterns, .emergency-patterns, .families-patterns {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.mission-patterns .pattern-top-left, .emergency-patterns .pattern-top-left, .families-patterns .pattern-top-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 350px;
    height: 350px;
}

.mission-patterns .pattern-top-right, .emergency-patterns .pattern-top-right, .families-patterns .pattern-top-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 450px;
    height: 450px;
}

.training-patterns .pattern-top-left, .training-patterns .pattern-top-right {
    position: absolute;
    top: 0;
}

.mission-patterns .pattern-top-left, .mission-patterns .pattern-top-right, .training-patterns .pattern-top-left, .training-patterns .pattern-top-right, .emergency-patterns .pattern-top-left, .emergency-patterns .pattern-top-right, .families-patterns .pattern-top-left, .families-patterns .pattern-top-right {
    animation: floatPatternAlt 8s ease-in-out infinite alternate;
}

@keyframes floatPatternAlt {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(-10deg);
    }
}

/* --- Overview --- */
.mission-patterns .pattern-top-left.overview-pattern, .mission-patterns .pattern-top-right.overview-pattern {
    top: -50px;
    width: 500px;
    height: 500px;
}

.mission-patterns .pattern-top-left.overview-pattern {
    left: -120px;
    filter: drop-shadow(0 5px 15px rgba(62, 77, 178, 0.1));
}

.mission-patterns .pattern-top-right.overview-pattern {
    right: -120px;
    filter: drop-shadow(0 5px 15px rgba(92, 225, 230, 0.1));
}

.mission-patterns .overview-pattern {
    animation: floatPatternOverview 10s ease-in-out infinite alternate;
}

@keyframes floatPatternOverview {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-25px) rotate(8deg) scale(1.05);
    }

    100% {
        transform: translateY(0) rotate(-8deg) scale(1);
    }
}

.situation-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    text-align: left;
}

.situation-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(62, 77, 178, 0.12);
}

.situation-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.situation-card.urgent {
    border-left: 8px solid #3e4db2;
}

.situation-card.new {
    border-left: 8px solid #5CE1E6;
}

.timeline-container {
    position: relative;
    padding: 60px 0;
}

.timeline-container::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--brand-blue), var(--cyan), var(--anniv-gold));
    transform: translateX(-50%);
    border-radius: 2px;
    opacity: 0.2;
}

.age-step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.age-number {
    min-width: 110px;
    height: 110px;
    background: white;
    border: 5px solid var(--brand-blue);
    color: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.age-content {
    background: white;
    padding: 25px 35px;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    margin-left: 40px;
    flex-grow: 1;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.age-step:nth-child(even) {
    flex-direction: row-reverse;
}

.age-step:nth-child(even) .age-content {
    margin-left: 0;
    margin-right: 40px;
    text-align: right;
}

/* --- Formation --- */
.flow-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.flow-bg-light {
    background-color: #f8f9ff;
}

.flow-bg-dark {
    background-color: #1a1f3c;
    color: white;
}

.feat-row {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.feat-row:hover {
    transform: scale(1.02);
}

.feat-icon-box {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    flex-shrink: 0;
}

.feat-content {
    padding: 30px;
}

.public-layer {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px 0;
    transition: background 0.3s;
}

.public-layer:hover {
    background-color: rgba(62, 77, 178, 0.02);
}

.public-header {
    display: flex;
    align-items: center;
    cursor: default;
}

.public-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(62, 77, 178, 0.1);
    color: #3e4db2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
}

.formation-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.formation-list li {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: 0.2s;
}

.formation-list li:hover {
    border-color: #5CE1E6;
    transform: translateX(5px);
}

.formation-list li::before {
    content: "→";
    color: #5CE1E6;
    margin-right: 10px;
    font-weight: bold;
}

.cnia-box {
    background: linear-gradient(135deg, #1a1f3c 0%, #3e4db2 100%);
    color: white;
    border-radius: 40px;
    padding: 60px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cnia-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: #F2D411;
    color: #1a1f3c;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.finance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.finance-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border-top: 4px solid #F2D411;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.cta-bar {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
    margin-top: 60px;
}

/* --- Quotidien --- */
.age-badge {
    display: inline-block;
    padding: 6px 20px;
    background: #3e4db2;
    color: white;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(62, 77, 178, 0.2);
}

.path-step {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.path-step:hover {
    transform: translateY(-5px);
    border-color: #3e4db2 !important;
    box-shadow: 0 15px 35px rgba(62, 77, 178, 0.1) !important;
}

.structure-item {
    transition: all 0.2s ease;
    cursor: default;
}

.structure-item:hover {
    background: #fff !important;
    transform: translateX(5px);
}

.age-section-title {
    border-left: 5px solid #F2D411;
    padding-left: 15px;
    margin: 50px 0 30px 0;
    font-weight: 700;
    color: #1a1f3c;
}

.stat-pill {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(92, 225, 230, 0.1);
    color: #008a8e;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ppa-box {
    background: linear-gradient(135deg, #3e4db2 0%, #2a3682 100%);
    color: white;
    border-radius: 30px;
    padding: 50px;
}

.ppa-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 15px;
    transition: 0.3s;
}

.ppa-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* --- Urgence --- */
.emergency-alert-box {
    background: #fff5f5;
    border: 2px solid #feb2b2;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.08);
}

.device-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    text-align: left;
}

.device-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(62, 77, 178, 0.1);
}

.device-card h4 {
    color: #3e4db2;
}

/* --- Insertion --- */
.social-workplace-card {
    background: white;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.social-workplace-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(62, 77, 178, 0.1);
}

.job-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(92, 225, 230, 0.1);
    color: #008a8e;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin: 3px;
}

.atelier-grid-item {
    background: #fdfdfe;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(62, 77, 178, 0.08);
    text-align: center;
    transition: 0.3s;
}

.atelier-grid-item:hover {
    background: white;
    border-color: #F2D411;
    box-shadow: 0 10px 25px rgba(242, 212, 17, 0.15);
}

.atelier-icon {
    font-size: 2rem;
    color: #3e4db2;
    margin-bottom: 15px;
    display: block;
}

.success-quote {
    background: #f8f9ff;
    border-left: 8px solid #3e4db2;
    padding: 40px;
    border-radius: 0 30px 30px 0;
    position: relative;
}

.success-quote::before {
    content: "\201C";
    font-size: 100px;
    color: #3e4db2;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 20px;
}

.step-check {
    width: 25px;
    height: 25px;
    background: #5CE1E6;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    margin-right: 12px;
}

/* --- Vacances --- */
.holiday-compare-card {
    background: white;
    border-radius: 25px;
    padding: 30px;
    height: 100%;
    border-bottom: 6px solid #3e4db2;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.holiday-compare-card:hover {
    transform: translateY(-10px);
}

.holiday-compare-card.repit {
    border-color: #5CE1E6;
}

.holiday-compare-card.rupture {
    border-color: #F2D411;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-list li {
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
}

.feature-list li span {
    font-weight: 700;
    color: #3e4db2;
}

.dest-pill {
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.dest-pill:hover {
    background: #f8f9ff;
    border-color: #3e4db2;
}

.dest-icon {
    font-size: 1.5rem;
    color: #5CE1E6;
}

.adn-box {
    background: #fdfdfe;
    border-radius: 30px;
    padding: 40px;
    border: 2px dashed #5CE1E6;
}

.stat-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #3e4db2;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* --- FAQ --- */
.faq-section-title {
    color: #3e4db2;
    font-weight: 800;
    margin-top: 4.5rem;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-section-title i {
    background: #f0f2ff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #3e4db2;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(62, 77, 178, 0.1);
}

.faq-section-title::after {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, rgba(62, 77, 178, 0.1), transparent);
}

.faq-nav-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgba(62, 77, 178, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none !important;
    display: block;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.faq-nav-card:hover {
    background: #3e4db2;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(62, 77, 178, 0.2);
}

.faq-nav-card:hover h6, .faq-nav-card:hover i {
    color: white !important;
}

.faq-nav-card:hover i {
    transform: scale(1.2);
}

.stat-highlight {
    background: #fff9db;
    border-left: 4px solid #F2D411;
    padding: 20px;
    border-radius: 4px 15px 15px 4px;
    margin: 20px 0;
    font-style: italic;
}

.contact-cta-box {
    background: linear-gradient(135deg, #3e4db2 0%, #5CE1E6 150%);
    border-radius: 35px;
    padding: 50px;
    color: white;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

/* --- Entreprises Grid --- */
.entreprise-logo {
    max-height: 200px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.5s ease;
    filter: drop-shadow(0 10px 25px rgba(62, 77, 178, 0.2)) grayscale(0%);
    cursor: pointer;
    animation: logoFloat 4s ease-in-out infinite;
}

.entreprise-logo:nth-child(1) {
    animation-delay: 0s;
}

.entreprise-logo:nth-child(2) {
    animation-delay: 0.3s;
}

.entreprise-logo:nth-child(3) {
    animation-delay: 0.6s;
}

.entreprise-logo:nth-child(4) {
    animation-delay: 0.9s;
}

.entreprise-logo:nth-child(5) {
    animation-delay: 1.2s;
}

.entreprise-logo:nth-child(6) {
    animation-delay: 1.5s;
}

.entreprise-logo:hover {
    transform: scale(1.12) translateY(-8px);
    filter: drop-shadow(0 25px 40px rgba(62, 77, 178, 0.35));
    animation-play-state: paused;
}

#nos-entreprises .pattern-top-left,
#nos-entreprises .pattern-top-right {
    animation: floatPattern 10s ease-in-out infinite alternate;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}