body {
  margin: 0;
  background: radial-gradient(
      circle at center,
      rgba(0, 71, 171, 0.15) 0%,
      transparent 70%
    ),
    #05080f;
  font-family: "Segoe UI", Roboto, sans-serif;
  color: white;
  text-align: center;
  min-height: 100vh;
  overflow-x: hidden;
}
.header {
  padding: 60px 20px 40px;
}
.header h1 {
  letter-spacing: 6px;
  font-size: 32px;
  margin: 0;
}
.map-wrapper {
  width: 90%;
  max-width: 1000px;
  height: 380px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(0, 71, 171, 0.2);
}
.address {
  margin-top: 30px;
  font-size: 18px;
  color: #ccc;
  line-height: 1.6;
  text-align: center;
}
.phone {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  color: #0047ab;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  text-align: center;
}
.phone:hover {
  color: #007bff;
}
.maps-btn {
  margin: 25px auto 0;
  display: inline-block;
  padding: 14px 35px;
  background: #0047ab;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 71, 171, 0.4);
}
.maps-btn:hover {
  background: #0056d6;
  transform: scale(1.05);
}
.instagram-btn {
  display: inline-block;
  margin: 40px auto 0;
  color: #fff;
  font-size: 50px;
  text-decoration: none;
  transition: 0.4s;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(0, 71, 171, 0.5);
  width: fit-content;
}
.instagram-btn:hover {
  color: #007bff;
  transform: rotate(10deg) scale(1.2);
  text-shadow: 0 0 20px #007bff, 0 0 40px #007bff;
}
.back-link {
  display: block;
  margin-top: 50px;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  padding-bottom: 40px;
  transition: 0.3s;
}
.back-link:hover {
  color: #999;
}

/* Responsive ayarlar */
@media (min-width: 1000px) {
  .map-wrapper {
    width: 85%;
    max-width: 1200px;
    height: 380px;
    margin-top: 10px;
    margin-bottom: 18px;
  }
  /* Masaüstünde adres, telefon, buton alt alta ortalanmış */
  .address,
  .phone,
  .maps-btn {
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
    display: block;
    width: auto;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .phone {
    font-size: 26px;
  }
  .maps-btn {
    margin-top: 15px;
    padding: 14px 45px;
    font-size: 14px;
  }
}

/* Sol üst köşeye sabit logo */
.fixed-logo {
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 9999;
  width: 80px; /* Boyutu buradan ayarlayabiliriz */
  height: auto;
}

.fixed-logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); /* Logoyu belirginleştirir */
}

/* İçeriği yukarı çekmek için header'a negatif margin veriyoruz */
.header {
  margin-top: -40px; /* Bu değeri artırarak (ör. -60px) daha da yukarı çekebilirsin */
}

/* Harita ve diğer elemanlar arasındaki boşlukları daraltalım */
.map-wrapper {
  margin-top: 15px;
}

.address {
  margin-top: 15px;
}

/* Alt butonları ve linkleri yukarı çek */
.instagram-btn {
  margin-top: 10px;
}

.back-link {
  margin-top: 15px;
  display: inline-block; /* Margin'in çalışması için gerekli */
}

@media (min-width: 760px) and (max-width: 999px) {
  .map-wrapper {
    width: 92%;
    max-width: 900px;
    height: 420px;
  }
}