/* ==========================================================================
   AF ASSISTANCE - STYLES PRINCIPAUX
   Design Professionnel, Élégant, 100% Responsive avec Animations Fluides
   ========================================================================== */

:root {
    --primary-green: #22c55e;
    --primary-green-dark: #15803d;
    --primary-green-light: #4ade80;
    --primary-green-bg: #eafaf1;
    --brand-gold: #eab308;
    --brand-gold-dark: #ca8a04;
    --dark-navy: #111827;
    --dark-card: #1f2937;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    --shadow-sm: 0 2px 6px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 25px rgba(34, 197, 94, 0.35);
    --shadow-glow-strong: 0 0 40px rgba(34, 197, 94, 0.55);
    --shadow-glow-gold: 0 0 25px rgba(234, 179, 8, 0.35);
    --transition-fast: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    --transition: all 0.55s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: all 0.85s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-cinematic: all 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typographie & Titres */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px !important;
    padding-right: 24px !important;
    width: 100%;
    box-sizing: border-box;
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(200%) rotate(45deg); }
}

@keyframes scaleUp {
    0% { transform: scale(0.95); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Classes Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-zoom.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Délais de cascade (stagger) */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Boutons avec Micro-interactions */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 30px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%) rotate(30deg);
    transition: transform 0.6s ease;
    z-index: -1;
}

.btn:hover::after {
    transform: translateX(100%) rotate(30deg);
}

.btn:active {
    transform: scale(0.97) !important;
}

.btn-primary {
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #16a34a 0%, #14532d 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

.btn-teal {
    background: linear-gradient(135deg, #3b7b88 0%, #2c5f69 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(44, 95, 105, 0.25);
}

.btn-teal:hover {
    background: linear-gradient(135deg, #2c5f69 0%, #1e4249 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 95, 105, 0.35);
}

.btn-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.25);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.35);
}

.btn-dark {
    background: linear-gradient(135deg, #1f2937 0%, #0f172a 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.25);
}

.btn-dark:hover {
    background: linear-gradient(135deg, #111827 0%, #000000 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.4);
}

.btn-white {
    background-color: #ffffff;
    color: var(--primary-green-dark);
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Bouton Orange Vibrant pour CTA */
.btn-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff !important;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.35);
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-orange:hover {
    background: linear-gradient(135deg, #fb923c 0%, #c2410c 100%);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.5), 0 0 20px rgba(249, 115, 22, 0.45);
}

/* ==========================================================================
   HEADER & NAVIGATION FLUIDE
   ========================================================================== */
.header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 14px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.03);
}

.nav-logo-img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-link:hover .nav-logo-img {
    transform: scale(1.04);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    transition: var(--transition);
    padding: 6px 0;
    text-decoration: none;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background-color: var(--primary-green);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1e293b;
    padding: 6px 10px;
    border-radius: 6px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background-color: #f1f5f9;
}
/* ==========================================================================
   HERO REVOLUTION SLIDER (Inspiré de Slider Revolution 6)
   ========================================================================== */
.rev-hero-slider-wrap {
    position: relative;
    width: 100%;
    min-height: 600px;
    height: 84vh;
    max-height: 760px;
    overflow: hidden;
    background: #062814;
    color: #ffffff;
    user-select: none;
}

.rev-slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    z-index: 25;
}

.rev-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #22c55e, #eab308);
    transition: width 0.1s linear;
}

.rev-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.rev-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.85s;
    display: flex;
    align-items: center;
    z-index: 1;
}

.rev-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.rev-slide-bg-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rev-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1);
    transition: transform 9s cubic-bezier(0.25, 1, 0.5, 1);
    filter: brightness(0.94) contrast(1.04);
}

.rev-slide.is-active .rev-slide-bg {
    transform: scale(1.08);
}

.rev-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 36, 18, 0.88) 0%, rgba(6, 36, 18, 0.68) 45%, rgba(6, 36, 18, 0.22) 100%);
}

.rev-slide-content-wrap {
    position: relative;
    z-index: 10;
    padding: 30px 0 90px 0;
    width: 100%;
}

.rev-slide-content {
    max-width: 820px;
    text-align: left;
}

.rev-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #dcfce7;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 7px 18px;
    border-radius: 999px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #eab308;
    box-shadow: 0 0 10px #eab308;
}

.rev-slide-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.14;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.title-highlight {
    color: #eab308;
    text-shadow: 0 2px 20px rgba(234, 179, 8, 0.35);
}

.rev-slide-desc {
    font-size: 18px;
    line-height: 1.65;
    color: #e2e8f0;
    margin-bottom: 30px;
    max-width: 660px;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.45s;
}

.rev-slide-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.rev-slide.is-active .rev-slide-badge,
.rev-slide.is-active .rev-slide-title,
.rev-slide.is-active .rev-slide-desc,
.rev-slide.is-active .rev-slide-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: #0f172a;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Numbered Bullets Navigation */
.rev-bullets-wrap {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    z-index: 20;
}

.rev-bullets-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.rev-bullets {
    display: flex;
    gap: 35px;
    align-items: center;
}

.rev-bullet {
    background: none;
    border: none;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.6);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    position: relative;
    transition: color 0.3s ease;
    text-align: left;
    min-width: 110px;
}

.bullet-num {
    font-size: 13px;
    font-weight: 800;
    color: #eab308;
}

.bullet-label {
    letter-spacing: 1px;
    font-size: 12px;
}

.bullet-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.rev-bullet:hover {
    color: #ffffff;
}

.rev-bullet.is-active {
    color: #ffffff;
}

.rev-bullet.is-active .bullet-bar {
    background: #eab308;
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.6);
}

.rev-slider-arrows {
    display: flex;
    gap: 12px;
}

.rev-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.rev-arrow-btn:hover {
    background: #eab308;
    color: #0f172a;
    border-color: #eab308;
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4);
}

/* Responsive Hero Slider */
@media (max-width: 992px) {
    .rev-hero-slider-wrap {
        height: 75vh;
        min-height: 520px;
    }
    .rev-slide-overlay {
        background: linear-gradient(180deg, rgba(6, 32, 16, 0.80) 0%, rgba(6, 32, 16, 0.40) 40%, rgba(6, 32, 16, 0.75) 75%, rgba(6, 32, 16, 0.94) 100%);
    }
    .rev-slide-title {
        font-size: 36px;
    }
    .rev-slide-desc {
        font-size: 15.5px;
    }
    .rev-slide-content-wrap {
        padding: 30px 28px 95px 28px;
    }
    .rev-bullets-container {
        padding: 0 28px;
    }
}

@media (max-width: 640px) {
    .rev-hero-slider-wrap {
        height: 88svh;
        min-height: 540px;
        max-height: 700px;
    }
    .rev-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    .rev-slide-bg {
        object-position: center 25%;
        filter: brightness(0.96) contrast(1.08);
    }
    .rev-slide-overlay {
        background: linear-gradient(180deg, 
            rgba(6, 32, 16, 0.82) 0%, 
            rgba(6, 32, 16, 0.35) 32%, 
            rgba(6, 32, 16, 0.58) 68%, 
            rgba(6, 32, 16, 0.94) 100%
        );
    }
    .rev-slide-content-wrap {
        padding: 24px 28px 90px 28px;
    }
    .rev-slide-content {
        max-width: 100%;
        text-align: left;
        padding: 0 4px;
    }
    .rev-slide-badge {
        font-size: 10.5px;
        font-weight: 800;
        letter-spacing: 0.8px;
        padding: 5px 14px;
        margin-bottom: 12px;
        gap: 7px;
        background: rgba(6, 32, 16, 0.65);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.22);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    }
    .badge-dot {
        width: 6px;
        height: 6px;
    }
    .rev-slide-title {
        font-size: 26px;
        line-height: 1.18;
        margin-bottom: 12px;
        letter-spacing: -0.015em;
        text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.9);
        padding-right: 6px;
    }
    .title-highlight {
        color: #eab308;
        text-shadow: 0 2px 20px rgba(234, 179, 8, 0.5), 0 1px 4px rgba(0, 0, 0, 0.9);
    }
    .rev-slide-desc {
        font-size: 13.5px;
        line-height: 1.55;
        color: #f1f5f9;
        margin-bottom: 20px;
        max-width: 100%;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
        padding-right: 10px;
    }
    .rev-slide-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 310px;
    }
    .rev-slide-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 13.5px;
        font-weight: 700;
        border-radius: 999px;
        text-align: center;
        box-sizing: border-box;
    }
    .rev-slide-actions .btn-orange {
        background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
        box-shadow: 0 8px 24px rgba(234, 88, 12, 0.45);
    }
    .rev-slide-actions .btn-outline-white {
        background: rgba(6, 32, 16, 0.55);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1.5px solid rgba(255, 255, 255, 0.45);
        color: #ffffff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    .rev-bullets-wrap {
        bottom: 16px;
        padding: 0 8px;
    }
    .rev-bullets-container {
        gap: 12px;
        padding: 0 20px;
    }
    .rev-bullets {
        gap: 8px;
        flex: 1;
    }
    .rev-bullet {
        min-width: unset;
        flex: 1;
        padding: 3px 0;
        gap: 3px;
    }
    .bullet-num {
        font-size: 10.5px;
        font-weight: 800;
    }
    .bullet-label {
        font-size: 8.5px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
    .bullet-bar {
        height: 2.5px;
    }
    .rev-slider-arrows {
        gap: 6px;
    }
    .rev-arrow-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
        background: rgba(6, 32, 16, 0.65);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.25);
    }
}

/* Extra Small Phones (<= 380px) */
@media (max-width: 380px) {
    .rev-hero-slider-wrap {
        min-height: 500px;
    }
    .rev-slide-content-wrap {
        padding: 20px 20px 85px 20px;
    }
    .rev-bullets-container {
        padding: 0 14px;
    }
    .rev-slide-title {
        font-size: 23px;
    }
    .rev-slide-desc {
        font-size: 12.5px;
        margin-bottom: 16px;
    }
    .rev-slide-actions .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    .bullet-label {
        display: none;
    }
}

.hero-section {
    background: linear-gradient(135deg, #1fa357 0%, #15803d 50%, #0d5426 100%);
    color: #ffffff;
    padding: 70px 0 0 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 40px;
}

.hero-content {
    padding-bottom: 70px;
    z-index: 2;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.28;
    margin-bottom: 32px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.02em;
}

.hero-cta-btn {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-img {
    max-height: 500px;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-img:hover {
    transform: scale(1.02);
}

.hero-badge-qr {
    position: absolute;
    bottom: 40px;
    left: 10px;
    background: #ffffff;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    z-index: 3;
    text-align: center;
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 700;
    animation: floatSlow 4s ease-in-out infinite;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* ==========================================================================
   CADRES LUMINEUX CINÉMATIQUES POUR TOUTES LES IMAGES DU SITE
   ========================================================================== */
.img-luminous-frame {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    padding: 12px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid rgba(34, 197, 94, 0.4);
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08), 
                0 0 25px rgba(34, 197, 94, 0.22),
                inset 0 0 15px rgba(34, 197, 94, 0.06);
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.65s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.65s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    max-width: 100%;
}

.img-luminous-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.85) 0%, rgba(234, 179, 8, 0.7) 50%, rgba(34, 197, 94, 0.4) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.85;
    transition: opacity 0.65s ease;
}

.img-luminous-frame:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(34, 197, 94, 0.85);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12), 
                0 0 45px rgba(34, 197, 94, 0.45),
                0 0 65px rgba(34, 197, 94, 0.25);
}

.img-luminous-frame:hover::before {
    opacity: 1;
}

.img-luminous-frame img,
.img-luminous-frame .why-img {
    display: block;
    max-width: 100%;
    max-height: 420px;
    border-radius: 16px;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.img-luminous-frame:hover img,
.img-luminous-frame:hover .why-img {
    transform: scale(1.03);
}

/* ==========================================================================
   SECTION "POURQUOI ME CHOISIR ?"
   ========================================================================== */
.why-section {
    padding: 90px 0;
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: center;
}

.why-img {
    max-height: 420px;
    margin: 0 auto;
    border-radius: 20px;
    border: 2px solid rgba(34, 197, 94, 0.35);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08), 0 0 25px rgba(34, 197, 94, 0.22);
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.65s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-img:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(34, 197, 94, 0.85);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12), 0 0 40px rgba(34, 197, 94, 0.45);
}

.section-title-gold {
    font-size: 34px;
    color: #eab308;
    font-weight: 800;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
}

.why-text {
    color: #475569;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 25px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.stat-card-green {
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
    color: #ffffff !important;
    padding: 20px 14px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.28);
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}

.stat-card-green:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 14px 32px rgba(22, 163, 74, 0.45);
}

.stat-card-green.darker {
    background: linear-gradient(135deg, #16a34a 0%, #14532d 100%);
    color: #ffffff !important;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
    color: #0f172a;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: #475569;
}

.stat-card-green .stat-number {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.stat-card-green .stat-label {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* ==========================================================================
   SECTION "NOS SERVICES"
   ========================================================================== */
.services-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #111827 0%, #1f2937 100%);
    color: #ffffff;
    text-align: center;
}

.services-title {
    font-size: 32px;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.services-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #22c55e;
    margin: 10px auto 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 360px;
    box-shadow: var(--shadow-md), 0 0 20px rgba(34, 197, 94, 0.18);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    text-decoration: none;
    border: 2px solid rgba(34, 197, 94, 0.35);
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.65s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(34, 197, 94, 0.5);
    border-color: rgba(34, 197, 94, 0.85);
}

.service-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-bg {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.4) 60%, rgba(15, 23, 42, 0.1) 100%);
    z-index: 2;
    transition: background 0.55s ease;
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.96) 0%, rgba(15, 23, 42, 0.3) 60%, rgba(15, 23, 42, 0.05) 100%);
}

.service-card-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.service-card-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1), color 0.4s ease;
}

.service-card:hover .service-card-title {
    color: #4ade80;
    transform: translateY(-3px);
}

/* ==========================================================================
   SECTION PROGRAMMES & OFFRES SPECIALES
   ========================================================================== */
.offers-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.offer-card {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    text-align: left;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.18), 0 0 20px rgba(34, 197, 94, 0.15);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.6s ease,
                background 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.offer-card:hover,
.offer-card.darker:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    transform: translateY(-8px) scale(1.015);
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 20px 48px rgba(234, 88, 12, 0.38), 0 0 35px rgba(249, 115, 22, 0.45);
}

.offer-card.darker {
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
}

.offer-header-title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
    text-align: left;
}

.offer-body-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    align-items: center;
    text-align: left;
}

.offer-desc {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 25px;
    opacity: 0.95;
    text-align: left;
}

.offer-price {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: left;
}

.offer-validity {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 25px;
    text-align: left;
}

.offer-img {
    max-height: 220px;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 0 20px rgba(255, 255, 255, 0.2);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.6s ease, 
                box-shadow 0.6s ease;
}

.offer-card:hover .offer-img {
    transform: scale(1.06);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22), 0 0 30px rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   SECTION "QUI SUIS JE ?"
   ========================================================================== */
.bio-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.bio-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.bio-arch-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.bio-arch-bg {
    background: linear-gradient(180deg, #22c55e 0%, #15803d 100%);
    border-radius: 180px 180px 24px 24px;
    width: 320px;
    height: 420px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    border: 3px solid rgba(34, 197, 94, 0.4);
    box-shadow: 0 15px 35px rgba(21, 128, 61, 0.25), 0 0 25px rgba(34, 197, 94, 0.3);
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.65s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.65s ease;
}

.bio-arch-bg:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(34, 197, 94, 0.9);
    box-shadow: 0 22px 50px rgba(21, 128, 61, 0.35), 0 0 45px rgba(34, 197, 94, 0.55);
}

.bio-arch-img {
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.bio-arch-bg:hover .bio-arch-img {
    transform: scale(1.04);
}

.bio-title {
    font-size: 34px;
    color: #eab308;
    font-weight: 800;
    margin-bottom: 22px;
}

.bio-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 20px;
}

.bio-btn-group {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* ==========================================================================
   SECTION TÉMOIGNAGES
   ========================================================================== */
.testimonials-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
    color: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid #eab308;
    padding: 28px 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.35s ease, background 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid #22c55e;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.testimonial-name {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
}

.testimonial-role {
    font-size: 13px;
    color: #94a3b8;
}

.testimonial-quote {
    font-size: 15px;
    font-style: italic;
    color: #cbd5e1;
    line-height: 1.65;
}

/* ==========================================================================
   SECTION BLOG / CARROUSEL DES 6 DERNIERS ARTICLES
   ========================================================================== */
.blog-slider-section {
    padding: 90px 0 80px 0;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

.blog-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.slider-header-left {
    flex: 1;
}

.slider-sup {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ea580c;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.slider-section-title {
    font-size: 28px;
    font-weight: 800;
    color: #16a34a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    position: relative;
    display: inline-block;
}

.slider-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #eab308;
    margin-top: 10px;
    border-radius: 2px;
}

.slider-header-right {
    display: flex;
    align-items: center;
}

.slider-nav-arrows {
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.slider-arrow-btn:hover:not(:disabled) {
    background: #15803d;
    color: #ffffff;
    border-color: #15803d;
    transform: scale(1.06);
    box-shadow: 0 4px 14px rgba(21, 128, 61, 0.25);
}

.slider-arrow-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* Slider Drag & Viewport */
.slider_draggable_wrap {
    position: relative;
    user-select: none;
    outline: none;
    cursor: grab;
    margin-bottom: 35px;
}

.slider_draggable_wrap.is-dragging {
    cursor: grabbing;
}

.flickity-viewport {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 10px 0 20px 0;
}

.flickity-slider {
    display: flex;
    width: 100%;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider_content {
    flex: 0 0 31.8%;
    margin-right: 2.3%;
    box-sizing: border-box;
    display: flex;
    height: auto;
}

.slider-article-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    width: 100%;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.slider-article-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
}

.slider-card-media {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #e2e8f0;
}

.slider-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-article-card:hover .slider-card-img {
    transform: scale(1.06);
}

/* Screen Preview Dots (Style Mac/Browser) */
.slider_screen_dots {
    position: absolute;
    top: 12px;
    left: 14px;
    z-index: 2;
    display: flex;
    gap: 5px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.slider_screen_dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: block;
}

.slider_screen_dots span:nth-child(1) { background: #ef4444; }
.slider_screen_dots span:nth-child(2) { background: #f59e0b; }
.slider_screen_dots span:nth-child(3) { background: #22c55e; }

.slider-cat-badge {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 2;
    background: rgba(21, 128, 61, 0.9);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.slider-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.slider-card-meta {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.slider-card-title {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.slider-article-card:hover .slider-card-title {
    color: #15803d;
}

.slider-card-excerpt {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.slider-card-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
}

.slider-read-btn {
    font-size: 13px;
    font-weight: 700;
    color: #15803d;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.slider-article-card:hover .slider-read-btn {
    color: #ea580c;
    transform: translateX(4px);
}

/* Pagination Dots */
.slider-dots-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-dot.is-active {
    background: #15803d;
    width: 28px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(21, 128, 61, 0.3);
}

.blog-slider-bottom-action {
    text-align: center;
    margin-top: 15px;
}

.slider-cta-btn {
    padding: 12px 38px;
    font-weight: 700;
    font-size: 15px;
}

/* Responsive Slider */
@media (max-width: 1024px) {
    .slider_content {
        flex: 0 0 48.5%;
        margin-right: 3%;
    }
    .blog-slider-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .slider-header-right {
        align-items: flex-start;
    }
    .slider-header-desc {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .slider_content {
        flex: 0 0 88%;
        margin-right: 4%;
    }
    .slider-section-title {
        font-size: 24px;
    }
}

/* ==========================================================================
   SECTION PARTENAIRES & CLIENTS (Inspiré du slider clients moderne)
   ========================================================================== */
.clients-wrapper {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.pt-110 {
    padding-top: 85px;
}

.pb-120 {
    padding-bottom: 90px;
}

.clients-wrapper .section-title {
    margin-bottom: 40px;
    text-align: center;
}

.clients-sup {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ea580c;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.clients-wrapper .section-title h3 {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
    margin: 0 0 14px 0;
}

.clients-wrapper .section-title .circle {
    display: inline-block;
    width: 44px;
    height: 4px;
    background: #eab308;
    border-radius: 2px;
    position: relative;
}

.clients-wrapper .section-title .circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #15803d;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(21, 128, 61, 0.4);
}

/* Slider / Infinite Loop Track */
.clients-slider-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0 20px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.clients-slider-track {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    animation: clientsMarquee 30s linear infinite;
    will-change: transform;
}

.clients-slider-track:hover {
    animation-play-state: paused;
}

@keyframes clientsMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333333%);
    }
}

.axis-client-item {
    flex: 0 0 230px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.axis-client-item .client-img {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 96px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    cursor: pointer;
}

.axis-client-item:hover .client-img {
    transform: translateY(-5px);
    border-color: #22c55e;
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.15);
}

.axis-client-item .client-img img {
    max-height: 48px;
    max-width: 150px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.axis-client-item:hover .client-img img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .pt-110 {
        padding-top: 55px;
    }
    .pb-120 {
        padding-bottom: 60px;
    }
    .clients-wrapper .section-title h3 {
        font-size: 24px;
    }
    .axis-client-item {
        flex: 0 0 180px;
    }
    .axis-client-item .client-img {
        height: 80px;
        padding: 14px 20px;
    }
    .axis-client-item .client-img img {
        max-height: 38px;
        max-width: 120px;
    }
}

/* ==========================================================================
   PAGE BANNER (Assistance, Coaching, Contact)
   ========================================================================== */
.page-banner {
    position: relative;
    background: linear-gradient(135deg, #090d16 0%, #1e293b 100%);
    color: #ffffff;
    min-height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 85px 0 100px 0;
}

.page-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    opacity: 0.38;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 3;
    padding-bottom: 10px;
}

.page-banner-title {
    font-size: 52px;
    font-weight: 900;
    color: #ffffff !important;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.85);
    letter-spacing: -0.5px;
    margin: 0;
}

/* Wave divider */
.wave-divider {
    position: relative;
    width: 100%;
    height: 44px;
    background-color: #ffffff;
    clip-path: ellipse(55% 100% at 50% 100%);
    margin-top: -43px;
    z-index: 10;
}

/* ==========================================================================
   PAGE ASSISTANCE
   ========================================================================== */
.promo-title-center {
    font-size: 26px;
    font-weight: 800;
    color: #16a34a;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 14px;
}

.promo-subtitle-center {
    text-align: center;
    color: #475569;
    font-size: 15px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
}

.assistance-offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 70px;
}

.assistance-offer-card {
    background: linear-gradient(135deg, #5bb36b 0%, #3d984e 100%);
    color: #ffffff;
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 10px 30px rgba(61, 152, 78, 0.2);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.assistance-offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(61, 152, 78, 0.3);
}

.assistance-offer-card h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;
    box-sizing: border-box;
}

.checklist-title {
    font-size: 30px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.checklist-items {
    list-style: none;
    margin-bottom: 25px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    transition: transform 0.25s ease;
}

.checklist-item:hover {
    transform: translateX(4px);
}

.checklist-icon {
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(34, 197, 94, 0.35);
    transition: transform 0.3s ease;
}

.checklist-item:hover .checklist-icon {
    transform: scale(1.15) rotate(10deg);
}

.ps-box {
    border: 1px solid #86efac;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 28px;
    background: #f0fdf4;
}

/* ==========================================================================
   PAGE CONTACT & FORMULAIRE
   ========================================================================== */
.contact-section {
    padding: 80px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #ffffff;
    padding: 30px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2), 0 0 15px rgba(34, 197, 94, 0.15);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.6s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 18px 40px rgba(34, 197, 94, 0.38), 0 0 30px rgba(34, 197, 94, 0.35);
}

.contact-info-card.darker {
    background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
}

.contact-info-icon {
    font-size: 28px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.2) rotate(5deg);
}

.contact-info-title {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 6px;
}

.contact-info-val {
    font-size: 14px;
    font-weight: 600;
    word-break: break-word;
    opacity: 0.95;
}

.form-wrapper-dark {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    padding: 55px 45px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    max-width: 850px;
    margin: 0 auto 60px auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    color: #ffffff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #f1f5f9;
}

.form-group label span {
    color: #ef4444;
}

.form-control {
    width: 100%;
    padding: 13px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid #334155;
    background-color: #ffffff;
    color: #0f172a;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-feedback {
    padding: 14px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: none;
    font-size: 14px;
    font-weight: 500;
}

.form-feedback.success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-feedback.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.map-container {
    width: 100%;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 35px 0;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #1e293b;
}

.footer p {
    margin: 0;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Tablettes & Mobiles)
   ========================================================================== */
@media (max-width: 992px) {
    .container {
        padding-left: 22px !important;
        padding-right: 22px !important;
    }

    .hero-grid,
    .why-grid,
    .offers-grid,
    .bio-grid,
    .testimonials-grid,
    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        width: 100%;
        box-sizing: border-box;
    }

    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hero-title {
        font-size: 32px;
    }

    .page-banner-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Espacement vertical équilibré pour toutes les sections */
    .why-section,
    .services-section,
    .offers-section,
    .bio-section,
    .testimonials-section,
    .contact-section,
    section[style*="padding"] {
        padding-top: 45px !important;
        padding-bottom: 50px !important;
    }

    .services-grid,
    .blog-grid,
    .contact-info-grid,
    .form-row,
    .assistance-offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-title {
        font-size: 26px;
    }

    .form-wrapper-dark {
        padding: 35px 20px;
    }

    /* Checklist & Sections de contenu */
    .checklist-grid {
        padding-top: 15px !important;
        padding-bottom: 25px !important;
        gap: 28px !important;
    }

    .checklist-title,
    .section-title-gold,
    .bio-title,
    h2[style*="font-size: 32px"] {
        font-size: 23px !important;
        line-height: 1.3 !important;
        margin-bottom: 16px !important;
        word-break: break-word;
    }

    .checklist-items {
        margin-bottom: 20px;
        padding-left: 0;
    }

    .checklist-item {
        align-items: flex-start !important;
        gap: 12px !important;
        margin-bottom: 14px !important;
        font-size: 14.5px !important;
        line-height: 1.55 !important;
        word-break: break-word;
    }

    .checklist-icon {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        font-size: 12px !important;
        margin-top: 2px !important;
    }

    .ps-box {
        padding: 14px 16px !important;
        margin-top: 18px !important;
        margin-bottom: 22px !important;
        font-size: 13.5px !important;
        line-height: 1.6 !important;
        word-break: break-word;
    }

    /* Cadres d'images & portraits sur mobile avec marges internes respectées */
    .img-luminous-frame {
        max-width: 100% !important;
        width: auto !important;
        padding: 10px !important;
        border-radius: 20px !important;
        margin: 0 auto !important;
        display: inline-block !important;
        box-sizing: border-box !important;
    }

    .img-luminous-frame img,
    .img-luminous-frame .why-img,
    .why-img,
    .bio-arch-img {
        max-height: 320px !important;
        width: auto !important;
        max-width: 100% !important;
        object-fit: contain !important;
        margin: 0 auto !important;
        border-radius: 14px !important;
    }

    .bio-arch-wrapper {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        padding: 0 10px !important;
    }

    .bio-arch-bg {
        width: 100% !important;
        max-width: 280px !important;
        height: 350px !important;
        border-radius: 140px 140px 20px 20px !important;
        margin: 0 auto !important;
    }

    /* Offres Spéciales / Programmes en mobile : pas d'images, 100% aligné à gauche */
    .offer-card {
        padding: 30px 22px;
        text-align: left;
    }

    .offer-header-title {
        font-size: 21px;
        text-align: left;
        margin-bottom: 16px;
    }

    .offer-body-grid {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: left;
    }

    .offer-img-col,
    .offer-img,
    .offer-body-grid .offer-img {
        display: none !important;
    }

    .offer-desc,
    .offer-price,
    .offer-validity {
        text-align: left;
        font-size: 14px;
        line-height: 1.6;
    }

    .offer-card .btn {
        width: 100%;
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .img-luminous-frame img,
    .img-luminous-frame .why-img,
    .why-img,
    .bio-arch-img {
        max-height: 270px !important;
    }
}

/* ==========================================================================
   MODAL DE RÉSERVATION RAPIDE
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 35px 30px;
    position: relative;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(226, 232, 240, 0.9);
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 22px;
}

.modal-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.modal-subtitle {
    font-size: 13px;
    color: #64748b;
}

.modal-card .form-group label {
    color: #334155;
    font-size: 13px;
}

.modal-card .form-control {
    border-color: #cbd5e1;
    background-color: #f8fafc;
    padding: 10px 14px;
}

.modal-card .form-control:focus {
    background-color: #ffffff;
    border-color: #22c55e;
}

/* ==========================================================================
   BLOG & ARTICLE READER STYLES
   ========================================================================== */

/* Blog cards enhancements */
.blog-card-clickable {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.blog-card-img-wrap {
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.blog-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #15803d;
    margin-top: 14px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.blog-card:hover .blog-card-readmore {
    color: #ea580c;
    transform: translateX(4px);
}

/* --- PAGE & BLOG HERO SECTIONS (Blog, Coaching, Assistance, Contact) --- */
.page-hero-section,
.blog-hero-section {
    background: linear-gradient(135deg, #15803d 0%, #166534 50%, #0d5426 100%);
    color: #ffffff;
    padding: 75px 0 65px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-section::after,
.blog-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
}

.page-hero-badge,
.blog-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #dcfce7;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.page-hero-title,
.blog-hero-title {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.25;
}

.page-hero-desc,
.blog-hero-desc {
    font-size: 17px;
    color: #dcfce7;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-hero-section .blog-hero-desc {
    margin-bottom: 32px;
}

.blog-search-form {
    max-width: 580px;
    margin: 0 auto;
}

.blog-search-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 999px;
    padding: 6px 8px 6px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-search-box .search-icon {
    color: #94a3b8;
    font-size: 16px;
    margin-right: 12px;
}

.blog-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: inherit;
    color: #1e293b;
    background: transparent;
}

.blog-search-input::placeholder {
    color: #94a3b8;
}

.clear-search-btn {
    color: #94a3b8;
    padding: 6px 10px;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.clear-search-btn:hover {
    color: #ef4444;
}

.search-submit-btn {
    border-radius: 999px !important;
    padding: 10px 22px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.blog-listing-section {
    padding: 60px 0 90px 0;
    background-color: #f8fafc;
}

.blog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 35px;
}

.filter-pill {
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.filter-pill:hover {
    background: #f1f5f9;
    color: #15803d;
    border-color: #cbd5e1;
}

.filter-pill.active {
    background: #15803d;
    color: #ffffff;
    border-color: #15803d;
    box-shadow: 0 4px 12px rgba(21, 128, 61, 0.25);
}

.blog-results-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 12px 18px;
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    font-size: 14px;
    color: #64748b;
}

.blog-results-meta strong {
    color: #0f172a;
}

.reset-link {
    color: #ea580c;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.reset-link:hover {
    text-decoration: underline;
}

.blog-directory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-directory-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-directory-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
}

.card-image-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: #e2e8f0;
}

.card-image-wrap .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-directory-card:hover .card-img {
    transform: scale(1.06);
}

.card-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(21, 128, 61, 0.9);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-date-meta {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.blog-directory-card:hover .card-title {
    color: #15803d;
}

.card-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
}

.card-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

.read-more-label {
    font-size: 13px;
    font-weight: 700;
    color: #15803d;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.blog-directory-card:hover .read-more-label {
    color: #ea580c;
    transform: translateX(4px);
}

.blog-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px dashed #cbd5e1;
    max-width: 540px;
    margin: 0 auto;
}

.empty-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 18px auto;
}

.blog-bottom-cta {
    background: #ffffff;
    padding: 50px 0 80px 0;
}

.cta-banner-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 45px 50px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-left: 6px solid #ea580c;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.cta-mini-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ea580c;
    display: inline-block;
    margin-bottom: 8px;
}

.cta-banner-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.cta-banner-content p {
    font-size: 15px;
    color: #cbd5e1;
    margin: 0;
}

.cta-banner-action {
    flex-shrink: 0;
}

/* --- SINGLE ARTICLE READER (article.php) --- */
.article-hero-section {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    padding: 40px 0 30px 0;
    border-bottom: 1px solid #e2e8f0;
}

.article-hero-container {
    max-width: 860px;
    margin: 0 auto;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.article-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.article-breadcrumb a:hover {
    color: #15803d;
}

.article-breadcrumb .current-crumb {
    color: #0f172a;
    font-weight: 600;
}

.article-header-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.article-cat-badge {
    background: #dcfce7;
    color: #15803d;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    border-radius: 999px;
}

.article-read-meta {
    font-size: 13px;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-main-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 16px;
}

.article-main-excerpt {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
    border-left: 3px solid #ea580c;
    padding-left: 16px;
}

.article-author-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.author-avatar-sm {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #22c55e;
}

.author-name-sm {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.author-sub-sm {
    font-size: 12px;
    color: #64748b;
}

.article-body-section {
    padding: 40px 0 80px 0;
    background-color: #ffffff;
}

.article-layout-container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    align-items: flex-start;
}

.article-main-column {
    min-width: 0; /* Empêche overflow grid */
}

.article-featured-image-box {
    margin-bottom: 35px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.article-featured-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

/* --- CONTENU WYSIWYG RENDU --- */
.article-wysiwyg-content {
    font-size: 17px;
    line-height: 1.8;
    color: #334155;
    word-break: break-word;
}

.article-wysiwyg-content p {
    margin-bottom: 22px;
}

.article-wysiwyg-content h2 {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin: 36px 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
}

.article-wysiwyg-content h3 {
    font-size: 21px;
    font-weight: 700;
    color: #15803d;
    margin: 28px 0 14px 0;
}

.article-wysiwyg-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 22px 0 10px 0;
}

.article-wysiwyg-content ul,
.article-wysiwyg-content ol {
    margin: 0 0 24px 24px;
    padding: 0;
}

.article-wysiwyg-content li {
    margin-bottom: 10px;
    padding-left: 6px;
}

.article-wysiwyg-content blockquote {
    margin: 30px 0;
    padding: 20px 24px;
    background: #f8fafc;
    border-left: 4px solid #15803d;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: #1e293b;
    font-size: 18px;
}

.article-wysiwyg-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 25px auto;
    display: block;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.article-wysiwyg-content .video-wrapper,
.article-wysiwyg-content iframe {
    max-width: 100%;
    border-radius: var(--radius-md);
    margin: 25px 0;
}

.article-wysiwyg-content iframe {
    width: 100%;
    min-height: 380px;
    border: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.article-wysiwyg-content strong {
    color: #0f172a;
    font-weight: 700;
}

.article-wysiwyg-content a {
    color: #15803d;
    text-decoration: underline;
    font-weight: 600;
}

/* Partage */
.article-share-bar {
    margin-top: 45px;
    padding: 22px 24px;
    background: #f8fafc;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.share-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.share-whatsapp {
    background: #25D366;
    color: #ffffff;
}
.share-whatsapp:hover {
    background: #1eb954;
    transform: translateY(-2px);
}

.share-linkedin {
    background: #0077b5;
    color: #ffffff;
}
.share-linkedin:hover {
    background: #006097;
    transform: translateY(-2px);
}

.share-facebook {
    background: #1877f2;
    color: #ffffff;
}
.share-facebook:hover {
    background: #1464c9;
    transform: translateY(-2px);
}

.share-copy {
    background: #ffffff;
    color: #475569;
    border: 1px solid #cbd5e1;
}
.share-copy:hover {
    background: #f1f5f9;
    color: #0f172a;
    transform: translateY(-2px);
}

/* Encadré Auteur */
.article-author-bio-card {
    margin-top: 35px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
    display: flex;
    gap: 22px;
    align-items: center;
}

.bio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #22c55e;
    flex-shrink: 0;
}

.bio-content h4 {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.bio-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Article CTA Box */
.article-cta-box {
    margin-top: 40px;
    background: linear-gradient(135deg, #15803d 0%, #166534 100%);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(21, 128, 61, 0.2);
}

.article-cta-box .cta-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #dcfce7;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 14px;
}

.article-cta-box h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.article-cta-box p {
    font-size: 15px;
    color: #dcfce7;
    max-width: 580px;
    margin: 0 auto 24px auto;
}

/* Sidebar */
.article-sidebar {
    width: 100%;
}

.sidebar-sticky {
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar-cta-widget {
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
    border: 1.5px solid #86efac;
}

.widget-badge {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #15803d;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.sidebar-cta-widget h4 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.sidebar-cta-widget p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 14px;
}

.widget-title {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-card-mini {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    align-items: center;
    padding: 6px;
    border-radius: var(--radius-md);
    transition: background 0.2s;
}

.related-card-mini:hover {
    background: #f8fafc;
}

.related-img-mini {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.related-info-mini {
    flex: 1;
    min-width: 0;
}

.related-cat-mini {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #15803d;
    display: block;
    margin-bottom: 2px;
}

.related-title-mini {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
    margin-bottom: 4px;
    transition: color 0.2s;
}

.related-card-mini:hover .related-title-mini {
    color: #15803d;
}

.related-date-mini {
    font-size: 11px;
    color: #94a3b8;
}

.btn-outline-green {
    background: transparent;
    border: 1.5px solid #15803d;
    color: #15803d;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-outline-green:hover {
    background: #15803d;
    color: #ffffff;
}

/* Responsiveness */
@media (max-width: 992px) {
    .blog-directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .article-layout-container {
        grid-template-columns: 1fr;
    }
    .sidebar-sticky {
        position: static;
    }
    .cta-banner-box {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }
}

@media (max-width: 640px) {
    .blog-directory-grid {
        grid-template-columns: 1fr;
    }
    .page-hero-section,
    .blog-hero-section {
        padding: 48px 24px 44px 24px;
    }
    .page-hero-badge,
    .blog-hero-badge {
        font-size: 10.5px;
        padding: 4px 12px;
        margin-bottom: 10px;
    }
    .page-hero-title,
    .blog-hero-title {
        font-size: 24px;
        line-height: 1.25;
        margin-bottom: 10px;
    }
    .page-hero-desc,
    .blog-hero-desc {
        font-size: 13.5px;
        line-height: 1.5;
    }
    .blog-hero-section .blog-hero-desc {
        margin-bottom: 22px;
    }
    .blog-search-box {
        padding: 4px 6px 4px 14px;
    }
    .blog-search-input {
        font-size: 13.5px;
    }
    .search-submit-btn {
        padding: 8px 16px !important;
        font-size: 13px !important;
    }
    .article-hero-section {
        padding: 24px 0 20px 0;
    }
    .article-breadcrumb {
        font-size: 11.5px;
        margin-bottom: 14px;
        gap: 6px;
    }
    .article-main-title {
        font-size: 22px;
        line-height: 1.25;
        margin-bottom: 12px;
    }
    .article-main-excerpt {
        font-size: 13.5px;
        line-height: 1.55;
        margin-bottom: 16px;
        padding-left: 12px;
    }
    .article-author-bio-card {
        flex-direction: column;
        text-align: center;
    }
    .article-share-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .share-buttons {
        justify-content: center;
    }
}

/* ==========================================================================
   CADRES LUMINEUX HARMONISÉS & EFFETS CINÉMATIQUES GLOBAUX
   ========================================================================== */
.checklist-grid img,
.about-img,
.contact-hero-img {
    border-radius: 20px;
    border: 2px solid rgba(34, 197, 94, 0.35);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08), 0 0 25px rgba(34, 197, 94, 0.22);
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.65s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.checklist-grid img:hover,
.about-img:hover,
.contact-hero-img:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(34, 197, 94, 0.85);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12), 0 0 40px rgba(34, 197, 94, 0.45);
}

.blog-card-thumb {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(34, 197, 94, 0.25);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06), 0 0 20px rgba(34, 197, 94, 0.12);
    transition: all 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-card:hover .blog-card-thumb {
    border-color: rgba(34, 197, 94, 0.75);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12), 0 0 35px rgba(34, 197, 94, 0.35);
}

.article-featured-image-box {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(34, 197, 94, 0.35);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1), 0 0 30px rgba(34, 197, 94, 0.25);
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.65s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.65s ease;
    margin-bottom: 30px;
}

.article-featured-image-box:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 197, 94, 0.8);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14), 0 0 45px rgba(34, 197, 94, 0.45);
}

.author-avatar-sm,
.author-avatar-lg {
    border: 2px solid #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.35);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.author-avatar-sm:hover,
.author-avatar-lg:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.6);
}

.related-img-mini {
    border: 1.5px solid rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.15);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.related-card-mini:hover .related-img-mini {
    transform: scale(1.05);
    border-color: #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.35);
}

/* ==========================================================================
   CURSEUR PERSONNALISÉ FLUIDE & CINÉMATIQUE
   ========================================================================== */
@media (hover: hover) and (pointer: fine) {
    .custom-cursor-dot {
        position: fixed;
        top: 0;
        left: 0;
        width: 8px;
        height: 8px;
        background: #22c55e;
        border-radius: 50%;
        pointer-events: none;
        z-index: 999999;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 12px rgba(34, 197, 94, 0.85);
        transition: opacity 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
        will-change: transform;
    }

    .custom-cursor-follower {
        position: fixed;
        top: 0;
        left: 0;
        width: 38px;
        height: 38px;
        border: 1.5px solid rgba(34, 197, 94, 0.65);
        background: rgba(34, 197, 94, 0.04);
        border-radius: 50%;
        pointer-events: none;
        z-index: 999998;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 16px rgba(34, 197, 94, 0.22);
        transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                    height 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                    border-color 0.4s ease, 
                    background-color 0.4s ease, 
                    box-shadow 0.4s ease, 
                    opacity 0.4s ease;
        will-change: transform, width, height;
    }

    /* Effet au survol des éléments interactifs */
    body.cursor-hover .custom-cursor-follower {
        width: 58px;
        height: 58px;
        border-color: #22c55e;
        background: rgba(34, 197, 94, 0.12);
        box-shadow: 0 0 28px rgba(34, 197, 94, 0.45);
    }

    body.cursor-hover .custom-cursor-dot {
        transform: scale(0.5);
        background: #eab308;
        box-shadow: 0 0 14px #eab308;
    }

    /* Effet au clic */
    body.cursor-active .custom-cursor-follower {
        width: 28px;
        height: 28px;
        background: rgba(34, 197, 94, 0.28);
        border-color: #15803d;
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.65);
    }

    body.cursor-hidden .custom-cursor-dot,
    body.cursor-hidden .custom-cursor-follower {
        opacity: 0;
    }
}

@media (hover: none), (pointer: coarse) {
    .custom-cursor-dot,
    .custom-cursor-follower {
        display: none !important;
    }
}




