/* ✅ Genel Stiller */
.contact-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* ✅ Başlık */
.contact-container h1 {
    font-size: 2.5rem;
    color: #8B4513;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.contact-container p {
    font-size: 1.1rem;
    text-align: center;
    color: #5C4033;
    margin-bottom: 30px;
}

/* ✅ Harita & İletişim Bilgileri Bölümü */
.contact-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

/* ✅ Harita */
.map-container {
    width: 50%;
    background: white;
    padding: 10px;
    border-radius: 12px;
    border: 2px solid #ba9672;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    border: none;
}

/* ✅ İletişim Bilgileri */
.contact-info {
    width: 50%;
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #ba9672;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 20px;
    text-align: center;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #333;
    padding: 10px 0;
}

.info-box i {
    font-size: 1.5rem;
    color: #8B4513;
}

/* ✅ Form Stili */
.contact-form {
    background: #f9f5ec;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: #5C4033;
    margin-bottom: 5px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ba9672;
    font-size: 1rem;
    outline: none;
    transition: all 0.2s ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #8B4513;
    box-shadow: 0 0 5px rgba(139, 69, 19, 0.4);
}

.form-group textarea {
    resize: none;
    height: 120px;
}

.btn {
    background: #8B4513;
    color: white;
    padding: 12px 20px;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background: #5C4033;
    transform: scale(1.05);
}

/* ✅ Responsive */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .map-container,
    .contact-info {
        width: 100%;
    }

    .contact-info {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .contact-form {
        width: 100%;
        padding: 20px;
    }
}
