/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f9fafc;
  color: #1e1e1e;
  padding-top: 100px;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* === Navbar === */
.navbar {
  background-color: #0b1d3a;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background-color: #081631;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 90px;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links ul li a {
  color: white;
  font-weight: 600;
  padding: 0.5rem 0.8rem;
  display: inline-block;
}

/* Hamburger Menü */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #0b1d3a;
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
    z-index: 9999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links ul {
    flex-direction: column !important;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
  }

  .hamburger {
    display: flex;
  }
}.map-container {
  flex: 1 1 45%;
  min-height: 300px;
}

/* === Hero Banner (Anasayfa Açılış) === */
.hero-banner {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.hero-banner .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-banner .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}


.hero-banner .hero-overlay h1 {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  padding: 0 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

@media (max-width: 768px) {
  .hero-banner {
    height: 280px;
  }

  .hero-banner .hero-overlay h1 {
    font-size: 1.8rem;
  }
}

/* === Banner: Bize Ulaşın === */
.banner-iletisim {
  background-color: #324fa3;
  padding: 3rem 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.banner-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  text-align: left;
}

.banner-info {
  flex: 1 1 300px;
}

.banner-info small {
  font-weight: 600;
  color: #ddd;
  display: block;
  margin-bottom: 0.5rem;
}

.banner-info h2 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.banner-info p {
  color: #f0f0f0;
}

.banner-phone {
  flex: 1 1 200px;
  font-size: 1.2rem;
  font-weight: 600;
}

.banner-phone a {
  color: white;
  display: inline-block;
  margin-top: 0.3rem;
}

.banner-btn {
  flex: 1 1 200px;
  text-align: right;
}

.btn-white {
  background: white;
  color: #0b1d3a;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: #f0f0f0;
}


.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1001;
  width: 55px;
  height: 55px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: bounce 2s infinite;
}
.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button img {
  width: 30px;
  height: 30px;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}


.footer {
  background: #0b1d3a;
  color: white;
  text-align: center;
  padding: 4rem 1rem 2rem;
  font-size: 0.9rem;
}

.footer-servis {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
  text-align: left;
}

.footer-servis-info {
  flex: 1 1 300px;
}

.footer-servis-info small {
  font-weight: 600;
  color: #ddd;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-servis-info h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-servis-info p {
  color: #f0f0f0;
}

.footer-servis-phone {
  flex: 1 1 200px;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
}

.footer-servis-phone a {
  color: white;
  display: inline-block;
  margin-top: 0.3rem;
}

.footer-servis-btn {
  flex: 1 1 200px;
  text-align: right;
}

.footer-servis-btn .btn-white {
  background: white;
  color: #0b1d3a;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.footer-servis-btn .btn-white:hover {
  background: #f0f0f0;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-nav ul li a {
  color: white;
  font-weight: 500;
}

@media (max-width: 768px) {
  .footer-servis {
    flex-direction: column;
    text-align: center;
  }

  .footer-servis-btn {
    text-align: center;
  }
}

/* === Hizmet Bölgeleri === */
.bolge-section {
  padding: 4rem 1rem;
  background: #f9fafc;
  text-align: center;
}

.bolge-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0b1d3a;
  margin-bottom: 2rem;
}

.ilceler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.ilceler-grid ul {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 1rem 1.5rem;
  text-align: left;
}

.ilceler-grid ul li {
  list-style: none;
  font-size: 1rem;
  color: #1e1e1e;
  padding: 0.3rem 0;
  font-weight: 500;
}

/* === Harita Bölümü === */
.map-section {
  padding: 4rem 1rem;
  text-align: center;	
  width: %80;	
}

.map-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b1d3a;
  margin-bottom: 1rem;
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #0b1d3a;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1rem 2rem;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .banner-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .banner-btn {
    text-align: center;
  }
}
