﻿/* Genel Header */
header {
    text-align: left;
    margin: 40px 0 30px;
    color: #333;
}

/* Container */
.contact_container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    gap: 20px;
}

/* Form bölümü */
.contact_form_container {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form alanları */
.contact_form input,
.contact_form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .contact_form input:focus,
    .contact_form textarea:focus {
        outline: none;
        border-color: #258cfb;
        box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
    }

.contact_form textarea {
    height: 150px;
    resize: vertical;
}

.contact_form button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

    .contact_form button:hover,
    .contact_form button:focus {
        background-color: #0056b3;
        box-shadow: 0 0 8px rgba(0, 86, 179, 0.7);
    }

/* Bilgi ve harita bölümü */
.contact-info_container {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    color: #444;
}

    .contact-info_container h3 {
        text-align: center;
        margin-bottom: 15px;
        font-weight: 600;
    }

.social_icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

    .social_icons img {
        width: 32px;
        height: 32px;
        transition: transform 0.3s ease;
    }

        .social_icons img:hover {
            transform: scale(1.2);
        }

.map_container {
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 1200px) {
    .contact_container {
        flex-direction: column;
        align-items: center;
    }

    .contact_form_container,
    .contact-info_container {
        max-width: 100%;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .contact_form_container,
    .contact-info_container {
        width: 100%;
        text-align: left;
        padding: 15px 10px;
    }

    header {
        margin: 30px 0 20px;
    }
}
