/* Styles spécifiques pour la page d'accueil enrichie */

/* Compteurs animés */
.count-area-content {
    padding: 30px 20px;
}

.count-digit {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 10px;
}

.count-title {
    font-size: 1rem;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cartes d'emploi */
.job-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.15) !important;
}

.urgency-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(230, 126, 34, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(230, 126, 34, 0);
    }
}

/* Indicateur de croissance */
.growth-indicator {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    margin-top: 10px;
}

/* Logos partenaires */
.partners-logos img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partners-logos img:hover {
    filter: grayscale(0%);
}

/* Catégories thématiques */
.category-link {
    text-decoration: none;
    color: inherit;
}

.category-link:hover {
    text-decoration: none;
    color: inherit;
}

.category-item:hover .category-icon {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

/* Newsletter */
.newsletter-section {
    padding: 60px 0;
}

.newsletter-form input:focus {
    box-shadow: none;
}

.cta-buttons .main-button,
.cta-buttons .main-button-slider {
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Témoignages responsive */
@media (max-width: 768px) {
    .count-digit {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .main-button,
    .cta-buttons .main-button-slider {
        width: 100%;
        max-width: 300px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input {
        border-radius: 25px !important;
    }
    
    .newsletter-form button {
        border-radius: 25px !important;
    }
}

/* Amélioration des features-small-item */
.features-small-item {
    position: relative;
    overflow: hidden;
}

.features-small-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.features-small-item:hover::before {
    left: 100%;
}

/* Animation d'entrée pour les éléments */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-small-item,
.job-card,
.blog-post-thumb,
.team-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Délais d'animation pour un effet de vague */
.features-small-item:nth-child(1) { animation-delay: 0.1s; }
.features-small-item:nth-child(2) { animation-delay: 0.2s; }
.features-small-item:nth-child(3) { animation-delay: 0.3s; }
.features-small-item:nth-child(4) { animation-delay: 0.4s; }
.features-small-item:nth-child(5) { animation-delay: 0.5s; }
.features-small-item:nth-child(6) { animation-delay: 0.6s; }

.job-card:nth-child(1) { animation-delay: 0.1s; }
.job-card:nth-child(2) { animation-delay: 0.2s; }
.job-card:nth-child(3) { animation-delay: 0.3s; }
