/* Ülkeler sayfası harita bölümü */
.countries-map-section {
  padding: 80px 0 0;
  background: #f8f9fc;
}

.countries-map-section .sec-title {
  margin-bottom: 30px;
}

.countries-map-section .sec-title p {
  margin-top: 10px;
  color: #6c757d;
}

/* Harita tam genişlik (container dışında) */
.countries-map-full {
  width: 100%;
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
}

.countries-map {
  width: 100%;
  height: 520px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  background: #e8eef4;
}

.countries-map-full.countries-map {
  height: 560px;
}

/* Leaflet marker özelleştirme */
.countries-map-marker {
  background: none;
  border: none;
}

.countries-map-marker .marker-pin {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 auto;
  background: #c42127;
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.countries-map-marker .marker-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -4px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

/* Popup içeriği */
.countries-map-popup {
  padding: 4px 0;
  min-width: 160px;
}

.countries-map-popup strong {
  display: block;
  margin-bottom: 6px;
  color: #1a1a2e;
}

.countries-map-popup a {
  color: #c42127;
  font-weight: 600;
  text-decoration: none;
}

.countries-map-popup a:hover {
  text-decoration: underline;
}

/* Leaflet popup stilleri (tema ile uyum) */
#countries-map .leaflet-popup-content-wrapper {
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

#countries-map .leaflet-popup-tip {
  background: #fff;
}

@media (max-width: 767px) {
  .countries-map {
    height: 400px;
  }
  .countries-map-full.countries-map {
    height: 420px;
  }
  .countries-map-section {
    padding: 50px 0 40px;
  }
}
