/* Steps Process Styles */
.steps-process-container {
    margin: 0 auto;
}

.steps-process-content {
    text-align: center;
}

.steps-header {
    margin-bottom: 60px;
}

.steps-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.steps-description {
    color: #7f8c8d;
    margin: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.step-item {
    position: relative;
    text-align: left;
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.step-number {
    background: #ff6b35;
    color: white;
    width: 40px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.9rem;
    z-index: 2;
    border-radius: 4px;
}

.step-image {
    position: relative;
    width: 100%;
    height: 235px;
    overflow: hidden;
    border-radius: 12px;
    margin: 15px 0;
}

.step-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    transition: transform 0.3s ease;
}

/* .step-placeholder {
    width: 100%;
    height: 100%;
    background: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #95a5a6;
    font-size: 1rem;
    border-radius: 8px 8px 0 0;
} */

.step-title {
    color: #141617;
    margin: 0 !important;
}

/* .step-description {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.5;
    margin: 0;
} */

/* Responsive Design */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .steps-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .steps-process-container {
        padding: 40px 15px;
    }
    
    .steps-title {
        font-size: 1.8rem;
    }
    
    .steps-description {
        font-size: 1rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .step-image {
        height: 180px;
    }
    
    .step-content {
        padding: 20px 15px;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .steps-process-container {
        padding: 0px 10px;
    }
    
    .steps-title {
        font-size: 1.6rem;
    }
    
    .steps-description {
        font-size: 0.95rem;
    }
    
    .step-number {
        width: 35px;
        height: 25px;
        font-size: 0.8rem;
        top: 10px;
        left: 10px;
    }
    
    .step-image {
        height: 160px;
    }
    
    .step-content {
        padding: 0;
    }
}

/* Animation for step items */
.step-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.2s; }
.step-item:nth-child(3) { animation-delay: 0.3s; }
.step-item:nth-child(4) { animation-delay: 0.4s; }
.step-item:nth-child(5) { animation-delay: 0.5s; }
.step-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus states for accessibility */
.step-item:focus-within {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

.step-number:focus {
    outline: 2px solid #fff;
    outline-offset: 1px;
}



