/* Steps Section Styles */

/* Step Content Animation */
.step-content {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.step-content.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: auto;
}

/* Step Image Animation */
.step-image {
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.7s ease, transform 0.7s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.step-image.active {
    opacity: 1 !important;
    transform: scale(1);
    z-index: 2;
}

/* Mobile: Ensure first image is visible */
@media (max-width: 1023px) {
    .step-image {
        opacity: 0;
        z-index: 1;
    }
    
    .step-image[data-step="1"] {
        opacity: 1 !important;
        z-index: 2 !important;
    }
    
    .step-image.active {
        opacity: 1 !important;
        z-index: 3 !important;
        display: block !important;
    }
    
    /* Ensure image container shows images */
    .step-image {
        visibility: visible !important;
        display: block !important;
    }
}

/* Step Navigation Button Active State */
.step-nav-btn.active {
    background-color: #D4AF37 !important;
    color: #F3F4F6 !important;
    border-color: #D4AF37 !important;
}

/* Scrollbar Hide Utility */
.scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
}

