/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
font-family: 'Playfair Display', serif;
    line-height: 1.6;
    
}
/* ======================================== */
.contact-container {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background: #f9f9f9;
    font-family: Arial, sans-serif;
}

.contact-info {
    width: 40%;
    padding: 20px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #b68f2b;
    /* luxury gold */
    margin: 2rem 0 1.5rem;
    position: relative;
}

.contact-info p {
    font-size: 1.2rem;
    font-weight: 300;
    color: #989898;
    margin-bottom: 1rem;
}

.contact-form {
    width: 50%;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-submit {
    background: linear-gradient(135deg, #c6a34f, #e4c879);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(182, 143, 43, 0.3);
}

.form-submit:hover {
    background-color: #d4af37;
    color: #fff;
    transform: translateY(-2px);
    /* slight lift effect */
    box-shadow: 0 6px 12px rgba(182, 143, 43, 0.4);
}


.success {
    color: green;
    margin-bottom: 10px;
}

.error {
    color: red;
    margin-bottom: 10px;
}