/* Work Process Widget Styles */
.work-process-wrapper {
    width: 100%;
    padding: 60px 0;
}

.work-process-header {
    text-align: center;
    margin-bottom: 60px;
}

.work-process-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.work-process-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #3b82f6;
}

.work-process-title {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.work-process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    max-width: 280px;
}

.step-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
    border: 3px solid #ffffff;
    position: relative;
}

.step-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
    background-color: #3b82f6;
    color: #ffffff;
}

.connection-svg {
    position: absolute;
    top: 40px;
    right: -60px;
    z-index: 1;
    pointer-events: none;
}

.connection-line {
    stroke: #e5e7eb;
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 5,5;
    animation: dash 3s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -20;
    }
}

.step-content {
    padding: 0 15px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 15px 0;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.step-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

/* Remove connection line from last step */
.process-step:last-child .connection-svg {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .work-process-steps {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .process-step {
        flex: 0 0 calc(50% - 20px);
        max-width: none;
    }
    
    .connection-svg {
        display: none;
    }
    
    .work-process-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .work-process-wrapper {
        padding: 40px 0;
    }
    
    .work-process-header {
        margin-bottom: 40px;
    }
    
    .work-process-title {
        font-size: 28px;
    }
    
    .work-process-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-step {
        flex: none;
        width: 100%;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .work-process-title {
        font-size: 24px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 13px;
    }
    
    .step-content {
        padding: 0 10px;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.process-step:hover .step-title {
    color: #3b82f6;
    transition: color 0.3s ease;
}



/* Modern Clean Look */
.work-process-wrapper {
    position: relative;
    overflow: hidden;
    background: transparent !important;
}

/* Step Number Overlay */
.step-icon::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.work-process-steps {
    counter-reset: step-counter;
}

/* Glassmorphism Effect */
.step-icon {
    backdrop-filter: blur(10px);
    background: rgba(241, 245, 249, 0.8);
}

.step-icon:hover {
    backdrop-filter: blur(15px);
    background: rgba(59, 130, 246, 0.9);
}