#turkiye-haritasi {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 1em;
}

.cities__turkey-map-city {
    fill: #fff;
    cursor: pointer;
}

#turkiye-haritasi.menu-harita {
    padding: 4em;
}

.menu-harita .cities__turkey-map-city {
    fill: #f1f1f1;
}

.cities__turkey-map-city:hover {
    fill: #225227;
}

.cities__indicator-card {
    position: fixed;
    display: none;
    overflow: hidden;
    z-index: 9999;
}

@media screen and (min-width: 1024px) {
    .cities__indicator-card.active {
        display: block;
    }
}

.cities__indicator-card--img {
    width: 260px;
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
}

.cities__indicator-card--city {
    display: block;
    font-size: 20px;
    font-weight: 600;
}

.cities__indicator-card--figure {
    position: relative;
    background-color: #225227cf;
    /*background-image: linear-gradient(115deg, #3CABC1 33%, #225227 100%);*/
}

.cities__indicator-card--figcaption {
    width: 210px;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    padding: 20px 10px;
    font-family: Poppins, sans-serif;
}

.selected-city {
    fill: #225227 !important;
    /*stroke: #000!important;*/
}


/* Modal Butonu */
.modal-btn {
    font-family: 'Baloo Bhaina', cursive;
    letter-spacing: 1px;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 25px;
    background-color: #ef6633;
    color: #fff;
    transition: all .3s;
}

.modal-btn:hover {
    background-color: #d25729;
}

/* Modal */
.modal {
    background-color: rgba(0, 0, 0, 0.65);
    display: none;
    overflow: auto;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

/* Modal İçeriği */
.modal-content {
    position: relative;
    top: 0;
    width: 600px;
    background-color: #111;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 8px;
}

.modal-animated-in {
    animation: totop-in .3s ease;
}

.modal-animated-out {
    animation: totop-out .3s ease forwards;
}

.modal-header {
    background-color: #111;
    width: 100%;
    padding: 20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
}

.modal-header:before {
    content: " ";
    display: block;
    background-image: url(https://www.optimal360.com.tr/wp-content/uploads/2024/11/Adsiz-tasarim-2.png);
    --background-overlay: '';
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 200% auto;
    filter: brightness(200%) contrast(183%) saturate(200%) blur(0px) hue-rotate(0deg);
    width: 75%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

.modal-content .close {
    position: absolute;
    right: 20px;
    top: 10px;
    background-color: #222;
    width: 40px;
    height: 40px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s;
    font-size: 20px;
}

.modal-content .close:hover {
    /*background-color: #fff;*/
    color: #222;
}

.modal-content .close svg {
    margin: 10px;
}

/* Modal Body */
.modal-body {
    padding: 20px;
    background-color: #EAEAEA;
    color: #000;
    font-size: 16px;
    line-height: 1.6;
}

.modal-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.modal-body ul li {
    position: relative;
    display: block;
    margin-left: 20px;
    color: #000;
}

/* Modal Footer */
.modal-footer {
    background-color: #111;
    width: 100%;
    padding: 20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.modal-header h3,
.modal-footer h3 {
    color: #fff;
}

/* Animasyonlar */
@keyframes totop-in {
    0% {
        top: 600px;
        opacity: 0;
    }
    100% {
        top: 0;
        opacity: 1;
    }
}

@keyframes totop-out {
    0% {
        top: 0;
        opacity: 1;
    }
    100% {
        top: -100%;
        opacity: 0;
    }
}

.modal-img {
    width: 150px;
    height: auto;
    margin: 5px;
}

/* Modal İçeriği */
#harita-modal .modal-content {
    width: 500px;
    padding: 0;
    position: relative;
    background: #fff;
    border-radius: 8px;
}

/* Swiper Slider */
.swiper-container {
    width: 100%;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Navigasyon Butonları */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

/* Pagination */
.swiper-pagination-bullet {
    background: #fff;
}

.swiper-pagination-bullet-active {
    background: #007bff;
}

/* Modal Kapanış Butonu */
#harita-modal .close {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}