/* Secteurs Page Styles - Version 1.0.2 - Espacements réduits */

/* Container spécifique pour la section tableau */
.secteurs-table-section .container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Page Title */
.secteurs-title {
    background-color: var(--white);
    padding: 40px 0 40px;
}

.secteurs-title .container {
    text-align: center;
}

#main-title {
    margin-top: 10px;
}

/* Table Section */
.secteurs-table-section {
    padding: 30px 0 40px;
    background-color: var(--section-bg);
    display: flex;
    align-items: center;
    min-height: auto;
}

.secteurs-table-section .container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.table-wrapper {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 1300px;
}

.secteurs-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-family);
}

.secteurs-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: var(--white);
}

.secteurs-table thead th {
    padding: 20px 25px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: none;
}

.secteurs-table thead th:first-child {
    width: 40%;
}

.secteurs-table thead th:last-child {
    width: 60%;
}

.secteurs-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.secteurs-table tbody tr:hover {
    background-color: rgba(202, 151, 36, 0.03);
}

.secteurs-table tbody tr:last-child {
    border-bottom: none;
}

.secteurs-table tbody td {
    padding: 18px 25px;
    vertical-align: top;
    line-height: 1.5;
    color: var(--text-color);
}

.secteurs-table tbody td:first-child {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.secteurs-table tbody td:last-child {
    font-size: 0.9rem;
    color: var(--text-light);
}

.secteur-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 8px;
    flex-shrink: 0;
}

.secteur-icon i {
    color: var(--white);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .secteurs-title {
        padding: 25px 0 15px;
    }
    
    .page-title {
        font-size: 1.3rem;
        padding: 12px 30px;
    }
    
    .secteurs-table-section {
        padding: 15px 0 40px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .table-wrapper {
        border-radius: 12px;
        overflow-x: auto;
    }
    
    .secteurs-table thead th {
        padding: 15px 12px;
        font-size: 0.9rem;
    }
    
    .secteurs-table tbody td {
        padding: 15px 12px;
    }
    
    .secteurs-table tbody td:first-child {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        font-size: 0.9rem;
    }
    
    .secteurs-table tbody td:last-child {
        font-size: 0.85rem;
    }
    
    .secteur-icon {
        width: 30px;
        height: 30px;
        border-radius: 6px;
    }
    
    .secteur-icon i {
        font-size: 0.9rem;
    }
    
    .secteurs-cta {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .secteurs-title {
        padding: 20px 0 12px;
    }
    
    .page-title {
        font-size: 1.2rem;
        padding: 10px 25px;
    }
    
    .secteurs-table-section {
        padding: 12px 0 30px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .secteurs-table thead th {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
    
    .secteurs-table tbody td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
    
    .secteurs-table tbody td:last-child {
        font-size: 0.8rem;
    }
    
    .secteur-icon {
        width: 28px;
        height: 28px;
        border-radius: 5px;
    }
    
    .secteur-icon i {
        font-size: 0.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
}

/* Animation d'entrée */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.table-wrapper {
    animation: fadeInUp 0.6s ease forwards;
}

