/* Genel Ayarlar */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  box-sizing: border-box;
}


*, *::before, *::after {
  box-sizing: inherit;
}

a {
  text-decoration: none;
  color: #1d3b72;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
}

.navbar nav a {
  margin-left: 14px;
  font-size: 20px;
}

.logo {
  display: flex;
  align-items: center;
  max-width: 100%;
}

.icon {
  width: 35px;
  vertical-align: middle;
}

.phone {
  width: 150px;
  vertical-align: middle;
  margin-right: 5px;
}

/* Hamburger Buton */
.hamburger {
  display: none;
  font-size: 30px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

/* Mobil Menü */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #1d3b72;
  padding: 10px;
  position: absolute;
  top: 70px;
  right: 0;
  width: 100%;
  z-index: 1000;
}

.mobile-menu a {
  padding: 10px;
  text-align: center;
  color: white;
  font-size: 18px;
  border-bottom: 1px solid #ccc;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

/* Ana Kartlar */
.main-cards {
  background-color: #051432;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  max-width: 100%;
}

.card {
  background: #c2c7d2;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
  max-width: 100%;
}

/* Hizmetler */
.hizmetler {
  background-color: #c2c7d2;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 100%;
}

.hizmetler a.hizmet-card {
  display: flex;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(151, 149, 149, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: inherit;
  text-decoration: none;
}

.hizmetler a.hizmet-card:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hizmet-card img {
  width: 150px;
  max-width: 100%;
  object-fit: cover;
}

.hizmet-card div {
  padding: 10px;
}

/* Servisler */
.servisler {
  background-color: #051432;
  padding: 40px 20px;
  text-align: center;
  color: rgb(0, 0, 0);
  max-width: 100%;
}

.servisler h2 {
  color: #c2c7d2;
  margin-bottom: 20px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
  font-family: "Bungee", sans-serif;
  color: #1d3b72;
  max-width: 100%;
}

.grid-container a {
  text-decoration: none;
  color: inherit;
}

.grid-container a div {
  background-color: #c2c7d2;
  padding: 10px;
  border-radius: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-align: center;
}

.grid-container a div:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
  background-color: #111;
  color: white;
  padding: 20px;
  text-align: center;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 90px;
  height: 90px;
  bottom: 5px;
  right: 5px;
  padding: 10px 15px;
  z-index: 999;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Diğer Sayfa Elemanları */
.brand-header {
  background-color: #051432;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.brand-header h1 {
  margin: 10px 0;
}

.contact-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.contact-options a {
  background-color: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-options a:hover {
  background-color: #128C7E;
}

.brand-content {
  background-color: #c2c7d2;
  padding: 40px 20px;
  line-height: 1.7;
}

.brand-content h2 {
  color: #051432;
}

.brand-content ul {
  margin-left: 20px;
}

.brand-content a {
  color: #051432;
  font-weight: bold;
}

.map-section {
  text-align: center;
  margin: 30px 0;
}

.map-section .map-image {
  max-width: 40%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.bolgeler-listesi {
  margin-right: 60px;
  padding: -20px;
}

.bolgeler-listesi h2 {
  font-size: 23px;
}

.bolgeler {
  list-style-type: disc;
  font-size: 23px;
  color: #000;
  text-align: left;
  display: inline-block;
}

.bolgeler li {
  margin: 10px 0;
}

.iletisim-aksiyon {
  text-align: center;
  padding: 30px 20px;
  background-color: #f8f8f8;
}

.iletisim-aksiyon h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.telefon-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #2e8b57;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.telefon-btn:hover {
  background-color: #246b45;
}

/* Harita ve Liste Yanyana */
.bolge-yan-yana {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 20px;
  max-width: 100%;
}

/* Mobil Uyum */
@media screen and (max-width: 768px) {
  .navbar nav,
  .navbar-links {
    display: none;
  }

  .hamburger {
    display: block;
    z-index: 1100;
    color:#051432
  }

  .mobile-menu.show {
    display: flex;
  }

  .main-cards {
    grid-template-columns: 1fr;
  }

  .hizmetler {
    grid-template-columns: 1fr;
  }

  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .bolge-yan-yana {
    flex-direction: column;
    align-items: center;
  }

  .map-section .map-image {
    max-width: 100%;
  }

  .bolgeler-listesi {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .logo img {
    max-width: 260px;
    height: auto;
  }
}
.floating-button {
  position: fixed;
  width: 60px;
  height: 60px;
  right: 10px;
  z-index: 1000;
}

.floating-button img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.floating-button.whatsapp {
  bottom: 10px;
}

.floating-button.phone {
  bottom: 70px; /* WhatsApp butonunun 70px üstünde */
}



  