/* STYLES DU MODULE EXPERTISE */
.op-expertise-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

.op-expertise-swiper {
    overflow: hidden;
    padding-bottom: 50px;
    /* Espace pour la pagination */
}

.op-expertise-item {
    background: radial-gradient(circle at right, var(--section-bg-color) 0%, rgba(130, 130, 130, 0.04) 100%);
    padding: 30px;
    border: var(--global-border);
    border-radius: var(--global-radius);
    transition: 0.3s all ease-in-out;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.op-expertise-item:hover {
    box-shadow: var(--global-shadow);
    border-color: var(--onepager-color2);
}

/* Numéro en fond */
.op-expertise-item::before {
    content: attr(data-index);
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--onepager-color2);
    line-height: 1;
    z-index: 0;
    opacity: 0.3;
    /* Ajusté pour la lisibilité */
}

/* Icône */
.op-expertise-item .item-icon {
    width: 50px;
    height: 50px;
    background: var(--onepager-color2);
    border-radius: var(--global-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    color: var(--onepager-color1);
}

.op-expertise-swiper .swiper-slide {
    height: auto;
}

.op-expertise-item .item-icon i,
.op-expertise-item .item-icon svg {
    color: var(--onepager-color1);
    font-size: 1.2rem;
    max-width: 25px;
}

/* Contenu */
.op-expertise-item h3 {
    font-size: 1.3rem !important;
    font-weight: 700;
    color: var(--section-titre-color);
    position: relative;
    z-index: 1;
}

.op-expertise-item .item-desc {
    color: var(--section-txt-color);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* Pagination Swiper Custom */
.op-expertise-container .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--onepager-color2);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.op-expertise-container .swiper-pagination-bullet-active {
    background: var(--onepager-color1) !important;
    width: 30px;
    border-radius: 5px;
    opacity: 1;
}