/* Shared "Book Your Free Consultation" rich lead form, used in the hero
   section of every /services/* page. Self-contained (doesn't depend on any
   page-specific CSS variables) so it can be dropped into any template. */
.mlm-rich-lead-form {
    width: 100%;
    padding: 28px 30px 24px;
    border: 1px solid #D9E9EC;
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0 16px 38px rgba(31, 49, 56, .14);
}

.mlm-rich-lead-form__heading {
    text-align: center;
    margin-bottom: 16px;
}

.mlm-rich-lead-form__heading h3 {
    margin: 0;
    color: #00585F;
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.mlm-rich-lead-form__heading p {
    max-width: 360px;
    margin: 7px auto 0;
    color: #5e6467;
    font-size: 12px;
    line-height: 1.45;
}

.mlm-rich-lead-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
}

.mlm-rich-lead-form__grid label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #333;
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.mlm-rich-lead-form__grid input,
.mlm-rich-lead-form__grid select {
    width: 100%;
    height: 42px;
    padding: 0 11px;
    border: 1px solid #D9E9EC;
    border-radius: 5px;
    outline: none;
    background: #F7FBFC;
    font: inherit;
    font-size: 13px;
    color: #263b45;
}

.mlm-rich-lead-form__grid input:focus,
.mlm-rich-lead-form__grid select:focus {
    border-color: #0888A7;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(8, 136, 167, .15);
}

.mlm-rich-lead-form__submit {
    width: 100%;
    min-height: 48px;
    margin-top: 18px;
    padding: 0 20px;
    border: 0;
    border-radius: 8px;
    background: #0888A7;
    color: #fff;
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.mlm-rich-lead-form__submit:hover,
.mlm-rich-lead-form__submit:focus {
    background: #066e87;
}

.mlm-rich-lead-form__submit:disabled {
    cursor: wait;
    opacity: .7;
}

.mlm-rich-lead-form__status {
    min-height: 16px;
    margin: 8px 0 0;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
}

.mlm-rich-lead-form__status[data-state="success"] {
    color: #0b8052;
}

.mlm-rich-lead-form__status[data-state="error"] {
    color: #b73c32;
}

@media (max-width: 480px) {
    .mlm-rich-lead-form__grid {
        grid-template-columns: 1fr;
    }
}
