/* ==========================================
   HARİTA BÖLÜMÜ (FULL WIDTH)
   ========================================== */
.map-section {
    position: relative;
    width: 100%;
    height: 650px; /* Masaüstü harita yüksekliği */
    background: #eaeaea;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Harita Çerçevesi */
.map-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* iframe için filtre (Opsiyonel: Tasarıma daha cool oturması için hafif kontrast eklendi) */
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: contrast(105%) saturate(110%);
}

/* Yüzen Kart İçin Hizalama Konteyneri */
.container-map-card {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
}

/* Yüzen İletişim Kartı */
.map-floating-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    max-width: 420px;
    border-top: 5px solid var(--red);
    transition: transform 0.3s ease;
}

.map-floating-card:hover {
    transform: translateY(-5px);
}

.card-logo-area .badge-light {
    margin-bottom: 15px;
}

.map-floating-card h3 {
    font-size: 26px;
    color: #111;
    font-weight: 800;
    margin-bottom: 10px;
}

.map-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* Liste Yapısı */
.map-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.map-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.map-contact-list li i {
    font-size: 20px;
    color: var(--red);
    margin-top: 2px;
}

.map-contact-list li span {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}
.map-contact-list li strong {
    font-size: 16px;
    color: #111;
    font-weight: 700;
}

/* Kırmızı Yol Tarifi Butonu */
.btn-map-red {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--red);
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    gap: 10px;
    transition: all 0.3s;
}

.btn-map-red:hover {
    background: #b3000a;
}

/* ==========================================
   MOBİL UYUMLULUK
   ========================================== */
@media (max-width: 992px) {
    .map-floating-card { padding: 30px; max-width: 350px; }
}

@media (max-width: 768px) {
    .map-section {
        height: auto;
        display: flex;
        flex-direction: column;
        background: #fdfdfd;
    }
    
    .map-wrapper {
        position: relative;
        height: 400px; /* Mobilde harita boyutu */
        order: 1; /* Harita üstte dursun */
    }
    
    .container-map-card {
        height: auto;
        padding: 0 15px;
        order: 2; /* Kart altta dursun */
    }
    
    /* Mobilde Kart Haritanın Altına Taşar ve Yaslanır */
    .map-floating-card {
        position: relative;
        max-width: 100%;
        margin: -50px auto 40px auto; /* Haritanın hafif üstüne bindirme efekti */
        z-index: 10;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .map-floating-card h3 { font-size: 22px; }
}