/* ============================================================
   SYSCOFIE CONSULTING - STYLE CSS UNIFIÉ
   Version: 2.0
   Couleurs: Bleu marine #1A2A6C, Bleu clair #3B82F6, Jaune or #FCD34D, Blanc #FFFFFF
   ============================================================ */

/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background: #F8FAFC;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   SECTION TAG
   ============================================================ */
.section-tag {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* TOP BAR */
.top-bar {
    background: #0F172A;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 30px;
    align-items: center;
}

.top-bar-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.top-bar-contact span i {
    color: #3B82F6;
    font-size: 0.75rem;
}

.top-bar-contact span a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.top-bar-contact span a:hover {
    color: #3B82F6;
}

.top-bar-social {
    display: flex;
    gap: 12px;
}

.top-bar-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.top-bar-social a:hover {
    background: #3B82F6;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* NAV BAR */
.nav-bar {
    background: #1A2A6C;
    padding: 0;
}

.nav-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-s {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #FCD34D, #FFD700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: #1A2A6C;
    transition: all 0.5s ease;
    box-shadow: 0 4px 15px rgba(252, 211, 77, 0.3);
}

.logo-s:hover {
    transform: rotateY(360deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
    color: #FCD34D;
    background: rgba(252, 211, 77, 0.1);
}

.nav-menu>li>a i {
    font-size: 0.6rem;
    transition: transform 0.3s;
}

.nav-menu>li:hover>a i {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #1A2A6C;
    min-width: 220px;
    padding: 8px 0;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    color: #FCD34D;
    background: rgba(252, 211, 77, 0.05);
    border-left-color: #FCD34D;
}

/* Bouton Contact */
.btn-contact {
    background: #FCD34D !important;
    color: #1A2A6C !important;
    padding: 8px 22px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.btn-contact:hover {
    background: #FFD700 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 211, 77, 0.3);
}

/* Menu Toggle Mobile */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #FFFFFF;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.menu-toggle:hover {
    color: #FCD34D;
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #FFFFFF;
    color: #1A2A6C;
}

.btn-primary:hover {
    background: #F8FAFC;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: #FCD34D;
    color: #1A2A6C;
}

.btn-secondary:hover {
    background: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(252, 211, 77, 0.3);
}

.btn-outline-light {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: #FFFFFF;
}

.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

/* ============================================================
   HERO - PAGE ACCUEIL (Aligné avec le header)
   ============================================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1A2A6C 0%, #2D4373 50%, #1A2A6C 100%);
    overflow: hidden;
    padding: 60px 0 80px;
    /* ⚠️ SUPPRIMÉ : margin-top: -83px; min-height: 100vh; padding-top: 160px; */
}

/* Conteneur : MÊME largeur que le header (1180px) */
.hero .container {
    width: min(1180px, 90%);
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 3;
}

/* Contenu : 2 colonnes côte à côte */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Titre */
.scfHeroTitle {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    margin: 0 0 20px 0;
    padding: 0;
    letter-spacing: normal;
}

/* Sous-titre */
.scfHeroSubtitle {
    display: block;
    width: 100%;
    text-align: left;
    margin: 0 0 30px 0;
    padding: 0;
}

.scfHeroHighlight {
    display: inline;
    background: linear-gradient(135deg, #FCD34D, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Boutons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: #FCD34D;
    color: #1A2A6C;
    border: none;
    box-shadow: 0 6px 20px rgba(252, 211, 77, 0.35);
}

.hero-buttons .btn-primary:hover {
    background: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(252, 211, 77, 0.5);
}

.hero-buttons .btn-outline-light {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-buttons .btn-outline-light:hover {
    background: #FFFFFF;
    color: #1A2A6C;
    border-color: #FFFFFF;
}

/* Statistiques */
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stats > div {
    display: flex;
    flex-direction: column;
}

.hero-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FCD34D;
    line-height: 1;
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* ============================================================
   COLONNE IMAGE (DROITE) - Alignée avec le bord du header
   ============================================================ */
.hero-image-col {
    display: flex;
    align-items: center;
    justify-content: flex-end;   /* ← Collé à droite */
    padding: 0;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;   /* ← Collé à droite */
    align-items: center;
    width: 100%;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    margin: 0;
    /* ⚠️ SUPPRIMÉ : transform: translateX(-80px) */
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ============================================================
   SHAPES + PARTICULES
   ============================================================ */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(252, 211, 77, 0.03);
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .scfHeroTitle,
    .scfHeroSubtitle {
        text-align: center;
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }

    .hero-image,
    .hero-image-col {
        justify-content: center;
    }

    .scfHeroTitle {
        font-size: 2.5rem;
    }
}

@media (max-width: 650px) {
    .scfHeroTitle {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stats .stat-number {
        font-size: 1.4rem;
    }
}
/* ============================================================
   PARTENAIRES
   ============================================================ */
.partners {
    padding: 60px 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
}

.partners-header {
    text-align: center;
    margin-bottom: 40px;
}

.partners-header .section-tag {
    margin-bottom: 8px;
}

.partners-header p {
    font-size: 1rem;
    color: #6B7280;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
}

.partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.partner-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-item img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    padding: 80px 0;
    background: #F8FAFC;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header .section-tag {
    margin-bottom: 10px;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A2A6C;
    line-height: 1.2;
    margin-bottom: 12px;
}

.services-header p {
    font-size: 1.05rem;
    color: #6B7280;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: #FFFFFF;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 42, 108, 0.1);
    border-color: rgba(59, 130, 246, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 42, 108, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
    color: #1A2A6C;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: #1A2A6C;
    color: #FCD34D;
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-link {
    color: #3B82F6;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.service-link:hover {
    color: #1A2A6C;
    gap: 12px;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   STRATÉGIE
   ============================================================ */
.strategy-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.strategy-header {
    text-align: center;
    margin-bottom: 50px;
}

.strategy-header .section-tag {
    margin-bottom: 10px;
}

.strategy-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A2A6C;
    line-height: 1.2;
}

.strategy-header h2 .highlight {
    color: #3B82F6;
    position: relative;
}

.strategy-header p {
    font-size: 1.05rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.strategy-card {
    background: #F8FAFC;
    padding: 30px 25px;
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.strategy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 42, 108, 0.08);
    border-color: rgba(59, 130, 246, 0.1);
}

.strategy-number {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.strategy-number span {
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(26, 42, 108, 0.08);
    line-height: 1;
}

.strategy-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(26, 42, 108, 0.15), transparent);
}

.strategy-icon {
    width: 50px;
    height: 50px;
    background: rgba(26, 42, 108, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #1A2A6C;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.strategy-card:hover .strategy-icon {
    background: #1A2A6C;
    color: #FCD34D;
}

.strategy-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 10px;
}

.strategy-card p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 15px;
}

.strategy-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #3B82F6;
    background: rgba(59, 130, 246, 0.06);
    padding: 4px 14px;
    border-radius: 50px;
}

.strategy-cta {
    text-align: center;
    margin-top: 40px;
}

/* ============================================================
   STATISTIQUES
   ============================================================ */
.stats {
    padding: 70px 0;
    background: linear-gradient(135deg, #0F172A, #1A2A6C);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #FCD34D, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.testimonials {
    padding: 80px 0;
    background: #F8FAFC;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header .section-tag {
    margin-bottom: 10px;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A2A6C;
    line-height: 1.2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.testimonial-stars {
    color: #FCD34D;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-author strong {
    display: block;
    font-weight: 700;
    color: #1A2A6C;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #6B7280;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A2A6C, #2D4373);
}

.cta-final-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-final-text .cta-final-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(252, 211, 77, 0.15);
    color: #FCD34D;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.cta-final-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 15px;
}

.cta-final-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 480px;
}

.cta-final-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-final-image img {
    width: 100%;
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #0F172A;
    color: #FFFFFF;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.logo-s-small {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #FCD34D, #FFD700);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    color: #1A2A6C;
}

.footer-about .footer-logo span {
    font-size: 1rem;
    font-weight: 700;
}

.footer-about p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    background: #3B82F6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.footer-links ul li {
    padding: 5px 0;
}

.footer-links ul li a {
    font-size: 0.85rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: #FCD34D;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-contact ul li i {
    color: #3B82F6;
    width: 18px;
}

.footer-contact ul li a {
    color: #FFFFFF;
    transition: color 0.3s;
}

.footer-contact ul li a:hover {
    color: #3B82F6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    opacity: 0.4;
}

/* ============================================================
   PAGE À PROPOS - STYLES SPÉCIFIQUES
   ============================================================ */

/* Page Title */
.page-title {
    background: linear-gradient(135deg, #1A2A6C, #2D4373);
    padding: 120px 0 60px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 0;
    padding-top: 180px;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.page-title h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.page-title p {
    font-size: 1.15rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   ABOUT STORY — GRILLE 2 COLONNES
   ============================================================ */
.about-story {
    padding: 80px 0;
    background: #FFFFFF;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-col {
    min-width: 0;
}

.about-content .about-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1A2A6C;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-content .about-description {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #4B5563;
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Anciennes classes (compatibilité) */
.about-content .section-tag {
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1A2A6C;
    margin-bottom: 20px;
}

.about-content p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-content p strong {
    color: #1A2A6C;
}

.about-stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #E5E7EB;
}

.about-stats-mini div {
    text-align: center;
}

.about-stats-mini .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1A2A6C;
}

.about-stats-mini .label {
    font-size: 0.85rem;
    color: #6B7280;
}

.about-image {
    position: relative;
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #1A2A6C;
    color: #FFFFFF;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(26, 42, 108, 0.3);
}

.about-image-badge i {
    font-size: 1.5rem;
    color: #FCD34D;
}

.about-image-badge span {
    font-weight: 600;
}

/* Mission Vision Valeurs */
.mission-vision {
    padding: 80px 0;
    background: #F8FAFC;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(26, 42, 108, 0.06);
    transition: all 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(26, 42, 108, 0.08);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 42, 108, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1A2A6C;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 12px;
}

.mv-card p {
    color: #4B5563;
    line-height: 1.8;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: #4B5563;
    line-height: 1.6;
}

.values-list li i {
    color: #FCD34D;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Recognition */
.recognition {
    padding: 80px 0;
    background: #FFFFFF;
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.recognition-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.recognition-item:hover {
    border-color: #1A2A6C;
    box-shadow: 0 5px 25px rgba(26, 42, 108, 0.06);
}

.recognition-icon {
    width: 50px;
    height: 50px;
    background: rgba(26, 42, 108, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    color: #1A2A6C;
}

.recognition-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 8px;
}

.recognition-item p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #F8FAFC;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 42, 108, 0.08);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 18px;
    border: 4px solid #FCD34D;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A2A6C;
}

.team-role {
    display: block;
    font-size: 0.85rem;
    color: #3B82F6;
    font-weight: 600;
    margin: 5px 0 10px;
}

.team-card p {
    font-size: 0.9rem;
    color: #6B7280;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(26, 42, 108, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A2A6C;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #1A2A6C;
    color: #FCD34D;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #3B82F6;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(26, 42, 108, 0.02);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1A2A6C;
}

.faq-toggle {
    font-size: 1.2rem;
    color: #1A2A6C;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #4B5563;
    line-height: 1.8;
}

.faq-answer p strong {
    color: #1A2A6C;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image img {
        max-width: 350px;
    }

    .hero-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -10px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-final-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-final-text p {
        margin: 0 auto 30px;
    }

    .cta-final-buttons {
        justify-content: center;
    }

    .cta-final-image img {
        max-width: 300px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content .about-title {
        font-size: 2.2rem;
    }

    .about-content .about-description {
        font-size: 1.15rem;
    }

    .about-image img {
        max-height: 350px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .recognition-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        background: #1A2A6C;
        padding: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
    }

    .nav-menu>li>a {
        padding: 12px 16px;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding-left: 20px;
        display: none;
        background: rgba(255, 255, 255, 0.03);
    }

    .dropdown:hover .dropdown-menu {
        transform: none;
        display: block;
    }

    .btn-contact {
        text-align: center;
    }

    .logo-name {
        font-size: 1rem;
    }

    .logo-s {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-stats .stat-number {
        font-size: 1.4rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .strategy-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item .stat-number {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-stats-mini {
        grid-template-columns: 1fr;
    }

    .about-image-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 15px;
        justify-content: center;
    }

    .recognition-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .page-title h1 {
        font-size: 2rem;
    }

    .cta-final-text h2 {
        font-size: 1.8rem;
    }

    .cta-final-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-final-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .services-header h2,
    .strategy-header h2,
    .testimonials-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .logo-sub {
        display: none;
    }

    .nav-bar-inner {
        height: 65px;
    }

    .nav {
        top: 65px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-card {
        padding: 12px 18px;
    }

    .hero-card i {
        font-size: 1.5rem;
    }

    .hero-card strong {
        font-size: 0.8rem;
    }

    .hero-card span {
        font-size: 0.7rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .strategy-card {
        padding: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .mv-card {
        padding: 25px 20px;
    }

    .team-card {
        padding: 20px;
    }

    .team-image {
        width: 100px;
        height: 100px;
    }
}

/* ============================================================
   PAGE BLOG - STYLES SPÉCIFIQUES
   ============================================================ */

/* ----- BLOG SECTION ----- */
.blog-section {
    padding: 60px 0 80px;
    background: #F8FAFC;
}

/* ----- BARRE DE RECHERCHE ----- */
.blog-search {
    margin-bottom: 40px;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.search-wrapper:focus-within {
    border-color: #3B82F6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.search-icon {
    padding: 0 15px 0 18px;
    color: #9CA3AF;
    font-size: 0.9rem;
}

.search-input {
    flex: 1;
    padding: 14px 0;
    border: none;
    outline: none;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: #1F2937;
    background: transparent;
}

.search-input::placeholder {
    color: #9CA3AF;
}

.search-btn {
    padding: 14px 28px;
    background: #1A2A6C;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.search-btn:hover {
    background: #2D4373;
}

/* ----- CATÉGORIES ----- */
.blog-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 45px;
}

.category-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid #E5E7EB;
    background: #FFFFFF;
    color: #6B7280;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-btn:hover {
    border-color: #3B82F6;
    color: #1A2A6C;
    transform: translateY(-2px);
}

.category-btn.active {
    background: #1A2A6C;
    border-color: #1A2A6C;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(26, 42, 108, 0.25);
}

.category-btn i {
    font-size: 0.9rem;
}

/* ----- GRID DES ARTICLES ----- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* ----- CARTE ARTICLE ----- */
.blog-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 42, 108, 0.08);
    border-color: rgba(59, 130, 246, 0.15);
}

.blog-card-icon {
    padding: 30px 25px 15px;
    font-size: 2.5rem;
    color: #1A2A6C;
}

.blog-card-icon i {
    background: rgba(26, 42, 108, 0.06);
    padding: 15px;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.blog-card:hover .blog-card-icon i {
    background: #1A2A6C;
    color: #FCD34D;
}

.blog-card-content {
    padding: 0 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.blog-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: #3B82F6;
    background: rgba(59, 130, 246, 0.08);
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-date {
    font-size: 0.75rem;
    color: #9CA3AF;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-content h3 {
    color: #3B82F6;
}

.blog-card-content p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 15px;
    flex: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #F3F4F6;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-author {
    font-size: 0.8rem;
    color: #6B7280;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-readmore {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1A2A6C;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-readmore:hover {
    color: #3B82F6;
    gap: 12px;
}

.blog-readmore i {
    font-size: 0.7rem;
}

/* ----- PAGINATION ----- */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
    background: #FFFFFF;
    color: #6B7280;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover {
    border-color: #1A2A6C;
    color: #1A2A6C;
    transform: translateY(-2px);
}

.pagination-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination-num {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
    background: #FFFFFF;
    color: #6B7280;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.pagination-num:hover {
    border-color: #1A2A6C;
    color: #1A2A6C;
}

.pagination-num.active {
    background: #1A2A6C;
    border-color: #1A2A6C;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(26, 42, 108, 0.2);
}

.pagination-dots {
    color: #9CA3AF;
    padding: 0 5px;
}

/* ----- NEWSLETTER ----- */
.newsletter {
    padding: 70px 0;
    background: linear-gradient(135deg, #1A2A6C, #2D4373);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: #FFFFFF;
}

.newsletter-icon {
    font-size: 3rem;
    color: #FCD34D;
    margin-bottom: 15px;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.newsletter-content p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 25px;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: #FCD34D;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input-group i {
    padding: 0 15px 0 18px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.newsletter-input-group input {
    flex: 1;
    padding: 16px 0;
    border: none;
    outline: none;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    background: transparent;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-group button {
    padding: 16px 30px;
    background: #FCD34D;
    color: #1A2A6C;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.newsletter-input-group button:hover {
    background: #FFD700;
    transform: scale(1.02);
}

/* ============================================================
   RESPONSIVE BLOG
   ============================================================ */

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .search-wrapper {
        flex-wrap: wrap;
        border-radius: 12px;
    }

    .search-input {
        width: 100%;
        padding: 14px 18px;
        order: 1;
    }

    .search-icon {
        display: none;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
        order: 2;
        border-radius: 0 0 12px 12px;
    }

    .blog-categories {
        gap: 8px;
    }

    .category-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .blog-card-content h3 {
        font-size: 1rem;
    }

    .blog-pagination {
        gap: 10px;
    }

    .pagination-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .pagination-num {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }

    .newsletter-content h2 {
        font-size: 1.5rem;
    }

    .newsletter-input-group {
        flex-wrap: wrap;
        border-radius: 12px;
    }

    .newsletter-input-group i {
        display: none;
    }

    .newsletter-input-group input {
        width: 100%;
        padding: 14px 18px;
        order: 1;
        color: #FFFFFF;
    }

    .newsletter-input-group button {
        width: 100%;
        justify-content: center;
        order: 2;
        border-radius: 0 0 12px 12px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 40px 0 60px;
    }

    .blog-card-icon {
        padding: 20px 20px 10px;
        font-size: 2rem;
    }

    .blog-card-content {
        padding: 0 20px 20px;
    }

    .blog-meta {
        gap: 10px;
    }

    .blog-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    .pagination-numbers .pagination-num:not(.active):not(:first-child):not(:last-child) {
        display: none;
    }

    .pagination-dots {
        display: none;
    }
}

/* ============================================================
   SYSCOFIE CONSULTING - PAGE DÉPARTEMENTS
   Version sobre et élégante
   Palette : Bleu Marine (#1A2A6C) + Jaune Doré (#FCD34D) + Blanc
========================================================= */

/* ============================================================
   SECTION PRINCIPALE
========================================================= */
.departements-section {
    padding: 60px 0 80px;
    background: #F8FAFC;
}

.departements-section .container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

/* ============================================================
   INTRO
========================================================= */
.departements-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.departements-intro .section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(252, 211, 77, 0.25);
    color: #1A2A6C;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.departements-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A2A6C;
    line-height: 1.2;
    margin-bottom: 12px;
}

.departements-intro h2 .highlight {
    color: #1A2A6C;
}

.departements-intro p {
    font-size: 1.05rem;
    color: #566176;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   GRILLE : 2 COLONNES
========================================================= */
.departements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ============================================================
   CARTE DÉPARTEMENT
========================================================= */
.dept-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 18px;
    padding: 30px 28px 28px;
    box-shadow: 0 6px 25px rgba(26, 42, 108, 0.06);
    border: 1px solid #E6EAF2;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Demi-cercle jaune très léger en haut à droite */
.dept-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 110px;
    background: #FCD34D;
    opacity: 0.15;
    border-radius: 0 0 0 100%;
    transition: all 0.4s ease;
    z-index: 0;
}

.dept-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(26, 42, 108, 0.12);
    border-color: rgba(252, 211, 77, 0.4);
}

.dept-card:hover::before {
    opacity: 0.25;
    width: 130px;
    height: 130px;
}

/* ============================================================
   EN-TÊTE (Image + Titre)
========================================================= */
.dept-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.dept-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: #FCD34D;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1A2A6C;
    transition: all 0.4s ease;
    overflow: hidden;
    flex-shrink: 0;
}

.dept-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 12px;
}

.dept-card:hover .dept-icon {
    background: #1A2A6C;
    color: #FCD34D;
    transform: scale(1.05);
}

.dept-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1A2A6C;
    margin: 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   DESCRIPTION
========================================================= */
.dept-card > p {
    position: relative;
    z-index: 1;
    font-size: 0.88rem !important;
    color: #566176 !important;
    line-height: 1.6 !important;
    margin: 0 0 20px !important;
    padding-bottom: 15px;
    border-bottom: 1px solid #E6EAF2;
}

/* ============================================================
   2 COLONNES INTERNES : MISSIONS | SERVICES
========================================================= */
.dept-columns {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 22px;
    flex-grow: 1;
}

.dept-col {
    display: flex;
    flex-direction: column;
}

/* Titre des colonnes : sobre, bleu marine avec barre jaune */
.dept-col-title {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1A2A6C;
    margin: 0 0 12px 0;
    padding: 0 0 8px 0;
    border-bottom: 2px solid #FCD34D;
    display: inline-block;
    align-self: flex-start;
}

/* Liste des items */
.dept-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dept-col-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    color: #374151;
    padding: 4px 0;
    line-height: 1.5;
}

.dept-col-list li i {
    color: #1A2A6C;
    font-size: 0.7rem;
    margin-top: 5px;
    flex-shrink: 0;
}

/* ============================================================
   BOUTON DÉCOUVRIR
========================================================= */
.dept-btn {
    position: relative;
    z-index: 1;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 20px !important;
    background: #FCD34D !important;
    color: #1A2A6C !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(252, 211, 77, 0.3);
}

.dept-btn:hover {
    background: #1A2A6C !important;
    color: #FCD34D !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 42, 108, 0.3);
}

.dept-btn i {
    transition: transform 0.3s ease;
}

.dept-btn:hover i {
    transform: translateX(5px);
}

/* ============================================================
   SECTION VALEURS
========================================================= */
.dept-values {
    padding: 80px 0;
    background: #FFFFFF;
}

.dept-values .container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

.dept-values .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.dept-values .section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(252, 211, 77, 0.25);
    color: #1A2A6C;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.dept-values h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #1A2A6C;
    line-height: 1.2;
    margin-bottom: 12px;
}

.dept-values h2 .highlight {
    color: #1A2A6C;
}

/* Grille des valeurs */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
    padding: 35px 25px;
    border-radius: 16px;
    background: #F8FAFC;
    transition: all 0.4s ease;
    border: 1px solid #E6EAF2;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(26, 42, 108, 0.10);
    border-color: rgba(252, 211, 77, 0.5);
}

.value-icon {
    width: 65px;
    height: 65px;
    background: #FCD34D;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.6rem;
    color: #1A2A6C;
    transition: all 0.4s ease;
}

.value-item:hover .value-icon {
    background: #1A2A6C;
    color: #FCD34D;
    transform: rotate(-5deg) scale(1.05);
}

.value-item h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1A2A6C;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-item p {
    font-size: 0.88rem;
    color: #566176;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   SECTION POURQUOI NOUS CHOISIR
========================================================= */
.dept-why {
    padding: 80px 0;
    background: #F8FAFC;
}

.dept-why .container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.why-text .section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(252, 211, 77, 0.25);
    color: #1A2A6C;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.why-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1A2A6C;
    line-height: 1.2;
    margin-bottom: 20px;
}

.why-text h2 .highlight {
    color: #1A2A6C;
}

.why-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.why-text ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #374151;
    padding: 8px 0;
    line-height: 1.5;
}

.why-text ul li i {
    color: #1A2A6C;
    font-size: 1rem;
    flex-shrink: 0;
}

.why-text .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px !important;
    background: #FCD34D !important;
    color: #1A2A6C !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(252, 211, 77, 0.3);
}

.why-text .btn-primary:hover {
    background: #1A2A6C !important;
    color: #FCD34D !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 42, 108, 0.3);
}

/* ============================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {
    .departements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .departements-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .departements-intro h2 {
        font-size: 1.9rem;
    }

    .why-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .why-text ul {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 25px;
    }
}

@media (max-width: 768px) {
    .departements-intro h2 {
        font-size: 1.8rem;
    }

    .dept-card {
        padding: 25px 22px 22px;
    }

    .dept-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 1.3rem;
    }

    .dept-header h3 {
        font-size: 1rem;
    }

    .dept-card::before {
        width: 80px;
        height: 80px;
    }

    .dept-values h2,
    .why-text h2 {
        font-size: 1.6rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .value-item {
        padding: 28px 22px;
    }
}

@media (max-width: 650px) {
    .dept-columns {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .departements-section {
        padding: 40px 0 60px;
    }

    .departements-intro h2 {
        font-size: 1.5rem;
    }

    .dept-card {
        padding: 22px 18px 20px;
    }

    .dept-col-list li {
        font-size: 0.82rem;
    }

    .dept-btn {
        font-size: 0.8rem !important;
        padding: 11px 16px !important;
    }
}

/* ============================================================
   PAGE CONTACT - STYLES SPÉCIFIQUES
   ============================================================ */

/* ----- SECTION CONTACT ----- */
.contact-section {
    padding: 60px 0 80px;
    background: #F8FAFC;
}

.contact-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-intro .section-tag {
    margin-bottom: 10px;
}

.contact-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A2A6C;
    line-height: 1.2;
    margin-bottom: 12px;
}

.contact-intro h2 .highlight {
    color: #3B82F6;
}

.contact-intro p {
    font-size: 1.05rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

/* ----- GRILLE CONTACT ----- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* ----- FORMULAIRE ----- */
.contact-form-wrapper {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.contact-form-header i {
    font-size: 1.5rem;
    color: #1A2A6C;
    background: rgba(26, 42, 108, 0.06);
    padding: 12px;
    border-radius: 12px;
}

.contact-form-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A2A6C;
}

/* Formulaires */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 6px;
}

.contact-form .form-group label i {
    color: #3B82F6;
    margin-right: 6px;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: #1F2937;
    transition: all 0.3s ease;
    background: #F8FAFC;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: #3B82F6;
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.08);
    background: #FFFFFF;
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
    margin-top: 5px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 42, 108, 0.2);
}

/* ----- INFOS CONTACT ----- */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #FFFFFF;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
    border-color: rgba(59, 130, 246, 0.15);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(26, 42, 108, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #1A2A6C;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    background: #1A2A6C;
    color: #FCD34D;
}

.contact-info-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.95rem;
    color: #4B5563;
}

.contact-info-item p a {
    color: #1A2A6C;
    transition: color 0.3s;
}

.contact-info-item p a:hover {
    color: #3B82F6;
}

.contact-info-item .info-sub {
    font-size: 0.8rem;
    color: #9CA3AF;
}

/* ----- AGENCES ----- */
.agences-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.agences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.agence-card {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.agence-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 42, 108, 0.08);
    border-color: rgba(59, 130, 246, 0.1);
}

.agence-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #FCD34D;
    color: #1A2A6C;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.agence-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 42, 108, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.6rem;
    color: #1A2A6C;
    transition: all 0.4s ease;
}

.agence-card:hover .agence-icon {
    background: #1A2A6C;
    color: #FCD34D;
}

.agence-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 15px;
}

.agence-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #4B5563;
    padding: 5px 0;
}

.agence-info p i {
    color: #3B82F6;
    width: 18px;
}

.agence-info p a {
    color: #4B5563;
    transition: color 0.3s;
}

.agence-info p a:hover {
    color: #3B82F6;
}

.agence-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1A2A6C;
    background: rgba(26, 42, 108, 0.06);
    transition: all 0.3s ease;
}

.agence-map:hover {
    background: #1A2A6C;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ----- WHATSAPP SECTION ----- */
.whatsapp-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #0F172A, #1A2A6C);
}

.whatsapp-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    color: #FFFFFF;
}

.whatsapp-icon {
    font-size: 4rem;
    color: #25D366;
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-text h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.whatsapp-text h2 .highlight {
    color: #FCD34D;
}

.whatsapp-text p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* ----- FAQ CONTACT ----- */
.faq-contact-section {
    padding: 80px 0;
    background: #F8FAFC;
}

.faq-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-contact-item {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.faq-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 42, 108, 0.06);
}

.faq-contact-question {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.faq-contact-question i {
    font-size: 1.2rem;
    color: #3B82F6;
    flex-shrink: 0;
}

.faq-contact-question h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1A2A6C;
}

.faq-contact-answer p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.7;
    padding-left: 36px;
}

.faq-contact-answer p strong {
    color: #1A2A6C;
}

/* ============================================================
   RESPONSIVE CONTACT
   ============================================================ */

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .agences-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-contact-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .whatsapp-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-text h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-intro h2 {
        font-size: 1.8rem;
    }

    .agences-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-contact-item {
        padding: 20px;
    }

    .faq-contact-question h3 {
        font-size: 0.9rem;
    }

    .faq-contact-answer p {
        padding-left: 0;
        font-size: 0.85rem;
    }

    .whatsapp-icon {
        font-size: 3rem;
    }

    .whatsapp-text h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0 60px;
    }

    .contact-form-wrapper {
        padding: 20px 15px;
    }

    .contact-form-header h3 {
        font-size: 1.1rem;
    }

    .contact-info-item {
        padding: 18px 15px;
    }

    .contact-info-item h4 {
        font-size: 0.8rem;
    }

    .contact-info-item p {
        font-size: 0.85rem;
    }

    .agence-card {
        padding: 25px 20px;
    }
}

/* ============================================================
   PAGE SERVICES - STYLES SPÉCIFIQUES
   ============================================================ */
/* ============================================================
   SECTION SERVICES - CSS COMPLET
   Design inspiré de l'ancien site
   Couleurs : Jaune Doré (#FCD34D) + Bleu Marine (#1A2A6C)
   ============================================================ */

/* ----- SECTION PRINCIPALE ----- */
.services-page-section {
    padding: 60px 0 80px;
    background: #F8FAFC;
}

.services-page-intro {
    text-align: center;
    margin-bottom: 40px;
}

.services-page-intro .section-tag {
    margin-bottom: 10px;
}

.services-page-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A2A6C;
    line-height: 1.2;
    margin-bottom: 12px;
}

/* "sur mesure" en BLEU MARINE (même couleur que les titres des cartes) */
.services-page-intro h2 .highlight {
    color: #1A2A6C;
}

.services-page-intro p {
    font-size: 1.05rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   FILTRES
   ============================================================ */
.services-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 50px;
    border: 2px solid #E5E7EB;
    background: #FFFFFF;
    color: #6B7280;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: #FCD34D;
    color: #1A2A6C;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #1A2A6C;
    border-color: #1A2A6C;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(26, 42, 108, 0.25);
}

/* ============================================================
   GRILLE : 2 COLONNES CENTRÉES
   ============================================================ */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
}

/* ============================================================
   CARTE SERVICE - DESIGN ANCIEN SITE
   ============================================================ */
.service-card,
.service-page-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 35px 30px 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

/* --- Demi-cercle décoratif dans le coin supérieur droit --- */
.service-card::before,
.service-page-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: #FCD34D;
    border-radius: 0 0 0 100%;
    opacity: 0.85;
    transition: all 0.4s ease;
    z-index: 0;
}

/* --- Effet de survol : la carte se soulève --- */
.service-card:hover,
.service-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(26, 42, 108, 0.15);
    border-color: rgba(252, 211, 77, 0.5);
}

/* --- Le demi-cercle s'agrandit au survol --- */
.service-card:hover::before,
.service-page-card:hover::before {
    width: 130px;
    height: 130px;
    opacity: 1;
}

/* --- Carré jaune en haut à gauche (remplace l'icône) --- */
.service-icon,
.service-page-icon {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: #FCD34D;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #1A2A6C;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(252, 211, 77, 0.3);
}

/* --- Au survol : le carré devient bleu marine --- */
.service-card:hover .service-icon,
.service-page-card:hover .service-icon,
.service-page-card:hover .service-page-icon {
    background: #1A2A6C;
    color: #FCD34D;
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 0 6px 18px rgba(26, 42, 108, 0.3);
}

/* --- Contenu --- */
.service-card-inner,
.service-page-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* --- Titre en MAJUSCULES bleu marine --- */
.service-card .title,
.service-page-content h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1A2A6C;
    margin-bottom: 15px;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* --- Description --- */
.service-card .description,
.service-page-content p {
    font-size: 0.88rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* --- Lien "En savoir plus" --- */
.service-card .learn-more,
.service-page-content .learn-more {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1A2A6C;
    text-decoration: none;
    border-bottom: 2px solid #1A2A6C;
    padding-bottom: 2px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.service-card:hover .learn-more,
.service-page-card:hover .learn-more {
    color: #D97706;
    border-bottom-color: #FCD34D;
    transform: translateX(4px);
}

/* --- Badge département (si présent) --- */
.service-dept-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1A2A6C;
    background: rgba(252, 211, 77, 0.25);
    padding: 4px 14px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.service-dept-tag i {
    font-size: 0.7rem;
}

/* ============================================================
   MESSAGE AUCUN SERVICE
   ============================================================ */
.no-services {
    text-align: center;
    padding: 60px 20px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 2px dashed #E5E7EB;
    grid-column: 1 / -1;
}

.no-services i {
    font-size: 3rem;
    color: #9CA3AF;
    margin-bottom: 15px;
}

.no-services h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.no-services p {
    color: #6B7280;
}

/* ============================================================
   PAGINATION - PARFAITEMENT CENTRÉE
   ============================================================ */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 30px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    width: auto;
}

.page-item {
    display: inline-block;
}

.page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    color: #1A2A6C;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-item .page-link:hover {
    background: #FCD34D;
    border-color: #FCD34D;
    color: #1A2A6C;
}

.page-item.active .page-link {
    background: #1A2A6C;
    border-color: #1A2A6C;
    color: #FFFFFF;
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
/* ============================================================
   CORRECTIF : Centrer la pagination sur la page entière
========================================================= */

/* Le conteneur racine de la section services */
.services-page-section {
    position: relative;
}

/* La pagination : pleine largeur, centrée sur la page */
.services-page-section .pagination-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 50px auto 30px !important;
    padding: 0 20px !important;
    position: relative;
    left: 0;
    right: 0;
}

/* La liste : centrée */
.services-page-section .pagination-wrapper .pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 auto !important;
    padding: 0;
    list-style: none;
    width: auto !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
    .services-page-grid {
        max-width: 100%;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .services-page-intro h2 {
        font-size: 1.8rem;
    }

    .service-card,
    .service-page-card {
        padding: 28px 22px 25px;
        min-height: auto;
    }

    .service-card::before,
    .service-page-card::before {
        width: 80px;
        height: 80px;
    }

    .service-icon,
    .service-page-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .service-card .title,
    .service-page-content h3 {
        font-size: 1rem;
    }

    .service-card .description,
    .service-page-content p {
        font-size: 0.85rem;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .services-page-section {
        padding: 40px 0 60px;
    }

    .services-page-intro h2 {
        font-size: 1.5rem;
    }

    .service-card,
    .service-page-card {
        padding: 22px 18px 20px;
    }

    .service-card::before,
    .service-page-card::before {
        width: 70px;
        height: 70px;
    }

    .service-icon,
    .service-page-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.3rem;
    }

    .service-card .title,
    .service-page-content h3 {
        font-size: 0.95rem;
    }

    .service-card .description,
    .service-page-content p {
        font-size: 0.82rem;
    }

    .service-card .learn-more,
    .service-page-content .learn-more {
        font-size: 0.82rem;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .services-filters {
        gap: 5px;
    }
}


/* ============================================================
   SYSCOFIE CONSULTING - PAGE GALERIE
   CSS COMPLET - Adapté au fichier Twig existant
   Design premium : titre sur l'image, badge jaune, miniatures
========================================================= */

/* ----- SECTION PRINCIPALE ----- */
.galerie-grid-section {
    padding: 40px 0 80px;
    background: #F8FAFC;
}

.galerie-grid-section .container {
    width: min(1180px, 90%);
    margin: 0 auto;
}

/* ============================================================
   GRILLE : 3 COLONNES
========================================================= */
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ============================================================
   CARTE GALERIE
========================================================= */
.galerie-item {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(26, 60, 110, 0.08);
    border: 1px solid #e6eaf2;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.galerie-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(26, 60, 110, 0.18);
    border-color: rgba(252, 211, 77, 0.5);
}

/* ============================================================
   IMAGE PRINCIPALE (280px) AVEC OVERLAY
========================================================= */
.galerie-item-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #1A2A6C, #0F2A52);
}

.galerie-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.7s ease;
}

.galerie-item:hover .galerie-item-image img {
    transform: scale(1.1);
}

/* Dégradé sombre en bas de l'image pour la lisibilité du texte */
.galerie-item-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 65%;
    background: linear-gradient(to top,
        rgba(15, 42, 82, 0.95) 0%,
        rgba(15, 42, 82, 0.7) 40%,
        transparent 100%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.galerie-item:hover .galerie-item-image::after {
    opacity: 0.95;
}

/* Placeholder si pas d'image */
.galerie-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FCD34D;
    font-size: 4rem;
    background: linear-gradient(135deg, #1A2A6C, #0F2A52);
}

/* ============================================================
   BADGE JAUNE FLOTTANT SUR L'IMAGE
========================================================= */
.galerie-item-category {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: #FCD34D;
    color: #0F2A52;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(252, 211, 77, 0.4);
    transition: all 0.3s ease;
}

.galerie-item:hover .galerie-item-category {
    background: #FFFFFF;
    transform: translateY(-2px) scale(1.05);
}

/* ============================================================
   CONTENU DE LA CARTE
========================================================= */
.galerie-item-content {
    padding: 25px 25px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

/* --- TITRE positionné sur l'image --- */
.galerie-item-content h3 {
    position: absolute;
    bottom: calc(100% + 65px);
    left: 25px;
    right: 25px;
    z-index: 2;
    margin: 0;
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.galerie-item:hover .galerie-item-content h3 {
    transform: translateY(-3px);
}

/* Barre jaune décorative sous le titre */
.galerie-item-content h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: #FCD34D;
    border-radius: 2px;
    margin-top: 10px;
    transition: width 0.4s ease;
}

.galerie-item:hover .galerie-item-content h3::after {
    width: 80px;
}

/* --- DATE + LIEU sur l'image (bas) --- */
.galerie-item-footer {
    position: absolute;
    bottom: calc(100% + 20px);
    left: 25px;
    right: 25px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 600;
}

.galerie-item-footer span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.galerie-item-footer span i {
    color: #FCD34D;
    font-size: 0.85rem;
}

/* --- DESCRIPTION --- */
.galerie-item-content > p {
    font-size: 0.9rem;
    color: #566176;
    line-height: 1.7;
    margin: 0 0 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   MINIATURES (images enfants) - 3 max
========================================================= */
.galerie-images-enfants {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    margin-top: 15px !important;
}

.galerie-image-enfant {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 10px !important;
    overflow: hidden;
    background: #eaeef5 !important;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.galerie-image-enfant:hover {
    border-color: #FCD34D;
    transform: scale(1.05);
}

.galerie-image-enfant img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.galerie-image-enfant:hover img {
    transform: scale(1.1);
}

/* ============================================================
   BOUTON "VOIR TOUTES LES IMAGES"
========================================================= */
.galerie-item-content > div:last-child {
    margin-top: 18px !important;
    text-align: center;
}

.galerie-item-content .btn-primary,
.galerie-item-content a.btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100%;
    padding: 12px 20px !important;
    background: #FCD34D !important;
    color: #0F2A52 !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    letter-spacing: 0.3px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(252, 211, 77, 0.3);
}

.galerie-item-content .btn-primary:hover,
.galerie-item-content a.btn:hover {
    background: #0F2A52 !important;
    color: #FCD34D !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 60, 110, 0.3);
}

.galerie-item-content .btn-primary span {
    background: #0F2A52 !important;
    color: #FCD34D !important;
    padding: 2px 10px !important;
    border-radius: 20px !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    transition: all 0.3s ease;
}

.galerie-item-content .btn-primary:hover span {
    background: #FCD34D !important;
    color: #0F2A52 !important;
}

/* ============================================================
   PAGINATION CENTRÉE
========================================================= */
.pagination-galerie {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 50px !important;
    flex-wrap: wrap;
}

.pagination-galerie a {
    min-width: 42px;
    height: 42px;
    padding: 8px 14px !important;
    border-radius: 10px !important;
    background: #FFFFFF !important;
    color: #1A2A6C !important;
    border: 1px solid #e6eaf2 !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pagination-galerie a:hover {
    background: #FCD34D !important;
    color: #0F2A52 !important;
    border-color: #FCD34D !important;
    transform: translateY(-2px);
}

/* Page active */
.pagination-galerie a[style*="background: #1a3c6e"] {
    background: #1A2A6C !important;
    color: #FFFFFF !important;
    border-color: #1A2A6C !important;
    box-shadow: 0 6px 18px rgba(26, 60, 110, 0.25);
}

/* ============================================================
   NO EVENTS (message vide)
========================================================= */
.no-events {
    text-align: center;
    padding: 60px 20px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 2px dashed #E5E7EB;
}

.no-events i {
    font-size: 3rem;
    color: #9CA3AF;
    margin-bottom: 15px;
}

.no-events h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.no-events p {
    color: #6B7280;
}

/* ============================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px) {
    .galerie-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .galerie-item-image {
        height: 240px;
    }

    .galerie-item-content h3 {
        font-size: 1.3rem;
        bottom: calc(100% + 60px);
    }

    .galerie-item-footer {
        bottom: calc(100% + 18px);
    }
}

@media (max-width: 650px) {
    .galerie-grid-section {
        padding: 30px 0 60px;
    }

    .galerie-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .galerie-item-image {
        height: 220px;
    }

    .galerie-item-content {
        padding: 22px 20px 25px;
    }

    .galerie-item-content h3 {
        font-size: 1.2rem;
        left: 20px;
        right: 20px;
        bottom: calc(100% + 55px);
    }

    .galerie-item-footer {
        left: 20px;
        right: 20px;
        bottom: calc(100% + 15px);
        font-size: 0.78rem;
        gap: 10px;
    }

    .galerie-item-content > p {
        font-size: 0.85rem;
    }

    .pagination-galerie a {
        min-width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .galerie-item-category {
        top: 15px;
        left: 15px;
        padding: 5px 12px;
        font-size: 0.65rem;
    }
}

/* ============================================================
   PAGE NOS CABINETS - STYLES SPÉCIFIQUES
   ============================================================ */

/* ----- INTRODUCTION ----- */
.cabinets-intro {
    padding: 60px 0 40px;
    background: #FFFFFF;
}

.cabinets-intro-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cabinets-intro-content .section-tag {
    margin-bottom: 12px;
}

.cabinets-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A2A6C;
    line-height: 1.2;
    margin-bottom: 15px;
}

.cabinets-intro-content h2 .highlight {
    color: #3B82F6;
}

.cabinets-intro-content p {
    font-size: 1.05rem;
    color: #6B7280;
    line-height: 1.8;
}

/* ----- FILTRES ----- */
.cabinets-filters-section {
    padding: 20px 0 40px;
    background: #F8FAFC;
}

.cabinets-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.cabinets-filters .filter-btn {
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid #E5E7EB;
    background: #FFFFFF;
    color: #6B7280;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cabinets-filters .filter-btn:hover {
    border-color: #3B82F6;
    color: #1A2A6C;
    transform: translateY(-2px);
}

.cabinets-filters .filter-btn.active {
    background: #1A2A6C;
    border-color: #1A2A6C;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(26, 42, 108, 0.25);
}

/* ----- GRILLE CABINETS ----- */
.cabinets-grid-section {
    padding: 0 0 80px;
    background: #F8FAFC;
}

.cabinets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ----- CARTE CABINET ----- */
.cabinet-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.cabinet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 42, 108, 0.08);
    border-color: rgba(59, 130, 246, 0.15);
}

.cabinet-image {
    position: relative;
    height: 120px;
    background: linear-gradient(135deg, #1A2A6C, #2D4373);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cabinet-placeholder {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.15);
}

.cabinet-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FCD34D;
    color: #1A2A6C;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cabinet-content {
    padding: 25px;
}

.cabinet-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1A2A6C;
    margin-bottom: 15px;
}

.cabinet-info {
    margin-bottom: 15px;
}

.cabinet-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #4B5563;
    padding: 4px 0;
}

.cabinet-info p i {
    color: #3B82F6;
    width: 18px;
}

.cabinet-info p a {
    color: #4B5563;
    transition: color 0.3s;
}

.cabinet-info p a:hover {
    color: #3B82F6;
}

.cabinet-description p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ----- BOUTON VOIR PLUS ----- */
.btn-see-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
    background: transparent;
    color: #1A2A6C;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-see-more:hover {
    border-color: #1A2A6C;
    background: rgba(26, 42, 108, 0.04);
}

.btn-see-more .btn-text {
    transition: all 0.3s ease;
}

.btn-see-more i {
    transition: transform 0.3s ease;
    font-size: 0.7rem;
}

.btn-see-more.active i {
    transform: rotate(180deg);
}

/* ----- DÉTAILS CABINET ----- */
.cabinet-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0;
    opacity: 0;
}

.cabinet-details.open {
    max-height: 600px;
    padding-top: 20px;
    opacity: 1;
}

.cabinet-details h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 12px;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: #F8FAFC;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.team-member:hover {
    background: rgba(26, 42, 108, 0.04);
}

.member-avatar {
    font-size: 2rem;
    color: #1A2A6C;
}

.member-avatar i {
    display: block;
}

.team-member strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1A2A6C;
}

.team-member span {
    font-size: 0.75rem;
    color: #6B7280;
}

.btn-cabinet-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #1A2A6C;
    color: #FFFFFF;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-cabinet-contact:hover {
    background: #2D4373;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 42, 108, 0.25);
}

/* ----- STATISTIQUES CABINETS ----- */
.cabinets-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #1A2A6C, #2D4373);
    color: #FFFFFF;
}

.cabinets-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.cabinet-stat .cabinet-stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FCD34D, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.cabinet-stat .cabinet-stat-label {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 400;
}

/* ----- POURQUOI NOUS CHOISIR ----- */
.cabinets-why {
    padding: 80px 0;
    background: #FFFFFF;
}

.cabinets-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cabinets-why-item {
    text-align: center;
    padding: 35px 25px;
    border-radius: 16px;
    background: #F8FAFC;
    transition: all 0.4s ease;
}

.cabinets-why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 42, 108, 0.06);
}

.cabinets-why-item i {
    font-size: 2.5rem;
    color: #1A2A6C;
    margin-bottom: 15px;
    display: block;
}

.cabinets-why-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 8px;
}

.cabinets-why-item p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.7;
}

/* ============================================================
   RESPONSIVE CABINETS
   ============================================================ */

@media (max-width: 992px) {
    .cabinets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cabinets-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cabinets-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cabinets-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cabinets-intro-content h2 {
        font-size: 1.8rem;
    }

    .cabinets-filters .filter-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .cabinets-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cabinet-stat .cabinet-stat-number {
        font-size: 2.2rem;
    }

    .cabinets-why-grid {
        grid-template-columns: 1fr;
    }

    .cabinet-content {
        padding: 20px;
    }

    .cabinet-image {
        height: 100px;
    }

    .cabinet-placeholder {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .cabinets-intro-content h2 {
        font-size: 1.5rem;
    }

    .cabinet-stat .cabinet-stat-number {
        font-size: 1.8rem;
    }

    .cabinet-stat .cabinet-stat-label {
        font-size: 0.8rem;
    }

    .cabinet-content h3 {
        font-size: 1.1rem;
    }

    .cabinet-info p {
        font-size: 0.8rem;
    }

    .team-member {
        padding: 8px 12px;
    }

    .member-avatar {
        font-size: 1.5rem;
    }

    .btn-see-more {
        padding: 6px 16px;
        font-size: 0.8rem;
    }

    .btn-cabinet-contact {
        padding: 8px 18px;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }

    .cabinets-filters .filter-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

/* ============================================================
   DROPDOWN AVEC APERÇU DES CABINETS - NOUVEAU
   ============================================================ */

/* Positionnement du dropdown cabinets */
.dropdown-cabinets {
    position: relative;
}

.dropdown-cabinets>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-cabinets>a i {
    transition: transform 0.3s;
}

.dropdown-cabinets:hover>a i {
    transform: rotate(90deg);
}

/* Aperçu des cabinets */
.cabinets-preview {
    position: absolute;
    top: 0;
    left: 100%;
    background: #1A2A6C;
    min-width: 280px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100;
}

.dropdown-cabinets:hover .cabinets-preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.cabinets-preview-header {
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cabinets-preview-header h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FCD34D;
    margin-bottom: 2px;
}

.cabinets-preview-header p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.cabinets-preview-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.cabinet-preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cabinet-preview-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.cabinet-preview-city {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.cabinet-preview-city i {
    color: #3B82F6;
    margin-right: 6px;
}

.cabinet-preview-desc {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.cabinets-preview-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: #FCD34D;
    color: #1A2A6C;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.cabinets-preview-btn:hover {
    background: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 211, 77, 0.25);
}

.cabinets-preview-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.cabinets-preview-btn:hover i {
    transform: translateX(5px);
}

/* ----- RESPONSIVE POUR L'APERÇU (MOBILE) ----- */
@media (max-width: 768px) {
    .cabinets-preview {
        position: static;
        left: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        background: transparent;
        border: none;
        display: none;
    }

    .dropdown-cabinets:hover .cabinets-preview {
        display: block;
    }

    .dropdown-cabinets>a i {
        display: none;
    }

    .cabinets-preview-header {
        display: none;
    }

    .cabinet-preview-item {
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.03);
    }

    .cabinet-preview-city {
        font-size: 0.8rem;
    }

    .cabinet-preview-desc {
        font-size: 0.65rem;
    }

    .cabinets-preview-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-top: 5px;
    }
}

/* ============================================================
   PAGE NOS EXPERTISES - STYLES SPÉCIFIQUES
   ============================================================ */

/* ----- INTRODUCTION ----- */
.expertises-intro {
    padding: 60px 0 40px;
    background: #FFFFFF;
}

.expertises-intro-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.expertises-intro-content .section-tag {
    margin-bottom: 12px;
}

.expertises-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A2A6C;
    line-height: 1.2;
    margin-bottom: 15px;
}

.expertises-intro-content h2 .highlight {
    color: #3B82F6;
}

.expertises-intro-content p {
    font-size: 1.05rem;
    color: #6B7280;
    line-height: 1.8;
}

/* ----- STATISTIQUES EXPERTISES ----- */
.expertises-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #1A2A6C, #2D4373);
    color: #FFFFFF;
}

.expertises-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.expertise-stat .expertise-stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FCD34D, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.expertise-stat .expertise-stat-label {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 400;
}

/* ----- GRILLE EXPERTISES ----- */
.expertises-grid-section {
    padding: 60px 0 80px;
    background: #F8FAFC;
}

.expertises-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* ----- CARTE EXPERTISE ----- */
.expertise-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(26, 42, 108, 0.08);
    border-color: rgba(59, 130, 246, 0.15);
}

.expertise-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: rgba(26, 42, 108, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #1A2A6C;
    transition: all 0.4s ease;
}

.expertise-card:hover .expertise-icon {
    background: #1A2A6C;
    color: #FCD34D;
    transform: scale(1.05);
}

.expertise-content {
    flex: 1;
}

.expertise-category {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.expertise-category.audit {
    background: rgba(26, 42, 108, 0.08);
    color: #1A2A6C;
}

.expertise-category.comptabilite {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.expertise-category.rh {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.expertise-category.fiscalite {
    background: rgba(252, 211, 77, 0.15);
    color: #D97706;
}

.expertise-category.conseil {
    background: rgba(139, 92, 246, 0.1);
    color: #7C3AED;
}

.expertise-category.creation {
    background: rgba(236, 72, 153, 0.1);
    color: #DB2777;
}

.expertise-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 8px;
}

.expertise-content p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 12px;
}

.expertise-services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.expertise-tag {
    font-size: 0.7rem;
    font-weight: 500;
    color: #4B5563;
    background: #F3F4F6;
    padding: 3px 12px;
    border-radius: 50px;
}

.expertise-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1A2A6C;
    transition: all 0.3s ease;
}

.expertise-link:hover {
    color: #3B82F6;
    gap: 12px;
}

/* ----- POURQUOI NOUS CHOISIR ----- */
.expertises-why {
    padding: 80px 0;
    background: #FFFFFF;
}

.expertises-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.expertises-why-item {
    text-align: center;
    padding: 35px 25px;
    border-radius: 16px;
    background: #F8FAFC;
    transition: all 0.4s ease;
}

.expertises-why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 42, 108, 0.06);
}

.expertises-why-item i {
    font-size: 2.5rem;
    color: #1A2A6C;
    margin-bottom: 15px;
    display: block;
}

.expertises-why-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 8px;
}

.expertises-why-item p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.7;
}

/* ----- DROPDOWN EXPERTISES - APERÇU ----- */
.dropdown-expertises {
    position: relative;
}

.dropdown-expertises>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-expertises>a i {
    transition: transform 0.3s;
}

.dropdown-expertises:hover>a i {
    transform: rotate(90deg);
}

.expertises-preview {
    position: absolute;
    top: 0;
    left: 100%;
    background: #1A2A6C;
    min-width: 280px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100;
}

.dropdown-expertises:hover .expertises-preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.expertises-preview-header {
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.expertises-preview-header h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FCD34D;
    margin-bottom: 2px;
}

.expertises-preview-header p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.expertises-preview-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.expertise-preview-item {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.expertise-preview-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.expertise-preview-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.expertise-preview-name i {
    color: #3B82F6;
    margin-right: 8px;
    width: 18px;
}

/* Bouton Voir plus / Voir moins */
.expertises-preview-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 8px 16px;
    margin: 5px 0 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.expertises-preview-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
}

.expertises-preview-toggle i {
    font-size: 0.65rem;
    transition: transform 0.3s;
}

.expertises-preview-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: #FCD34D;
    color: #1A2A6C;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.expertises-preview-btn:hover {
    background: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 211, 77, 0.25);
}

.expertises-preview-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.expertises-preview-btn:hover i {
    transform: translateX(5px);
}

.hidden-expertise {
    display: none !important;
}

.hidden-expertise.visible {
    display: flex !important;
}

/* ============================================================
   RESPONSIVE EXPERTISES
   ============================================================ */

@media (max-width: 992px) {
    .expertises-grid {
        grid-template-columns: 1fr;
    }

    .expertises-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertises-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .expertises-intro-content h2 {
        font-size: 1.8rem;
    }

    .expertise-stat .expertise-stat-number {
        font-size: 2.2rem;
    }

    .expertise-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .expertises-why-grid {
        grid-template-columns: 1fr;
    }

    .expertises-preview {
        position: static;
        left: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        background: transparent;
        border: none;
        display: none;
    }

    .dropdown-expertises:hover .expertises-preview {
        display: block;
    }

    .dropdown-expertises>a i {
        display: none;
    }

    .expertises-preview-header {
        display: none;
    }

    .expertise-preview-item {
        padding: 4px 12px;
        background: rgba(255, 255, 255, 0.03);
    }

    .expertise-preview-name {
        font-size: 0.75rem;
    }

    .expertises-preview-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        margin-top: 5px;
    }

    .expertises-preview-toggle {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .expertises-intro-content h2 {
        font-size: 1.5rem;
    }

    .expertise-stat .expertise-stat-number {
        font-size: 1.8rem;
    }

    .expertise-stat .expertise-stat-label {
        font-size: 0.8rem;
    }

    .expertise-card {
        padding: 15px;
    }

    .expertise-content h3 {
        font-size: 1rem;
    }

    .expertise-content p {
        font-size: 0.85rem;
    }

    .expertise-services {
        gap: 4px;
    }

    .expertise-tag {
        font-size: 0.65rem;
        padding: 2px 10px;
    }
}

/* ============================================================
   APERÇU NOS EXPERTISES DANS LE DROPDOWN
   ============================================================ */

.dropdown-expertises {
    position: relative;
}

.dropdown-expertises>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-expertises>a i {
    transition: transform 0.3s ease;
}

.dropdown-expertises:hover>a i {
    transform: rotate(90deg);
}

.expertises-preview {
    position: absolute;
    top: 0;
    left: 100%;
    background: #1A2A6C;
    min-width: 280px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 999;
}

.dropdown-expertises:hover .expertises-preview {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.expertises-preview-header {
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.expertises-preview-header h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FCD34D;
}

.expertises-preview-header p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

.expertises-preview-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.expertise-preview-item {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    transition: background 0.3s ease;
}

.expertise-preview-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.expertise-preview-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.expertise-preview-name i {
    color: #3B82F6;
    margin-right: 10px;
    width: 18px;
}

.expertises-preview-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 8px 12px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.expertises-preview-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.expertises-preview-toggle i {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.expertises-preview-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: #FCD34D;
    color: #1A2A6C;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.expertises-preview-btn:hover {
    background: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 211, 77, 0.25);
}

.expertises-preview-btn i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.expertises-preview-btn:hover i {
    transform: translateX(5px);
}

.hidden-expertise {
    display: none !important;
}

.hidden-expertise.visible {
    display: flex !important;
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .expertises-preview {
        position: static;
        left: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        background: transparent;
        border: none;
        display: none;
    }

    .dropdown-expertises:hover .expertises-preview {
        display: block;
    }

    .dropdown-expertises>a i {
        display: none;
    }

    .expertises-preview-header {
        display: none;
    }

    .expertise-preview-item {
        padding: 4px 12px;
        background: rgba(255, 255, 255, 0.03);
    }

    .expertise-preview-name {
        font-size: 0.75rem;
    }

    .expertises-preview-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
        margin-top: 5px;
    }

    .expertises-preview-toggle {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

/* ============================================================
   PAGE SECTEURS SUIVIS - STYLES SPÉCIFIQUES
   ============================================================ */

/* ----- INTRODUCTION ----- */
.secteurs-intro {
    padding: 60px 0 40px;
    background: #FFFFFF;
}

.secteurs-intro-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.secteurs-intro-content .section-tag {
    margin-bottom: 12px;
}

.secteurs-intro-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A2A6C;
    line-height: 1.2;
    margin-bottom: 15px;
}

.secteurs-intro-content h2 .highlight {
    color: #3B82F6;
}

.secteurs-intro-content p {
    font-size: 1.05rem;
    color: #6B7280;
    line-height: 1.8;
}

/* ----- STATISTIQUES SECTEURS ----- */
.secteurs-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #1A2A6C, #2D4373);
    color: #FFFFFF;
}

.secteurs-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.secteur-stat .secteur-stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FCD34D, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.secteur-stat .secteur-stat-label {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 400;
}

/* ----- GRILLE SECTEURS ----- */
.secteurs-grid-section {
    padding: 60px 0 80px;
    background: #F8FAFC;
}

.secteurs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* ----- CARTE SECTEUR ----- */
.secteur-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.secteur-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1A2A6C, #3B82F6);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.secteur-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 42, 108, 0.08);
    border-color: rgba(59, 130, 246, 0.15);
}

.secteur-card:hover::before {
    opacity: 1;
}

.secteur-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 42, 108, 0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #1A2A6C;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.secteur-card:hover .secteur-icon {
    background: #1A2A6C;
    color: #FCD34D;
    transform: scale(1.05);
}

.secteur-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 12px;
}

.secteur-testimonial {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 15px;
    position: relative;
}

.secteur-testimonial i {
    color: rgba(26, 42, 108, 0.08);
    font-size: 1.2rem;
    position: absolute;
    top: 12px;
    left: 15px;
}

.secteur-testimonial p {
    font-size: 0.9rem;
    color: #4B5563;
    line-height: 1.7;
    font-style: italic;
    padding-left: 25px;
}

.secteur-author {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1A2A6C;
    margin-top: 5px;
    padding-left: 25px;
}

.secteur-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1A2A6C;
    transition: all 0.3s ease;
}

.secteur-link:hover {
    color: #3B82F6;
    gap: 12px;
}

/* ----- ENGAGEMENTS ----- */
.secteurs-engagements {
    padding: 80px 0;
    background: #FFFFFF;
}

.engagements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.engagement-item {
    text-align: center;
    padding: 35px 25px;
    border-radius: 16px;
    background: #F8FAFC;
    transition: all 0.4s ease;
}

.engagement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 42, 108, 0.06);
}

.engagement-item i {
    font-size: 2.5rem;
    color: #1A2A6C;
    margin-bottom: 15px;
    display: block;
}

.engagement-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 8px;
}

.engagement-item p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.7;
}

/* ============================================================
   RESPONSIVE SECTEURS
   ============================================================ */

@media (max-width: 992px) {
    .secteurs-grid {
        grid-template-columns: 1fr;
    }

    .secteurs-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .engagements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .secteurs-intro-content h2 {
        font-size: 1.8rem;
    }

    .secteur-stat .secteur-stat-number {
        font-size: 2.2rem;
    }

    .secteur-card {
        padding: 25px 20px;
    }

    .engagements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .secteurs-intro-content h2 {
        font-size: 1.5rem;
    }

    .secteur-stat .secteur-stat-number {
        font-size: 1.8rem;
    }

    .secteur-stat .secteur-stat-label {
        font-size: 0.8rem;
    }

    .secteur-card h3 {
        font-size: 1rem;
    }

    .secteur-testimonial p {
        font-size: 0.85rem;
    }

    .secteur-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* ============================================================
   PAGE ENTREPRISE - STYLES SPÉCIFIQUES
   ============================================================ */

/* ----- QUI SOMMES-NOUS ----- */
.entreprise-qui {
    padding: 60px 0;
    background: #FFFFFF;
}

.entreprise-qui .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.entreprise-qui-content .section-tag {
    margin-bottom: 12px;
}

.entreprise-qui-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1A2A6C;
    line-height: 1.2;
    margin-bottom: 15px;
}

.entreprise-qui-content h2 .highlight {
    color: #3B82F6;
}

.entreprise-qui-content p {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

.entreprise-qui-content p strong {
    color: #1A2A6C;
}

.entreprise-valeurs {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.valeur-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F8FAFC;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    color: #1A2A6C;
    font-size: 0.9rem;
}

.valeur-item i {
    color: #3B82F6;
}

.entreprise-qui-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.entreprise-qui-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1A2A6C, #2D4373);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.1);
}

/* ----- TROIS PILIERS ----- */
.entreprise-piliers {
    padding: 80px 0;
    background: #F8FAFC;
}

.piliers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pilier-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.pilier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 42, 108, 0.08);
    border-color: rgba(59, 130, 246, 0.15);
}

.pilier-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 42, 108, 0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #1A2A6C;
    margin-bottom: 18px;
    transition: all 0.4s ease;
}

.pilier-card:hover .pilier-icon {
    background: #1A2A6C;
    color: #FCD34D;
}

.pilier-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 10px;
}

.pilier-card p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 15px;
}

.pilier-list {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.pilier-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #4B5563;
    padding: 4px 0;
}

.pilier-list li i {
    color: #10B981;
    font-size: 0.7rem;
}

.pilier-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1A2A6C;
    transition: all 0.3s ease;
}

.pilier-link:hover {
    color: #3B82F6;
    gap: 12px;
}

/* ----- CHIFFRES CLÉS ----- */
.entreprise-chiffres {
    padding: 60px 0;
    background: linear-gradient(135deg, #1A2A6C, #2D4373);
}

.chiffres-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    text-align: center;
}

.chiffre-item .chiffre-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FCD34D, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.chiffre-item .chiffre-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* ----- ÉQUIPE ----- */
.entreprise-equipe {
    padding: 80px 0;
    background: #FFFFFF;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.equipe-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: #F8FAFC;
    transition: all 0.4s ease;
}

.equipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 42, 108, 0.06);
}

.equipe-avatar {
    font-size: 4rem;
    color: #1A2A6C;
    margin-bottom: 12px;
}

.equipe-avatar i {
    display: block;
}

.equipe-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A2A6C;
}

.equipe-role {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3B82F6;
    margin: 5px 0 8px;
}

.equipe-card p {
    font-size: 0.85rem;
    color: #6B7280;
    line-height: 1.6;
}

/* ----- POURQUOI NOUS CHOISIR ----- */
.entreprise-pourquoi {
    padding: 80px 0;
    background: #F8FAFC;
}

.pourquoi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pourquoi-item {
    text-align: center;
    padding: 35px 25px;
    border-radius: 16px;
    background: #FFFFFF;
    transition: all 0.4s ease;
}

.pourquoi-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 42, 108, 0.06);
}

.pourquoi-item i {
    font-size: 2.5rem;
    color: #1A2A6C;
    margin-bottom: 15px;
    display: block;
}

.pourquoi-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 8px;
}

.pourquoi-item p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.7;
}

/* ----- RESPONSIVE ENTREPRISE ----- */
@media (max-width: 992px) {
    .entreprise-qui .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .piliers-grid {
        grid-template-columns: 1fr 1fr;
    }

    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pourquoi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chiffres-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .entreprise-qui-content h2 {
        font-size: 1.8rem;
    }

    .piliers-grid {
        grid-template-columns: 1fr;
    }

    .equipe-grid {
        grid-template-columns: 1fr;
    }

    .pourquoi-grid {
        grid-template-columns: 1fr;
    }

    .chiffres-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .chiffre-item .chiffre-number {
        font-size: 1.5rem;
    }

    .chiffre-item .chiffre-label {
        font-size: 0.7rem;
    }

    .entreprise-valeurs {
        gap: 10px;
    }

    .valeur-item {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .entreprise-qui-content h2 {
        font-size: 1.5rem;
    }

    .chiffres-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .chiffre-item .chiffre-number {
        font-size: 1.3rem;
    }

    .pilier-card {
        padding: 25px 20px;
    }

    .equipe-card {
        padding: 20px;
    }

    .equipe-avatar {
        font-size: 3rem;
    }
}

/* ============================================================
   SOUS-MENU DÉROULANT (pour Expertises et Cabinets)
   ============================================================ */

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-submenu>a i {
    transition: transform 0.3s ease;
}

.dropdown-submenu:hover>a i {
    transform: rotate(90deg);
}

.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: #1A2A6C;
    min-width: 220px;
    padding: 8px 0;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 999;
}

.dropdown-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.submenu li a:hover {
    color: #FCD34D;
    background: rgba(252, 211, 77, 0.05);
    border-left-color: #FCD34D;
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .submenu {
        position: static;
        left: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        background: transparent;
        border: none;
        display: none;
    }

    .dropdown-submenu:hover .submenu {
        display: block;
    }

    .dropdown-submenu>a i {
        display: none;
    }

    .submenu li a {
        padding: 8px 16px;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.8rem;
    }
}

/* ============================================================
   EFFET FLOCONS QUI MONTENT
   ============================================================ */

#flocons-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.flocon {
    position: absolute;
    bottom: -20px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    animation: monteeFlocon linear infinite;
    pointer-events: none;
}

@keyframes monteeFlocon {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.5);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-110vh) rotate(720deg) scale(1.2);
        opacity: 0;
    }
}

/* ============================================================
   CARROUSEL PARTENAIRES - VERSION CORRIGÉE
   ============================================================ */

.partners-carousel {
    padding: 50px 0;
    background: #FFFFFF;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
    overflow: hidden;
}

.partners-header {
    text-align: center;
    margin-bottom: 35px;
}

.partners-header .section-tag {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.partners-header p {
    font-size: 1rem;
    color: #6B7280;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: defilement 25s linear infinite;
}

@keyframes defilement {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

/* ----- VERSION IMAGES (logos partenaires) ----- */
.carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 80px;
    padding: 10px 20px;
    background: #FFFFFF;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.carousel-item:hover {
    border-color: #1A2A6C;
    box-shadow: 0 10px 30px rgba(26, 42, 108, 0.1);
    transform: translateY(-5px);
}

.carousel-item img {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.carousel-item:hover img {
    transform: scale(1.05);
}

/* ============================================================
   RESPONSIVE CARROUSEL
   ============================================================ */

@media (max-width: 992px) {
    .carousel-track {
        gap: 20px;
        animation-duration: 22s;
    }

    .carousel-item {
        min-width: 120px;
        height: 70px;
        padding: 8px 15px;
    }

    .carousel-item img {
        max-height: 40px;
    }
}

@media (max-width: 768px) {
    .partners-carousel {
        padding: 35px 0;
    }

    .carousel-item {
        min-width: 100px;
        height: 60px;
        padding: 8px 12px;
    }

    .carousel-item img {
        max-height: 35px;
    }

    .carousel-track {
        gap: 15px;
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    .carousel-item {
        min-width: 80px;
        height: 50px;
        padding: 5px 10px;
    }

    .carousel-item img {
        max-height: 30px;
    }

    .carousel-track {
        gap: 12px;
        animation-duration: 18s;
    }
}

/* ============================================================
   BOUTON "EN SAVOIR PLUS" - JAUNE OR STATIQUE + EFFET WAOUH
   ============================================================ */

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #FCD34D;
    color: #1A2A6C !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(252, 211, 77, 0.3);
    border: none;
    text-decoration: none !important;
    cursor: pointer;
}

/* --- TEXTE DU BOUTON --- */
.service-link .link-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* --- FLÈCHE --- */
.service-link i {
    font-size: 0.8rem;
    color: #1A2A6C;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

/* --- EFFET DE LUMIÈRE QUI GLISSE --- */
.service-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.7s ease;
    z-index: 1;
    border-radius: 50px;
}

/* --- FOND BLEU AU SURVOL (caché par défaut) --- */
.service-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #1A2A6C;
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 50px;
    z-index: 0;
}

/* --- ÉTOILE QUI APPARAÎT AU SURVOL --- */
.service-link .star-icon {
    position: absolute;
    right: -30px;
    top: -10px;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
    color: #FCD34D;
}

/* ============================================================
   SURVOL - EFFET WAOUH
   ============================================================ */

.service-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 45px rgba(26, 42, 108, 0.4);
    animation: pulse-glow 1.5s ease-in-out infinite;
}

/* Activation du fond bleu */
.service-link:hover::after {
    opacity: 1;
}

/* Activation de la lumière glissante */
.service-link:hover::before {
    left: 100%;
}

/* Texte devient blanc */
.service-link:hover .link-text {
    color: #FFFFFF !important;
}

/* Flèche s'agrandit, se déplace et devient jaune */
.service-link:hover i {
    transform: translateX(12px) scale(1.4);
    color: #FCD34D;
}

/* Étoile apparaît */
.service-link:hover .star-icon {
    opacity: 1;
    right: 15px;
    top: -15px;
    transform: rotate(180deg) scale(1.2);
}

/* Effet de brillance en plus */
.service-link:hover {
    background: #1A2A6C;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

/* Animation de pulsation (glow) */
@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 8px 35px rgba(26, 42, 108, 0.35);
        transform: translateY(-4px) scale(1.05);
    }

    50% {
        box-shadow: 0 8px 55px rgba(26, 42, 108, 0.55);
        transform: translateY(-6px) scale(1.06);
    }
}

/* Animation de l'étoile qui tourne */
@keyframes spin-star {
    0% {
        transform: rotate(0deg) scale(0.5);
    }

    100% {
        transform: rotate(360deg) scale(1.2);
    }
}

.service-link:hover .star-icon {
    animation: spin-star 1s ease-in-out forwards;
}

/* ============================================================
   VARIANTES (optionnelles)
   ============================================================ */

/* Version avec texte plus gros */
.service-link-lg {
    padding: 14px 34px;
    font-size: 1rem;
}

/* Version sans flèche */
.service-link-no-arrow {
    padding: 12px 28px;
}

.service-link-no-arrow i {
    display: none;
}

/* ============================================================
   SECTION STRATÉGIE - COMMENT NOUS VOUS ACCOMPAGNONS
   ============================================================ */

.strategy-section {
    padding: 80px 0;
    background: #F8FAFC;
    position: relative;
    overflow: hidden;
}

.strategy-header {
    text-align: center;
    margin-bottom: 50px;
}

.strategy-header .section-tag {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.strategy-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A2A6C;
    line-height: 1.2;
    margin-bottom: 12px;
}

.strategy-header h2 .highlight {
    color: #3B82F6;
    position: relative;
}

.strategy-header h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 4px;
}

.strategy-header p {
    font-size: 1.05rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.strategy-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 4px solid #1A2A6C;
    position: relative;
    overflow: hidden;
}

.strategy-card::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: rgba(239, 68, 68, 0.06);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.strategy-card:hover::after {
    transform: scale(1.5);
    background: rgba(239, 68, 68, 0.1);
}

.strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(26, 42, 108, 0.08);
    border-color: #FCD34D;
}

.strategy-number {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.strategy-number span {
    font-size: 2rem;
    font-weight: 900;
    color: #1A2A6C;
    line-height: 1;
    transition: all 0.4s ease;
}

.strategy-card:hover .strategy-number span {
    color: #FCD34D;
}

.strategy-dot {
    width: 8px;
    height: 8px;
    background: #EF4444;
    border-radius: 50%;
    transition: all 0.4s ease;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

.strategy-icon {
    width: 50px;
    height: 50px;
    background: rgba(26, 42, 108, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #1A2A6C;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.strategy-card:hover .strategy-icon {
    background: #1A2A6C;
    color: #FCD34D;
    transform: scale(1.05);
}

.strategy-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 10px;
    line-height: 1.3;
}

.strategy-card p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 15px;
}

.strategy-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.08);
    color: #3B82F6;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.strategy-card:hover .strategy-tag {
    background: #1A2A6C;
    color: #FCD34D;
}

.strategy-tag i {
    font-size: 0.7rem;
}

.strategy-card[data-step="01"] {
    border-top-color: #1A2A6C;
}

.strategy-card[data-step="02"] {
    border-top-color: #3B82F6;
}

.strategy-card[data-step="03"] {
    border-top-color: #FCD34D;
}

.strategy-card[data-step="04"] {
    border-top-color: #EF4444;
}

.strategy-cta {
    text-align: center;
    margin-top: 50px;
}

.strategy-cta .btn {
    padding: 16px 40px;
    font-size: 1rem;
    border-radius: 12px;
    background: #1A2A6C;
    color: #FFFFFF;
    box-shadow: 0 8px 30px rgba(26, 42, 108, 0.25);
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.strategy-cta .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 45px rgba(26, 42, 108, 0.35);
    background: #2D4373;
}

.strategy-cta .btn i {
    color: #FCD34D;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .strategy-section {
        padding: 60px 0;
    }

    .strategy-header h2 {
        font-size: 1.8rem;
    }

    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .strategy-card {
        padding: 25px 20px;
    }

    .strategy-number span {
        font-size: 1.6rem;
    }

    .strategy-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .strategy-card h3 {
        font-size: 1rem;
    }

    .strategy-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .strategy-header h2 {
        font-size: 1.5rem;
    }

    .strategy-card {
        padding: 20px 15px;
    }

    .strategy-number span {
        font-size: 1.3rem;
    }

    .strategy-dot {
        width: 6px;
        height: 6px;
    }
}

/* ============================================================
   TÉMOIGNAGES - SANS ÉTOILES
   ============================================================ */

.testimonials-slider {
    padding: 80px 0;
    background: #F8FAFC;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header .section-tag {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A2A6C;
    line-height: 1.2;
    margin-bottom: 10px;
}

.testimonials-header h2 .highlight {
    color: #3B82F6;
}

.testimonials-header p {
    font-size: 1rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ----- SLIDER ----- */
.slider-container {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.slider-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
}

.slider-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ----- CARTE TÉMOIGNAGE ----- */
.testimonial-slide {
    min-width: calc(33.333% - 17px);
    max-width: calc(33.333% - 17px);
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(26, 42, 108, 0.08);
    border-color: rgba(59, 130, 246, 0.15);
}

/* ----- AVATAR ----- */
.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid #FCD34D;
    flex-shrink: 0;
}

.testimonial-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E5E7EB;
    color: #9CA3AF;
    font-size: 3.5rem;
}

.testimonial-avatar-placeholder i {
    display: block;
}

/* ----- TEXTE ----- */
.testimonial-slide p {
    font-size: 0.92rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
    flex: 1;
}

/* ----- AUTEUR ----- */
.testimonial-author strong {
    display: block;
    font-weight: 700;
    color: #1A2A6C;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: #6B7280;
}

/* ----- FLÈCHES ----- */
.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1A2A6C;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(26, 42, 108, 0.2);
    z-index: 10;
}

.slider-btn:hover {
    background: #2D4373;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(26, 42, 108, 0.3);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-btn i {
    font-size: 1rem;
}

/* ----- POINTS ----- */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: #1A2A6C;
    width: 30px;
    border-radius: 5px;
}

.slider-dots .dot:hover {
    background: #3B82F6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .testimonial-slide {
        min-width: calc(50% - 13px);
        max-width: calc(50% - 13px);
    }
}

@media (max-width: 768px) {
    .testimonials-slider {
        padding: 60px 0;
    }

    .testimonials-header h2 {
        font-size: 1.8rem;
    }

    .testimonial-slide {
        min-width: calc(100%);
        max-width: calc(100%);
        padding: 25px 20px;
    }

    .slider-container {
        gap: 10px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-btn i {
        font-size: 0.8rem;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-avatar-placeholder {
        font-size: 2.5rem;
    }

    .testimonial-slide p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .testimonials-header h2 {
        font-size: 1.5rem;
    }

    .testimonial-slide {
        padding: 20px 15px;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .testimonial-avatar-placeholder {
        font-size: 2rem;
    }

    .testimonial-slide p {
        font-size: 0.8rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
}

/* ============================================================
   PAGINATION
   ============================================================ */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #1A2A6C;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.pagination-btn:hover:not(:disabled) {
    background: #2D4373;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 42, 108, 0.25);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.pagination-btn i {
    font-size: 0.7rem;
}

.pagination-info {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: 500;
}

.pagination-info span {
    color: #1A2A6C;
    font-weight: 700;
}

/* ----- POINTS INDICATEURS ----- */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}

.pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D5DB;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-dot.active {
    background: #1A2A6C;
    width: 24px;
    border-radius: 4px;
}

.pagination-dot:hover {
    background: #3B82F6;
}

/* ============================================================
   CARTE SERVICE - AVEC NOMBRE DE CLIENTS + BOUTON VOIR PLUS
   ============================================================ */

/* ----- EN-TÊTE DE LA CARTE ----- */
.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.service-icon {
    font-size: 1.5rem;
    color: #1A2A6C;
}

/* ----- DÉPARTEMENT TAG ----- */
.service-departement {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(26, 42, 108, 0.06);
    color: #1A2A6C;
}

/* ----- PIED DE CARTE ----- */
.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #E5E7EB;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

/* ----- NOMBRE DE CLIENTS ----- */
.service-clients {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #6B7280;
}

.service-clients i {
    color: #3B82F6;
    font-size: 0.9rem;
}

.client-count {
    font-weight: 700;
    color: #1A2A6C;
}

/* ----- BOUTON VOIR PLUS ----- */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1A2A6C;
    transition: all 0.3s ease;
    text-decoration: none;
}

.service-link:hover {
    color: #3B82F6;
    gap: 12px;
}

.service-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
    .service-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-link {
        align-self: flex-start;
    }
}

/* ============================================================
   PAGE DÉTAIL DU SERVICE
   ============================================================ */

.service-detail-section {
    padding: 160px 0 80px;
    background: #F8FAFC;
}

/* Fil d'Ariane */
.breadcrumb {
    margin-bottom: 30px;
}

.breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1A2A6C;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #3B82F6;
    gap: 12px;
}

/* En-tête */
.service-detail-header {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.service-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #EF4444;
}

.service-detail-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(26, 42, 108, 0.06);
    color: #1A2A6C;
    margin-bottom: 12px;
}

.service-detail-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #1A2A6C;
    margin-bottom: 4px;
}

.service-detail-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3B82F6;
    margin-bottom: 8px;
}

.service-detail-slogan {
    font-size: 1rem;
    color: #6B7280;
    font-style: italic;
    margin-bottom: 20px;
}

.service-detail-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #6B7280;
}

.stat-item i {
    color: #3B82F6;
}

.stat-number {
    font-weight: 700;
    color: #1A2A6C;
}

/* Description */
.service-detail-description,
.service-detail-pieces,
.service-detail-packs,
.service-detail-engagements,
.service-detail-related {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px 35px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 25px;
}

.service-detail-description h3,
.service-detail-pieces h3,
.service-detail-packs h3,
.service-detail-engagements h3,
.service-detail-related h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-detail-description h3 i,
.service-detail-pieces h3 i,
.service-detail-packs h3 i,
.service-detail-engagements h3 i,
.service-detail-related h3 i {
    color: #FCD34D;
}

.service-detail-description p {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.8;
}

/* Pièces à fournir */
.service-detail-pieces ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-detail-pieces ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #4B5563;
    padding: 6px 0;
}

.service-detail-pieces ul li i {
    color: #10B981;
    font-size: 0.8rem;
}

/* Packs */
.packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pack-card {
    background: #F8FAFC;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.pack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 42, 108, 0.06);
}

.pack-card.pack-standard {
    border-color: rgba(59, 130, 246, 0.2);
}

.pack-card.pack-premium {
    border-color: rgba(252, 211, 77, 0.3);
}

.pack-header {
    padding: 15px 20px;
    background: #1A2A6C;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pack-card.pack-standard .pack-header {
    background: #3B82F6;
}

.pack-card.pack-premium .pack-header {
    background: #FCD34D;
    color: #1A2A6C;
}

.pack-badge {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 10px;
    border-radius: 50px;
}

.pack-card.pack-premium .pack-badge {
    background: rgba(26, 42, 108, 0.1);
}

.pack-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.pack-body {
    padding: 20px;
}

.pack-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.pack-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: #4B5563;
    padding: 4px 0;
    line-height: 1.5;
}

.pack-body ul li i {
    color: #10B981;
    font-size: 0.7rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.pack-desc {
    font-size: 0.8rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.pack-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
}

.pack-btn:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Note */
.service-detail-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(239, 68, 68, 0.05);
    border-left: 4px solid #EF4444;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.service-detail-note i {
    color: #EF4444;
    font-size: 1.2rem;
    margin-top: 2px;
}

.service-detail-note strong {
    display: block;
    font-size: 0.9rem;
    color: #1A2A6C;
}

.service-detail-note p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.7;
    margin-top: 2px;
}

/* Engagements */
.engagements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.engagement-item {
    text-align: center;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.engagement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 42, 108, 0.04);
}

.engagement-item i {
    font-size: 2rem;
    color: #1A2A6C;
    margin-bottom: 8px;
    display: block;
}

.engagement-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1A2A6C;
}

/* Services associés */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #F8FAFC;
    border-radius: 10px;
    color: #1A2A6C;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.related-item:hover {
    background: #1A2A6C;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.related-item i {
    color: #3B82F6;
}

.related-item:hover i {
    color: #FCD34D;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
    .packs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .engagements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-pieces ul {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .service-detail-section {
        padding: 40px 0 60px;
    }

    .service-detail-header {
        padding: 25px 20px;
    }

    .service-detail-header h1 {
        font-size: 1.6rem;
    }

    .service-detail-stats {
        flex-wrap: wrap;
        gap: 15px;
    }

    .packs-grid {
        grid-template-columns: 1fr;
    }

    .engagements-grid {
        grid-template-columns: 1fr 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-description,
    .service-detail-pieces,
    .service-detail-packs,
    .service-detail-engagements,
    .service-detail-related {
        padding: 20px;
    }

    .pack-header h4 {
        font-size: 1rem;
    }

    .service-detail-note {
        flex-direction: column;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .service-detail-header h1 {
        font-size: 1.3rem;
    }

    .engagements-grid {
        grid-template-columns: 1fr;
    }

    .pack-body ul li {
        font-size: 0.8rem;
    }

    .pack-btn {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
}

/* ============================================================
   SERVICE DETAIL - STYLES
   ============================================================ */

.service-detail-section {
    padding: 140px 0 80px;
    background: #F8FAFC;
}

#serviceContent {
    max-width: 1000px;
    margin: 0 auto;
}

/* Fil d'Ariane */
.breadcrumb {
    margin-bottom: 25px;
}

.breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1A2A6C;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 8px 16px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #3B82F6;
    border-color: #3B82F6;
    gap: 12px;
    transform: translateX(-3px);
}

/* En-tête */
.service-detail-header {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 35px 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.service-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #EF4444;
}

.service-detail-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(26, 42, 108, 0.06);
    color: #1A2A6C;
    margin-bottom: 12px;
}

.service-detail-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #1A2A6C;
    margin-bottom: 4px;
}

.service-detail-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3B82F6;
    margin-bottom: 15px;
}

.service-detail-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #6B7280;
}

.stat-item i {
    color: #3B82F6;
}

.stat-number {
    font-weight: 700;
    color: #1A2A6C;
}

/* Description, Pièces, Packs */
.service-detail-description,
.service-detail-pieces,
.service-detail-packs,
.service-detail-engagements,
.similar-services {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px 35px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 25px;
}

.service-detail-description h3,
.service-detail-pieces h3,
.service-detail-packs h3,
.service-detail-engagements h3,
.similar-services h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A2A6C;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-detail-description h3 i,
.service-detail-pieces h3 i,
.service-detail-packs h3 i,
.service-detail-engagements h3 i,
.similar-services h3 i {
    color: #FCD34D;
}

.service-detail-description p {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.8;
}

/* Pièces */
.service-detail-pieces ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-detail-pieces ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #4B5563;
    padding: 6px 0;
}

.service-detail-pieces ul li i {
    color: #10B981;
    font-size: 0.8rem;
}

/* Packs */
.packs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pack-card {
    background: #F8FAFC;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.pack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 42, 108, 0.06);
}

.pack-card.pack-standard {
    border-color: rgba(59, 130, 246, 0.2);
}

.pack-card.pack-premium {
    border-color: rgba(252, 211, 77, 0.3);
}

.pack-header {
    padding: 15px 20px;
    background: #1A2A6C;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pack-card.pack-standard .pack-header {
    background: #3B82F6;
}

.pack-card.pack-premium .pack-header {
    background: #FCD34D;
    color: #1A2A6C;
}

.pack-badge {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 10px;
    border-radius: 50px;
}

.pack-card.pack-premium .pack-badge {
    background: rgba(26, 42, 108, 0.1);
}

.pack-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.pack-body {
    padding: 20px;
}

.pack-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.pack-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: #4B5563;
    padding: 4px 0;
    line-height: 1.5;
}

.pack-body ul li i {
    color: #10B981;
    font-size: 0.7rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.pack-desc {
    font-size: 0.8rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.pack-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
}

.pack-btn:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Note */
.service-detail-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(239, 68, 68, 0.05);
    border-left: 4px solid #EF4444;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.service-detail-note i {
    color: #EF4444;
    font-size: 1.2rem;
    margin-top: 2px;
}

.service-detail-note strong {
    display: block;
    font-size: 0.9rem;
    color: #1A2A6C;
}

.service-detail-note p {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.7;
    margin-top: 2px;
}

/* Engagements */
.engagements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.engagement-item {
    text-align: center;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.engagement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 42, 108, 0.04);
}

.engagement-item i {
    font-size: 2rem;
    color: #1A2A6C;
    margin-bottom: 8px;
    display: block;
}

.engagement-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1A2A6C;
}

/* Services similaires */
.similar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.similar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: #F8FAFC;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.similar-item:hover {
    background: #1A2A6C;
    transform: translateY(-3px);
}

.similar-icon {
    font-size: 1.2rem;
    color: #3B82F6;
    flex-shrink: 0;
}

.similar-item:hover .similar-icon {
    color: #FCD34D;
}

.similar-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: #1A2A6C;
    flex: 1;
}

.similar-item:hover .similar-title {
    color: #FFFFFF;
}

/* Service non trouvé */
.service-not-found {
    text-align: center;
    padding: 60px 20px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 2px dashed #E5E7EB;
}

.service-not-found i {
    font-size: 3rem;
    color: #EF4444;
    margin-bottom: 15px;
}

.service-not-found h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.service-not-found p {
    color: #6B7280;
    margin-bottom: 20px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
    .packs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .engagements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-pieces ul {
        grid-template-columns: 1fr;
    }

    .similar-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-detail-section {
        padding: 120px 0 60px;
    }

    .service-detail-header {
        padding: 25px 20px;
    }

    .service-detail-header h1 {
        font-size: 1.6rem;
    }

    .service-detail-stats {
        gap: 15px;
    }

    .packs-grid {
        grid-template-columns: 1fr;
    }

    .engagements-grid {
        grid-template-columns: 1fr 1fr;
    }

    .similar-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-description,
    .service-detail-pieces,
    .service-detail-packs,
    .service-detail-engagements,
    .similar-services {
        padding: 20px;
    }

    .service-detail-note {
        flex-direction: column;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .service-detail-header h1 {
        font-size: 1.3rem;
    }

    .engagements-grid {
        grid-template-columns: 1fr;
    }

    .pack-btn {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
}




/* =========================================================
   SERVICES
========================================================= */

.services-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    padding: 34px 27px;

    min-height: 330px;

    border: 1px solid var(--border);
    border-radius: 15px;

    background: var(--white);

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-9px);
    border-color: rgba(31, 52, 120, 0.2);
    box-shadow: var(--shadow);
}

.service-card.featured {
    color: var(--white);
    background: var(--sys-blue);
    border-color: var(--sys-blue);
}

.service-number {
    position: absolute;
    top: 22px;
    right: 22px;

    color: rgba(31, 52, 120, 0.12);
    font-size: 13px;
    font-weight: 800;
}

.featured .service-number {
    color: rgba(255, 255, 255, 0.15);
}

.service-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border-radius: 13px;
    background: rgba(31, 52, 120, 0.08);
    color: var(--sys-blue);

    font-size: 21px;
}

.featured .service-icon {
    color: var(--sys-blue-deep);
    background: var(--sys-gold);
}

.service-card h3 {
    margin: 0 0 14px;
    font-size: 20px;
}

.service-card p {
    margin: 0 0 25px;

    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

.featured p {
    color: rgba(255, 255, 255, 0.68);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--sys-blue);
    font-size: 13px;
    font-weight: 750;

    transition: var(--transition);
}

.featured .service-link {
    color: var(--sys-gold);
}

.service-link:hover {
    gap: 13px;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects-section {
    padding: 105px 0;

    background:
        linear-gradient(135deg,
            var(--sys-blue-deep),
            var(--sys-blue));
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.project-card {
    overflow: hidden;

    border-radius: 17px;
    background: var(--white);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);

    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-7px);
}

.project-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.project-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;

    color: rgba(255, 255, 255, 0.85);

    background:
        linear-gradient(135deg,
            #35519a,
            #172b68);

    font-size: 48px;

    transition: var(--transition);
}

.project-placeholder.second {
    background:
        linear-gradient(135deg,
            #596fa9,
            #233b7d);
}

.project-placeholder.third {
    background:
        linear-gradient(135deg,
            #263e82,
            #0f2259);
}

.project-placeholder.fourth {
    background:
        linear-gradient(135deg,
            #d0a928,
            #725b16);
}

.project-card:hover .project-placeholder {
    transform: scale(1.05);
}

.project-category {
    position: absolute;
    left: 20px;
    bottom: 20px;

    padding: 7px 12px;

    border-radius: 5px;
    background: var(--sys-gold);

    color: var(--sys-blue-deep);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.project-content {
    padding: 30px;
}

.project-number {
    color: #8b94a8;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.project-content h3 {
    margin: 9px 0 10px;

    color: var(--text-dark);
    font-size: 22px;
}

.project-content p {
    margin: 0 0 20px;

    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--sys-blue);
    font-size: 13px;
    font-weight: 750;
}

.project-link:hover {
    color: var(--sys-gold-dark);
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-section {
    padding: 105px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 14px;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;

    color: rgba(255, 255, 255, 0.9);

    background:
        linear-gradient(135deg,
            #243d85,
            #14275e);

    font-size: 34px;

    transition: transform 0.5s ease;
}

.gallery-placeholder span {
    font-size: 13px;
    font-weight: 700;
}

.gallery-placeholder.blue {
    background:
        linear-gradient(135deg,
            #5270b6,
            #273f82);
}

.gallery-placeholder.gold {
    color: var(--sys-blue-deep);
    background:
        linear-gradient(135deg,
            var(--sys-gold),
            #cfa82d);
}

.gallery-placeholder.dark {
    background:
        linear-gradient(135deg,
            #192d69,
            #0d1e4d);
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.06);
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    position: relative;
    overflow: hidden;

    padding: 95px 0;

    background: var(--light-bg);
}

.cta-content {
    position: relative;
    z-index: 2;

    max-width: 800px;
    margin: 0 auto;

    text-align: center;
}

.cta-content h2 {
    margin: 0 0 20px;

    color: var(--text-dark);
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1;
}

.cta-content h2 span {
    color: var(--sys-blue);
}

.cta-content p {
    max-width: 650px;
    margin: 0 auto;

    color: var(--text);
    font-size: 17px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 32px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 14px 22px;

    border: 1px solid var(--sys-blue);
    border-radius: 8px;

    color: var(--sys-blue);
    font-weight: 750;

    transition: var(--transition);
}

.btn-outline:hover {
    color: var(--white);
    background: var(--sys-blue);
    transform: translateY(-3px);
}

.cta-decoration {
    position: absolute;
    pointer-events: none;
}

.cta-circle {
    width: 300px;
    height: 300px;

    right: -100px;
    top: -130px;

    border-radius: 50%;
    border: 45px solid rgba(31, 52, 120, 0.04);
}

.cta-star {
    left: 10%;
    bottom: 25px;

    color: rgba(234, 185, 47, 0.25);
    font-size: 45px;
}


/* =========================================================
   ANIMATIONS SCROLL
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1000px) {

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .intro-text {
        max-width: 750px;
        margin: auto;
        text-align: center;
    }

    .intro-text .btn-primary {
        margin-top: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item.wide {
        grid-column: span 2;
    }
}


/* =========================================================
   RESPONSIVE MOBILE
========================================================= */

@media (max-width: 650px) {

    .container {
        width: 90%;
    }

    .page-hero {
        min-height: 310px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .intro-section,
    .services-section,
    .projects-section,
    .gallery-section {
        padding: 75px 0;
    }

    .intro-text h2,
    .section-heading h2 {
        font-size: 32px;
    }

    .visual-card {
        padding: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 210px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item.large,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .cta-section {
        padding: 75px 0;
    }

    .cta-content h2 {
        font-size: 35px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
    }
}


/* =========================================================
   PETIT ÉCRAN
========================================================= */

@media (max-width: 400px) {

    .hero-content h1 {
        font-size: 34px;
    }

    .visual-card {
        padding: 25px;
    }

    .project-content {
        padding: 24px;
    }
}

/* ===== CARTE BLOG : image 50% + contenu 50% ===== */
.blog-card {
    display: flex !important;
    flex-direction: row !important;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 260px;
    padding: 0 !important;
    margin-bottom: 25px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* 📷 Image = 50% */
.blog-card-image {
    flex: 0 0 50%;
    max-width: 50%;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

/* 📝 Contenu = 50% */
.blog-card-content {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .blog-card {
        flex-direction: column !important;
    }

    .blog-card-image,
    .blog-card-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .blog-card-image {
        height: 220px;
    }
}

/* ===== PAGINATION BLOG ===== */
.blog-pagination {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 50px 0 30px;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #fff;
    color: #0061FF;
    border: 2px solid #0061FF;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.pagination-btn:hover {
    background: #0061FF;
    color: #fff;
    transform: translateY(-2px);
}

.pagination-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination-num {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50% !important;
    color: #333;
    background: #fff;
    border: 1px solid #e7e7e7 !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination-num:hover {
    background: #f0f6ff;
    border-color: #0061FF !important;
    color: #0061FF;
}

.pagination-num.active {
    background: #0061FF !important;
    color: #fff !important;
    border-color: #0061FF !important;
    box-shadow: 0 4px 12px rgba(0, 97, 255, 0.3);
}

/* 📱 Responsive pagination */
@media (max-width: 576px) {
    .blog-pagination {
        gap: 10px;
    }

    .pagination-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .pagination-num {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/* =========================================================
   SECTION INTERVENTIONS
========================================================= */

.services-section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
}


/* =========================================================
   LISTE DES INTERVENTIONS
========================================================= */

.interventions-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 55px;
}


/* =========================================================
   CARTE INTERVENTION
========================================================= */

.intervention-card {
    position: relative;
    display: grid;
    grid-template-columns: 50% 50%;
    width: 100%;
    min-height: 380px;

    overflow: hidden;

    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 20px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* Effet au survol */

.intervention-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   IMAGE
========================================================= */

.intervention-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
    overflow: hidden;

    background: #eef1f5;
}


.intervention-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}


/* Zoom léger au hover */

.intervention-card:hover .intervention-image img {
    transform: scale(1.06);
}


/* =========================================================
   OVERLAY IMAGE
========================================================= */

.intervention-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.00) 60%,
            rgba(0, 0, 0, 0.10) 100%);

    pointer-events: none;
}


/* =========================================================
   CONTENU
========================================================= */

.intervention-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 55px 55px;

    background: #ffffff;
}


/* =========================================================
   LABEL
========================================================= */

.intervention-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 18px;

    color: var(--syscofie-blue, #0066cc);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}


.intervention-label i {
    font-size: 13px;
}


/* =========================================================
   TITRE
========================================================= */

.intervention-content h3 {
    margin: 0 0 22px;

    color: var(--syscofie-dark, #172033);

    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;

    line-height: 1.2;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.intervention-description {
    max-width: 540px;

    margin: 0;

    color: var(--syscofie-gray, #6c757d);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   BAS DE CARTE
========================================================= */

.intervention-content-bottom {
    margin-top: 35px;
}


.intervention-date {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--syscofie-dark, #172033);

    font-size: 14px;
    font-weight: 600;
}


.intervention-date i {
    color: var(--syscofie-blue, #0066cc);
    font-size: 17px;
}


/* Petite ligne décorative */

.intervention-line {
    width: 55px;
    height: 3px;

    margin-top: 20px;

    border-radius: 10px;

    background: var(--syscofie-blue, #0066cc);

    transition: width 0.4s ease;
}


.intervention-card:hover .intervention-line {
    width: 100px;
}


/* =========================================================
   AUCUNE INTERVENTION
========================================================= */

.intervention-empty {
    margin-top: 50px;
}


.intervention-empty h3 {
    color: var(--syscofie-dark, #172033);
}


.intervention-empty p {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;

    color: var(--syscofie-gray, #6c757d);
}


/* =========================================================
   PAGINATION
========================================================= */

.interventions-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    margin-top: 60px;
}


.page-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}


.page-num,
.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 42px;
    height: 42px;

    padding: 0 14px;

    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;

    background: #ffffff;

    color: var(--syscofie-dark, #172033);

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.page-num:hover,
.page-btn:hover {
    color: #ffffff;

    background: var(--syscofie-blue, #0066cc);
    border-color: var(--syscofie-blue, #0066cc);

    transform: translateY(-2px);
}


.page-num.active {
    color: #ffffff;

    background: var(--syscofie-blue, #0066cc);
    border-color: var(--syscofie-blue, #0066cc);

    box-shadow:
        0 5px 15px rgba(0, 102, 204, 0.25);
}


.page-btn {
    gap: 8px;
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 991px) {

    .services-section {
        padding: 80px 0;
    }


    .intervention-card {
        min-height: 330px;
    }


    .intervention-image {
        min-height: 330px;
    }


    .intervention-content {
        padding: 40px 35px;
    }


    .intervention-content h3 {
        font-size: 28px;
    }


    .intervention-description {
        font-size: 15px;
        line-height: 1.7;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .services-section {
        padding: 65px 0;
    }


    .interventions-list {
        gap: 25px;
        margin-top: 40px;
    }


    /* La carte devient verticale */

    .intervention-card {
        display: flex;
        flex-direction: column;

        min-height: auto;

        border-radius: 16px;
    }


    /* Image */

    .intervention-image {
        width: 100%;
        height: 260px;
        min-height: 260px;
    }


    /* Contenu */

    .intervention-content {
        padding: 32px 25px;
    }


    .intervention-label {
        margin-bottom: 14px;

        font-size: 11px;
    }


    .intervention-content h3 {
        margin-bottom: 17px;

        font-size: 25px;
    }


    .intervention-description {
        font-size: 15px;
        line-height: 1.7;
    }


    .intervention-content-bottom {
        margin-top: 28px;
    }


    /* Pagination */

    .interventions-pagination {
        flex-wrap: wrap;
        gap: 15px;

        margin-top: 45px;
    }


    .page-numbers {
        order: 1;
        width: 100%;

        justify-content: center;
    }


    .page-btn {
        order: 2;
    }

}


/* =========================================================
   PETIT MOBILE
========================================================= */

@media (max-width: 480px) {

    .intervention-image {
        height: 220px;
        min-height: 220px;
    }


    .intervention-content {
        padding: 27px 21px;
    }


    .intervention-content h3 {
        font-size: 23px;
    }


    .intervention-description {
        font-size: 14px;
    }


    .page-num {
        min-width: 38px;
        height: 38px;

        padding: 0 10px;
    }


    .page-btn {
        height: 40px;
        padding: 0 12px;
    }

    /* ============================================================
   PAGINATION SERVICES - CENTRÉE
   ============================================================ */

    /* Conteneur principal : centre tout horizontalement */
    .pagination-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 30px 0;
        padding: 0;
    }

    /* La liste de pagination */
    .pagination-wrapper ul.pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    /* Chaque item */
    .pagination-wrapper .pagination .page-item {
        margin: 0;
        display: inline-block;
    }

    /* Les liens/boutons */
    .pagination-wrapper .pagination .page-item .page-link {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 42px;
        height: 42px;
        padding: 0 14px;
        border: 1px solid #268dcf;
        border-radius: 8px;
        color: #268dcf;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        background-color: #ffffff;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    /* Survol */
    .pagination-wrapper .pagination .page-item .page-link:hover {
        background-color: #268dcf;
        color: #ffffff;
        border-color: #268dcf;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(38, 141, 207, 0.3);
    }

    /* Page active */
    .pagination-wrapper .pagination .page-item.active .page-link {
        background-color: #268dcf;
        color: #ffffff;
        border-color: #268dcf;
        box-shadow: 0 4px 10px rgba(38, 141, 207, 0.4);
    }

    /* Boutons désactivés (première/dernière page) */
    .pagination-wrapper .pagination .page-item.disabled .page-link {
        background-color: #f5f5f5;
        color: #cccccc;
        border-color: #e0e0e0;
        pointer-events: none;
        cursor: not-allowed;
    }

    /* Icônes des flèches */
    .pagination-wrapper .pagination .page-link i {
        font-size: 14px;
        line-height: 1;
    }

    /* Responsive : plus petit sur mobile */
    @media (max-width: 480px) {
        .pagination-wrapper .pagination .page-item .page-link {
            min-width: 36px;
            height: 36px;
            padding: 0 8px;
            font-size: 13px;
        }

        .pagination-wrapper .pagination {
            gap: 5px;
        }
    }

    /* Boutons de défilement */
    .team-scroll-buttons {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        margin-bottom: 20px;
    }

    .team-scroll-btn {
        width: 44px;
        height: 44px;
        border: 1px solid #268dcf;
        background: #ffffff;
        color: #268dcf;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .team-scroll-btn:hover {
        background: #268dcf;
        color: #ffffff;
        transform: scale(1.1);
        box-shadow: 0 4px 10px rgba(38, 141, 207, 0.3);
    }

    /* La grille doit défiler horizontalement */
    .team-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-behavior: smooth !important;
        gap: 20px !important;
        padding-bottom: 15px !important;
    }

    .team-grid::-webkit-scrollbar {
        height: 8px;
    }

    .team-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .team-grid::-webkit-scrollbar-thumb {
        background: #268dcf;
        border-radius: 10px;
    }

    /* Chaque carte garde une largeur fixe */
    .team-grid .team-card {
        flex: 0 0 300px !important;
        min-width: 300px !important;
    }

    .team-section .container {
        position: relative;
    }

    /* Les boutons de défilement */
    .team-section .container {
        position: relative;
    }

    /* Container des flèches : superposées sur les côtés */
    .team-scroll-buttons {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        /* pour cliquer à travers */
        z-index: 10;
        padding: 0 -20px;
    }

    .team-scroll-btn {
        pointer-events: auto;
        /* réactive le clic sur les boutons */
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: none;
        background: #268dcf;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        margin: 0 -20px;
        /* les fait ressortir légèrement */
    }

    .team-scroll-btn:hover {
        background: #1a6ea8;
        transform: scale(1.1);
    }

    /* La grille devient un slider horizontal */
    .team-grid {
        display: flex;
        gap: 25px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 10px 5px 20px;
        scrollbar-width: none;
        /* Firefox */
    }

    .team-grid::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    /* Chaque carte garde une largeur fixe */
    .team-card {
        flex: 0 0 calc(33.333% - 17px);
        /* 3 cartes visibles */
        min-width: 280px;
        background: white;
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        text-align: center;
    }

    /* Sur mobile : 1 seule carte visible */
    @media (max-width: 768px) {
        .team-card {
            flex: 0 0 calc(100% - 10px);
        }
    }
    /* ============================================================
   BOUTON RETOUR AU SERVICE
   ============================================================ */
.btn-retour-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: transparent;
    color: #1A2A6C;
    border: 2px solid #1A2A6C;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 12px;
}

.btn-retour-service:hover {
    background-color: #1A2A6C;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(26, 42, 108, 0.3);
    text-decoration: none;
}

.btn-retour-service i {
    font-size: 18px;
}

/* Sur mobile, les boutons se placent l'un sous l'autre */
@media (max-width: 768px) {
    .btn-retour-service {
        margin-left: 0;
        margin-top: 10px;
        display: flex;
        width: 100%;
    }
}


}