/* TITRE PAGE */
#page-title h2 {
    font-size: 25px;
    color: var(--orange);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
}
/* ACCORDION CONTAINER */
.sector-accordion {
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid #292929;
    transition: all .2s ease;
}
/* HEADER */
.sector-header {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

/* TITRE */
.sector-header h2 {
    font-size: 18px;
    margin: 0;
    color: #1d1d1d;
    font-weight: 700;
}

/* BADGE */
.badge-count {
    background: #1f1f1f;
    color: #fff;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

/* BODY */
.sector-body {
    padding: 12px 18px 18px;
}

/* ITEM */
.sector-list-item {
    display: flex;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f9fafb;
    margin-bottom: 8px;
    transition: .2s;
}

.sector-list-item:hover {
    background: #ecfdf5;
    transform: translateX(4px);
}

/* NUMBER */
.num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #10b981;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ACTIVE */
.sector-accordion.active {
    border-left: 4px solid #075320;
}

.sector-accordion:nth-child(odd) {
    background: #e0edff;
}

.sector-accordion:nth-child(even) {
    background: #fffdf6;
}

.sector-icon {
    font-size: 18px;
    color: #1d1d1d;
    transition: transform .3s ease;
}

/* état fermé (↓) */
.sector-accordion .chevron {
    display: inline-block;
    justify-content: center;
    align-items: center;
    transition: transform .3s ease;
}

/* état ouvert (↑) */
.sector-accordion.active .chevron {
    transform: rotate(180deg);
}

