/* ============ Ülke Detay Sayfası ============ */

.breadcrumb {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-size: 13.5px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--dark); font-weight: 700; }
.breadcrumb .sep { margin: 0 8px; color: var(--muted); }

/* Ülke alt menüsü */
.country-subnav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 76px;
  z-index: 90;
  overflow-x: auto;
}
.country-subnav-inner {
  display: flex;
  gap: 4px;
  white-space: nowrap;
}
.country-subnav a {
  display: inline-block;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.country-subnav a:hover { color: var(--primary); }
.country-subnav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Bölüm kartları (tıklanabilir) */
.section-card { text-decoration: none; display: block; position: relative; }
.card-arrow {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary);
  font-weight: 800;
  font-size: 13.5px;
}

/* Hero */
.country-hero {
  background: linear-gradient(160deg, #f2f6fc 0%, #e8f0fb 60%, #fdf3ec 100%);
  padding: 56px 0;
}
.country-hero-inner { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.country-hero-flag {
  font-size: 72px;
  background: #fff;
  border-radius: 24px;
  padding: 20px 26px;
  box-shadow: var(--shadow-lg);
  line-height: 1;
}
.country-hero-text { flex: 1; min-width: 280px; }
.country-hero h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; margin-bottom: 10px; }
.country-hero h1 em { font-style: normal; color: var(--primary); }
.country-hero p { color: var(--muted); max-width: 640px; margin-bottom: 20px; }
.country-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hızlı bilgiler */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: -32px;
  position: relative;
  z-index: 5;
}
.qfact {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center;
}
.qfact .qicon { font-size: 26px; }
.qfact strong { display: block; font-size: 15px; color: var(--dark); }
.qfact small { color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; }

/* İçerik düzeni */
.country-main { padding: 56px 0 80px; }
.country-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 40px;
  align-items: start;
}
.country-content section { padding: 0; margin-bottom: 48px; }
.country-content h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

/* Vize türleri */
.visa-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.visa-type {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.visa-type:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); background: #fff; }
.visa-type .vicon { font-size: 26px; margin-bottom: 8px; }
.visa-type h3 { font-size: 15.5px; margin-bottom: 6px; }
.visa-type p { font-size: 13.5px; color: var(--muted); }

/* Evrak listesi */
.doc-list { list-style: none; display: grid; gap: 10px; }
.doc-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}
.doc-list li::before {
  content: '✓';
  color: #1d9e5f;
  font-weight: 800;
  background: #e9f9f0;
  border-radius: 8px;
  padding: 1px 8px;
  flex-shrink: 0;
}

/* Süreç adımları */
.steps { display: grid; gap: 0; }
.step { display: flex; gap: 18px; position: relative; padding-bottom: 26px; }
.step:last-child { padding-bottom: 0; }
.step::before {
  content: '';
  position: absolute;
  left: 21px; top: 44px; bottom: 0;
  width: 2px;
  background: var(--border);
}
.step:last-child::before { display: none; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  z-index: 1;
}
.step h3 { font-size: 16px; margin-bottom: 4px; }
.step p { font-size: 14px; color: var(--muted); }

/* Notlar */
.note-box {
  background: #fff8f2;
  border: 1px solid #ffd9bd;
  border-radius: var(--radius);
  padding: 20px 24px;
}
.note-box ul { list-style: none; display: grid; gap: 8px; }
.note-box li { font-size: 14.5px; color: var(--text); display: flex; gap: 10px; }
.note-box li::before { content: '💡'; flex-shrink: 0; }

/* Sidebar */
.country-aside { position: sticky; top: 100px; display: grid; gap: 20px; }
.aside-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.aside-form h3 { font-size: 19px; margin-bottom: 6px; }
.aside-form > p { font-size: 13.5px; color: var(--muted); margin-bottom: 18px; }
.aside-country {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.aside-contact {
  background: var(--dark);
  color: #dbe5f3;
  border-radius: 20px;
  padding: 24px;
}
.aside-contact h4 { color: #fff; font-size: 16px; margin-bottom: 12px; }
.aside-contact a { color: #fff; text-decoration: none; font-weight: 700; display: block; padding: 4px 0; font-size: 14.5px; }
.aside-contact p { font-size: 13px; opacity: 0.75; }

/* Diğer ülkeler */
.other-countries { background: var(--bg-soft); padding: 56px 0; }
.other-countries h2 { font-size: 24px; margin-bottom: 24px; text-align: center; }
.other-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.other-chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.other-chip:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }

@media (max-width: 1024px) {
  .country-layout { grid-template-columns: 1fr; }
  .country-aside { position: static; }
}

/* Blog ve Soru-Cevap */
.blog-date { font-size: 12.5px; font-weight: 700; color: var(--muted); margin-bottom: 8px; }
.blog-article { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.blog-article h2 { font-size: 22px; margin: 24px 0 10px; }
.blog-article p { margin-bottom: 14px; color: var(--text); }
.blog-article ul { margin: 0 0 14px 22px; color: var(--text); }
.blog-article ul li { padding: 3px 0; }
.soru-meta { display: block; font-size: 12px; font-weight: 600; color: var(--muted); margin-top: 4px; }
.soru-soru { font-style: italic; color: var(--muted); }
.blog-img { max-width: 100%; border-radius: 12px; margin: 8px 0 16px; display: block; }
