/* Admission Process Section */
.admission-process-section {
    padding: 5rem 0;
    background: var(--blanc);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 3rem auto;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--jaune-or);
    color: var(--bleu-institutionnel);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(254,253,5,0.4);
}

.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--bleu-institutionnel), #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 2.5rem;
    color: white;
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(2,3,85,0.3);
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--bleu-institutionnel);
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.process-connector {
    flex: 0 0 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--bleu-institutionnel), var(--jaune-or));
    position: relative;
    margin: 0 -20px;
}

.process-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid var(--jaune-or);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 3rem;
    }
    
    .process-connector {
        width: 4px;
        height: 60px;
        flex: none;
        margin: -10px 0;
        background: linear-gradient(180deg, var(--bleu-institutionnel), var(--jaune-or));
    }
    
    .process-connector::after {
        right: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(50%);
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 15px solid var(--jaune-or);
    }
    
    .step-number {
        top: -15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
    }
    
    .step-icon i {
        font-size: 2rem;
    }
}