/* ===== VARIABLES ===== */
:root {
    --primary-blue: #4B2E2B;
    --primary-pink: #F5F5DC;
    --dark-blue: #0082b9;
    --dark-pink: #e63e67;
    --light-blue: rgba(0, 163, 229, 0.1);
    --light-pink: rgba(254, 76, 120, 0.1);
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --gray-light: #f8f9fa;
    --gray-dark: #343a40;
    --white: #ffffff;
    --black: #000000;
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 15px 35px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 45px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --border-radius-sm: 10px;
    --border-radius-md: 15px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
}

/* ===== BASE ===== */

.container {
    max-width: 1280px;
}

/* ===== SECTION TITLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.section-title-left {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
}

.section-title-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    font-weight: 500;
    padding: 12px 25px;
    border-radius: 10px;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.btn-primary-blue {
    background-color: var(--primary-blue);
    color: var(--primary-pink);
    border: none;
}

.btn-primary-blue:hover {
    background-color: var(--primary-blue) !important;
    color: var(--primary-pink) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.the-btn {
    background-color: var(--primary-blue);
    color: var(--primary-pink);
    border: none;
}

.the-btn:hover {
    background-color: var(--primary-blue);
    color: var(--primary-pink);
    border: none;
}

.btn-primary-pink {
    background-color: var(--primary-pink);
    color: var(--white);
    border: none;
}

.btn-primary-pink:hover {
    background-color: var(--dark-pink);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(254, 76, 120, 0.3);
}

.btn-outline-blue {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 10px 28px;
}

.btn-outline-blue:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.the-btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.the-btn-outline:hover {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    transform: translateY(-2px);
}

.btn-outline-pink {
    background-color: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
}

.btn-outline-pink:hover {
    background-color: var(--primary-pink);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-light:hover {
    background-color: var(--primary-pink);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-pink);
    transform: translateY(-2px);
}



/* ===== HERO SECTIONS ===== */
.hero-section {
    padding: 40px 0 80px;
    background: var(--primary-pink);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 30px;
}

.page-hero {
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(75, 46, 43, 0.85);
    z-index: 1;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    color: white;
}

.page-hero .breadcrumb {
    background: transparent;
    justify-content: center;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.page-hero .breadcrumb-item.active {
    color: rgba(255,255,255,0.8);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: white;
}

/* ===== CAROUSEL ===== */
.hero-carousel {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 400px;
}

.hero-carousel .carousel-item {
    height: 100%;
    min-height: 400px;
}

.hero-carousel .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    min-height: 400px;
}

.hero-carousel .carousel-indicators {
    margin-bottom: 1rem;
}

.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    opacity: 0.5;
    margin: 0 5px;
}

.hero-carousel .carousel-indicators button.active {
    opacity: 1;
    background-color: var(--primary-pink);
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 1;
}

.hero-carousel .carousel-control-prev {
    left: 20px;
}

.hero-carousel .carousel-control-next {
    right: 20px;
}

/* ===== SECTIONS COMMUNES ===== */
.section-padding {
    padding: 80px 0;
}

/* C'EST TOUT ! Laissez Bootstrap gérer le sticky avec la classe sticky-top */

/* ===== PRÉSENTATION / ABOUT ===== */
.about-intro {
    background: white;
}

.about-image,
.intro-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img,
.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img,
.intro-image:hover img {
    transform: scale(1.05);
}

.highlight-box {
    background: linear-gradient(135deg, rgba(0,163,229,0.1), rgba(254,76,120,0.1));
    border-left: 4px solid var(--primary-pink);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

/* ===== HISTOIRE / TIMELINE ===== */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--primary-pink));
    top: 0;
}

.timeline-item {
    margin-bottom: 60px;
    position: relative;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    top: -20px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid rgba(0,163,229,0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: white;
    border-top: 2px solid var(--primary-pink);
    border-right: 2px solid var(--primary-pink);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -10px;
    transform: rotate(45deg);
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -10px;
    transform: rotate(-135deg);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-year {
        left: 30px;
        transform: translateX(0);
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
    
    .timeline-content::before {
        left: -10px !important;
        transform: rotate(45deg) !important;
    }
}
/* SECTION MISSION MODERNE - 3 CARDS EN LIGNE */
.mission-section-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.mission-section-modern h2 {
    text-align: center;
}

.mission-section-modern .section-subtitle {
    text-align: center !important;
}

.mission-card-modern {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(75, 46, 43, 0.1);
    display: flex;
    flex-direction: column;
}

.mission-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(75, 46, 43, 0.15);
}

.mission-card-header {
    position: relative;
    padding: 30px 25px 25px;
    background: linear-gradient(135deg, #4B2E2B 0%, #6B4E4B 100%);
    color: white;
}

.mission-card-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: white;
    border-radius: 50% 50% 0 0;
}

.mission-icon-modern {
    width: 70px;
    height: 70px;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.mission-icon-modern i {
    font-size: 32px;
    color: var(--primary-blue);
}

.mission-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
    color: var(--white);
}

.mission-card-body {
    padding: 35px 25px 25px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.mission-card-body p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* Liste compacte pour objectifs */
.objectives-list-compact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.objectives-list-compact li {
    padding: 8px 0;
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 0.9rem;
}

.objectives-list-compact i {
    color: var(--primary-blue);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.objectives-list-compact span {
    color: #666;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
    /* Sur tablette, Mission et Vision côte à côte, Objectifs en dessous pleine largeur */
    .col-lg-4:last-child .mission-card-modern {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    /* Sur mobile, toutes les cards empilées */
    .mission-card-header {
        padding: 25px 20px 20px;
    }
    
    .mission-card-body {
        padding: 30px 20px 20px;
    }
    
    .mission-card-header h3 {
        font-size: 1.3rem;
    }
    
    .mission-icon-modern {
        width: 60px;
        height: 60px;
    }
    
    .mission-icon-modern i {
        font-size: 28px;
    }
}

/* ===== GOUVERNANCE ===== */
.governance-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.governance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(0,163,229,0.15);
}

.governance-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.org-chart {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    position: relative;
}

.org-level::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background: var(--primary-blue);
}

.org-level:first-child::before {
    display: none;
}

.org-item {
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    min-width: 200px;
    text-align: center;
    border-left: 3px solid var(--primary-pink);
}

.org-item strong {
    color: var(--primary-blue);
    display: block;
    margin-bottom: 5px;
}

/* ===== STATISTIQUES ===== */
.stats-section {
    padding: 60px 0;
    background: var(--primary-blue);
    color: var(--white);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-box .number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box .label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== PRODUITS CARDS ===== */
.products-section {
    padding: 80px 0;
    background: var(--white);
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    padding: 30px 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* background: var(--primary-blue); */
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.product-card:hover::before {
    transform: translateX(0);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.product-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 28px;
}

.product-card h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.product-card p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.product-card .btn-link {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.product-card .btn-link:hover {
    color: var(--primary-blue);
}

.product-card .btn-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.product-card .btn-link:hover i {
    transform: translateX(5px);
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.product-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.product-features i {
    color: var(--primary-blue);
    margin-right: 10px;
    font-size: 14px;
}

/* ===== FEATURED PRODUCTS (Swiper) ===== */
.featured-products-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
}

.featured-swiper {
    padding: 20px 0 60px;
    margin: -20px 0;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.product-featured-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    width: 100%;
    border: 1px solid var(--gray-200);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-featured-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.product-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 50px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-featured-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.product-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-featured-card:hover .product-featured-image img {
    transform: scale(1.1);
}

.product-featured-content {
    padding: 25px 20px;
    background: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-featured-content h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.product-featured-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.product-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

.product-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.product-link:hover {
    color: var(--primary-blue);
}

.product-link:hover i {
    transform: translateX(8px);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(254, 76, 120, 0.3);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: var(--white);
}

.swiper-button-next {
    right: -10px;
}

.swiper-button-prev {
    left: -10px;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    opacity: 1;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--primary-pink);
    width: 25px;
    border-radius: 10px;
}

/* ===== PROCESSUS ===== */
.process-section {
    padding: 80px 0;
    background: var(--white);
}

.process-step {
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 25px;
}

.process-step h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--gray-600);
}

/* ===== TÉMOIGNAGES ===== */
.testimonials-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    border-left: 5px solid var(--primary-pink);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
}

.testimonial-card h5 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.testimonial-card small {
    color: var(--primary-pink);
}

.testimonial-card p {
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 0;
}

/* ===== ACTUALITÉS / BLOG ===== */
.blog-section {
    padding: 80px 0;
    background: var(--white);
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-content h5 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.blog-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.blog-link {
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--primary-blue);
}

.blog-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* ===== AVANTAGES TABLE ===== */
.advantages-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.advantage-item {
    display: flex;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.advantage-item:last-child {
    border-bottom: none;
}

.advantage-item:hover {
    background: linear-gradient(135deg, rgba(0,163,229,0.02), rgba(254,76,120,0.02));
    padding-left: 35px;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.advantage-content h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.advantage-content p {
    margin-bottom: 0;
    color: #666;
}

/* ===== CONDITIONS ===== */
.conditions-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    height: 100%;
    border: 1px solid rgba(0,163,229,0.1);
}

.conditions-card h4 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.conditions-card h4 i {
    color: var(--primary-blue);
    margin-right: 10px;
}

.conditions-list {
    list-style: none;
    padding: 0;
}

.conditions-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.conditions-list li i {
    color: var(--primary-blue);
    margin-right: 10px;
    margin-top: 3px;
}

.table-custom {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.table-custom th {
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
    border: none;
}

.table-custom td {
    padding: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.table-custom tr:last-child td {
    border-bottom: none;
}

/* ===== CTA SECTION ===== */
/* .cta-section {
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
} */

/* Call to Action Section */
.cta-section {
    height: 400px;
    border-radius: 0;
}

.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 60px;
}

.cta-content {
    background-color: var(--primary-blue);
    padding: 50px 60px;
    max-width: 600px;
    border-radius: 10px;
}

.cta-title {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-description {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 30px;
}

.btn-cta {
    background-color: var(--primary-pink);
    color: var(--primary-blue);
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.btn-cta:hover {
    background-color: #f4511e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 87, 34, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a1a;
    color: #999;
    padding: 60px 0 20px;
}

.footer h5 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary-blue);
}

.footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: var(--white);
    transition: var(--transition);
}

.footer .social-icons a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer hr {
    border-color: #333;
    margin: 40px 0 20px;
}

/* ===== MISSION SECTION ===== */
.mission-section {
    padding: 80px 0;
    /* background: var(--gray-100); */
}

.mission-image {
    overflow: hidden;
}

.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.mission-image:hover img {
    transform: scale(1.05);
}

.mission-content {
    padding-left: 40px;
}

.mission-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title,
    .section-title-left {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 40px 0 60px;
    }
    
    .mission-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 768px) {
    /* body {
        padding-top: 70px;
    } */
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-carousel {
        min-height: 300px;
    }
    
    .hero-carousel .carousel-item {
        min-height: 300px;
    }
    
    .hero-carousel .carousel-item img {
        min-height: 300px;
    }
    
    .section-title,
    .section-title-left {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-box .number {
        font-size: 2.5rem;
    }
    
    .product-featured-image {
        height: 200px;
    }
    
    .partner-item {
        width: 140px;
        margin: 0 20px;
    }
    
    .partner-item img {
        max-height: 60px;
    }
    
    .partners-track {
        animation: slide 20s linear infinite;
    }
    
    .partners-section::before,
    .partners-section::after {
        width: 50px;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero-carousel {
        min-height: 250px;
    }
    
    .hero-carousel .carousel-item {
        min-height: 250px;
    }
    
    .hero-carousel .carousel-item img {
        min-height: 250px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .product-featured-content h3 {
        font-size: 1.2rem;
    }
    
    .product-featured-content p {
        font-size: 0.9rem;
    }
}

/* ===== FORMULAIRE DE CONTACT ===== */
.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 163, 229, 0.1);
}

.form-control, .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 163, 229, 0.1);
    outline: none;
}

.form-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.contact-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.contact-image:hover img {
    transform: scale(1.05);
}

/* ===== INFORMATIONS DE CONTACT ===== */
.contact-info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 163, 229, 0.1);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(0, 163, 229, 0.15);
    border-color: var(--primary-blue);
}

.contact-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-card-title {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin: 0;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    background: rgba(0, 163, 229, 0.05);
}

.detail-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.detail-content {
    flex: 1;
}

.detail-content h6 {
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 1rem;
}

.detail-content p, .detail-content a {
    color: #666;
    text-decoration: none;
    margin-bottom: 0;
    line-height: 1.5;
}

.opening-hours-box {
    background: linear-gradient(135deg, rgba(0, 163, 229, 0.05), rgba(254, 76, 120, 0.05));
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    /* border-bottom: 1px dashed rgba(0, 0, 0, 0.1); */
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: #333;
}

.hours-time {
    color: var(--primary-blue);
    font-weight: 500;
}

.special-note {
    font-size: 0.9rem;
    color: #777;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(254, 76, 120, 0.3);
    color: white;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button i {
    margin-right: 10px;
    font-size: 20px;
}

/* ===== AGENCES MINIATURES ===== */
.agences-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.agence-mini-card {
    background: rgba(0, 163, 229, 0.05);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
}

.agence-mini-card h6 {
    /* color: var(--primary-blue); */
    margin-bottom: 8px;
    font-size: 1rem;
}

.agence-mini-card p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #666;
}

.agence-mini-card i {
    color: var(--primary-blue);
    width: 18px;
    margin-right: 5px;
}

.btn-view-all {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    /* color: var(--primary-pink); */
    transform: translateX(5px);
}

/* ===== CARTE ===== */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 450px;
    margin-top: 40px;
}

#map {
    height: 100%;
    width: 100%;
    z-index: 1;
}

/* ===== AJOUTS AUX BOUTONS EXISTANTS ===== */
.btn-primary-blue {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary-blue:hover {
    background-color: var(--dark-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 163, 229, 0.3);
}

/* ===== CARTES DE PROFIL ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.profile-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 163, 229, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 163, 229, 0.15);
    border-color: var(--primary-blue);
}

.profile-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-card:hover .profile-image img {
    transform: scale(1.05);
}

.profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.profile-card:hover .profile-overlay {
    transform: translateY(0);
}

.profile-overlay p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.profile-overlay i {
    color: var(--primary-blue);
    margin-right: 5px;
}

.profile-info {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.profile-name {
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.profile-position {
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1rem;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.profile-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.profile-social {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.profile-social a {
    width: 35px;
    height: 35px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.profile-social a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(254, 76, 120, 0.3);
}

/* ===== CARTE DIRECTION (MISE EN AVANT) ===== */
.leadership-card {
    background: linear-gradient(135deg, #f8f9fa, white);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 163, 229, 0.1);
    margin-bottom: 40px;
}

.leadership-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.leadership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leadership-info h2 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.leadership-title {
    /* color: var(--primary-pink); */
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
}

.leadership-bio {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.leadership-quote {
    background: linear-gradient(135deg, rgba(0,163,229,0.05), rgba(254,76,120,0.05));
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-blue);
    font-style: italic;
    margin-top: 20px;
}

/* ===== CONSEIL D'ADMINISTRATION ===== */
.board-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 163, 229, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.board-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 163, 229, 0.15);
}

.board-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid transparent;
    background: var(--primary-blue);
    padding: 3px;
}

.board-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
}

.board-name {
    color: var(--primary-blue);
    margin-bottom: 5px;
    text-align: center;
}

.board-role {
    color: var(--primary-pink);
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.board-desc {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 0;
}

/* ===== VALEURS HUMAINES ===== */
.values-section {
    background: linear-gradient(135deg, rgba(0,163,229,0.02), rgba(254,76,120,0.02));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '"';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 300px;
    font-family: 'Montserrat', sans-serif;
    color: rgba(76, 88, 254, 0.05);
    z-index: 0;
}

.values-content {
    position: relative;
    z-index: 1;
}

.values-quote {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.signature {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.signature img {
    height: 50px;
    margin-left: 15px;
}

/* ===== STATS TEAM ===== */
.team-stats {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

.stat-item-team {
    text-align: center;
}

.stat-number-team {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-label-team {
    color: #777;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== RESPONSIVE AJOUTS ===== */
@media (max-width: 768px) {
    .leadership-card {
        padding: 25px;
    }
    
    .leadership-image {
        height: 300px;
        margin-bottom: 25px;
    }
    
    .profile-image {
        height: 250px;
    }
    
    .team-stats .row {
        gap: 20px;
    }
}

/* ===== PAGE ACTUALITÉS ===== */

/* Filtres */
.filters-section {
    padding: 40px 0 0px;
}

.filters-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    background: transparent;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover {
    background: var(--primary-blue);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 163, 229, 0.3);
    border-color: var(--primary-blue);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 163, 229, 0.3);
    border-color: var(--primary-blue);
}

/* Grille d'actualités */
.news-section {
    padding: 0 0 60px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-200);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.news-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.news-meta i {
    color: var(--primary-blue);
    margin-right: 5px;
}

.news-content h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.news-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
    flex: 1;
}

.news-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}

.news-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.news-link:hover {
    color: var(--primary-pink);
}

.news-link:hover i {
    transform: translateX(8px);
}

/* Article à la une */
.featured-news {
    background: linear-gradient(135deg, var(--light-blue), var(--light-pink));
    padding: 60px 0;
    margin-bottom: 40px;
}

.featured-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: row;
}

.featured-image {
    flex: 1;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    align-self: flex-start;
}

.featured-content h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 20px;
}

.featured-content p {
    color: var(--gray-600);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Pagination */
.pagination-section {
    padding: 20px 0 40px;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--primary-blue);
}

.page-link:hover,
.page-link.active {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 76, 120, 0.3);
    border-color: transparent;
}

.page-link.next-prev {
    width: auto;
    padding: 0 20px;
    border-radius: 50px;
}

.load-more-btn {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.load-more-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(254, 76, 120, 0.3);
    border-color: transparent;
}

.load-more-btn i {
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: translateX(5px);
}

/* Newsletter */
.newsletter-section {
    background: var(--white);
    padding: 60px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-box h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.newsletter-box p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px var(--light-blue);
}

.newsletter-form button {
    padding: 15px 30px;
    white-space: nowrap;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(254, 76, 120, 0.3);
}

/* Responsive pour actualités */
@media (max-width: 992px) {
    .featured-card {
        flex-direction: column;
    }

    .featured-image {
        min-height: 300px;
    }

    .featured-content {
        padding: 30px;
    }

    .featured-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .filters-wrapper {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .pagination {
        gap: 5px;
    }

    .page-link {
        width: 40px;
        height: 40px;
    }
}

/* ===== OFFRES D'EMPLOI ===== */
.jobs-section {
    padding: 80px 0;
    background: var(--white);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.job-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-blue);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.job-card:hover::before {
    transform: translateX(0);
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.job-tag {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.job-tag.pink {
    background: var(--light-pink);
    color: var(--primary-pink);
}

.job-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.job-details {
    margin: 20px 0;
}

.job-detail {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--gray-600);
}

.job-detail i {
    width: 25px;
    color: var(--primary-blue);
    margin-right: 10px;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.job-date {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.job-date i {
    margin-right: 5px;
    color: var(--primary-pink);
}

.job-link {
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.job-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 76, 120, 0.3);
    color: var(--white);
}

/* ===== PROCESSUS ===== */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-light), var(--light-pink));
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--primary-pink));
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid var(--gray-200);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-top: 2px solid var(--primary-pink);
    border-right: 2px solid var(--primary-pink);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -10px;
    transform: rotate(45deg);
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -10px;
    transform: rotate(-135deg);
}

.timeline-icon {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.timeline-content h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--gray-600);
    margin: 0;
}

/* ===== CANDIDATURE SPONTANÉE ===== */
.candidature-section {
    padding: 80px 0;
    background: var(--white);
}

.candidature-wrapper {
    background: linear-gradient(135deg, var(--white), var(--gray-100));
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.candidature-header {
    text-align: center;
    margin-bottom: 40px;
}

.candidature-header h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 15px;
}

.candidature-header p {
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.candidature-form .row {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.form-control, .form-select {
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px var(--light-blue);
    outline: none;
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.upload-area {
    border: 2px dashed var(--gray-200);
    border-radius: var(--border-radius-sm);
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.upload-area:hover {
    border-color: var(--primary-blue);
    background: var(--light-blue);
}

.upload-area i {
    font-size: 2.5rem;
    color: var(--primary-pink);
    margin-bottom: 10px;
}

.upload-area p {
    color: var(--gray-600);
    margin: 0;
}

.upload-area small {
    color: var(--gray-600);
    font-size: 0.8rem;
}

.file-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--light-blue);
    padding: 10px 15px;
    border-radius: var(--border-radius-sm);
    margin-top: 10px;
}

.file-info i {
    color: var(--primary-blue);
    margin-right: 10px;
}

.file-info .remove-file {
    color: #dc3545;
    cursor: pointer;
    transition: var(--transition);
}

.file-info .remove-file:hover {
    transform: scale(1.1);
}

.form-check-input:checked {
    background-color: var(--primary-pink);
    border-color: var(--primary-pink);
}

.form-check-label a {
    color: var(--primary-blue);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(254, 76, 120, 0.3);
}

/* ===== STATISTIQUES ===== */
.stats-section {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 2.8rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
    }

    .timeline-item .timeline-content::before {
        left: -10px !important;
        transform: rotate(45deg) !important;
    }

    .timeline-icon {
        left: 30px;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    /* .page-hero {
        padding: 80px 0;
    } */

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .candidature-wrapper {
        padding: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .job-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .job-link {
        width: 100%;
        text-align: center;
    }
}


/* ===== SECTION SERVICES D'ÉPARGNE ===== */
.epargne-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title-epargne {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title-epargne::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.section-subtitle-epargne {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Cards Épargne */
/* SECTION ÉPARGNE AVEC BACKGROUND */
.epargne-section {
    padding: 80px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
                url('../assets/img/DSC_1733.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* Overlay pattern pour plus de profondeur */
.epargne-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.epargne-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(75, 46, 43, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.epargne-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(75, 46, 43, 0.15);
}

.epargne-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.epargne-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4B2E2B 0%, #6B4E4B 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 5px 20px rgba(75, 46, 43, 0.3);
}

.epargne-badge {
    background: linear-gradient(135deg, rgba(75, 46, 43, 0.1), rgba(75, 46, 43, 0.05));
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(75, 46, 43, 0.2);
}

.epargne-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.epargne-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    flex: 1;
}

.epargne-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.epargne-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-weight: 500;
}

.epargne-features li:last-child {
    border-bottom: none;
}

.epargne-features i {
    color: var(--primary-blue);
    font-size: 18px;
    flex-shrink: 0;
}

/* Tableau Comparatif */
.comparison-section {
    margin-top: 60px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.comparison-section h3 {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.8rem;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 15px;
}

.comparison-table thead tr {
    background: linear-gradient(135deg, #4B2E2B 0%, #6B4E4B 100%);
}

.comparison-table thead th {
    padding: 20px;
    text-align: left;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(75, 46, 43, 0.02);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody td {
    padding: 20px;
    color: #666;
}

.comparison-table tbody td strong {
    color: #333;
}

/* Badges du tableau */
.badge-high {
    background: #dc3545;
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-medium {
    background: #ffc107;
    color: #333;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-low {
    background: #28a745;
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-yes {
    background: #28a745;
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-no {
    background: #6c757d;
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .epargne-section {
        padding: 60px 0;
    }

    .section-title-epargne {
        font-size: 2rem;
    }

    .epargne-card {
        padding: 30px 20px;
    }

    .epargne-icon-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .epargne-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .comparison-section {
        padding: 25px 15px;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 10px;
    }
}


/* ===== SECTION SERVICES DE CRÉDIT ===== */
/* SECTION CRÉDIT AVEC BACKGROUND */
.credit-section {
    padding: 80px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), 
                url('../assets/img/DSC_1733.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.credit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234B2E2B' fill-opacity='0.02'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.section-title-credit {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title-credit::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.section-subtitle-credit {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Cards Crédit */
.credit-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(75, 46, 43, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.credit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(75, 46, 43, 0.15);
}

.credit-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.credit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4B2E2B 0%, #6B4E4B 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 5px 20px rgba(75, 46, 43, 0.3);
}

.credit-badge {
    background: linear-gradient(135deg, rgba(75, 46, 43, 0.1), rgba(75, 46, 43, 0.05));
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(75, 46, 43, 0.2);
}

.credit-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.credit-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    flex: 1;
}

.credit-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credit-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-weight: 500;
}

.credit-features li:last-child {
    border-bottom: none;
}

.credit-features i {
    color: var(--primary-blue);
    font-size: 18px;
    flex-shrink: 0;
}

/* Box Conditions Crédit */
.conditions-credit-box {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(75, 46, 43, 0.03), rgba(75, 46, 43, 0.01));
    border-radius: 20px;
    padding: 50px;
    border: 2px solid rgba(75, 46, 43, 0.1);
}

.conditions-icon-big {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #4B2E2B 0%, #6B4E4B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 15px 50px rgba(75, 46, 43, 0.3);
}

.conditions-icon-big i {
    font-size: 80px;
    color: white;
}

.conditions-credit-box h3 {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 2rem;
}

.conditions-credit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.conditions-credit-list li {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.conditions-credit-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(75, 46, 43, 0.15);
}

.conditions-credit-list li:last-child {
    margin-bottom: 0;
}

.condition-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4B2E2B 0%, #6B4E4B 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(75, 46, 43, 0.3);
}

.condition-text {
    flex: 1;
}

.condition-text strong {
    color: var(--primary-blue);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.condition-text p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .credit-section {
        padding: 60px 0;
    }

    .section-title-credit {
        font-size: 2rem;
    }

    .credit-card {
        padding: 30px 20px;
    }

    .credit-icon-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .credit-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .conditions-credit-box {
        padding: 30px 20px;
    }

    .conditions-icon-big {
        width: 150px;
        height: 150px;
        margin-bottom: 30px;
    }

    .conditions-icon-big i {
        font-size: 60px;
    }

    .conditions-credit-box h3 {
        font-size: 1.5rem;
    }

    .conditions-credit-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ===== SECTION CONDITIONS & DOCUMENTS ===== */
/* SECTION CONDITIONS AVEC BACKGROUND */
.conditions-documents-section {
    padding: 80px 0;
    background: linear-gradient(rgba(248, 249, 250, 0.97), rgba(248, 249, 250, 0.97)), 
                url('../assets/img/DSC_1733.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.conditions-documents-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234B2E2B' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Titres de section */
.section-title-conditions,
.section-title-documents {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title-conditions::after,
.section-title-documents::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.section-subtitle-conditions,
.section-subtitle-documents {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Wrapper conditions */
.conditions-access-wrapper {
    margin-bottom: 80px;
}

/* Box Conditions */
.conditions-box {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(75, 46, 43, 0.1);
    transition: all 0.4s ease;
}

.conditions-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(75, 46, 43, 0.15);
}

.conditions-header {
    background: linear-gradient(135deg, #4B2E2B 0%, #6B4E4B 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.conditions-icon-circle {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.conditions-icon-circle i {
    font-size: 48px;
    color: white;
}

.conditions-header h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.subtitle-box {
    font-size: 0.95rem;
    opacity: 0.95;
    margin: 0;
}

.conditions-body {
    padding: 40px 30px;
}

/* Checklist */
.conditions-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.conditions-checklist li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.conditions-checklist li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.check-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4B2E2B 0%, #6B4E4B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(75, 46, 43, 0.2);
}

.check-icon i {
    color: white;
    font-size: 18px;
}

.check-content {
    flex: 1;
}

.check-content strong {
    color: var(--primary-blue);
    font-size: 1.05rem;
    display: block;
    margin-bottom: 5px;
}

.check-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Note importante */
.important-note {
    margin-top: 30px;
    background: linear-gradient(135deg, rgba(75, 46, 43, 0.05), rgba(75, 46, 43, 0.02));
    border-left: 4px solid var(--primary-blue);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: start;
}

.important-note i {
    font-size: 24px;
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 3px;
}

.important-note p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.important-note strong {
    color: var(--primary-blue);
}

/* Wrapper documents */
.documents-wrapper {
    margin-top: 80px;
}

/* Grille documents */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.document-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.document-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4B2E2B 0%, #6B4E4B 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.document-card:hover::before {
    transform: scaleX(1);
}

.document-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(75, 46, 43, 0.15);
    border-color: rgba(75, 46, 43, 0.1);
}

.document-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(75, 46, 43, 0.1), rgba(75, 46, 43, 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.document-card:hover .document-icon {
    background: linear-gradient(135deg, #4B2E2B 0%, #6B4E4B 100%);
    transform: scale(1.1);
}

.document-icon i {
    font-size: 32px;
    color: var(--primary-blue);
    transition: color 0.4s ease;
}

.document-card:hover .document-icon i {
    color: white;
}

.document-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.document-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* CTA Download */
.download-cta {
    background: linear-gradient(135deg, #4B2E2B 0%, #6B4E4B 100%);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 15px 50px rgba(75, 46, 43, 0.3);
}

.download-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.download-icon i {
    font-size: 48px;
    color: white;
}

.download-content {
    flex: 1;
    color: white;
}

.download-content h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.download-content p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--primary-blue);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .conditions-documents-section {
        padding: 60px 0;
    }

    .section-title-conditions,
    .section-title-documents {
        font-size: 2rem;
    }

    .conditions-header {
        padding: 30px 20px;
    }

    .conditions-icon-circle {
        width: 80px;
        height: 80px;
    }

    .conditions-icon-circle i {
        font-size: 36px;
    }

    .conditions-header h3 {
        font-size: 1.5rem;
    }

    .conditions-body {
        padding: 30px 20px;
    }

    .documents-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .download-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .download-icon {
        width: 80px;
        height: 80px;
    }

    .download-icon i {
        font-size: 36px;
    }

    .download-content h4 {
        font-size: 1.4rem;
    }
}

/* ===== DOCUMENTS SIMPLE ===== */
.documents-wrapper {
    margin-top: 80px;
}

.documents-simple-box {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(75, 46, 43, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.documents-simple-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.documents-simple-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.documents-simple-list li:last-child {
    border-bottom: none;
}

.documents-simple-list li:hover {
    padding-left: 10px;
    background: rgba(75, 46, 43, 0.02);
}

.documents-simple-list i {
    color: var(--primary-blue);
    font-size: 20px;
    flex-shrink: 0;
}

.documents-simple-list span {
    color: #333;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .documents-simple-box {
        padding: 30px 20px;
    }

    .documents-simple-list li {
        padding: 15px 0;
    }

    .documents-simple-list i {
        font-size: 18px;
    }

    .documents-simple-list span {
        font-size: 0.95rem;
    }
}


/* ===== SECTION RÉSEAU ET AGENCES ===== */
.reseau-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title-reseau {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title-reseau::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.section-subtitle-reseau {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats du réseau */
.reseau-stats {
    margin-bottom: 50px;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(75, 46, 43, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(75, 46, 43, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4B2E2B 0%, #6B4E4B 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 32px;
    color: white;
}

.stat-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1;
}

.stat-content p {
    color: #666;
    margin: 5px 0 0 0;
    font-size: 0.95rem;
}

/* Filtre */
.agences-filter {
    background: white;
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.05rem;
}

.filter-label i {
    font-size: 18px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
}

.filter-btn {
    background: transparent;
    border: 2px solid rgba(75, 46, 43, 0.2);
    color: #666;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.filter-btn.active {
    background: linear-gradient(135deg, #4B2E2B 0%, #6B4E4B 100%);
    color: white;
    border-color: var(--primary-blue);
}

/* Grille des agences */
.agences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.agence-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    /* border: 1px solid rgba(75, 46, 43, 0.1); */
}

.agence-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(75, 46, 43, 0.15);
}

.agence-header {
    background: linear-gradient(135deg, #F5F5DC 0%, #F5F5DC 100%);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.agence-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgb(255, 255, 255);
}

.agence-icon i {
    font-size: 28px;
    color: white;
}

.agence-badge {
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.agence-body {
    padding: 25px;
}

.agence-body h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.agence-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: start;
}

.info-item i {
    color: var(--primary-blue);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.info-item strong {
    color: #333;
    font-size: 1rem;
    display: block;
    margin-bottom: 3px;
}

.info-item p {
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.info-item a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-item a:hover {
    color: #6B4E4B;
    text-decoration: underline;
}

/* CTA Contact */
.reseau-cta {
    margin-top: 60px;
    background: linear-gradient(135deg, #4B2E2B 0%, #6B4E4B 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(75, 46, 43, 0.3);
}

.reseau-cta h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.reseau-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    margin: 0;
}

.btn-contact-agence {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--primary-blue);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-contact-agence:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .reseau-section {
        padding: 60px 0;
    }

    .section-title-reseau {
        font-size: 2rem;
    }

    .agences-grid {
        grid-template-columns: 1fr;
    }

    .agences-filter {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-buttons {
        width: 100%;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
    }

    .stat-icon i {
        font-size: 28px;
    }

    .stat-content h3 {
        font-size: 2rem;
    }

    .reseau-cta {
        padding: 30px 20px;
        text-align: center;
    }

    .reseau-cta .col-lg-4 {
        margin-top: 20px;
    }
}

/* Correction hauteur card produits */
.service-card-accent {
    height: auto !important;
    min-height: 100%;
}

.btn-service-accent {
    margin-top: auto;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding-right: 45px; /* Espace pour le bouton */
}

.search-btn {
    position: absolute;
    right: 5px;
    background: #4B2E2B;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #6B4E4B;
    transform: scale(1.05);
}

.search-btn i {
    font-size: 14px;
}