/* ===== PAGE SOLUTIONS ===== */

/* Cartes solutions */
.solution-card {
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}

.solution-icon {
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.05);
}

/* Animation au scroll */
.solutions-grid .solution-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.solutions-grid .solution-card:nth-child(1) { animation-delay: 0.1s; }
.solutions-grid .solution-card:nth-child(2) { animation-delay: 0.2s; }
.solutions-grid .solution-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Liste des fonctionnalités */
.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    color: #d4af37;
    width: 20px;
}

/* Projet spécifique */
.specific-project {
    background: linear-gradient(135deg, #0a2a3a, #114a60);
    color: white;
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    margin-top: 50px;
}

.specific-project h2 {
    color: white;
}

.specific-project .btn-outline {
    color: white;
    border-color: white;
}

.specific-project .btn-outline:hover {
    background: white;
    color: #0a2a3a;
}