/* ========================= */
/* CONTACT PAGE              */
/* ========================= */

.contact-title-section {
    padding-top: 180px;
    margin-bottom: 40px;
}

.contact-title-section h2 {
    color: #b69a74;
    font-size: 18px;
    letter-spacing: 6px;
}



.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 120px;
}



/* LEFT INFO */

.contact-info h3 {
    color: #b69a74;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    margin-top: 40px;
}

.contact-info p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.9;
}



/* RIGHT FORM */

.contact-form-area {
    width: 60%;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 14px;
    color: #ddd;
    margin-top: 20px;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid #b69a74;
    padding: 12px;
    color: white;
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-form textarea {
    height: 140px;
}

.contact-form button {
    margin-top: 20px;
    width: 200px;
    padding: 12px;
    background: #b69a74;
    border: none;
    cursor: pointer;
    color: black;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}



/* MAP STYLE */

.contact-map {
    width: 100%;
    height: 350px;
    background: #111; /* Map olmadığında koyu placeholder */
    margin-bottom: 160px;
}

