/* Trend Enerji - Türkiye Haritası (Bayilerimiz ve Referanslarımız sayfalarında ortak kullanılır) */

.tr-map-wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.tr-map-wrap svg {
    width: 100%;
    height: auto;
}
#svg-turkiye-haritasi path {
    fill: #E3E6EA;
    stroke: #ffffff;
    stroke-width: 0.6;
    transition: fill .15s ease;
}
#svg-turkiye-haritasi g[data-has-dealer="1"] path {
    fill: var(--primary);
    cursor: pointer;
}
#svg-turkiye-haritasi g[data-has-dealer="1"] path:hover {
    fill: var(--dark);
}
#svg-turkiye-haritasi g[data-has-projects="1"] path {
    fill: var(--primary);
}
#svg-turkiye-haritasi g[data-has-projects="1"] path:hover {
    fill: var(--dark);
}
#svg-turkiye-haritasi g#guney-kibris path {
    fill: #E3E6EA;
    cursor: default;
}
#svg-turkiye-haritasi g#guney-kibris {
    pointer-events: none;
}

.il-isimleri {
    position: fixed;
    z-index: 20;
    pointer-events: none;
}
.il-isimleri div {
    display: inline-block;
    background: var(--dark);
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Dokunmatik/dar ekranlarda fare imleci olmadığından ipucu balonu
   yanlış konumda takılı kalabilir; bu ekranlarda gizleyip yalnızca
   dokunma ile karta kaydırma davranışını bırakıyoruz. */
@media (max-width: 768px), (hover: none) {
    .il-isimleri {
        display: none;
    }
}

.tr-map-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 1rem;
    font-size: .9rem;
    color: #9B9B9B;
}
.tr-map-legend span.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
}

.dealer-card {
    background: #fff;
    border: 1px solid #EEEEEE;
    border-radius: .75rem;
    padding: 1.75rem;
    height: 100%;
    box-shadow: 0 0 30px rgba(0,0,0,.06);
    transition: box-shadow .2s, transform .2s;
    scroll-margin-top: 110px;
}
.dealer-card.qw-flash {
    box-shadow: 0 0 0 3px var(--primary), 0 0 30px rgba(0,0,0,.08);
    transform: translateY(-2px);
}
.dealer-card h5 {
    margin-bottom: .9rem;
}
.dealer-card .dealer-person {
    padding-bottom: .6rem;
    margin-bottom: .6rem;
    border-bottom: 1px dashed #EEEEEE;
}
.dealer-card .dealer-person:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.dealer-card a {
    color: var(--dark);
    text-decoration: none;
}
.dealer-card a:hover {
    color: var(--primary);
}
