/* --- Unified Contact Form Styling --- */

/* Main Container */
.contact-form-wrapper {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Form Structure */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

/* Inputs */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

/* Unified Button Style */
.contact-btn {
    width: fit-content;
    padding: 13px 28px;
    border: none;
    border-radius: 6px;
    background: #222;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.1s ease;
}

.contact-btn:hover {
    background: #000;
}

.contact-btn:active {
    transform: scale(0.97);
}

/* Mobile */
@media (max-width: 600px) {
    .contact-form-wrapper {
        padding: 20px;
        margin: 15px;
    }
}