﻿/* Genel Ayarlar */
.contact-section {
    padding: 60px;
    background-color: #f7f7f7;
    font-family: 'Arial', sans-serif;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

    .contact-header h2 {
        font-size: 36px;
        font-weight: bold;
        color: #333;
        margin-bottom: 10px;
    }

    .contact-header p {
        font-size: 18px;
        color: #777;
    }

/* İletişim Alanı */
.contact-info {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* Form */
.contact-form {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .contact-form h3 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 20px;
    }

.form-field {
    margin-bottom: 20px;
}

    .form-field label {
        display: block;
        font-size: 14px;
        color: #333;
        margin-bottom: 5px;
    }

    .form-field input, .form-field textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        color: #333;
    }

        .form-field input:focus, .form-field textarea:focus {
            border-color: #FF7F00;
            outline: none;
        }

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #FF7F00;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .submit-btn:hover {
        background-color: #e36c00;
    }

/* İletişim Bilgileri */
.contact-details {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .contact-details h3 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .contact-details p {
        font-size: 16px;
        margin-bottom: 10px;
        color: #333;
    }

.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .contact-header h2 {
        font-size: 28px;
    }

    .contact-header p {
        font-size: 16px;
    }

    .contact-form, .contact-details {
        padding: 20px;
    }

    .form-field input, .form-field textarea {
        font-size: 14px;
    }

    .submit-btn {
        padding: 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-header h2 {
        font-size: 22px;
    }

    .contact-header p {
        font-size: 14px;
    }

    .contact-form, .contact-details {
        padding: 15px;
    }

    .form-field input, .form-field textarea {
        font-size: 14px;
    }

    .submit-btn {
        padding: 10px;
        font-size: 14px;
    }
}
