.contact-main {
    padding: 140px 2rem 120px;
    min-height: 100vh;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 800px;
    width: 100%;
}

.contact-main h1 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #222;
}

.contact-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 3rem 2.5rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: #000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #222;
}

.submit-btn:disabled {
    background: #666;
    cursor: not-allowed;
}


.status-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.status-message.loading {
    background: #fff3cd;
    color: #856404;
}

.status-message.success {
    background: #d4edda;
    color: #155724;
}

.status-message.error {
    background: #f8d7da;
    color: #721c24;
}


@media (max-width: 768px) {
    .contact-main {
        padding: 120px 1.2rem 80px;
    }

    .contact-card {
        padding: 2.2rem 1.6rem;
    }
}