/* web/css/sections-style.css */

/* Section Professionnelle - Pourquoi nous choisir */
.professional-section {
    padding: 60px 0;
    margin: 40px 0;
}


.form-body .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background:unset;
    border-radius: 2px;
    margin-top: 20px;
}
.section-title {
    color: #1B1464;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #1B1464;
    border-radius: 2px;
}

.professional-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.professional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 10px;
    border-left: 4px solid #FF9A12;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #1B1464;
    color: white;
    transform: translateX(10px);
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 35px;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-icon {
    color: #FF9A12;
}

.feature-text {
    flex: 1;
    font-weight: 500;
    line-height: 1.6;
}

.highlight {
    color: #FF9A12;
    font-weight: 600;
}

.feature-item:hover .highlight {
    color: white;
}

/* Sections Points Forts et Modules */
.points-forts-section, .modules-section {
    padding: 50px 0;
    margin: 30px 0;
}

.section-title-alt {
    color: #1B1464;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title-alt::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #FF9A12;
    border-radius: 2px;
}

    .points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.point-card {
    background: #fff;
    border: 2px solid #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.point-card:hover {
    border-color: #FF9A12;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.point-icon {
    color: #FF9A12;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.point-title {
    color: #1B1464;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.point-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.modules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.module-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 30px;
    border-left: 5px solid #FF9A12;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-left-color: #1B1464;
}

.module-icon {
    color: #1B1464;
    font-size: 2rem;
    margin-bottom: 15px;
}

.module-title {
    color: #1B1464;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.module-description {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-learn-more {
    background: #FE9900;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 154, 18, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .professional-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .feature-item {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .section-title-alt {
        font-size: 1.8rem;
    }
    
    .points-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modules-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .point-card, .module-card {
        padding: 20px;
    }
}