/* ============================================
   SECTION VISION/MISSION - IMAGE STRUCTURES VISIBLE
   ============================================ */

/* Section Vision/Mission */
.vision-mission-section {
    position: relative !important;
    background: #ffffff !important;
    padding: 120px 0 !important;
    overflow: hidden !important;
}

/* Container image */
.vision-mission-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    overflow: hidden !important;
}

/* Image structures métalliques - 100% VISIBLE */
.vision-mission-bg img {
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    width: auto !important;
    height: auto !important;
    transform: translate(-50%, -50%) !important;
    object-fit: cover !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 0 !important;
}

/* Container au-dessus de l'image */
.vision-mission-section .container-fullwidth {
    position: relative !important;
    z-index: 2 !important;
}

/* Cards Vision/Mission - HARMONIE AMÉLIORÉE */
.vm-card {
    background: rgba(255, 255, 255, 0.93) !important;
    padding: 45px !important;
    border-radius: 12px !important;
    border: 2px solid #0056b3 !important;
    box-shadow: 0 10px 35px rgba(0, 86, 179, 0.12) !important;
    transition: all 0.3s ease !important;
}

.vm-card:hover {
    border-color: #007bff !important;
    box-shadow: 0 14px 45px rgba(0, 123, 255, 0.2) !important;
    transform: translateY(-5px) !important;
    background: rgba(255, 255, 255, 0.96) !important;
}

/* Icônes bleues - HARMONIE PARFAITE */
.vm-icon {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(0, 123, 255, 0.08)) !important;
    border: 2px solid #0056b3 !important;
    color: #0056b3 !important;
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px auto !important;
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.15) !important;
    transition: all 0.3s ease !important;
}

.vm-icon svg {
    stroke: #0056b3 !important;
    stroke-width: 2.5 !important;
    width: 36px !important;
    height: 36px !important;
}

.vm-icon:hover {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.15), rgba(0, 123, 255, 0.12)) !important;
    border-color: #007bff !important;
    transform: scale(1.08) !important;
    box-shadow: 0 10px 28px rgba(0, 123, 255, 0.25) !important;
}

/* Titres en bleu foncé */
.vm-title {
    color: #001f3f !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
}

/* Texte en bleu foncé */
.vm-text {
    color: #001f3f !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    margin-bottom: 16px !important;
}

.vm-text strong {
    color: #d4af37 !important;
    font-weight: 600 !important;
}

/* Grid */
.vision-mission-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Mobile */
@media (max-width: 768px) {
    .vision-mission-section {
        padding: 80px 0 !important;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .vm-card {
        padding: 30px !important;
    }
    
    .vm-title {
        font-size: 24px !important;
    }
}
