.repro-find-doctor-form{
    max-width: 1100px;
    display: block !important;
    margin: 0 auto;
}

.repro-find-doctor-form__heading{
    text-align: left;
    margin-bottom: 16px;
}

body.rtl .repro-find-doctor-form__heading{
    text-align: right;
}

.repro-find-doctor-form__heading h3{
    font-size: 26px;
    margin: 0 0 6px;
}

.repro-find-doctor-form__heading p{
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.repro-find-doctor-form__form{
    display: flex;
    gap: 16px;
    align-items: center;
    background: #fff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
}

.repro-find-doctor-form__fields{
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 16px;
    min-width: 0;
}

.repro-field{
    position: relative;
    min-width: 0;
}

.repro-field__icon{
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
    opacity: .9;
}

body.rtl .repro-field__icon{
    left: auto;
    right: 14px;
}

.repro-find-doctor-form select,
.repro-select{
    width: 100%;
    height: 56px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid #e3e6ea;
    font-size: 15px;
    background-color: #fff;
    transition: all 0.2s ease;
}

.repro-field.has-icon select{
    padding-left: 44px;
}
body.rtl .repro-field.has-icon select{
    padding-left: 16px;
    padding-right: 44px;
}

.repro-find-doctor-form select:focus{
    outline: none;
    border-color: #8CC542;
    box-shadow: 0 0 0 3px rgba(140, 197, 66, 0.15);
}

.repro-find-doctor-form__submit{
    height: 56px;
    padding: 0 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: #fff;
    background: linear-gradient(135deg, #8CC542, #6fb52f);
    box-shadow: 0 10px 25px rgba(140, 197, 66, 0.35);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.repro-find-doctor-form__submit:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(140, 197, 66, 0.45);
}

.repro-btn__icon{
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 900px){
    .repro-find-doctor-form__form{
        flex-direction: column;
        align-items: stretch;
    }
    .repro-find-doctor-form__fields{
        grid-template-columns: 1fr;
    }
}




















.repro-find-doctor-form__fields {
    display: flex;
    gap: 15px;
    align-items: center;
}

.repro-find-doctor-form__fields .repro-field {
    flex: 1;
    min-width: 0;
}

.repro-find-doctor-form__fields select {
    width: 100%;
}

@media (max-width: 768px) {
    .repro-find-doctor-form__fields {
        flex-direction: column;
    }
}
