/* =========================================
   İLETİŞİM SAYFASI STİLLERİ (MODERN BORDO)
   ========================================= */

/* --- GENEL AYARLAR --- */
body {
    background-color: #f8f9fa; /* Hafif gri zemin */
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

/* --- SAYFA BAŞLIĞI (HEADER) --- */
.page-header-contact {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=2069&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* --- İLETİŞİM KUTULARI (WRAPPER) --- */
.contact-section-wrapper {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    overflow: hidden; /* Köşeleri yumuşat */
    margin-bottom: 50px;
}

/* --- SOL TARAF: FORM --- */
.contact-form-area {
    padding: 50px;
}

.form-title {
    color: #800020; /* Bordo */
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.form-control {
    background-color: #fcfcfc;
    border: 1px solid #e0e0e0;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #800020;
    box-shadow: 0 0 0 0.2rem rgba(128, 0, 32, 0.1);
    background-color: white;
}

.btn-send-message {
    background: linear-gradient(135deg, #800020 0%, #a00028 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-send-message:hover {
    background: linear-gradient(135deg, #a00028 0%, #800020 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(128, 0, 32, 0.2);
}

/* --- SAĞ TARAF: BİLGİ KUTUSU --- */
.contact-info-area {
    background-color: #800020; /* Bordo Zemin */
    background-image: linear-gradient(135deg, #800020 0%, #5c0017 100%);
    color: white;
    padding: 50px;
    height: 100%; /* Eşit yükseklik */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 15px;
    display: inline-block;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    background-color: rgba(255,255,255,0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-right: 20px;
    flex-shrink: 0; /* İkonun sıkışmasını engeller */
}

.info-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffca3a; /* Gold detay */
}

.info-content p, .info-content a {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 1rem;
    text-decoration: none;
    line-height: 1.5;
}

.info-content a:hover {
    color: white;
    text-decoration: underline;
}

/* --- HARİTA --- */
.map-section {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 50px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- MOBİL UYUM --- */
@media (max-width: 991px) {
    .contact-form-area, .contact-info-area {
        padding: 30px;
    }
    
    .page-header-contact {
        padding: 60px 0;
    }

    .page-title {
        font-size: 2.2rem;
    }
}