﻿/* Styles pour les cartes de services */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card--highlight {
    border-top: 4px solid #f97316;
}

.service-card--highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.03), rgba(255, 255, 255, 0.1));
    z-index: -1;
}

.service-card__icon {
    width: 100px;
    height: 100px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-card__icon {
    background: rgba(249, 115, 22, 0.2);
    transform: scale(1.1);
}

.service-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.service-card__description {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card__features {
    text-align: left;
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-card__features li {
    margin-bottom: 8px;
    color: #4b5563;
    position: relative;
    list-style: none;
}

.service-card__button {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(90deg, #f97316, #f59e0b);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.service-card__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.service-card__button:hover i {
    transform: translateX(5px);
}

/* Styles pour les étapes du processus */
.process-step {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f97316, #f59e0b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f97316, #f59e0b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.process-step:hover .process-step__number {
    transform: scale(1.1) rotate(10deg);
}

.process-step__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.process-step__description {
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Bouton CTA outline */
.cta-button--outline {
    background: transparent;
    border: 2px solid #f97316;
    color: #f97316;
}

.cta-button--outline:hover {
    background: rgba(249, 115, 22, 0.1);
}

/* Motifs de points */
.pattern-dots {
    background-image: radial-gradient(currentColor 1px, transparent 1px);
    background-size: calc(10 * 1px) calc(10 * 1px);
}


/* Responsive */
@media (max-width: 768px) {
    .service-card {
        padding: 30px 20px;
    }
    
    .service-card__icon {
        width: 80px;
        height: 80px;
    }
    
    .process-step {
        margin-bottom: 20px;
    }
}


