/* =========================================
   Booking Steps - Clean Design
   ========================================= */

/* Wrapper */
.asme-steps-wrapper {
    background: #0874bc;
    padding: 24px 0;
    width: 100%;
}

.asme-steps-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

/* Steps List */
.asme-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
}

/* Progress Line - Background */
.asme-steps__progress {
    position: absolute;
    top: 18px;
    left: 63px;
    right: 63px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
    border-radius: 2px;
}

/* Progress Line - Active/Completed */
.asme-steps__progress-bar {
    height: 100%;
    background: #FFD700;
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Step Item */
.asme-steps__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    position: relative;
}

/* Step Link/Span */
.asme-steps__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    cursor: pointer;
}

.asme-steps__link:hover {
    text-decoration: none;
}

.asme-steps__link--disabled {
    cursor: not-allowed;
}

/* Step Circle */
.asme-steps__circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.asme-steps__circle svg {
    width: 18px;
    height: 18px;
}

/* Step Label */
.asme-steps__label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* =========================================
   State: Completed
   ========================================= */
.asme-steps__item--completed .asme-steps__circle {
    background: #FFD700;
    color: #0A98E8;
    border-color: #FFD700;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.asme-steps__item--completed .asme-steps__label {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1em;
}

.asme-steps__item--completed .asme-steps__link:hover .asme-steps__circle {
    transform: scale(1.1);
}

/* =========================================
   State: Current
   ========================================= */
.asme-steps__item--current .asme-steps__circle {
    background: #FFD700;
    color: #0A98E8;
    border-color: #FFD700;
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.3), 0 2px 12px rgba(255, 215, 0, 0.5);
    transform: scale(1.1);
}

.asme-steps__item--current .asme-steps__label {
    color: #FFD700;
    font-weight: 700;
    line-height: 1em;
}

/* =========================================
   State: Upcoming
   ========================================= */
.asme-steps__item--upcoming .asme-steps__circle {
    background: #4193c9;
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.asme-steps__item--upcoming .asme-steps__label {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1em;
}

/* =========================================
   Hover Effects
   ========================================= */
.asme-steps__link:not(.asme-steps__link--disabled):hover .asme-steps__label {
    color: #FFD700;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 768px) {
    .asme-steps-container {
        padding: 0 20px;
    }

    .asme-steps__progress {
        left: 38px;
        right: 38px;
    }

    .asme-steps__circle {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .asme-steps__circle svg {
        width: 14px;
        height: 14px;
    }

    .asme-steps__label {
        font-size: 11px;
    }

    .asme-steps__progress {
        top: 15px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .asme-steps-wrapper {
        padding: 16px 0;
    }

    .asme-steps__progress {
        left: 40px;
        right: 40px;
    }

    .asme-steps__circle {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .asme-steps__label {
        font-size: 10px;
    }

    .asme-steps__progress {
        top: 13px;
    }
}