/* 
 * Process Section - Modern Step-by-Step Design
 */

.process-section {
    position: relative;
    padding: 6rem 0;
    background: #f8fafc;
    overflow: hidden;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 4rem;
}

/* Connecting Line */
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e1 50%, #e2e8f0 100%);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 1rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2563eb;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
    border: 4px solid #ffffff;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    background: #2563eb;
    color: white;
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.step-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    border: 2px solid white;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.process-desc {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }

    .process-steps::before {
        display: none;
        /* Hide line on tablet/mobile */
    }
}

@media (max-width: 576px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}