
#mapSection {
    background: #DEE6F3;
}

.centers-section {
    position: relative;
    padding: 0;
    overflow: hidden;
}

/* Başlık (experts-title-wrap + text-orange + fs-28 + mb-50 çözümü). */
.centers-section .experts-title-wrap {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
}

.centers-section .experts-title-wrap h2 {
    margin: 0;
    color: #f58220;
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.4px;
}

@media (max-width: 992px) {
    .centers-section .experts-title-wrap h2 {
        font-size: 24px;
    }
}

/* ---- Harita sahnesi ----------------------------------------------------- */

.centers-map-wrap {
    position: relative;
    overflow: hidden;
    background: transparent;
}

.centers-map-stage {
    position: relative;
    width: 100%;
    margin: 0;
    aspect-ratio: 16 / 9;
    min-height: 250px;
    max-height: 55vh;           /* modülün son ezmesi */
}

.centers-map-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    user-select: none;
    pointer-events: none;
}

.centers-watermark {
    display: none;
    position: absolute;
    inset-inline-start: 50%;
    bottom: -32px;
    transform: translateX(-50%);
    font-size: 15vw;
    line-height: 1;
    font-weight: 800;
    color: rgba(0, 0, 0, .035);
    letter-spacing: 6px;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    z-index: 999;
}

/* ---- Ülke pinleri ------------------------------------------------------- */

.centers-countries-layer {
    position: absolute;
    inset: 0;
    z-index: 20;
    pointer-events: none;
}

.center-country {
    position: absolute;
    transform: translate(-50%, -100%);
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: transform .2s ease;
    z-index: 21;
    pointer-events: auto;
    min-width: 34px;
    min-height: 44px;
}

.center-country:hover {
    transform: translate(-50%, -100%) scale(1.05);
}

.center-country-icon {
    position: relative;
    width: 34px;
    height: 44px;
    display: block;
    filter: drop-shadow(0 7px 10px rgba(0, 0, 0, .18));
}

.center-country-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.center-country-label {
    display: none;              /* eski sondaki !important ile gizli */
}

/* ---- Bilgi paneli ------------------------------------------------------- */

/*
 * Kabuğa kalıtım kalmış eski header.css `.centers-info-panel`'i varsayılan
 * gizliyor; panel bu ID kuralıyla açık tutuluyor (eski modülde de aynen böyle).
 */
#centersInfoPanel {
    display: block;
}

.centers-info-panel {
    position: absolute;
    inset-inline-start: 20%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 310px;
    background: rgba(45, 57, 91, .72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 18px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, .16);
    z-index: 30;
    padding: 16px 18px 14px;
    border-inline-start: 5px solid #ee7201;
}

.centers-info-title {
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    text-align: center;
}

.centers-info-list {
    display: flex;
    flex-direction: column;
}

.centers-info-item {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.35;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .55);
    transition: all .2s ease;
}

.centers-info-item:last-child {
    border-bottom: none;
}

.centers-info-item:hover {
    color: #ffcf9c;
    padding-inline-start: 4px;
}

.centers-empty {
    color: #ffffff;
    opacity: .92;
    text-align: center;
    font-size: 15px;
    padding: 8px 0;
}

/* ---- Duyarlı ------------------------------------------------------------ */

@media (max-width: 1199px) {
    .centers-map-stage {
        min-height: 560px;
    }

    .centers-info-panel {
        width: 290px;
    }

    .centers-info-title {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .centers-map-stage {
        min-height: 760px;
        aspect-ratio: auto;
    }

    .centers-map-image {
        top: 0;
        height: 56%;
    }

    .centers-countries-layer {
        top: 0;
        height: 56%;
        bottom: auto;
    }

    .centers-info-panel {
        top: auto;
        bottom: 24px;
        inset-inline-start: 50%;
        transform: translateX(-50%);
        width: min(92%, 360px);
    }
}

@media (max-width: 767px) {
    .centers-section {
        padding: 56px 0 16px;
    }

    .centers-map-stage {
        min-height: 680px;
    }

    .center-country-icon {
        width: 28px;
        height: 36px;
    }

    .center-country {
        min-width: 28px;
        min-height: 36px;
    }

    .centers-info-title {
        font-size: 22px;
    }

    .centers-info-item {
        font-size: 15px;
    }
}
