/* 
 * Aansluiten Peppol - Pagina Specifieke Styles
 */


/* Steps process - Vertical timeline style */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 30px 0;
    position: relative;
}

.step-item {
    background-color: white;
    border: 1px solid var(--border);
    padding: 30px 30px 30px 80px;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

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

.step-item::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 60px;
    bottom: -30px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--border));
}

.step-item:last-child::before {
    display: none;
}

.step-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(210, 105, 30, 0.12);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: 30px;
    left: -10px;
    background-color: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
    border: 4px solid white;
    z-index: 2;
}

.step-title {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 1.2rem;
    margin-top: 0;
}

.step-desc {
    color: var(--grey);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-details {
    background-color: rgba(210, 105, 30, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
    padding: 2px 20px 15px 20px;
    margin-top: 8px;
}

.step-details h4 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 600;
}

.step-details p {
    color: var(--grey);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive aanpassingen */
@media (max-width: 768px) {
    .step-item {
        padding: 25px 20px 25px 70px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        left: -8px;
        top: 25px;
    }
    
    .step-item::before {
        left: 16px;
        top: 55px;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .connection-step {
        flex-direction: column;
    }
    
    .connection-step::after {
        display: none;
    }
}
