/* Shared inquiry sidebar form (testimonials / FAQs / awards / case studies) */

.testi-sidebar {
    position: sticky;
    top: calc(var(--header-h, 78px) + var(--alert-h, 32px) + 16px);
}

.testi-sidebar-form {
    background: #ffffff;
    border: 1px solid #C3C3C3;
    border-radius: 14px;
    padding: 1.5rem;
}

.testi-sidebar-form h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #023B5E;
    margin-bottom: 1.25rem;
}

.testi-form input,
.testi-form select,
.testi-form textarea {
    width: 100%;
    padding: .7rem .85rem;
    border: 1px solid #C3C3C3;
    border-radius: 8px;
    font-size: .88rem;
    background: #fff;
    color: #023B5E;
    margin-bottom: .75rem;
    display: block;
}

.testi-form input::placeholder,
.testi-form textarea::placeholder {
    color: #C3C3C3;
}

.testi-form input:focus,
.testi-form select:focus,
.testi-form textarea:focus {
    outline: none;
    border-color: #0570AE;
    box-shadow: 0 0 0 3px rgba(11, 92, 171, .1);
}

.testi-form textarea {
    min-height: 90px;
    resize: vertical;
}

.testi-form-agree {
    display: flex;
    gap: .5rem;
    font-size: .75rem;
    color: #767B79;
    line-height: 1.45;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.testi-form-agree a {
    color: #0570AE;
}

.testi-form-submit {
    width: 100%;
    background: #0570AE;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: .8rem 1rem;
    font-weight: 700;
    font-size: .92rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    transition: background .2s, transform .2s;
}

.testi-form-submit:hover {
    background: #023B5E;
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .testi-sidebar {
        position: static;
        order: -1;
    }
}
