/* ═══════════════════════════════════════════
   VISA ROUTE PAGES CSS
   Used by: single-visa_route.php, archive-visa_route.php
   ═══════════════════════════════════════════ */

.vr-main {
  background: #f8fafc;
  color: #1e293b;
  min-height: 100vh;
  padding-top: 72px; /* Space for navbar */
}

.vr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Breadcrumbs ── */
.vr-breadcrumbs {
  background: #fff;
  padding: 0.85rem 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.85rem;
}
.vr-breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  color: #64748b;
}
.vr-breadcrumbs li:not(:last-child)::after {
  content: '›';
  margin-right: 0.5rem;
  color: #cbd5e1;
}
.vr-breadcrumbs a {
  color: #1a4a8a;
  text-decoration: none;
}
.vr-breadcrumbs a:hover {
  text-decoration: underline;
}

/* ── Hero ── */
.vr-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1a4a8a 100%);
  color: #fff;
  padding: 3rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.vr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.15), transparent 60%);
  pointer-events: none;
}
.vr-route-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  position: relative;
}
.vr-flag-big {
  font-size: 1.75rem;
  line-height: 1;
}
.vr-route-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.vr-route-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
}
.vr-route-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.vr-arrow {
  color: #c9a84c;
  font-size: 1.3rem;
  font-weight: 700;
}

.vr-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 1rem;
  color: #fff;
  position: relative;
}
.vr-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  line-height: 1.7;
  margin: 0 0 2rem;
  position: relative;
}

.vr-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}
.vr-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.vr-cta-primary {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.vr-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: #fff;
}
.vr-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.vr-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ── Summary Cards ── */
.vr-summary {
  margin-top: -2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}
.vr-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.vr-summary-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: transform 0.25s;
}
.vr-summary-card:hover {
  transform: translateY(-3px);
}
.vr-summary-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.vr-summary-label {
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.vr-summary-value {
  font-size: 1rem;
  font-weight: 800;
  color: #0a1628;
  word-break: break-word;
}

/* ── Article Layout ── */
.vr-article {
  padding: 2rem 0 4rem;
}
.vr-article .vr-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.vr-content {
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  line-height: 1.9;
}
.vr-content h2 {
  font-size: 1.65rem;
  font-weight: 900;
  color: #0a1628;
  margin: 2.5rem 0 1rem;
  padding-right: 1rem;
  border-right: 4px solid #c9a84c;
  line-height: 1.35;
}
.vr-content h2:first-child {
  margin-top: 0;
}
.vr-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a4a8a;
  margin: 1.75rem 0 0.75rem;
}
.vr-content p {
  margin: 0 0 1rem;
  color: #334155;
}
.vr-content ul, .vr-content ol {
  margin: 0 0 1.25rem;
  padding-right: 1.5rem;
}
.vr-content li {
  margin-bottom: 0.6rem;
  color: #334155;
}
.vr-content strong {
  color: #0a1628;
  font-weight: 700;
}
.vr-content em {
  color: #64748b;
  font-style: normal;
  background: #fff8e1;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.94em;
}
.vr-content a {
  color: #1a4a8a;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.vr-content a:hover {
  color: #c9a84c;
}
.vr-content hr {
  border: none;
  height: 1px;
  background: #e2e8f0;
  margin: 2.5rem 0;
}
.vr-content blockquote {
  background: #f8fafc;
  border-right: 4px solid #c9a84c;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #475569;
}
.vr-content blockquote p:last-child {
  margin-bottom: 0;
}

.vr-auto-notice {
  background: #fff8e1;
  border: 1px solid #fbbf24;
  color: #78350f;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  font-size: 0.88rem;
}

/* ── Sidebar ── */
.vr-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.vr-sidebar-box {
  background: #fff;
  padding: 1.5rem;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}
.vr-sidebar-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}
.vr-sidebar-box p {
  color: #64748b;
  font-size: 0.88rem;
  margin: 0 0 1rem;
  line-height: 1.7;
}
.vr-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.vr-related-list li {
  margin-bottom: 0.5rem;
}
.vr-related-list a {
  display: block;
  padding: 0.55rem 0.75rem;
  background: #f8fafc;
  color: #1e293b;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.88rem;
  transition: all 0.2s;
}
.vr-related-list a:hover {
  background: #c9a84c;
  color: #0a1628;
  transform: translateX(-3px);
}

/* ── Bottom CTA ── */
.vr-bottom-cta {
  background: linear-gradient(135deg, #c9a84c 0%, #b8923a 100%);
  color: #0a1628;
  padding: 3rem 0;
  text-align: center;
  margin-top: 2rem;
}
.vr-bottom-cta h2 {
  font-size: 1.75rem;
  font-weight: 900;
  margin: 0 0 0.75rem;
}
.vr-bottom-cta p {
  font-size: 1rem;
  margin: 0 0 1.5rem;
  color: rgba(10, 22, 40, 0.75);
}

/* ── Archive ── */
.vr-archive {
  padding: 3rem 0 5rem;
}
.vr-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.vr-archive-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  transition: all 0.25s;
  overflow: hidden;
}
.vr-archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.vr-archive-link {
  display: block;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
}
.vr-archive-flags {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.vr-archive-arrow {
  color: #c9a84c;
  font-size: 1.5rem;
}
.vr-archive-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 0.75rem;
  line-height: 1.4;
}
.vr-archive-card p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0 0 1rem;
  line-height: 1.6;
}
.vr-archive-more {
  color: #c9a84c;
  font-weight: 700;
  font-size: 0.88rem;
}
.vr-pagination {
  margin-top: 3rem;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .vr-article .vr-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .vr-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .vr-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vr-content {
    padding: 1.75rem 1.25rem;
  }
  .vr-content h2 {
    font-size: 1.35rem;
  }
  .vr-content h3 {
    font-size: 1.1rem;
  }
  .vr-route-badge {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.75rem 1rem;
  }
  .vr-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .vr-summary-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .vr-summary-card {
    padding: 0.85rem 0.5rem;
  }
  .vr-summary-icon {
    font-size: 1.5rem;
  }
  .vr-summary-value {
    font-size: 0.85rem;
  }
}
