.custom-contact-form {
    max-width: 520px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-family: "Inter", system-ui, sans-serif;
}

.custom-contact-form label {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin-bottom: 6px;
}

.custom-contact-form input,
.custom-contact-form select,
.custom-contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    background: #fafafa;
    transition: all 0.25s ease;
}

.custom-contact-form input:focus,
.custom-contact-form select:focus,
.custom-contact-form textarea:focus {
    border-color: #0073aa;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.15);
    outline: none;
}

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

.custom-contact-form button {
    padding: 14px;
    background: linear-gradient(135deg, #0073aa, #005f87);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.custom-contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 115, 170, 0.25);
}

.custom-contact-form button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#formMessage {
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    padding: 12px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#formMessage.show {
    opacity: 1;
    transform: translateY(0);
}

.success {
    color: #155724;
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.error {
    color: #721c24;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}
