/* ===========================================================
   Contact form - Web3Forms AJAX form, ZC navy theme.
   Mirrors the ZCProPhoto / Spotlight Pet Videos form structure.
   =========================================================== */
.zc-contact-form {
    max-width: 720px;
    margin: 0;
    text-align: left;
    background: #19227c;
    border: 1px solid #141b63;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.zc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.zc-field {
    margin-bottom: 18px;
}
.zc-field label {
    display: block;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
    margin-bottom: 6px;
}
.zc-field .req {
    color: #ffffff;
}
.zc-field input,
.zc-field select,
.zc-field textarea {
    width: 100%;
    font-family: inherit;
    font-size: 16px;
    color: #1a2050;
    background: #f7f9fb;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    padding: 12px 14px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.zc-field input::placeholder,
.zc-field textarea::placeholder {
    color: rgba(26, 32, 80, 0.75);
}
/* Dropdown options are drawn by the OS; keep them dark-on-white so they stay legible */
.zc-field select option {
    color: #222222;
    background: #ffffff;
}
.zc-field textarea {
    resize: vertical;
    min-height: 140px;
}
.zc-field input:focus,
.zc-field select:focus,
.zc-field textarea:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

/* Submit: reuse the site's gradient button; just ensure it sits on its own line */
.zc-contact-form .button {
    cursor: pointer;
    border: 0;
    margin-top: 4px;
}

.zc-form-note {
    font-size: 13px;
    color: #ffffff;
    margin-top: 14px;
}
.zc-form-note a {
    color: #ffffff;
    text-decoration: underline;
}

.zc-form-success,
.zc-form-error {
    display: none;
    border-radius: 6px;
    padding: 14px 16px;
    margin-top: 18px;
    font-weight: 600;
}
.zc-form-success {
    background: #e8f3ec;
    border: 1px solid #43a047;
    color: #245a30;
}
.zc-form-error {
    background: #fbe9e4;
    border: 1px solid #c0392b;
    color: #8a2b1c;
}
.zc-form-error a {
    color: inherit;
    text-decoration: underline;
}
.zc-form-success.visible,
.zc-form-error.visible {
    display: block;
}

@media (max-width: 640px) {
    .zc-form-row {
        grid-template-columns: 1fr;
    }
    .zc-contact-form {
        padding: 22px;
    }
}
