/* KYK Menü - Modern Kurumsal Tasarım */

/* ===== RENK PALETİ ===== */
:root {
  --primary: #1e40af;      /* Koyu mavi - ana renk */
  --primary-light: #dbeafe; /* Açık mavi */
  --secondary: #64748b;    /* Gri - ikincil */
  
  --text: #1e293b;         /* Ana metin */
  --text-muted: #64748b;   /* İkincil metin */
  --text-light: #94a3b8;   /* Açık metin */
  
  --bg: #ffffff;           /* Ana arka plan */
  --surface: #f8fafc;      /* Kart yüzeyi */
  --border: #e2e8f0;       /* Kenarlık */
  
  --success: #059669;
  --warning: #d97706;
  --danger: #dc2626;
  
  /* Yeni renkler */
  --gradient-start: #1e40af;
  --gradient-end: #3b82f6;
  --card-shadow: rgba(17, 12, 46, 0.10);
  --header-shadow: rgba(17, 12, 46, 0.05);
}

/* ===== GENEL STİLLER ===== */
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

/* ===== BAŞLIK ALANI ===== */
.page-header {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="20" height="20" fill="none"/><circle cx="3" cy="3" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: 0.3;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
  position: relative;
  text-shadow: none;
}

.page-header .date {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-top: 0.5rem;
  text-align: center;
  position: relative;
  font-weight: 500;
}

.menu-selector-card,
.date-selector-card {
  width: 100%;
  max-width: 100%;
  padding: 0 15px;
  margin: 2rem auto 1.5rem auto;
  box-sizing: border-box;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
}

.menu-selector-card .card,
.date-selector-card .card {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}

.menu-selector-card .row,
.date-selector-card .row {
  justify-content: center;
}

.menu-selector-card .col,
.date-selector-card .col {
  text-align: center;
}

/* Şehir ve Tarih seçim kutuları aynı boyut ve yan yana */
.menu-selector-card .col-12.col-lg-6 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-selector-card .col-12.col-lg-6 .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.menu-selector-card .col-12.col-lg-6 .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Masaüstünde yan yana düzen - eşit boyutlar */
@media (min-width: 992px) {
  .menu-selector-card .row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
  }
  
  .menu-selector-card .col-12.col-lg-6 {
    flex: 1 1 50%;
    width: 50%;
    max-width: 50%;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
  
  .menu-selector-card .col-12.col-lg-6 .card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .menu-selector-card .col-12.col-lg-6 .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
  }
  
  .menu-selector-card .col-12.col-lg-6:first-child {
    padding-right: 0.75rem;
  }
  
  .menu-selector-card .col-12.col-lg-6:last-child {
    padding-left: 0.75rem;
  }
}

.container {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  box-sizing: border-box;
}

.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar.navbar-light {
  background: var(--bg);
}

.navbar .navbar-brand {
  color: var(--text);
  font-weight: 600;
  font-size: 1.25rem;
  text-decoration: none;
}

.navbar .navbar-brand:hover {
  color: var(--primary);
}

.navbar-brand img {
  height: 48px;
  width: auto;
  margin-right: 0.75rem;
}

/* Masaüstü header iyileştirmeleri */
@media (min-width: 768px) {
  .navbar {
    padding: 1.5rem 0;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .navbar-brand img {
    height: 56px;
    margin-right: 1rem;
  }
  
  .navbar-nav .nav-link {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
  }
  
  .navbar-nav .nav-link:hover {
    background-color: var(--primary-light);
    color: var(--primary);
  }
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: var(--surface);
  padding: 3rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero-content h1 {
  color: var(--text);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 0;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--surface);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.page-header h1 {
  color: var(--text);
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.page-header p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-weight: 400;
  font-size: 1rem;
}

/* ===== KARTLAR ===== */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  font-weight: 600;
  color: var(--text);
}

.card-body {
  padding: 1rem;
}

.card-img-top {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: var(--surface);
}

/* ===== BUTONLAR ===== */
.btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: white;
}

.btn-outline-primary {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.btn-outline-secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text-muted);
}

.btn-outline-secondary:hover {
  background: var(--surface);
  border-color: var(--secondary);
  color: var(--text);
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

/* ===== FORMLAR ===== */
.form-label {
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.form-control,
.form-select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s ease;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-select-lg {
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

/* ===== MENÜ SELECTOR ===== */
.menu-selector-card {
  max-width: 800px;
  margin: 2rem auto;
}

.menu-selector-card .card {
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.date-selector-card {
  max-width: 800px;
  margin: 1rem auto;
}

.date-selector-card .card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

/* ===== FEATURES ===== */
.features-section {
  margin-top: 3rem;
}

.feature-card {
  text-align: center;
  height: 100%;
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* ===== SECTION ICONS ===== */
.section-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  background: var(--primary-light);
}

/* ===== DINNER HEADER ===== */
.dinner-header {
  background: #eef2f7; /* var(--surface)'den biraz daha koyu gri */
  border-bottom: 1px solid var(--border);
  color: var(--text) !important; /* .text-white sınıfını ez */
  font-weight: 600;
}

/* Akşam menüsü başlığındaki ikon/metin kontrastı */
.dinner-header i,
.dinner-header .fas,
.dinner-header .far,
.dinner-header .fab {
  color: var(--primary) !important;
}

/* ===== REKLAM ALANI ===== */
.ad-slot {
  max-width: 970px;
  margin: 1rem auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.ad-slot ins {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: block;
  text-align: center;
}

.ad-placeholder {
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
}

.ad-placeholder i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* ===== ALERTLER ===== */
.alert {
  padding: 1rem;
  border-radius: 6px;
  border: none;
  margin-bottom: 1rem;
}

.alert-success {
  background: #ecfdf5;
  color: var(--success);
  border-left: 4px solid var(--success);
}

.alert-warning {
  background: #fffbeb;
  color: var(--warning);
  border-left: 4px solid var(--warning);
}

.alert-danger {
  background: #fef2f2;
  color: var(--danger);
  border-left: 4px solid var(--danger);
}

/* ===== FOOTER ===== */
footer {
  background: var(--surface) !important;
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 3rem;
  text-align: center;
}

footer .text-muted {
  color: var(--text-muted) !important;
  font-size: 0.875rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .page-header h1 {
    font-size: 1.5rem;
    font-weight: 300;
  }
  
  /* Mobile typography */
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  h4 { font-size: 1.125rem; }
  
  .section-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .card-img-top {
    height: 120px;
  }
  
  .menu-selector-card,
  .date-selector-card {
    margin: 1rem;
  }
  
  /* Mobile navbar düzeltmeleri */
  .navbar {
    padding: 0.5rem 0;
  }
  
  .navbar .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .navbar-brand img {
    height: 28px;
  }
  
  /* Mobile reklam alanı düzeltmeleri */
  .ad-slot {
    margin: 0.5rem auto;
    padding: 0 10px;
    max-width: 100%;
  }
  
  .ad-slot ins {
    min-height: 90px;
    max-height: 250px;
  }
  
  /* Menu selector card mobile düzeltmeleri */
  .menu-selector-card {
    padding: 0 10px;
    margin: 1rem auto;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .menu-selector-card .card {
    margin: 0 auto;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .menu-selector-card .card-body {
    padding: 1.5rem 1rem;
  }
  
  .menu-selector-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  .menu-selector-card .row {
    margin: 0;
    width: 100%;
    gap: 1rem;
  }
  
  .menu-selector-card .col-12 {
    padding: 0.5rem 0;
    width: 100%;
    max-width: 100%;
  }
  
  /* Mobile button group düzeltmeleri */
  .menu-selector-card .btn-group {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 2px;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .menu-selector-card .btn-group .btn {
    flex: 1;
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 0;
    min-height: 44px;
  }
  
  .menu-selector-card .btn-group .btn:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
  
  .menu-selector-card .btn-group .btn:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  
  /* Mobile form elements */
  .menu-selector-card .form-select,
  .menu-selector-card .form-control {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    min-height: 44px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    background-color: #f8fafc;
  }
  
  .menu-selector-card .form-select:focus,
  .menu-selector-card .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    background-color: white;
  }
  
  /* Mobile input group */
  .menu-selector-card .input-group {
    flex-wrap: nowrap;
    gap: 0;
  }
  
  .menu-selector-card .input-group .form-control {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
  }
  
  .menu-selector-card .input-group .btn {
    flex-shrink: 0;
    padding: 0.75rem 1rem;
    min-height: 44px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  
  /* Mobile card içi spacing */
  .menu-selector-card .card {
    border: none;
  }
  
  .menu-selector-card .card > .card-body {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: white;
  }
  
  /* Mobile labels ve spacing */
  .menu-selector-card .small {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #64748b;
  }
  
  .menu-selector-card .card > .card-body > .card {
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
  }
  
  .menu-selector-card .card > .card-body > .card:last-child {
    margin-bottom: 0;
  }
  
  /* Mobile responsive spacing */
  .menu-selector-card .mb-3 {
    margin-bottom: 1rem !important;
  }
  
  .menu-selector-card .mb-2 {
    margin-bottom: 0.75rem !important;
  }
  
  /* Main content mobile düzeltmeleri */
  main {
    padding: 0;
    overflow-x: hidden;
  }
  
  /* Genel container düzeltmeleri */
  .container,
  .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* SEO content mobile düzeltmeleri */
  .seo-content {
    padding: 1rem 10px;
    margin-left: 0;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .card-img-top {
    height: 180px;
  }
  
  /* Masaüstü menu selector iyileştirmeleri */
  .menu-selector-card {
    margin: 3rem auto 2rem auto;
    max-width: 1000px;
  }
  
  .menu-selector-card .card {
    max-width: 1000px;
  }
  
  .menu-selector-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .menu-selector-card .card-body {
    padding: 2rem;
  }
  
  .menu-selector-card .row {
    gap: 0;
    align-items: stretch;
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  
  .menu-selector-card .form-select,
  .menu-selector-card .form-control {
    font-size: 1rem;
    padding: 1rem 1.25rem;
    min-height: 56px;
  }
  
  .menu-selector-card .btn-group .btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    min-height: 56px;
  }
  
  .menu-selector-card .small {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  /* Masaüstünde kutular arası boşluk ve eşit boyutlar */
  .menu-selector-card .col-12.col-lg-6:first-child {
    padding-right: 1rem;
  }
  
  .menu-selector-card .col-12.col-lg-6:last-child {
    padding-left: 1rem;
  }
  
  /* Eşit yükseklik garantisi */
  .menu-selector-card .col-12.col-lg-6 {
    flex: 1 1 50%;
    width: 50%;
    max-width: 50%;
    min-width: 0;
  }
  
  .menu-selector-card .col-12.col-lg-6 .card {
    height: 100%;
    min-height: 200px;
  }
}

/* ===== MODERN TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text);
}

h1 {
  font-size: 2.25rem;
  font-weight: 200;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

h4 {
  font-size: 1.25rem;
  font-weight: 400;
}

h5 {
  font-size: 1.125rem;
  font-weight: 500;
}

h6 {
  font-size: 1rem;
  font-weight: 500;
}

/* Modern section headers */
.section-title {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ===== UTILITIES ===== */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

.text-primary {
  color: var(--primary) !important;
}

.text-success {
  color: var(--success) !important;
}

.text-warning {
  color: var(--warning) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.text-info {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-success {
  background-color: var(--success) !important;
}

.bg-warning {
  background-color: var(--warning) !important;
}

.bg-danger {
  background-color: var(--danger) !important;
}

.bg-info {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* ===== PRINT STYLES ===== */
@media print {
  .navbar,
  .ad-slot,
  footer,
  .btn {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  display: none;
}

.hero-slide.active {
  display: block;
}

.hero-bg {
  position: relative;
  padding: 4rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.min-vh-50 {
  min-height: 50vh;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-description {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-actions .btn {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.hero-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.hero-icon {
  position: relative;
  z-index: 1;
}

.opacity-90 { opacity: 0.9; }
.opacity-85 { opacity: 0.85; }
.opacity-75 { opacity: 0.75; }

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-actions .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .hero-icon {
    display: none;
  }
}

/* ===== SEO CONTENT STYLING ===== */
.seo-content {
  background: var(--surface);
  padding: 2rem 0.25rem;
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.city-card {
  transition: all 0.3s ease;
  border-left: 3px solid transparent !important;
}

.city-card:hover {
  border-left-color: var(--primary) !important;
  transform: translateX(5px);
}

/* Son seçilen şehir vurgusu */
.city-link .card.border-primary {
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(30, 64, 175, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(30, 64, 175, 0.5);
  }
}

.position-absolute {
  position: absolute !important;
}

.top-0 {
  top: 0 !important;
}

.end-0 {
  right: 0 !important;
}

.border-2 {
  border-width: 2px !important;
}

.bg-gradient-light {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.seo-content .badge {
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.seo-content .card {
  transition: all 0.3s ease;
}

.seo-content .card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08) !important;
}

.seo-content .display-6 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}

.seo-content h3 {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--text);
}

.seo-content h4 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.seo-content h5 {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.seo-content .lead {
  font-size: 1.1rem;
  line-height: 1.6;
}

.seo-content .bg-opacity-10 {
  backdrop-filter: blur(10px);
}

/* Bootstrap opacity fallbacks */
.bg-primary-opacity-10 {
  background-color: rgba(30, 64, 175, 0.1) !important;
}

.bg-success-opacity-10 {
  background-color: rgba(5, 150, 105, 0.1) !important;
}

.bg-warning-opacity-10 {
  background-color: rgba(217, 119, 6, 0.1) !important;
}

.bg-danger-opacity-10 {
  background-color: rgba(220, 38, 38, 0.1) !important;
}

.bg-secondary-opacity-10 {
  background-color: rgba(100, 116, 139, 0.1) !important;
}

.bg-primary-opacity-5 {
  background-color: rgba(30, 64, 175, 0.05) !important;
}

.seo-content .rounded-circle {
  transition: all 0.3s ease;
}

.seo-content .card:hover .rounded-circle {
  transform: scale(1.1);
}

.seo-content .fs-1 {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.seo-content .text-primary {
  color: var(--primary) !important;
}

.seo-content .bg-primary {
  background-color: var(--primary) !important;
}

.seo-content .text-success {
  color: var(--success) !important;
}

.seo-content .text-warning {
  color: var(--warning) !important;
}

.seo-content .text-info {
  color: var(--primary) !important;
}

.seo-content .text-danger {
  color: var(--danger) !important;
}