/* Landing contact / lead form. Glass card on the dark .contact section,
   styled to match .contact-card and the .cta-btn accent button. */

.contact-form-wrap {
    max-width: 640px;
    margin: 60px auto 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    position: relative;
    z-index: 1;
}

.contact-form-wrap h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    margin: 0 0 10px;
    font-size: 1.5rem;
    text-align: center;
}

.contact-form-subtitle {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin: 0 0 28px;
}

.contact-form-input {
    width: 100%;
    margin-bottom: 15px;
    padding: 14px 18px;
    font: inherit;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: border-color 0.25s ease, background 0.25s ease;
    box-sizing: border-box;
}

.contact-form-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.contact-form-input:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.1);
}

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

.contact-form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    padding: 16px 40px;
    font: inherit;
    font-weight: 700;
    color: var(--dark);
    background: var(--gradient-accent);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.contact-form-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.contact-form-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-form-status {
    margin-top: 12px;
    font-weight: 600;
}

.contact-form-status.success {
    color: #10B981;
}

.contact-form-status.error {
    color: #EF4444;
}

@media (max-width: 768px) {
    .contact-form-wrap {
        padding: 28px 20px;
        margin-top: 40px;
    }

    .contact-form-btn {
        width: 100%;
    }
}
