/* ===== SECTION SITES WEB ===== */
.website-service {
    margin-bottom: 6rem;
    padding: 2rem 0;
    position: relative;
}

.website-service:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 6rem;
}

.website-service-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.website-service-content.reverse {
    flex-direction: row-reverse;
}

.website-service-text {
    flex: 1;
    min-width: 45%;
}

.website-service-image {
    flex: 1;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.website-service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.website-service:hover .website-service-image {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.website-service:hover .website-service-image img {
    transform: scale(1.03);
}

.service-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.website-service h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    line-height: 1.2;
}

.website-service p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.service-features {
    margin: 2rem 0;
    padding: 0;
    list-style: none;
}

.service-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-light);
    font-size: 1rem;
    line-height: 1.6;
}

.service-features i {
    position: absolute;
    left: 0;
    top: 0.2em;
    color: var(--primary);
    font-size: 1.1em;
}

/* Styles pour les boutons */
.btn-outline {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
}

/* Styles responsifs */
@media (max-width: 992px) {
    .website-service-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .website-service-content.reverse {
        flex-direction: column;
    }
    
    .website-service-text, 
    .website-service-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .website-service h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .website-service {
        margin-bottom: 4rem;
        padding: 1rem 0;
    }
    
    .website-service:not(:last-child) {
        padding-bottom: 4rem;
    }
    
    .website-service h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .service-features {
        margin: 1.5rem 0;
    }
}

/* Animation d'entrée */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.website-service {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.website-service:nth-child(1) { animation-delay: 0.1s; }
.website-service:nth-child(2) { animation-delay: 0.2s; }
.website-service:nth-child(3) { animation-delay: 0.3s; }
.website-service:nth-child(4) { animation-delay: 0.4s; }
.website-service:nth-child(5) { animation-delay: 0.5s; }
.website-service:nth-child(6) { animation-delay: 0.6s; }
.website-service:nth-child(7) { animation-delay: 0.7s; }
