@charset "UTF-8";
/* =====================================================
   COUNTRY / CITY CARDS — 2026
   ===================================================== */
.country-card-container, .city-card-container {
  text-align: center;
}

.country-item, .city-item {
  margin-bottom: 0.6rem;
}

.country-item a, .city-item a {
  color: var(--primary) !important;
  text-decoration: none !important;
}

.country-card, .city-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  border-radius: 14px !important;
  border: 2px solid rgba(0, 0, 0, .1) !important;
  padding: 0.55rem 0.4rem;
  text-align: center;
  cursor: pointer;
  background: #ffffff;
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.22s ease,
              background 0.22s ease;
}

.country-card::after, .city-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.country-card:hover, .city-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  border: 2px solid var(--primary) !important;
  transform: scale(1.02);
}

.country-card:hover::after, .city-card:hover::after {
  opacity: 1;
}

.country-flag, .city-flag {
  display: block;
  font-size: 1.45rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.country-card strong, .city-card strong {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #2d3748;
}

.country-selected, .city-selected {
  border: 2px solid var(--primary) !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.country-selected::after, .city-selected::after {
  display: none;
}

.country-selected .country-flag,
.city-selected .city-flag {
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

/* =====================================================
   CENTRE CARDS — 2026
   ===================================================== */
.centre-card-container {
  margin-bottom: 0.25rem;
}

.centre-card {
  background: #FCFCFC !important;
  border-radius: 16px !important;
  padding: .2rem .75rem .3rem .75rem;
  border: 2px solid rgba(0, 0, 0, 0.1) !important;
  background: #ffffff;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              border 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.centre-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
  transform: scale(1.01);
}

.centre-card .card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.centre-card .centre-categories {
  font-size: 0.8rem;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.centre-card .centre-category-row {
  display: block;
  line-height: 1.4;
  margin-bottom: 0.2rem;
}

.centre-card .centre-category-row:last-child {
  margin-bottom: 0;
}

.centre-card .centre-category-label {
  font-weight: 600;
  margin-right: 0.25rem;
}

.centre-card .centre-category-values {
  font-weight: 400;
}

.centre-card .explanation-text {
  font-size: 0.86rem;
  color: #6b7280;
  font-style: italic;
  padding: 0.1rem 0.1rem;
  border-radius: 8px;
  line-height: 1.5;
  margin-bottom: .75rem;
}

.centre-card .contact-info {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.1rem 0rem;
  border-radius: 9px;
  font-size: 0.87rem;
  color: #374151;
  transition: background 0.18s ease;
}

.centre-card .contact-info i {
  width: 18px;
  text-align: center;
  color: #6b7280;
  flex-shrink: 0;
  font-size: 0.82rem;
}

.centre-card .contact-info a {
  color: #374151;
  text-decoration: none;
  font-weight: 500;

  &:hover {
    color: var(--primary) !important;
  }
}

.centre-card .staff-section {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #e9ecef;
}

.centre-card .staff-name {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.centre-card .staff-name::before {
  content: '-';
  display: inline-block;  flex-shrink: 0;
}

/* Filter Chips Styles */
.filter-container {
  background: #FCFCFC;
  border: 2px solid rgba(0,0,0,.1);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  z-index: 10;
}

.filter-label {
  font-weight: 600;
  color: #495057;
  white-space: nowrap;
}

.active-filters-wrapper {
  background: white;
  border-radius: 8px;
  padding: 1rem;
}

.filter-category {
  margin-bottom: 1rem;
}

.filter-category-header {
  font-size: 0.95rem;
  padding-left: 0.25rem;
}

.filter-chips-wrapper {
  position: relative;
  overflow: hidden;
}

.filter-chips-scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-300) transparent;
}

.filter-chips-scroll::-webkit-scrollbar {
  height: 6px;
}

.filter-chips-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.filter-chips-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-300);
  border-radius: 3px;
}

.filter-chips-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: white;
  border: 2px solid rgba(0, 0, 0, .2) !important;
  border-radius: 50px;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  cursor: pointer;
  user-select: none;
  margin-bottom: .4rem;
  margin-top: .2rem;
}

.filter-chip:hover {
  border: 2px solid var(--primary) !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.filter-chip.chip-selected {
  border: 2px solid var(--primary) !important;
  font-weight: 600;
}

.filter-chip.active-chip {
  border: 2px solid var(--primary) !important;
  font-weight: 600;
  padding-right: 0.75rem;
}

.filter-chip.active-chip:hover {
  background: var(--tertiary--200);
  border-color: var(--tertiary--200) !important;
  color: white;
}

.filter-chip i {
  font-size: 0.75rem;
}

.filter-results-info {
  text-align: center;
  padding: 0.5rem;
  background: white;
  border-radius: 6px;
}

/* City Select Dropdown */
.filter-container .form-select {
  height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 2.25rem 0.5rem 1rem;
  background-color: white;
  border: 2px solid rgba(0, 0, 0, .2) !important;
  border-radius: 50px;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: none;
  margin-top: .2rem;
  margin-bottom: .4rem;
}

.filter-container .form-select:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* Filter Dropdown */
.filter-dropdown {
  position: relative;
  display: inline-block;
}

.filter-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  background: white;
  border: 2px solid rgba(0, 0, 0, .2) !important;
  border-radius: 50px;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  margin-top: .2rem;
  margin-bottom: .4rem;
}

.filter-dropdown-toggle:hover,
.filter-dropdown.open .filter-dropdown-toggle {
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.filter-dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.filter-dropdown.open .filter-dropdown-arrow {
  transform: rotate(180deg);
}

.filter-dropdown-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--primary);
  color: white;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

.filter-dropdown-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 200;
  min-width: 220px;
  max-height: 280px;
  overflow: hidden;
  background: white;
  border: 2px solid rgba(0,0,0,.1);
  border-radius: 14px;
  padding: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.filter-dropdown-items {
  overflow-y: auto;
  padding: 0.5rem 0;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e0 transparent;
}

.filter-dropdown-items::-webkit-scrollbar {
  width: 4px;
}

.filter-dropdown-items::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 4px;
}

.filter-dropdown.open .filter-dropdown-menu {
  display: flex;
  animation: dropdownFadeIn 0.15s ease;
}

.filter-dropdown-clear-wrapper {
  flex-shrink: 0;
  border-top: 1px solid #f0f0f0;
  padding: 0.35rem 0.5rem 0.4rem;
}

.filter-dropdown-clear {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #9ca3af;
  cursor: pointer;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}

.filter-dropdown-clear:hover {
  color: #e53e3e;
  background: #fff5f5;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.filter-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 400;
  color: #374151;
  transition: background 0.15s ease, color 0.15s ease;
  margin: 0;
  user-select: none;
}

.filter-dropdown-item:hover {
  background: #f3f4f6;
}

.filter-dropdown-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, .2);
  border-radius: 4px;
  background: white;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.filter-dropdown-item input[type="checkbox"]:checked {
  background: var(--primary);
  border-color: var(--primary);
}

.filter-dropdown-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 6px;
  height: 10px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* Filtrele Butonu */
.btn-filter-apply {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  margin-top: .2rem;
  margin-bottom: .4rem;
}

.btn-filter-apply:hover {
  background: var(--primary-600, var(--primary));
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Active Filter Tags */
.active-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.active-tags-label {
  font-size: 0.775rem;
  font-weight: 600;
  color: #9ca3af;
  white-space: nowrap;
}

.active-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.6rem;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 50px;
  color: #6b7280;
  font-size: 0.775rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  line-height: 1.5;
}

.active-tag i:last-child {
  font-size: 0.65rem;
  opacity: 0.6;
}

.active-tag:hover {
  background: #fde8e8;
  border-color: #f5a5a5;
  color: #e53e3e;
}

.active-tag:hover i:last-child {
  opacity: 1;
}

.btn-filter-clear {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  background: white;
  border: 2px solid rgba(0, 0, 0, .2);
  border-radius: 50px;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  margin-top: .2rem;
  margin-bottom: .4rem;
}

.btn-filter-clear:hover {
  border-color: #e53e3e;
  color: #e53e3e;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .filter-container {
    padding: 1rem;
  }
  
  .filter-chip {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .active-filters-wrapper {
    padding: 0.75rem;
  }

  .filter-category .form-select {
    font-size: 0.8rem;
    padding: 0.4rem 2rem 0.4rem 0.8rem;
    width: 100% !important;
  }

  .filter-dropdown-toggle,
  .btn-filter-apply {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .filter-dropdown-menu {
    min-width: 180px;
  }

}

.text{
    color: #444;
  }

/* Animation */
@keyframes chipPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.filter-chip:active {
  animation: chipPulse 0.3s ease;
}

.pulse-animation {
  animation: chipPulse 0.3s ease;
}

/* Scroll fade efekti */
.filter-chips-scroll.scroll-fade-left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 30px;
  background: linear-gradient(to right, #f8f9fa, transparent);
  pointer-events: none;
  z-index: 1;
}

.filter-chips-scroll.scroll-fade-right::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30px;
  background: linear-gradient(to left, #f8f9fa, transparent);
  pointer-events: none;
  z-index: 1;
}

/* Kaydırma ipucu animasyonu */
@keyframes scrollHint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

.scrollable-hint {
  animation: scrollHint 1s ease-in-out 2;
}

/* Gap utility */
.gap-2 {
  gap: 0.5rem !important;
}