/* --- Anasayfa İletişim Bölümü Stilleri (Modern Koyu Tema) --- */
.home-contact-section-dark {
    padding: 0; /* Dış boşlukları sıfırladık */
    background-color: #111827; /* Koyu ana arka plan */
}

.contact-grid-dark {
    display: grid;
    grid-template-columns: 1fr; /* Mobilde tek sütun */
}

/* Sol Sütun: İletişim Detayları */
.contact-details-dark {
    padding: 3rem 1.5rem; /* İç boşluklar */
    color: #d1d5db; /* Açık gri metin rengi */
}

.contact-header-dark {
    margin-bottom: 3rem;
}

.contact-header-dark span {
    display: inline-block;
    color: #f97116;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-header-dark h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-header-dark p {
    font-size: 1.1rem;
    color: #9ca3af;
    line-height: 1.7;
}

.contact-item-dark {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item-dark svg {
    color: #f97116;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-item-dark strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.25rem;
}

.contact-item-dark p,
.contact-item-dark a {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.6;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}

.contact-item-dark a:hover {
    color: #f97116;
}

/* Sağ Sütun: Harita */
.contact-map-dark {
    position: relative; /* İmleç animasyonu için bu gerekli */
    min-height: 450px;
    width: 100%;
    overflow: hidden; /* Taşmaları engelle */
}

.contact-map-dark iframe {
    width: 100%;
    height: 100%;
    display: block;
    /* Haritayı koyu temaya uygun hale getiren filtre */
    filter: grayscale(100%) invert(90%) contrast(80%);
}

/* Harita Üzerindeki Animasyonlu İmleç */
.contact-map-dark::after {
    content: '';
    position: absolute;
    top: 50%; /* Haritanın dikeyde ortası */
    left: 50%; /* Haritanın yatayda ortası */
    width: 16px;
    height: 16px;
    background-color: #f97116;
    border: 3px solid #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 rgba(249, 115, 22, 0.7);
    animation: pulse-map-marker 2s infinite ease-in-out;
    z-index: 10;
}

/* Tablet ve Masaüstü (992px ve üstü) */
@media screen and (min-width: 992px) {
    .contact-grid-dark {
        grid-template-columns: 450px 1fr; /* Sabit sol ve esnek sağ sütun */
        min-height: 600px;
    }

    .contact-details-dark {
        padding: 4rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact-header-dark h2 {
        font-size: 2.8rem;
    }
}

/* İmleç için yanıp sönme animasyonu */
@keyframes pulse-map-marker {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }
    70% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 25px rgba(249, 115, 22, 0);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

