/* =========================================
   Hizmet Bölgeleri – Modern Tag Cloud 2026
   Violet + Teal palette
   ========================================= */

.bolgeler-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
  background: linear-gradient(135deg, #f9fafb 0%, #eff6ff 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.bolgeler-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(26,74,138,.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.bolgeler-section::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(13,148,136,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.bolgeler-cloud {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 10px;
  max-width: 1040px; margin: 0 auto;
}

.bolge-tag {
  display: inline-flex; align-items: center;
  gap: 7px; padding: 10px 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 50px;
  text-decoration: none !important;
  color: #374151 !important;
  font-size: 13.5px; font-weight: 600;
  letter-spacing: .1px; line-height: 1.3;
  white-space: nowrap;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  position: relative;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.bolge-tag .bolge-tag-icon {
  font-size: 11px;
  color: var(--mf-accent-light);
  opacity: .8; transition: all .25s ease;
  flex-shrink: 0;
}
.bolge-tag:hover {
  background: linear-gradient(135deg, var(--mf-primary), var(--mf-accent));
  border-color: transparent;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(26,74,138,.25);
}
.bolge-tag:hover .bolge-tag-icon { color: rgba(255,255,255,.85); opacity: 1; }

.bolgeler-more-wrap { text-align: center; margin-top: 32px; }
.bolgeler-more-btn {
  display: inline-flex; align-items: center;
  gap: 8px; padding: 12px 30px;
  background: transparent;
  border: 2px solid var(--mf-primary);
  border-radius: 50px;
  color: var(--mf-primary) !important;
  font-size: 14px; font-weight: 700;
  text-decoration: none !important;
  transition: all .26s ease;
}
.bolgeler-more-btn:hover {
  background: linear-gradient(135deg, var(--mf-primary), var(--mf-accent));
  border-color: transparent;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26,74,138,.28);
}
.bolgeler-more-btn i { font-size: 12px; transition: transform .25s ease; }
.bolgeler-more-btn:hover i { transform: translateX(3px); }

.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 22px;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  border: 1px solid rgba(26,74,138,.1);
}
.bolge-stat-number {
  font-size: 22px; font-weight: 800;
  background: linear-gradient(135deg, var(--mf-primary), var(--mf-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.bolge-stat-label {
  font-size: 13px; color: var(--mf-gray-600);
  font-weight: 500; line-height: 1.3;
}

@media (max-width: 991px) {
  .bolgeler-section { padding: 52px 0; }
  .bolgeler-cloud { gap: 8px; }
  .bolge-tag { padding: 9px 16px; font-size: 13px; }
  .bolgeler-stats { gap: 16px; }
}
@media (max-width: 767px) {
  .bolgeler-section { padding: 44px 0; }
  .bolgeler-cloud { gap: 7px; }
  .bolge-tag { padding: 8px 14px; font-size: 12.5px; gap: 5px; }
  .bolge-stat { padding: 8px 16px; }
  .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; }
}
