
#map {
    height: 380px;
    border-radius: 10px;
    position: relative;
    border: 1px solid #ddd;
}
.gmap-search-box {
    padding: 8px;
}
.gmap-search-box input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}
.map-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #f5f5f5;
    color: #666;
    font-size: 16px;
}


/*------------------------*/
.wizard-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 25px 0;
    list-style: none;
}

.wizard-step-item {
    text-align: center;
    padding: 10px;
    transition: 0.3s ease;
    font-family: 'HelveticaNeueLT';
}

.wizard-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    font-weight: 600;
    font-size: 18px;
    transition: 0.3s ease;
}

.wizard-step-label {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.2;
}

.wizard-step-item.active .wizard-step-number {
    background: #2dbfc6;
    color: #fff;
    box-shadow: 0 0 10px rgba(13,110,253,0.3);
}

.wizard-step-item.active .wizard-step-label {
    color: #2dbfc6;
    font-weight: bold;
}

.wizard-step-item:hover .wizard-step-number {
    background: #2dbfc6;
    color: #fff;
}

.wizard-step-item:hover .wizard-step-label {
    color: #2dbfc6;
}

/* ------------------------------ */
/*            الجــــــوال         */
/* ------------------------------ */

@media (max-width: 576px) {
    .wizard-steps {
        gap: 12px;
    }

    .wizard-step-item {
        flex: 0 0 28%; /* يجعل 3 خطوات في السطر */
        padding: 5px;
    }

    .wizard-step-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .wizard-step-label {
        font-size: 11px;
    }
}
/*------------------------*/
.progress {
  width: 100%;
  background: #e9ecef;
}

.progress-bar {
  height: 100%;
  background: #2dbfc6;
  transition: width .25s ease;
}


/*------------------------*/
