/* Service Process Module Styles */

.service_process_module ol {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.service_process_module li.process-step {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    transition: background-color 0.3s ease;
}

/* Connecting line removed as requested */
/*
.service_process_module li.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: -1.5rem;
    width: 2px;
    background: #e2e8f0;
    z-index: 1;
}
*/

.service_process_module .process-number,
.service_process_module .process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    transition: transform 0.3s ease;
    overflow: hidden;
    text-align: center;
}

.service_process_module .process-step:hover .process-number,
.service_process_module .process-step:hover .process-icon {
    transform: scale(1.05);
}

.service_process_module .process-text {
    font-weight: 500;
    line-height: 1.4;
}

/* Horizontal Alignment Support */
.service_process_module section.align-horizontal ol {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service_process_module section.align-horizontal li.process-step {
    flex: 1;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
}

.service_process_module section.align-horizontal li.process-step:not(:last-child)::after {
    left: 50%;
    top: 20px;
    width: 100%;
    height: 2px;
    bottom: auto;
}

/* Center Alignment (Vertical) */
.service_process_module section.align-center ol {
    align-items: center;
}

/* Animations */
.service_process_module .process-step {
    opacity: 0;
}

.service_process_module .animate-fade { animation: fadeIn 0.6s forwards; }
.service_process_module .animate-slide { animation: fadeInUp 0.6s forwards; }
.service_process_module .animate-zoom { animation: zoomIn 0.6s forwards; }

@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }
@keyframes fadeInUp { from {opacity:0; transform:translateY(20px);} to {opacity:1; transform:translateY(0);} }
@keyframes zoomIn { from {opacity:0; transform:scale(0.8);} to {opacity:1; transform:scale(1);} }
