/* =========================================
   Hizmet Bölgeleri – Modern Tag Cloud
   ========================================= */

/* Section wrapper */
.bolgeler-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
  background: linear-gradient(135deg, var(--mf-gray-50) 0%, #eef2ff 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.bolgeler-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(30,64,175,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.bolgeler-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(59,130,246,.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Section title */
.bolgeler-section .section-title {
  margin-bottom: 12px;
}
.bolgeler-section .section-subtitle {
  color: var(--mf-gray-600);
  font-size: 15px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 36px;
  text-align: center;
}

/* Tag cloud container */
.bolgeler-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Individual tag */
.bolge-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: var(--mf-white);
  border: 1px solid var(--mf-gray-200);
  border-radius: 50px;
  text-decoration: none !important;
  color: var(--mf-gray-800) !important;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .15px;
  line-height: 1.3;
  white-space: nowrap;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  position: relative;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.bolge-tag .bolge-tag-icon {
  font-size: 11px;
  color: var(--mf-primary-light);
  opacity: .7;
  transition: all .25s ease;
  flex-shrink: 0;
}
.bolge-tag:hover {
  background: var(--mf-primary);
  border-color: var(--mf-primary);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30,64,175,.2);
}
.bolge-tag:hover .bolge-tag-icon {
  color: rgba(255,255,255,.85);
  opacity: 1;
}

/* "Tümünü Gör" butonu */
.bolgeler-more-wrap {
  text-align: center;
  margin-top: 28px;
}
.bolgeler-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  border: 2px solid var(--mf-primary);
  border-radius: 50px;
  color: var(--mf-primary) !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  transition: all .25s ease;
}
.bolgeler-more-btn:hover {
  background: var(--mf-primary);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(30,64,175,.18);
}
.bolgeler-more-btn i {
  font-size: 12px;
  transition: transform .25s ease;
}
.bolgeler-more-btn:hover i {
  transform: translateX(3px);
}

/* İstatistik badge */
.bolgeler-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.bolge-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--mf-white);
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  border: 1px solid var(--mf-gray-200);
}
.bolge-stat-number {
  font-size: 22px;
  font-weight: 700;
  color: var(--mf-primary);
  line-height: 1;
}
.bolge-stat-label {
  font-size: 13px;
  color: var(--mf-gray-600);
  font-weight: 500;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 991px) {
  .bolgeler-section { padding: 48px 0; }
  .bolgeler-cloud { gap: 8px; }
  .bolge-tag { padding: 9px 16px; font-size: 13px; }
  .bolgeler-stats { gap: 16px; }
}
@media (max-width: 767px) {
  .bolgeler-section { padding: 40px 0; }
  .bolgeler-cloud { gap: 7px; }
  .bolge-tag { padding: 8px 14px; font-size: 12.5px; gap: 5px; }
  .bolge-stat { padding: 8px 14px; }
  .bolge-stat-number { font-size: 18px; }
  .bolge-stat-label { font-size: 12px; }
  .bolgeler-stats { gap: 10px; }
}
@media (max-width: 480px) {
  .bolgeler-cloud { gap: 6px; }
  .bolge-tag { padding: 7px 12px; font-size: 12px; }
}

