/* Styles spécifiques pour la page solutions */

/* Hero section spécifique */
.solutions-hero {
    height: 40vh;
    min-height: 300px;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.solutions-hero-content {
    text-align: center;
    color: var(--light-text);
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.solutions-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.solutions-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

/* Section toutes les solutions */
.all-solutions {
    padding: 80px 0;
    background: var(--light-bg);
}

/* Filtres */
.solutions-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--dark-bg);
    border-radius: 30px;
    color: var(--dark-bg);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover {
    background: rgba(35, 61, 255, 0.1);
    border-color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Grille de solutions */
.all-solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Carte de solution complète */
.solution-card-full {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.solution-card-full:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(35, 61, 255, 0.2);
}

.solution-card-full .solution-icon {
    margin-top: 30px;
}

.solution-card-full .solution-content {
    padding: 20px;
    text-align: center;
}

.solution-card-full .solution-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-bg);
}

.solution-card-full .solution-content p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.solution-details {
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(35, 61, 255, 0.03);
}

.solution-details h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--dark-bg);
}

.solution-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.solution-details ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
    color: #555;
}

.solution-details ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Styles pour le menu actif */
.nav-menu ul li a.active {
    color: var(--primary-color);
    font-weight: 700;
}

.nav-menu ul li a.active::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .all-solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .all-solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-hero-content h1 {
        font-size: 2rem;
    }
    
    .solutions-hero-content p {
        font-size: 1rem;
    }
    
    .solutions-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .solutions-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .solutions-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 80%;
    }
}
