/* Coming Soon Alert Box */
.coming-soon-alert {
    background: #FEFCE8;
    border: 1px solid #FEF08A;
    border-radius: 12px;
    padding: 8px 12px;
    margin-top: 0;
    margin-bottom: 5px;
    align-items: flex-start;
    gap: 5px;
    flex: 0 1 auto;
    display: inline-flex; /* بدل flex */
    width: max-content;   /* يضبط العرض حسب النص */
}
.coming-soon-alert .alert-icon {
    font-size: 14px;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.coming-soon-alert .alert-text {
    font-size: 14px;
    line-height: 1.7;
    color: #713F12;
    text-align: right;
    font-family: 'IBM Plex Sans Arabic', sans-serif;

}

.coming-soon-alert .alert-text strong {
    font-weight: 700;
    color: #713F12;
}

/* Video Container Styles */
.features-mockup {
    position: relative;
}

.mockup-phone {
    position: relative;
    width: 624px;
    height: 450px;
    margin: 0 auto;
}

.video-container {
    width: 624px;
    height: 450px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.video-container iframe,
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

/* Step Item Styles - Override default styles */
.steps-list .step-item {
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: 3px solid #F9F7FD !important;
}

.steps-list .step-item.active {
    border-right: 3px solid #636AF9 !important;
}

/* Step Number and Text - Same size for all */
.steps-list .step-item .step-number,
.steps-list .step-item .step-text {
    font-size: 20px;
    font-weight: 400;
    transition: all 0.3s ease;
}

/* Active state - Only change font weight */
.steps-list .step-item.active .step-number,
.steps-list .step-item.active .step-text {
    font-size: 20px;
    font-weight: 700;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .mockup-phone {
        width: 398px;
        height: 287px;
    }

    .video-container {
        width: 398px;
        height: 287px;
    }

    .coming-soon-alert {
        padding: 12px 16px;
        margin-top: 12px;
        margin-bottom: 16px;
        gap: 10px;
    }

    .coming-soon-alert .alert-icon {
        font-size: 18px;
    }

    .coming-soon-alert .alert-text {
        font-size: 12px;
    }

    /* Steps font size for mobile */
    .steps-list .step-item .step-number,
    .steps-list .step-item .step-text {
        font-size: 16px;
    }

    .steps-list .step-item.active .step-number,
    .steps-list .step-item.active .step-text {
        font-size: 16px;
    }
}

/* Footer Download Buttons Size - Desktop */
#footer-container .download-btns .app-download-btn {
    display: inline-block;
    width: 165px;
    height: 55px;
}

#footer-container .download-btns .app-download-btn img {
    width: auto;
    height: 70px;
    object-fit: contain;
}

/* Footer Download Buttons Size - Mobile */
@media (max-width: 768px) {
    #footer-container .download-btns .app-download-btn {
        width: auto;
        height: auto;
    }

    #footer-container .download-btns .app-download-btn img {
        width: auto;
        height: 70px;
        object-fit: contain;
    }
}

