.contact-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.contact-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.contact-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.contact-grid {
    max-width: 36rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-header h1 {
        font-size: 3rem;
    }
}

/* Form card */
.contact-form-card {
    border-radius: 1rem;
    border: 1px solid rgba(226,232,240,0.6);
    background: var(--card);
    padding: 1.75rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.375rem;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    background: var(--background);
    color: var(--foreground);
    font-family: inherit;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--muted-foreground);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}

.form-field textarea {
    min-height: 120px;
    resize: vertical;
}

.form-field--hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.form-submit {
    width: 100%;
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s;
}

.form-submit:hover {
    opacity: 0.9;
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-status {
    font-size: 0.875rem;
    text-align: center;
}

.form-status--success {
    color: #16a34a;
}

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