/* ========================================
   BENEFITS SECTION - ICÔNES & EFFETS
   ======================================== */

.benefits-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.benefits-content {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Cercle avec icône */
.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.benefit-card:hover .benefit-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #ff006e, #8338ec);
}

/* Icône Bootstrap à l'intérieur */
.benefit-icon i {
    font-size: 36px;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.benefit-card:hover .benefit-icon i {
    transform: scale(1.2);
    animation: pulse 0.6s ease;
}

/* Animation pulse pour l'icône */
@keyframes pulse {
    0%, 100% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1.35);
    }
}

/* Effet de brillance au survol */
.benefit-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.benefit-card:hover .benefit-icon::before {
    opacity: 1;
    animation: shine 0.8s ease;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Texte */
.benefit-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-text h3 {
    background: linear-gradient(90deg, #ff006e, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefit-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Responsive */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 20px;
    }
    
    .benefits-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .benefit-icon i {
        font-size: 32px;
    }
    
    .benefit-text h3 {
        font-size: 20px;
    }
    
    .benefit-text p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .benefits-title {
        font-size: 26px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
}