/* Bayilerimiz Section */
.bayiler-section {
  position: relative;
  padding: 110px 0 90px;
  background: var(--theme-color-light);
  scroll-margin-top: 110px;
}

html {
  scroll-behavior: smooth;
}

.bayiler-section .boxcar-title {
  max-width: 650px;
  margin: 0 auto 45px;
}

.bayiler-section .boxcar-title .text {
  margin-top: 10px;
  color: #64666c;
}

.bayi-block {
  display: flex;
  margin-bottom: 30px;
}

.bayi-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e7e9ef;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(5, 18, 43, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.bayi-card:hover {
  transform: translateY(-6px);
  border-color: #405ff2;
  box-shadow: 0 16px 38px rgba(5, 18, 43, 0.12);
}

.bayi-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  padding: 0;
  overflow: hidden;
  background: #f7f8fc;
  border-bottom: 1px solid #e7e9ef;
}

.bayi-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.bayi-card:hover .bayi-logo img {
  transform: scale(1.03);
}

.bayi-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px 30px;
  text-align: center;
}

.bayi-sehir {
  display: inline-block;
  margin-bottom: 8px;
  color: #405ff2;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bayi-content h3 {
  margin-bottom: 16px;
  color: var(--theme-color-dark);
  font-size: 20px;
  line-height: 1.35;
}

.bayi-telefon {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: #64666c;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.bayi-telefon:hover {
  color: #405ff2;
}

.bayi-harita {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  margin-top: auto;
  padding: 12px 22px;
  color: #ffffff;
  background: var(--theme-color-dark);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.bayi-harita:hover {
  color: #ffffff;
  background: #405ff2;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .bayiler-section {
    padding: 85px 0 60px;
  }

  .bayi-logo {
    height: 230px;
  }
}

@media (max-width: 575px) {
  .bayiler-section {
    padding: 70px 0 45px;
  }

  .bayiler-section .boxcar-title {
    margin-bottom: 32px;
  }

  .bayi-logo {
    height: 220px;
  }

  .bayi-content {
    padding: 24px 20px 26px;
  }

  .bayi-harita {
    width: 100%;
  }
}
