/* ============================================
   SECTIONS D'INVESTISSEMENT
   ============================================ */

/* Styles généraux pour toutes les sections d'investissement */
.investment-section,
.investment-tourism-section,
.mining-section,
.agriculture-investment-section,
.fishing-section,
.investment-energy-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Label de section commun */
.investment-tourism-section .section-label,
.mining-section .section-label,
.agriculture-investment-section .section-label,
.fishing-section .section-label,
.investment-energy-section .section-label,
.craft-section .section-label,
.transport-investment-section .section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid;
}

/* Styles spécifiques pour chaque section */
.investment-tourism-section .section-label {
    background-color: rgba(255, 255, 255, 1);
    color: #000;
    border-color: rgba(0, 0, 0, 0.2);
}

.mining-section {
    background: linear-gradient(135deg, #fffaf0 0%, #ffffff 100%);
}

.mining-section .section-label {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ff9800;
    border-color: rgba(255, 193, 7, 0.2);
}

.agriculture-investment-section .section-label {
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border-color: rgba(76, 175, 80, 0.2);
}

.fishing-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
}

.fishing-section .section-label {
    background-color: rgba(33, 150, 243, 0.1);
    color: #1565c0;
    border-color: rgba(33, 150, 243, 0.2);
}

/* SECTION ÉNERGIES RENOUVELABLES */
.investment-energy-section {
    
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.investment-energy-section .section-label {
    color: #f57c00;
    background-color: rgba(255, 183, 77, 0.1);
    border-color: rgba(245, 124, 0, 0.2);
}

/* Éléments de fond décoratifs */
.investment-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.05) 0%, rgba(33, 150, 243, 0) 70%);
    z-index: 0;
}

.investment-section .container {
    position: relative;
    z-index: 1;
}

/* Styles de texte */
.max-w-800 {
    max-width: 800px;
}

.x-small {
    font-size: 0.75rem;
}

.opacity-90 {
    opacity: 0.9;
}

/* ============================================
   COMPOSANTS COMMUNS
   ============================================ */

/* Containers d'images */
.investment-image-container,
.mining-image-container,
.agriculture-image-container,
.fishing-image-container,
.energy-image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.investment-image-container img,
.mining-image-container img,
.agriculture-image-container img,
.fishing-image-container img,
.energy-image-container img {
    transition: transform 0.3s ease;
    height: 300px;
    object-fit: cover;
    width: 100%;
}

.agriculture-image-container img {
    height: 300px;
}

.fishing-image-container img {
    height: 280px;
}

/* Effets hover sur images */
.investment-image-container:hover,
.mining-image-container:hover,
.agriculture-image-container:hover,
.fishing-image-container:hover,
.energy-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.investment-image-container:hover img,
.mining-image-container:hover img,
.agriculture-image-container:hover img,
.fishing-image-container:hover img,
.energy-image-container:hover img {
    transform: scale(1.03);
}

/* Overlay d'image */
.image-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.9;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Cartes de statistiques communes */
.stat-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: white;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    border-radius: 8px;
}

.investment-stats .stat-card,
.mining-stats .stat-card,
.agriculture-stats .stat-card,
.fishing-stats .stat-card,
.energy-stats .stat-card {
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 1.25rem;
    line-height: 1;
    margin-bottom: 0.25rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.investment-stats .stat-value {
    font-size: 2.5rem;
}

.stat-label {
    color: #495057;
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.stat-trend small {
    font-size: 0.8rem;
}

.stat-source {
    font-size: 0.7rem;
    opacity: 0.7;
}

/* Icônes dans les statistiques */
.stat-icon {
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Cartes d'opportunités */
.opportunity-card,
.sector-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem;
    border-radius: 8px;
}

.opportunity-card:hover,
.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Icônes d'opportunités */
.opportunity-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.mining-section .opportunity-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
}

/* Icônes circulaires spécifiques à l'énergie */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.sector-card:hover .icon-circle {
    transform: scale(1.1);
}

/* Métriques dans les cartes */
.sector-metrics .metric-item {
    padding: 6px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.sector-metrics .metric-item:last-child {
    border-bottom: none;
}

.metric-label {
    font-size: 0.85rem;
    color: #666;
}

.metric-value {
    font-size: 1.1rem;
}

/* Cartes de mise en avant */
.performance-highlight,
.production-card,
.production-highlight,
.aquaculture-highlight {
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.performance-highlight {
    border-color: rgba(255, 183, 77, 0.3);
    box-shadow: 0 5px 15px rgba(255, 183, 77, 0.1);
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
}

.production-card {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-left: 4px solid #ff9800;
}

.production-highlight {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 4px solid #4caf50;
}

.aquaculture-highlight {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid #2196f3;
}

/* Cercles statistiques */
.stat-circle {
    padding: 10px;
    background: white;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 183, 77, 0.2);
}

.rice-production-stat {
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 12px;
    padding: 1rem;
}

.production-stat {
    border: 2px solid rgba(33, 150, 243, 0.2);
    border-radius: 12px;
    padding: 1rem;
}

/* Projections de marché */
.market-projection,
.outlook-card,
.perspectives-card {
    border-left: 3px solid;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.market-projection {
    border-left-color: #4caf50;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.1);
}

.outlook-card {
    border-left-color: #ff9800 !important;
    background-color: #fff8e1;
}

.perspectives-card {
    border-left-color: #2196f3 !important;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

/* CTA d'investissement */
.investment-cta {
    border: 1px solid rgba(253, 160, 133, 0.3);
    box-shadow: 0 10px 30px rgba(253, 160, 133, 0.2);
    transition: transform 0.3s ease;
    padding: 1.5rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
}

.investment-cta:hover {
    transform: translateY(-5px);
}

.investment-cta .btn {
    border-width: 2px;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.investment-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Badges dans les overlays */
.destination-badges .badge {
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 6px;
    padding: 0.35rem 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Grilles d'éléments */
.crop-item,
.type-item {
    transition: all 0.2s ease;
    padding: 0.5rem;
    border-radius: 6px;
    background-color: #f8f9fa;
}

.crop-item:hover,
.type-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.crop-icon,
.type-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}

/* Badges pour minéraux et types */
.minerals-grid .badge {
    transition: all 0.2s ease;
    padding: 0.5rem 0.75rem;
    margin: 0.25rem;
}

.minerals-grid .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* ============================================
   TABLEAUX SYNTHÉTIQUES
   ============================================ */

.opportunity-table-card,
.energy-summary-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-header.bg-gradient-info {
    background: linear-gradient(135deg, #29b6f6 0%, #0288d1 100%) !important;
}

.energy-summary-card .card-header {
    background: linear-gradient(135deg, #ffb74d 0%, #f57c00 100%) !important;
    border-bottom: none;
}

/* Icônes de tableau */
.table-icon-circle {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-icon-circle i {
    font-size: 1.5rem;
}

/* Styles de tableau */
.table-opportunities,
.table-energy-summary {
    margin-bottom: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.table-opportunities thead th,
.table-energy-summary thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #495057;
    vertical-align: middle;
    padding: 1rem;
}

.table-opportunities tbody tr,
.table-energy-summary tbody tr {
    transition: background-color 0.2s ease;
}

.table-opportunities tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.table-energy-summary tbody tr:hover {
    background-color: rgba(255, 183, 77, 0.05);
}

.table-opportunities td,
.table-energy-summary td {
    vertical-align: middle;
    padding: 1.25rem 1rem;
    border-color: rgba(0, 0, 0, 0.05);
}

/* Lignes colorées pour tableau d'opportunités */
.table-row-1 { border-left: 4px solid #29b6f6; }
.table-row-2 { border-left: 4px solid #4caf50; }
.table-row-3 { border-left: 4px solid #f44336; }
.table-row-4 { border-left: 4px solid #9c27b0; }
.table-row-5 { border-left: 4px solid #2196f3; }

/* Badges dans les tableaux */
.table-opportunities .badge,
.table-energy-summary .badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Classes de couleur pour badges avec opacité */
.bg-info.bg-opacity-10 {
    background-color: rgba(33, 150, 243, 0.1) !important;
    border-color: rgba(33, 150, 243, 0.2) !important;
}

.bg-success.bg-opacity-10 {
    background-color: rgba(76, 175, 80, 0.1) !important;
    border-color: rgba(76, 175, 80, 0.2) !important;
}

.bg-warning.bg-opacity-10 {
    background-color: rgba(255, 183, 77, 0.1) !important;
    border-color: rgba(255, 183, 77, 0.2) !important;
}

.bg-purple.bg-opacity-10 {
    background-color: rgba(156, 39, 176, 0.1) !important;
    border-color: rgba(156, 39, 176, 0.2) !important;
}

.bg-purple {
    background-color: #9c27b0 !important;
}

.text-purple {
    color: #9c27b0 !important;
}

/* Pied de tableau */
.table-footer {
    background-color: #f8f9fa;
    padding: 1rem;
}

.legend-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
}

.source-info {
    font-size: 0.85rem;
    color: #6c757d;
}

/* ============================================
   ÉLÉMENTS DE MISE EN FORME
   ============================================ */

.trend-badge {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background-color: #28a745;
    color: white;
}

.highlight-item {
    transition: transform 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.highlight-item:hover {
    transform: translateX(5px);
    border-color: rgba(245, 124, 0, 0.2);
}

.highlight-icon {
    min-width: 40px;
    text-align: center;
    padding-top: 3px;
}

/* Effet de shine sur les cartes */
.sector-card {
    position: relative;
    overflow: hidden;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s ease;
}

.sector-card:hover::before {
    left: 100%;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.investment-section .row,
.mining-section .row,
.agriculture-investment-section .row,
.fishing-section .row,
.investment-energy-section .row {
    animation: fadeInUp 0.6s ease-out;
}

.opportunity-item,
.opportunity-card,
.sector-card {
    animation: fadeInUp 0.4s ease-out;
}

/* Animation pulse pour icônes énergie */
@keyframes pulse-energy {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.fa-bolt, .fa-solar-panel, .fa-sun {
    animation: pulse-energy 2s infinite;
}

/* Animation pulse pour badges */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(33, 150, 243, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(33, 150, 243, 0);
    }
}

.stat-card {
    animation: pulse 2s infinite;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .energy-content {
        padding-right: 0 !important;
    }
    
    .stat-circle {
        width: 110px;
        height: 110px;
    }
    
    .stat-circle .display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .display-6 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 2.2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .stat-value {
        font-size: 1.1rem;
    }
    
    .investment-stats .stat-value {
        font-size: 2rem;
    }
    
    .production-stat .display-4,
    .rice-production-stat .display-4 {
        font-size: 2.5rem;
    }
    
    .energy-stats .stat-card,
    .mining-stats .stat-card,
    .agriculture-stats .stat-card,
    .fishing-stats .stat-card {
        margin-bottom: 15px;
    }
    
    .energy-summary-card .table-responsive {
        border-radius: 0;
    }
    
    .opportunity-card {
        padding: 1rem !important;
    }
    
    .type-item {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .investment-energy-section .section-label,
    .investment-tourism-section .section-label,
    .mining-section .section-label,
    .agriculture-investment-section .section-label,
    .fishing-section .section-label .investment-energy-section .craft-section {
        font-size: 0.9rem;
        padding: 6px 15px;
    }
    
    .performance-highlight .row {
        text-align: center;
    }
    
    .performance-highlight .col-md-8,
    .performance-highlight .col-md-4 {
        width: 100%;
    }
    
    .stat-circle {
        margin-top: 15px;
        width: 100px;
        height: 100px;
    }
    
    .stat-circle .display-4 {
        font-size: 2rem;
    }
    
    .investment-image-container,
    .mining-image-container,
    .agriculture-image-container,
    .fishing-image-container,
    .energy-image-container {
        margin-bottom: 1.5rem;
    }
    
    .table-opportunities,
    .table-energy-summary {
        font-size: 0.85rem;
    }
    
    .table-opportunities .badge,
    .table-energy-summary .badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    .section-badge {
        display: block;
        text-align: center;
        margin-bottom: 1rem;
    }
}

/* ============================================
   STYLES D'IMPRESSION
   ============================================ */

@media print {
    .investment-section,
    .investment-tourism-section,
    .mining-section,
    .agriculture-investment-section,
    .fishing-section,
    .investment-energy-section {
        background-color: white !important;
    }
    
    .shadow-lg, .shadow-sm {
        box-shadow: none !important;
    }
    
    .badge, .btn-primary {
        border: 1px solid #000 !important;
        background: white !important;
        color: black !important;
    }
    
    .image-overlay {
        display: none !important;
    }
}

/* ============================================
   PERSONNALISATION DES BOUTONS
   ============================================ */

.btn-primary {
    background: linear-gradient(135deg, #29b6f6 0%, #0288d1 100%);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3);
}

/* ============================================
   SCROLLBAR PERSONNALISÉE
   ============================================ */

.table-responsive::-webkit-scrollbar {
    height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* ============================================
   SECTION ARTISANAT
   ============================================ */

.craft-section {
    background: linear-gradient(135deg, #fff8f0 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.craft-section .section-label {
	color: white;
    border-color: white;
    background: linear-gradient(135deg, #a67c52 0%, #8b5a2b 100%);
}

/* Couleurs spécifiques à l'artisanat */
.text-craft { color: #a67c52 !important; }
.bg-craft { background-color: #a67c52 !important; }
.bg-gradient-craft { background: linear-gradient(135deg, #a67c52 0%, #8b5a2b 100%) !important; }

.bg-craft-1 { background-color: #a67c52 !important; }
.bg-craft-2 { background-color: #8b5a2b !important; }
.bg-craft-3 { background-color: #d2691e !important; }
.bg-craft-4 { background-color: #cd853f !important; }

/* Containers d'images */
.craft-image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(166, 124, 82, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.craft-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(166, 124, 82, 0.25);
}

.craft-image-container img {
    transition: transform 0.3s ease;
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.craft-image-container:hover img {
    transform: scale(1.03);
}

/* Cartes de domaines artisanaux */
.craft-domain-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(166, 124, 82, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.craft-domain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(166, 124, 82, 0.15);
    border-color: rgba(166, 124, 82, 0.3);
}

.craft-domain-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.craft-domain-card:hover .craft-domain-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Cartes de mise en avant */
.craft-highlight {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #a67c52;
    margin-bottom: 1.5rem;
}

.highlight-item-craft {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(166, 124, 82, 0.1);
    transition: all 0.3s ease;
}

.highlight-item-craft:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(166, 124, 82, 0.1);
    border-color: rgba(166, 124, 82, 0.3);
}

/* Cercles statistiques */
.stat-circle-craft {
    padding: 10px;
    background: white;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(166, 124, 82, 0.2);
    border: 3px solid rgba(166, 124, 82, 0.3);
}

/* Icônes circulaires */
.craft-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tableau */
.table-craft-opportunities {
    margin-bottom: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.table-craft-opportunities thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid rgba(166, 124, 82, 0.2);
    font-weight: 600;
    color: #495057;
    vertical-align: middle;
    padding: 1rem;
}

.table-craft-opportunities tbody tr {
    transition: background-color 0.2s ease;
}

.table-craft-opportunities tbody tr:hover {
    background-color: rgba(166, 124, 82, 0.05);
}

.craft-row-1 { border-left: 4px solid #a67c52; }
.craft-row-2 { border-left: 4px solid #8b5a2b; }
.craft-row-3 { border-left: 4px solid #d2691e; }
.craft-row-4 { border-left: 4px solid #cd853f; }

/* Cartes de bénéfices */
.craft-benefits-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(166, 124, 82, 0.1);
    height: 100%;
}

.benefit-item {
    padding: 0.75rem;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background-color: #fff8f0;
    transform: translateX(5px);
}

/* CTA */
.craft-cta {
    background: linear-gradient(135deg, #fff8f0 0%, #ffecb3 100%);
    border-radius: 12px;
    border: 2px solid rgba(166, 124, 82, 0.3);
    box-shadow: 0 10px 30px rgba(166, 124, 82, 0.15);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
}

.craft-cta:hover {
    transform: translateY(-5px);
}

.btn-craft {
    background: linear-gradient(135deg, #a67c52 0%, #8b5a2b 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-craft:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(166, 124, 82, 0.3);
    color: white;
}

/* Badges artisanaux */
.badge.bg-craft-1, .badge.bg-craft-2, .badge.bg-craft-3, .badge.bg-craft-4 {
    color: white !important;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .craft-image-container img {
        height: 300px;
    }
    
    .craft-domain-card {
        margin-bottom: 1rem;
    }
    
    .stat-circle-craft {
        width: 100px;
        height: 100px;
    }
    
    .stat-circle-craft .display-4 {
        font-size: 2.5rem;
    }
    
    .craft-cta {
        margin-top: 1.5rem;
    }
}

/* SECTION TRANSPORT */
.transport-investment-section {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.transport-investment-section .section-label {
    background-color: rgba(239, 83, 80, 0.1);
    color: #d32f2f;
    border-color: rgba(239, 83, 80, 0.2);
}

/* Image container spécifique transport */
.transport-image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transport-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Cartes d'impact */
.impact-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.impact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.impact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Tableau transport */
.table-transport-summary tbody tr:hover {
    background-color: rgba(239, 83, 80, 0.05);
}

.table-transport-summary tbody tr {
    transition: background-color 0.2s ease;
}

/* CTA transport */
.transport-investment-section .investment-cta {
    border: 1px solid rgba(239, 83, 80, 0.3);
    box-shadow: 0 10px 30px rgba(239, 83, 80, 0.2);
}