/*! SVG Turkiye Haritasi | CSS */
header {
  width: 100%;
  background-color: #f9f9f9;
  padding: 20px 0;
  margin-bottom: 10px;
}

.header-wrapper {
  width: 100%;
  max-width: 1450px; /* Maksimum genişlik 1450px olarak sınırlanıyor */
  margin: 0 auto; /* Sayfanın ortasına hizalanıyor */
}

header.container {
  display: flex;
  width: 100%;
  justify-content: space-between; /* İçerikleri başlangıç ve sona doğru hizalar */
  align-items: center; /* Dikeyde ortalar */
}

.logo-container {
  flex: 1; /* Logonun esnekliği arttırılıyor, sağdaki butona yer açmak için */
}

.logo-container img {
  max-width: 100%;
  height: auto;
}

.header-buttons {
  flex-shrink: 0; /* Butonun boyutu değiştirilmeden kalır */
}

.header-buttons .btn {
  display: flex;
  align-items: center; /* İkon ve metni dikey olarak hizalar */
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid #e30613; /* Kenarlık */
  color: #000; /* Button metin rengi */
  text-decoration: none; /* Link altı çizgiyi kaldırma */
  transition: background-color 0.3s, color 0.3s;
}

.header-buttons .btn i {
  margin-right: 5px; /* İkon ile metin arasındaki boşluğu ayarlar */
}

.header-buttons .btn:hover {
  background-color: #e30613;
  color: #fff;
}

footer {
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #E30613;
  padding: 20px 0;
  margin-top: 10px;
  z-index: 9999;
}

.footer-wrapper {
  width: 100%;
  background-color: #e30613;
  padding: 20px 0;
}

.footer-wrapper .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1450px;
  width: 100%;
  margin: 0 auto;
}

.logo-container img {
  max-width: 100%;
  height: auto;
}

.copyright {
  color: #fff;
  font-size: 14px;
}
.svg-turkiye-haritasi {
  position: relative;
  max-width: 1650px;
  margin: 0 auto;
  text-align: center;
}

.svg-turkiye-haritasi svg {
  width: 100%;
  height: auto;
}

.il-isimleri {
  position: absolute;
  z-index: 9999;
  top: 0;
  left: 50%;
}

.il-isimleri div {
  font-family: 'Poppins';
  position: absolute;
  background: #000000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  visibility: visible;
}

.il-isimleri:hover div {
  visibility: visible;
}

#svg-turkiye-haritasi path {
  cursor: pointer;
  fill: #192652;
}

#svg-turkiye-haritasi .bayi path {
  fill: #E30613;
  color: #E30613;
}

#svg-turkiye-haritasi .bayi path:hover {
  fill: #B6050F;
}

#svg-turkiye-haritasi .hizmet path {
  fill: #ee6a71;
  color: #ee6a71;
}

#svg-turkiye-haritasi .hizmet path:hover {
  fill: #eb515a;
}

#guney-kibris {
  pointer-events: none;
}
.icon-boxes {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.icon-box {
  display: flex;
  align-items: center;
}

.icon-box i {
  font-size: 24px;
  margin-right: 5px;
}
.icon-box p {
margin: 0;
font-size: 16px;
font-weight: 600;
}

@media only screen and (max-width: 768px) {
  .icon-box p {
    font-size: 13px; /* Mobil ekranlarda metin boyutunu küçültmek için */
  }
}

.icon-box:nth-child(1) i {
  color: #e30613;
}

.icon-box:nth-child(2) i {
  color: #ee6a71;
}

.icon-box:nth-child(3) i {
  color: #192652;
}
.map-info-section {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.map-info {
  padding: 20px;
  border-radius: 8px;
  display: inline-block; /* İçeriği ekranın ortasına hizalamak için */
}

.map-info h2 {
  font-size: 36px;
  color: #e30613;
  font-weight: 600;
  margin-bottom: 10px;
}

.map-info p {
  font-size: 16px;
  color: #666;
}
