/* ===== GENEL STILLER ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #FFFFFF;
  color: #222222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
}

html, body {
  margin: 0;
  overflow-x: clip;
}
/* Sticky header altında kalan input'a focus'ta sayfa düzgün kaysın (zıplama/kayma önler) */
html {
  scroll-padding-top: 80px;
}

/* ===== RENK PALETİ ===== */
:root {
  --primary-red: #7A0000; /* header bordo ile uyumlu */
  --primary-red-dark: #5A0001; /* koyu bordo */
  --accent-green: #2E7D32;
  --accent-green-dark: #225E26;
  --bg-white: #FFFFFF;
  --bg-light-gray: #F6F6F6;
  --border-gray: #CCCCCC;
  --text-dark: #222222;
  --text-muted: #666666;
}

/* ===== NAVBAR ===== */
.navbar-custom {
  background: linear-gradient(135deg, #ac0202 0%, #8B0101 50%, #7A0000 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky !important;
  top: 0 !important;
  z-index: 1030 !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}


.navbar-custom .navbar-brand {
  font-weight: bold;
  color: #fff !important;
  font-size: 1.5rem;
}

.navbar-custom .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.navbar-custom .nav-link:hover {
  color: #F6F6F6 !important;
  text-shadow: 0 0 10px rgba(255, 235, 59, 0.2);
}

.navbar-custom .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Kullanıcı Dropdown Linki */
.navbar-custom .user-dropdown-link {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 8px 16px !important;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
  cursor: pointer;
  pointer-events: auto !important;
}

.navbar-custom .user-dropdown-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Dropdown Menü */
.navbar-custom .dropdown-menu,
.custom-dropdown-menu {
  display: none;
  background-color: white;
  border: none;
  box-shadow: 0 8px 24px rgba(177, 15, 46, 0.15);
  z-index: 9999 !important;
  border-radius: 12px;
  padding: 0.5rem 0;
  min-width: 220px;
  margin-top: 0.5rem;
  position: absolute;
  right: 0;
  top: 100%;
  pointer-events: auto !important;
}

.navbar-custom .dropdown-menu.show,
.custom-dropdown-menu.show {
  display: block !important;
}

.navbar-custom .dropdown-item,
.custom-dropdown-menu .dropdown-item {
  padding: 0.75rem 1.25rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.navbar-custom .dropdown-item:hover,
.custom-dropdown-menu .dropdown-item:hover {
  background: linear-gradient(90deg, rgba(177, 15, 46, 0.05) 0%, rgba(177, 15, 46, 0.02) 100%);
  color: var(--primary-red);
  border-left-color: var(--primary-red);
  padding-left: 1.5rem;
}

.navbar-custom .dropdown-item i,
.custom-dropdown-menu .dropdown-item i {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.navbar-custom .dropdown-item:hover i,
.custom-dropdown-menu .dropdown-item:hover i {
  opacity: 1;
}

.navbar-custom .dropdown-divider,
.custom-dropdown-menu .dropdown-divider {
  border-color: rgba(177, 15, 46, 0.1);
  margin: 0.5rem 0;
}

.navbar-custom .dropdown-item.text-danger,
.custom-dropdown-menu .dropdown-item.text-danger {
  color: var(--primary-red) !important;
  font-weight: 600;
}

.navbar-custom .dropdown-item.text-danger:hover,
.custom-dropdown-menu .dropdown-item.text-danger:hover {
  background: linear-gradient(90deg, rgba(177, 15, 46, 0.1) 0%, rgba(177, 15, 46, 0.05) 100%);
}

/* ===== MARQUEE SEKSİYONU ===== */
.marquee-provinces-section {
  background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
  position: sticky;
  top: 67px;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #1B4620;
  overflow: hidden;
  height: 45px;
  display: flex;
  align-items: center;
}

.marquee-container {
  display: flex;
  align-items: center;
  animation: scroll-left 30s linear infinite;
  white-space: nowrap;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 35px;
  font-weight: 600;
  color: #FFFFFF;
  font-size: 0.90rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.marquee-item:hover {
  text-shadow: 0 0 12px rgb(255, 255, 255);
}

.price-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: bold;
  animation: pulse 1.5s ease-in-out infinite;
}

.price-indicator.down {
  background-color: var(--accent-green);
  color: #fff;
}

.price-indicator.stable {
  background-color: #FB9A1E;
  color: #fff;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
}

/* ===== REKLAM ALANI ===== */
.advertisement-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1250 / 250;
  border-radius: 8px;
}

/* ===== KARTLAR ===== */
.card {
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-radius: 12px !important;
  background-color: var(--bg-white);
  animation: slideIn 0.4s ease-out;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.card h5 {
  color: var(--primary-red);
  border-bottom: 3px solid var(--primary-red);
  padding-bottom: 12px;
}

/* ===== İLAN KARTLARI ===== */
.listing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2) !important;
}

.listing-card .card-body {
  transition: all 0.3s ease;
}

/* ===== BUTONLAR ===== */
.btn {
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 8px;
}

/* Buton hover contrast düzeltmesi: kırmızı arka plana gelindiğinde yazı beyaz olsun */
.firma-btn-primary:hover,
.firma-btn-outline:hover,
.uye-btn-primary:hover,
.uye-btn-outline:hover,
.quick-access-btn-listings:hover,
.quick-access-btn-borsa:hover,
.view-all-cities-btn:hover,
.btn-danger:hover,
.btn-outline-danger:hover {
  color: #ffffff !important;
}

.btn-danger {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%) !important;
  border: none !important;
  color: #fff !important;
  letter-spacing: 0.5px;
}

.btn-danger:hover {
  background: linear-gradient(135deg, var(--primary-red-dark) 0%, #6B090B 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(177, 15, 46, 0.3) !important;
}

.btn-outline-danger {
  color: var(--primary-red) !important;
  border-color: var(--primary-red) !important;
  background-color: transparent !important;
}

.btn-outline-danger:hover {
  background-color: var(--primary-red) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(177, 15, 46, 0.3);
}

.quick-access-btn-red {
  background-color: rgb(167, 0, 0) !important;
  color: #fff;
  border-radius: 10px;
  font-size: 18px;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-access-btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(177, 15, 46, 0.3);
}

.quick-access-btn-brown {
  background: linear-gradient(120deg, var(--accent-green) 0%, var(--accent-green-dark) 100%) !important;
  color: #fff;
  border-radius: 10px;
  font-size: 18px;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-access-btn-brown:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(46, 125, 50, 0.3);
}

.borsarenk {
  background: linear-gradient(120deg, var(--accent-green) 0%, var(--accent-green-dark) 100%) !important;
}

/* Hızlı Geçiş Butonları */
.quick-access-btn-listings {
  background: linear-gradient(135deg, #a60708 0%, #8a0c23 100%);
  color: #fff !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(166, 7, 8, 0.2);
}

.quick-access-btn-listings::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}

.quick-access-btn-listings:hover::before {
  left: 100%;
}

.quick-access-btn-listings .bi {
  display: inline-block !important;
  font-size: 1.4rem;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.quick-access-btn-listings:hover .bi {
  transform: scale(1.15) rotate(5deg);
}

.quick-access-btn-listings:hover {
  background: linear-gradient(135deg, #8a0c23 0%, #6b090b 100%);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(166, 7, 8, 0.35);
}

.quick-access-btn-listings span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  color: #fff !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
}

.quick-access-btn-borsa {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: #FFFFFF !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

.quick-access-btn-borsa * {
  color: #FFFFFF !important;
}

.quick-access-btn-borsa::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}

.quick-access-btn-borsa:hover::before {
  left: 100%;
}

.quick-access-btn-borsa .bi {
  display: inline-block !important;
  font-size: 1.4rem;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.quick-access-btn-borsa:hover .bi {
  transform: scale(1.15) rotate(-5deg);
}

.quick-access-btn-borsa:hover {
  background: linear-gradient(135deg, #1b5e20 0%, #155817 100%);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.35);
}

.quick-access-btn-borsa span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  color: #fff !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
}

/* Responsive için ikon boyutu */
/* ===== FORM KONTROL ===== */
.form-control, .form-select, .form-select-sm {
  border: 1px solid var(--border-gray);
  border-radius: 6px;
  padding: 10px 12px;
  transition: all 0.3s ease;
  background-color: var(--bg-white);
  color: var(--text-dark);
}

.form-control:focus, .form-select:focus, .form-select-sm:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 8px rgba(177, 15, 46, 0.2);
  outline: none;
}
/* Filtreleme butonlarına hover efekti */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3) !important;
}

.form-select:focus {
  border-color: #1b5e20;
  box-shadow: 0 0 0 0.2rem rgba(27, 94, 32, 0.15);
}

/* "Tüm İllerin Borsasını Gör" butonu modern stil */
.view-all-cities-btn {
  background: linear-gradient(90deg, #1b5e20 0%, #155817 100%);
  color: #FFFFFF !important;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.view-all-cities-btn:hover {
  background: linear-gradient(90deg, #155817 0%, #0d3d0f 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
  color: #FFFFFF !important;
}

.view-all-cities-btn:hover * {
  color: #FFFFFF !important;
}

/* İl Bazlı Dana Borsaları Kartları */
.hover-card {
  transition: all 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(27, 94, 32, 0.25) !important;
}

/* Hayvan İlanları Kartları */
.listing-card {
  transition: transform 0.3s ease;
  border-radius: 15px;
}

.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(27, 94, 32, 0.2) !important;
}

/* Haberler Kartları */
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: white;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1) !important;
}

.card-title {
  color: #212529;
  font-size: 1.05rem;
  line-height: 1.5;
  min-height: 63px;
}

.card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #6c757d;
}

.btn-outline-dark:hover {
  background-color: #212529;
  color: white;
}

.form-select-sm {
  border: 2px solid var(--border-gray);
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
}
.view-all-cities-btn {
  background: linear-gradient(90deg, #1b5e20 0%, #155817 100%);
  color: #FFFFFF !important;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.view-all-cities-btn:hover {
  background: linear-gradient(90deg, #155817 0%, #0d3d0f 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
  color: #FFFFFF !important;
}

.view-all-cities-btn:hover * {
  color: #FFFFFF !important;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--bg-light-gray) !important;
  border-top: 2px solid var(--primary-red);
  margin-top: 50px;
  flex-shrink: 0;
}

footer h6 {
  color: var(--primary-red);
  font-weight: 700;
}

footer a {
  transition: all 0.3s ease;
  color: var(--text-muted);
}

footer a:hover {
  color: var(--primary-red) !important;
  text-decoration: underline;
}

/* ===== ANIMASYONLAR ===== */
@keyframes slideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInOut {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.ilan-item {
  animation: fadeInOut 3s ease-in-out infinite;
}

/* ===== RESPONSIVE ===== */
.company-item-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.company-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15) !important;
}

/* ===== İL BAZLI FİRMALAR BAŞLIK VE BUTON STİLLERİ ===== */
.provinces-companies-title {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: var(--primary-red) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.provinces-companies-title i {
  font-size: 1.6rem;
  animation: iconBounce 1.5s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.view-all-cities-btn {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%) !important;
  border: 3px solid var(--primary-red-dark) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  padding: 12px 24px !important;
  border-radius: 10px !important;
  box-shadow: 0 6px 20px rgba(177, 15, 46, 0.4) !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.view-all-cities-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.view-all-cities-btn:hover::before {
  left: 100%;
}

.view-all-cities-btn:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 10px 30px rgba(177, 15, 46, 0.6) !important;
  background: linear-gradient(135deg, var(--primary-red-dark) 0%, #6B090B 100%) !important;
}

.view-all-cities-btn i {
  font-size: 1.2rem;
  margin-right: 8px;
  animation: iconRotate 2s ease-in-out infinite;
}

@keyframes iconRotate {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(15deg); }
}

/* ===== MOBİL UYUMLULUK ===== */
/* Modern Auth Butonları */
.btn-auth-login {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-auth-login:hover {
  background: white;
  color: #c41e3a;
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.btn-auth-register {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  border: 2px solid white;
  color: #c41e3a;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-auth-register:hover {
  background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
  color: white;
  border-color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(196, 30, 58, 0.4);
}

.btn-auth-login i,
.btn-auth-register i {
  font-size: 1rem;
}

/* Mobil için uyarlama */
/* Modern Buton Stilleri */
.btn-modern-login {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-modern-login:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-modern-register {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #a60708;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-modern-register:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #8b0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(166, 7, 8, 0.2);
}

.btn-modern-login i,
.btn-modern-register i {
  font-size: 0.9rem;
}

/* İlanlarım Sayfası - Genel Layout */
.user-panel-main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

/* Sidebar */
.user-sidebar-card {
  position: sticky;
  top: 20px;
}

.user-profile-icon {
  font-size: 120px;
  color: #dee2e6;
}

.user-badge-custom {
  background-color: #8b0000;
  color: white;
}

.user-info-list p {
  word-break: break-word;
}

/* Sekmeler */
.user-panel-tabs .nav-link {
  color: #6c757d;
  border: none;
  border-bottom: 2px solid transparent;
}

.user-panel-tabs .nav-link:hover {
  color: #a60708;
  border-bottom-color: #a60708;
}

.user-panel-tabs .nav-link.active {
  color: #a60708;
  background-color: transparent;
  border-bottom-color: #a60708;
  font-weight: 600;
}

/* İlan Kartları */
.user-ilan-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.user-ilan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.user-ilan-pasif {
  opacity: 0.7;
}

.user-ilan-satildi {
  opacity: 0.6;
}

/* Favori Kartları */
.user-favori-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.user-favori-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.user-favori-icon-wrapper i {
  font-size: 60px;
  color: #dee2e6;
}

/* Pagination */
.pagination .page-link {
  color: #a60708;
  border-color: #dee2e6;
}

.pagination .page-link:hover {
  color: #8b0000;
  background-color: #f8f9fa;
  border-color: #dee2e6;
}

.pagination .page-item.active .page-link {
  background-color: #a60708;
  border-color: #a60708;
}

/* ===== ÖNE ÇIKAN İLLER - FİYAT KARŞILAŞTIRMA STİLLERİ ===== */

/* Yuvarlak daire içindeki fiyatlar için animasyon */
@keyframes priceBlink {
  0%, 100% { 
    opacity: 1; 
  }
  50% { 
    opacity: 0.5; 
  }
}

.price-blink {
  animation: priceBlink 4s ease-in-out infinite;
}

/* İl kartları için hover efekti */
.featured-city-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
  border: 2px solid #ffebee;
}

.featured-city-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(166, 7, 8, 0.15) !important;
  border-color: #a60708;
}

/* Yuvarlak progress circle sabitleyici */
.price-circle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
}

.price-circle-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
}

.price-circle-wrapper svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.price-circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.price-circle-value {
  font-weight: bold;
  font-size: 1.5rem;
  color: #a60708;
  line-height: 1;
}

.price-circle-label {
  font-size: 0.7rem;
  color: #6c757d;
  font-weight: 600;
}

/* Firma adı ve badge stilleri */
.company-name {
  font-weight: bold;
  color: #212529;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.company-icon {
  color: #a60708;
  margin-right: 0.25rem;
}

.live-badge {
  background: linear-gradient(135deg, #28a745 0%, #20a03a 100%);
  font-size: 0.7rem;
  padding: 4px 8px;
  box-shadow: 0 2px 6px rgba(40, 167, 69, 0.3);
}

.live-badge-icon {
  font-size: 0.4rem;
}

/* Öne çıkan iller başlık stilleri */
.featured-cities-title {
  color: #a60708;
  font-weight: bold;
}

.featured-cities-subtitle {
  color: #6c757d;
}

/* Hızlı Geçiş Butonları Stilleri */
.quick-access-btn-listings {
  background: linear-gradient(135deg, #a60708 0%, #8a0506 100%);
  color: white;
  border: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.quick-access-btn-listings::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.quick-access-btn-listings:hover::before {
  left: 100%;
}

.quick-access-btn-listings:hover {
  background: linear-gradient(135deg, #8a0506 0%, #6d0405 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(166, 7, 8, 0.3);
  color: white;
}

.quick-access-btn-listings i {
  font-size: 1.3rem;
  margin-right: 10px;
}

.quick-access-btn-borsa {
  background: linear-gradient(135deg, #28a745 0%, #20a03a 100%);
  color: white;
  border: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
}

.quick-access-btn-borsa::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.quick-access-btn-borsa:hover::before {
  left: 100%;
}

.quick-access-btn-borsa:hover {
  background: linear-gradient(135deg, #20a03a 0%, #1a8c31 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
  color: white;
}

.quick-access-btn-borsa i {
  font-size: 1.3rem;
  margin-right: 10px;
}

/* Responsive ayarlar */
/* Hero Gradient Class */
.hero-gradient {
  background: linear-gradient(135deg, #a60708 0%, #8a0c23 100%);
}

/* İl Borsası Detay Sayfası Stilleri */
.price-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.price-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #a60708;
}

.price-item.sponsored {
  background: linear-gradient(135deg, #fff8f0 0%, #fff5eb 100%);
  border: 2px solid #ff9800;
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.2);
}

.price-item.sponsored:hover {
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
}

.price-item .rank {
  flex-shrink: 0;
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-item .rank .number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  border: 2px solid #dee2e6;
  border-radius: 50%;
  background: white;
  color: #495057;
  text-align: center;
  line-height: 1.2;
}

.price-item.sponsored .rank .number {
  background: #ff9800;
  color: white;
  border-color: #ff9800;
  width: 70px;
  height: 70px;
  font-size: 0.7rem;
}

.price-item .company-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-item .company-info strong {
  font-size: 1.1rem;
  color: #212529;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.verified-badge {
  color: #2E7D32;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
}

.featured-badge {
  display: inline-block;
  background: #ff9800;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.price-item .company-info small {
  color: #6c757d;
  font-size: 0.9rem;
}

.price-item .price-info {
  flex-shrink: 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  margin-left: 1.5rem;
}

.price-item .price {
  font-size: 1.75rem;
  font-weight: bold;
  color: #a60708;
  white-space: nowrap;
}

.price-item.sponsored .price {
  font-size: 2rem;
  color: #ff9800;
}

.price-item .price .unit {
  font-size: 1rem;
  color: #6c757d;
  font-weight: normal;
}

/* Responsive */
/* Hızlı Geçiş Kartları */
.quick-link-card {
  transition: transform 0.3s;
}

.quick-link-card:hover {
  transform: translateY(-5px);
}

.quick-link-green {
  background: linear-gradient(135deg, #1b5e20 0%, #155817 100%);
  color: #FFFFFF !important;
}

.quick-link-green * {
  color: #FFFFFF !important;
}

.quick-link-red {
  background: linear-gradient(135deg, #d84315 0%, #bf360c 100%);
}

.quick-link-blue {
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
}

.quick-link-orange {
  background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
}

/* Kart Başlıkları */
.card-header-green {
  background: linear-gradient(90deg, #1b5e20 0%, #155817 100%);
}

.card-header-red {
  background: linear-gradient(90deg, #d84315 0%, #bf360c 100%);
}

/* Reklam Alanı */
.advertisement-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1250 / 250;
  border-radius: 8px;
}

/* Filtreleme Sidebar */
.filter-sidebar {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.filter-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
  color: #495057;
}

.filter-select,
.filter-input {
  border-radius: 8px;
  border: 2px solid #ddd;
}

.btn-filter-apply {
  border-radius: 8px;
  background: linear-gradient(90deg, #1b5e20 0%, #155817 100%);
  border: none;
  color: #FFFFFF !important;
}

.btn-filter-apply * {
  color: #FFFFFF !important;
}

.btn-filter-reset {
  border-radius: 8px;
}

/* Sıralama */
.sort-select {
  width: auto;
  border-radius: 8px;
}

/* İlan Ver Butonu */
.btn-ilan-ver {
  background: linear-gradient(90deg, #f57c00 0%, #e65100 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  white-space: nowrap;
}

.btn-ilan-ver:hover {
  background: linear-gradient(90deg, #e65100 0%, #f57c00 100%);
  color: white;
}

/* İlan Kartları */
.listing-card {
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.listing-title {
  font-size: 0.85rem;
  line-height: 1.3;
  color: #212529;
}

.listing-location {
  font-size: 0.7rem;
}

.listing-price {
  font-size: 0.9rem;
}

.badge-container .badge {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
}

.badge-primary {
  background-color: #d84315;
  color: white;
}

/* Responsive */
