/* === STYLES SPÉCIFIQUES À LA PAGE SERVICES === */

/* En-tête de page */
.page-header {
    padding: var(--space-xl) 0 var(--space-lg);
    background-color: var(--surface-color);
    border-bottom: var(--border-width) solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--color-neon), var(--color-accent));
    opacity: 0.7;
}

.page-header h1 {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    margin: 0 auto var(--space-sm);
    max-width: 100%;
}

.lead {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Section des services */
#services {
    background-color: var(--bg-color);
}

/* Processus de service avec timeline */
.service-process {
    background-color: var(--surface-color);
}

.process-timeline {
    margin: var(--space-md) 0;
    position: relative;
    padding: var(--space-md) 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg-color);
    border: 2px solid var(--accent-color);
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 2;
}

.process-step h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.4rem;
}

.process-step p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Section CTA */
.service-cta {
    background-color: var(--surface-alt-color);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-left: auto;
    margin-right: auto;
}

.cta-content h2::after {
    margin-left: auto;
    margin-right: auto;
}

.cta-content p {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-md);
}

.cta-content .btn {
    margin-top: var(--space-sm);
}

/* Effet hover spécial pour les cartes de service */
.services-grid .card:hover .card-icon {
    transform: translateY(-10px) scale(1.2);
    filter: drop-shadow(0 5px 10px rgba(0, 240, 255, 0.3));
}

.services-grid .card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--color-neon), var(--color-accent));
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
    border-radius: calc(var(--border-radius-md) + 2px);
}

.services-grid .card:hover::after {
    opacity: 0.5;
}

/* Style particulier pour le lien actif dans la navigation */
.nav-links a.active {
    color: var(--accent-color);
    opacity: 1;
}

.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Responsive */
@media (min-width: 992px) {
    .process-timeline {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .process-timeline::before {
        left: 0;
        right: 0;
        top: 50%;
        bottom: auto;
        width: auto;
        height: 2px;
    }
    
    .process-step {
        flex: 0 0 18%;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        align-items: flex-start;
        text-align: left;
        padding-left: 80px;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    
    .process-number {
        position: absolute;
        left: 0;
        top: 0;
    }
} 