/* Deeploy Contact Form */
.dcf-form-wrapper {
    max-width: 720px;
    margin: 0 auto;
    font-family: inherit;
}

.dcf-section {
    margin-bottom: 2rem;
}

.dcf-section-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.dcf-row {
    display: flex;
    gap: 1rem;
}

@media (max-width: 600px) {
    .dcf-row {
        flex-direction: column;
        gap: 0;
    }
}

.dcf-field {
    flex: 1;
    margin-bottom: 1rem;
}

.dcf-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
    color: #1f2937;
}

.dcf-req {
    color: #dc2626;
}

.dcf-field input,
.dcf-field select,
.dcf-field textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.dcf-field input:focus,
.dcf-field select:focus,
.dcf-field textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.dcf-field input.dcf-invalid,
.dcf-field select.dcf-invalid,
.dcf-field textarea.dcf-invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.dcf-field textarea {
    resize: vertical;
    min-height: 100px;
}

/* Honeypot — hidden from humans */
.dcf-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.dcf-submit-row {
    text-align: center;
    margin-top: 1.5rem;
}

.dcf-submit-btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #DF3E5B;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.dcf-submit-btn:hover {
    background: #c7304a;
}

.dcf-submit-btn:active {
    transform: scale(0.98);
}

.dcf-submit-btn:disabled {
    background: #f4a0b0;
    cursor: not-allowed;
}

/* Status messages */
.dcf-status {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 1.5em;
}

.dcf-status.dcf-error {
    color: #dc2626;
}

.dcf-status.dcf-sending {
    color: #6b7280;
}

/* Success state */
.dcf-success {
    text-align: center;
    padding: 3rem 1rem;
}

.dcf-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.dcf-success h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.dcf-success p {
    color: #6b7280;
    font-size: 1rem;
}

/* reCAPTCHA badge — move out of the way but keep accessible */
.grecaptcha-badge {
    visibility: hidden;
}
