/* Visa page — extends hotels.css.
   Adds country grid variant, visa-type chip, 5-column step strip. */

.visa-body {
  --visa-accent: #7c3aed;
}

/* Reserve enough width for the longest rotating verb ("topshiring") */
.visa-body .htl-rotate { min-width: 10ch; }

/* Hero — deeper violet-blue mix to differentiate from tours/hotels */
.visa-body .hotel-hero {
  background: linear-gradient(135deg, #1e1b4b 0%, #0B3AD6 55%, #2563eb 100%);
}
.visa-body .htl-blob-1 { background: #a78bfa; }
.visa-body .htl-blob-2 { background: #fbbf24; }
.visa-body .htl-blob-3 { background: #ec4899; }

/* Country tiles — reuse .htl-city skeleton but with distinct color palette
   so users don't confuse them with hotel cities. */
.visa-body .htl-city-1::before  { background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%); }                     /* Vietnam */
.visa-body .htl-city-2::before  { background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%); }                     /* India */
.visa-body .htl-city-3::before  { background: linear-gradient(135deg, #16a34a 0%, #14532d 100%); }                     /* Saudi */
.visa-body .htl-city-4::before  { background: linear-gradient(135deg, #dc2626 0%, #fbbf24 100%); }                     /* China */
.visa-body .htl-city-5::before  { background: linear-gradient(135deg, #be185d 0%, #831843 100%); }                     /* Hong Kong */
.visa-body .htl-city-6::before  { background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #991b1b 100%); }        /* Singapore */
.visa-body .htl-city-7::before  { background: linear-gradient(135deg, #15803d 0%, #166534 100%); }                     /* Oman */
.visa-body .htl-city-8::before  { background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%); }                     /* Indonesia */
.visa-body .htl-city-9::before  { background: linear-gradient(135deg, #1e3a8a 0%, #fbbf24 100%); }                     /* Schengen */
.visa-body .htl-city-10::before { background: linear-gradient(135deg, #1e3a8a 0%, #312e81 50%, #7c2d12 100%); }        /* UK */

/* Visa-type chip on each country tile */
.visa-type-chip {
  display: inline-block;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
  margin-top: 8px;
  text-transform: uppercase;
}
.visa-type-chip.embassy { background: rgba(251, 191, 36, 0.32); border-color: rgba(251, 191, 36, 0.5); }

/* 5-column step strip */
.visa-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 28px;
}
@media (max-width: 980px) {
  .visa-steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .visa-steps-grid { grid-template-columns: 1fr; }
}

/* CTA strip — bold "Talk to a manager" section */
.visa-cta {
  padding: 60px 20px;
}
.visa-cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, #0B3AD6 0%, #1e1b4b 100%);
  border-radius: 22px;
  padding: 40px 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.visa-cta-inner::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.35) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.visa-cta h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  margin: 0 0 12px;
  letter-spacing: -0.4px;
}
.visa-cta h2 .accent-y { color: #fbbf24; }
.visa-cta p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
}
.visa-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.visa-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.visa-cta-btn.primary {
  background: #fbbf24;
  color: #422006;
  box-shadow: 0 10px 22px -10px rgba(251, 191, 36, 0.6);
}
.visa-cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -10px rgba(251, 191, 36, 0.7);
}
.visa-cta-btn.outline {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.visa-cta-btn.outline:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}
.visa-cta-stat {
  text-align: center;
  position: relative;
  z-index: 2;
}
.visa-cta-stat-num {
  font-size: clamp(56px, 8vw, 88px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(180deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.visa-cta-stat-sub {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}

@media (max-width: 880px) {
  .visa-cta-inner { grid-template-columns: 1fr; padding: 32px 24px; gap: 22px; }
}

/* Document checklist card */
.visa-docs {
  padding: 60px 20px;
}
.visa-docs-inner { max-width: 1180px; margin: 0 auto; }
.visa-docs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.visa-doc-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 22px;
}
.visa-doc-title {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.visa-doc-title svg { width: 18px; height: 18px; color: var(--htl-blue); }
.visa-doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.visa-doc-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: #475569;
  line-height: 1.5;
}
.visa-doc-list li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  border-radius: 50%;
  background: #10b981;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px 11px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 880px) {
  .visa-docs-grid { grid-template-columns: 1fr; }
}
