/* VisaEntryGuide — Full Rebuild v20 */

:root {
  --navy:      #0a1628;
  --gold:      #0891b2;
  --gold-dark: #0e7490;
  --green:     #16a34a;
  --yellow:    #ca8a04;
  --blue:      #1d4ed8;
  --red:       #dc2626;
  --muted:     #64748b;
  --border:    #e2e8f0;
  --surface:   #f8fafc;
  --white:     #ffffff;
  --font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:    10px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--surface);
  color: var(--navy);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: #0891b2; text-decoration: none; }
a:hover { color: #0e7490; }

/* ── OFFICIAL BANNER ── */
.official-banner {
  background: var(--navy);
  color: #e2e8f0;
  text-align: center;
  font-size: 0.72rem;
  padding: 7px 1rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 56px;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
}
.nav-logo span { color: var(--gold-dark); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-tagline {
  font-size: 0.75rem;
  color: var(--muted);
}

.nav-seal {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 4px;
  padding: 3px 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s;
}
.nav-seal:hover { background: #f0f4f8; color: var(--navy); }

/* ── LOADING OVERLAY ── */
.loading-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.78);
  z-index: 200;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
}
.loading-overlay.active { display: flex; }

.spinner {
  width: 42px;
  height: 42px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-text {
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ── HERO ── */
.hero {
  position: relative;
  background: #f0f4f8;
  padding: 3.5rem 1rem 3rem;
  text-align: center;
  overflow: hidden;
  border-bottom: 2px solid var(--border);
}

/* Flag watermark */
.hero-flags {
  position: absolute;
  inset: 0;
  font-size: 2rem;
  line-height: 3.2rem;
  letter-spacing: 0.5rem;
  word-break: break-all;
  overflow: hidden;
  opacity: 0.12;
  pointer-events: none;
  padding: 0.5rem;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.85rem;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1rem;
  color: #1e293b;
  margin-bottom: 1.75rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 2rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--white);
  border: 1px solid #d1d5db;
  border-radius: 20px;
  padding: 5px 13px;
  font-size: 0.78rem;
  color: var(--navy);
  font-weight: 500;
}

/* ── CHECKER CARD ── */
.checker-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
}

/* Step indicators */
.checker-steps {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.5rem;
  flex-wrap: nowrap;
}

.step-indicator {
  flex: 1;
  justify-content: center;
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 20px;
  background: #f1f5f9;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.step-indicator .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e2e8f0;
  font-size: 0.68rem;
  font-weight: 800;
}
.step-indicator.active {
  color: #0e7490;
  border-color: #0891b2;
  background: #ecfeff;
}
.step-indicator.active .step-num { background: var(--gold); color: var(--navy); }
.step-indicator.done {
  color: var(--green);
  border-color: #bbf7d0;
  background: #f0fdf4;
}
.step-indicator.done .step-num { background: var(--green); color: #fff; }

.step-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

/* Form elements */
.form-section { margin-bottom: 1.25rem; }

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-select,
.form-input {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--navy);
  font-family: var(--font);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-select:focus,
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

/* Leg rows */
.legs-container { display: flex; flex-direction: column; gap: 10px; }

.leg-row {
  display: grid;
  grid-template-columns: auto 1fr 155px 38px;
  gap: 10px;
  align-items: end;
}

.leg-number {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 11px;
  white-space: nowrap;
}

.leg-remove {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: #94a3b8;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0;
  height: 40px;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  font-family: var(--font);
}
.leg-remove:hover { border-color: var(--red); color: var(--red); background: #fff1f2; }

/* Add leg button */
.add-leg-btn {
  background: var(--surface);
  border: 2px dashed #cbd5e1;
  border-radius: 8px;
  color: #374151;
  padding: 10px;
  width: 100%;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  font-family: var(--font);
  margin-top: 6px;
  text-align: center;
}
.add-leg-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: #ecfeff;
}

/* Submit button */
.btn-check {
  width: 100%;
  background: var(--gold);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 1.5rem;
  font-family: var(--font);
  transition: background 0.15s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-check:hover { background: var(--gold-dark); }
.btn-check:active { transform: scale(0.99); }
.btn-check:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── RESULTS SECTION ── */
#results-section {
  max-width: 720px;
  margin: 2rem auto 0;
  padding: 0 1rem 1rem;
}
#results-section.hidden { display: none; }

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.results-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

.results-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── RESULT CARDS ── */
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.25rem 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  border-left-width: 4px;
  border-left-style: solid;
}

.result-card.visa-free      { border-left-color: #16a34a; }
.result-card.visa-on-arrival{ border-left-color: #ca8a04; }
.result-card.e-visa         { border-left-color: #1d4ed8; }
.result-card.visa-required  { border-left-color: #dc2626; }
.result-card.home           { border-left-color: #94a3b8; }

/* Warning banner */
.warning-banner {
  background: #fff1f2;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 9px 13px;
  font-size: 0.82rem;
  color: #991b1b;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Card top row */
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.destination-flag { font-size: 1.85rem; line-height: 1; }

.destination-info { flex: 1; }

.destination-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.arrival-date {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1px;
}

/* Status badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 13px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.status-badge.visa-free       { background: #dcfce7; color: #166534; }
.status-badge.visa-on-arrival { background: #fef9c3; color: #854d0e; }
.status-badge.e-visa          { background: #dbeafe; color: #1e40af; }
.status-badge.visa-required   { background: #fee2e2; color: #991b1b; }
.status-badge.home            { background: #f1f5f9; color: #475569; }

/* Card details grid */
.card-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: var(--surface);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 12px;
}

.detail-item { text-align: center; }

.detail-label {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 2px;
}

.detail-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}
.detail-value.free { color: var(--green); }
.detail-value.paid { color: var(--gold-dark); }

/* Requirements */
.requirements-section { margin-bottom: 12px; }

.requirements-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.requirements-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.requirements-list li {
  font-size: 0.82rem;
  color: #374151;
  padding-left: 18px;
  position: relative;
}
.requirements-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.75rem;
}

/* Notes */
.card-notes {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 12px;
  font-style: italic;
}

/* Verified badge */
.verified-badge {
  font-size: 0.72rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

/* Card action buttons */
.card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
}

.btn-apply {
  flex: 1;
  min-width: 140px;
  background: #16a34a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.15s;
}
.btn-apply:hover { background: #15803d; color: #ffffff; }

.btn-gov {
  flex: 1;
  min-width: 140px;
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 0.15s, color 0.15s;
}
.btn-gov:hover { border-color: var(--navy); color: var(--navy); }

/* ── ACTION PLAN ── */
.action-plan {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1rem 2.5rem;
}
.action-plan.hidden { display: none; }

.action-plan-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.action-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.action-column {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
}

.action-column-header {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.action-column.critical .action-column-header { color: var(--red); border-bottom-color: #fee2e2; }
.action-column.warning  .action-column-header { color: var(--yellow); border-bottom-color: #fef9c3; }
.action-column.ok       .action-column-header { color: var(--green); border-bottom-color: #dcfce7; }

.action-items { list-style: none; display: flex; flex-direction: column; gap: 6px; }

.action-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.8rem;
  color: #374151;
  padding: 4px 0;
  border-bottom: 1px solid #f1f5f9;
}
.action-item:last-child { border-bottom: none; }

.action-flag { font-size: 1rem; flex-shrink: 0; }
.action-detail { font-size: 0.78rem; color: #94a3b8; margin-top: 2px; line-height: 1.4; }

.action-empty {
  font-size: 0.78rem;
  color: #94a3b8;
  font-style: italic;
  padding: 4px 0;
}

/* ── STATS BAR (DARK) ── */
.stats-section {
  background: #f0f9ff;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid #e0f2fe;
  padding: 0;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  padding: 2rem 1rem;
  text-align: center;
  border-right: 1px solid #bae6fd;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #0891b2;
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: #0e7490;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ── FOOTER (LIGHT) ── */
.site-footer {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 2.25rem 1rem;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.footer-links a {
  color: #475569;
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 0.15s;
}
.footer-links a:hover { color: #0891b2; }

.footer-backlinks a { color: #475569; font-weight: 600; }
.footer-backlinks a:hover { color: #0891b2; }

.footer-text {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.8;
}
.footer-text a { color: #475569; font-weight: 600; }
.footer-text a:hover { color: #0891b2; }

/* ── EMPTY / ERROR STATES ── */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}
.empty-state .icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

/* ── MOBILE ── */
@media (max-width: 640px) {
  .checker-card { padding: 1.25rem; }

  .leg-row {
    grid-template-columns: 1fr 130px 38px;
    grid-template-rows: auto auto;
  }
  .leg-row .leg-number {
    grid-column: 1 / -1;
    padding-bottom: 0;
  }

  .card-details { grid-template-columns: repeat(2, 1fr); }
  .action-columns { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }

  .navbar { padding: 0 1rem; }
  .nav-tagline { display: none; }

  .trust-badges { gap: 6px; }
  .trust-badge { font-size: 0.72rem; padding: 4px 10px; }
}

@media (max-width: 420px) {
  .leg-row {
    grid-template-columns: 1fr;
  }
  .leg-remove { width: 100%; }
  .card-actions { flex-direction: column; }
  .btn-apply, .btn-gov { min-width: unset; width: 100%; }
}

/* Date picker wrapper */
.date-picker-wrap {
  position: relative;
}
.date-picker-wrap .form-input {
  padding-right: 36px;
  cursor: pointer;
}
.date-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  pointer-events: none;
  line-height: 1;
}

/* Flatpickr theme overrides */
.flatpickr-calendar {
  font-family: var(--font) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

/* ── MODALS ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 900;
}
.modal-overlay.active { display: block; }

.modal-panel {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 560px);
  max-height: 80vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 14px;
  padding: 2rem 1.75rem;
  z-index: 901;
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
}
.modal-panel.active { display: block; }

.modal-panel h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.modal-panel p, .modal-panel li {
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.modal-panel ul { padding-left: 1.25rem; }
.modal-panel a { color: var(--gold); }

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #6b7280;
  cursor: pointer;
  padding: 4px 8px;
}
.modal-close:hover { color: var(--navy); }

/* ── SAFETY ADVISORY SECTION ── */
.safety-section {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #e2e8f0;
}
.safety-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.safety-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.safety-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.safety-list {
  margin: 0 0 0.5rem 1rem;
  padding: 0;
  list-style: disc;
}
.safety-list li {
  font-size: 0.78rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 0.2rem;
}
.safety-clear {
  font-size: 0.78rem;
  color: #16a34a;
  margin: 0 0 0.4rem;
}
.safety-link {
  display: inline-block;
  font-size: 0.75rem;
  color: #2563eb;
  text-decoration: none;
  margin-top: 0.25rem;
}
.safety-link:hover { text-decoration: underline; }

/* ── FOOTER BACKLINKS ── */
.footer-backlinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.footer-backlinks a {
  color: #cbd5e1;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-backlinks a:hover { color: var(--gold); }
.footer-bl-sep { color: #475569; font-size: 0.75rem; }

/* ── OFFICIAL SOURCES MODAL ── */
.modal-panel--wide {
  width: min(95vw, 720px);
}
.sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.sources-region {
  background: #f8fafc;
  border-radius: 8px;
  padding: 0.75rem 1rem;
}
.sources-region-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.sources-region ul {
  margin: 0;
  padding-left: 1rem;
  list-style: disc;
}
.sources-region li {
  font-size: 0.78rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   TOURIST / BUSINESS TOGGLE PILLS
   ============================================================ */
/* Trip type — segmented underline tab style */
.trip-type-toggle {
  display: flex;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid #e2e8f0;
  background: transparent;
  gap: 0;
}
.trip-type-pill {
  flex: 1;
  padding: 0.6rem 1rem;
  border: none;
  border-bottom: 4px solid transparent;
  margin-bottom: -2px;
  background: transparent;
  color: #94a3b8;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease;
  font-family: inherit;
  text-align: center;
  border-radius: 0;
}
.trip-type-pill:hover {
  color: #334155;
}
/* Tourist active — travel teal */
#pill-tourist.active {
  color: #0369a1;
  border-bottom: 4px solid #0891b2;
  font-weight: 800;
  background: transparent;
  box-shadow: none;
}
/* Business active — charcoal */
#pill-business.active {
  color: #0f172a;
  border-bottom: 4px solid #0f172a;
  font-weight: 800;
  background: transparent;
  box-shadow: none;
}

/* ============================================================
   BUSINESS VISA SECTION — Inside Result Cards
   ============================================================ */
.biz-ok {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  margin: 0.75rem 0;
  font-size: 0.84rem;
  color: #15803d;
}
.biz-ok-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.biz-ok-text { line-height: 1.45; }

.biz-blocked {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  margin: 0.75rem 0;
  font-size: 0.84rem;
  color: #dc2626;
}
.biz-blocked-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.biz-blocked-text { line-height: 1.45; font-weight: 600; }

.biz-section {
  background: #f8faff;
  border: 1.5px solid #bfdbfe;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin: 0.75rem 0;
}
.biz-section-header {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e40af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}
.biz-invitation {
  background: #ecfeff;
  border: 1px solid #fcd34d;
  border-radius: 7px;
  padding: 0.6rem 0.8rem;
  margin-bottom: 0.6rem;
  font-size: 0.83rem;
  color: #92400e;
  line-height: 1.4;
}
.biz-invitation-sub {
  margin-top: 0.3rem;
  font-size: 0.78rem;
  color: #78350f;
}
.biz-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  margin-bottom: 0.6rem;
}
.biz-meta-row {
  font-size: 0.82rem;
  color: #374151;
}
.biz-meta-row strong { color: #111827; }
.biz-docs-group {
  margin-bottom: 0.5rem;
}
.biz-docs-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}
.biz-docs-list {
  margin: 0;
  padding-left: 1.2rem;
  list-style: disc;
}
.biz-docs-list li {
  font-size: 0.81rem;
  color: #374151;
  line-height: 1.6;
}
.biz-notes {
  font-size: 0.78rem;
  color: #64748b;
  margin-top: 0.5rem;
  line-height: 1.5;
  font-style: italic;
}
.biz-flag {
  font-size: 0.8rem;
  color: #4b5563;
  margin-top: 0.3rem;
}
