/* =============================================================================
   OD Forms — Template: About Page
   Inline form in the About Us New CTA section via odf_render_about_page_inline().
   ============================================================================= */

.odf-hp { display: none !important; }

.odf-ap-wrap { height: 100%; }

.odf-ap-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 24px;
    color: #121212;
}

.odf-ap-form { display: flex; flex-direction: column; }

.odf-ap-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.odf-ap-group { margin-bottom: 16px; }

.odf-ap-group input,
.odf-ap-group textarea {
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    color: #121212;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
    background: transparent;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    resize: none;
}

.odf-ap-group input:focus,
.odf-ap-group textarea:focus { border-bottom-color: #c2f971; }

.odf-ap-group input::placeholder,
.odf-ap-group textarea::placeholder { color: #bbb; font-weight: 400; }

.odf-ap-group textarea { min-height: 80px; }

.odf-ap-footer { display: flex; justify-content: flex-end; margin-top: 8px; }

.odf-ap-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #c2f971;
    color: #0a0a0a;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 28px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.odf-ap-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(194, 249, 113, 0.45);
}

.odf-ap-error { margin-top: 12px; font-size: 13px; color: #c00; }

.odf-ap-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 180px;
    text-align: center;
}

.odf-ap-success-icon { font-size: 44px; color: #c2f971; }

.odf-ap-success p {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    max-width: 300px;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .odf-ap-row { grid-template-columns: 1fr; gap: 0; }
}
