/* Eco Process Steps Block Styles */
.eco-process-steps-block {
    /* background: linear-gradient(180deg, #ffffff 0%, var(--bg-color, #f8f9fa) 100%); */
    padding: 60px 0;
    min-height: 400px;
    position: relative;
}

.eco-process-steps-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.eco-process-step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    transition: transform 0.3s ease;
}

.eco-process-step:hover {
    transform: translateX(5px);
}

.eco-process-step-icon-container {
    flex-shrink: 0;
    margin-right: 30px;
    position: relative;
    z-index: 2;
}

.eco-process-step-icon {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: 10px solid #DCEAF1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.eco-process-step-icon:hover {
    transform: scale(1.05);
}

.eco-process-step-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.eco-process-step-content {
    flex: 1;
    padding-top: 10px;
}

.eco-process-step-title {
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 8px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.eco-process-step-description {
    font-size: 16px;
    color: #000000;
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.eco-process-step-connector {
    position: absolute;
    left: 55px;
    top: 80px;
    width: 10px;
    height: 40px;
    min-height: 40px;
    background: #DCEAF1;
    z-index: 10;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.eco-process-step.last-step .eco-process-step-connector {
    display: none;
}

/* Animation for step appearance */
.eco-process-step {
    opacity: 0;
    transform: translateY(20px);
    animation: ecoFadeInUp 0.6s ease forwards;
}

.eco-process-step-connector {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    position: absolute !important;
    left: 55px !important;
    top: 80px !important;
    width: 10px !important;
    height: 40px !important;
    background: #DCEAF1 !important;
    z-index: 10 !important;
    display: block !important;
    visibility: visible !important;
}

/* Position each connector relative to its step */
.eco-connector-0 {
    top: 80px !important;
}

.eco-connector-1 {
    top: 200px !important;
    height: 45px !important;
}

.eco-connector-2 {
    top: 240px !important;
}

.eco-connector-3 {
    top: 320px !important;
}

.eco-process-step:nth-child(1) { animation-delay: 0.1s; }
.eco-process-step:nth-child(2) { animation-delay: 0.2s; }
.eco-process-step:nth-child(3) { animation-delay: 0.3s; }
.eco-process-step:nth-child(4) { animation-delay: 0.4s; }
.eco-process-step:nth-child(5) { animation-delay: 0.5s; }

@keyframes ecoFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .eco-process-steps-block {
        padding: 40px 0;
    }
    
    .eco-process-steps-container {
        padding: 0 15px;
    }
    
    .eco-process-step {
        margin-bottom: 30px;
    }
    
    .eco-process-step-icon-container {
        margin-right: 20px;
    }
    
    .eco-process-step-icon {
        width: 60px;
        height: 60px;
    }
    
    .eco-process-step-icon img {
        width: 35px;
        height: 35px;
    }
    
    .eco-process-step-connector {
        left: 41px !important;
        top: 60px !important;
        height: 40px !important;
    }
    .eco-connector-0 {
        top: 60px !important;
    }
    
    .eco-connector-1 {
        top: 148px !important;
        height: 45px !important;
    }
    
    .eco-connector-2 {
        top: 240px !important;
    }
    
    .eco-connector-3 {
        top: 320px !important;
    }
    
    .eco-process-step-title {
        font-size: 18px;
    }
    
    .eco-process-step-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .eco-process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .eco-process-step-icon-container {
        margin-right: 0;
        margin-bottom: 15px;
        align-self: center;
    }
    
    .eco-process-step-connector {
        display: none !important;
    }
    
    .eco-process-step:hover {
        transform: translateY(-2px);
    }
}

/* Dark mode support */
/* @media (prefers-color-scheme: dark) {
    .eco-process-steps-block {
        background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
    }
    
    .eco-process-step-icon {
        background: #2a2a2a;
        border-color: #404040;
    }
    
    .eco-process-step-title {
        color: #ffffff;
    }
    
    .eco-process-step-description {
        color: #cccccc;
    }
    
    .eco-process-step-connector {
        background: #404040;
    }
} */
