/* ============================================================
   VIPVISA — Design System
   Display: Fraunces (serif, editorial weight — echoes the gold
   wordmark in the logo). Body/UI: Inter (clean, legible, dense
   info reads well at small sizes for visa detail pages).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Color */
  --navy-950: #0a0e1a;
  --navy-900: #111729;
  --navy-800: #1a2238;
  --gold-500: #c9a227;
  --gold-400: #d9b94a;
  --gold-200: #ecd89a;
  --white: #ffffff;
  --ink-050: #f6f5f2;
  --ink-200: #d8dae2;
  --slate-600: #4b5566;
  --slate-500: #6b7688;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: rgba(10, 14, 26, 0.1);

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --radius: 3px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--slate-600);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-950);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { max-width: 62ch; }

.lede {
  font-size: 1.15rem;
  color: var(--slate-600);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-950);
}
.btn-gold:hover { background: var(--gold-400); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover { border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy-950);
  border-color: var(--line-light);
}
.btn-outline-dark:hover { border-color: var(--navy-950); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-950);
  border-bottom: 1px solid var(--line-dark);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}

.brand img { height: 46px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: var(--ink-200);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  border-color: var(--gold-500);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  color: var(--ink-200);
  font-size: 0.92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: var(--navy-950);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,14,26,0.97) 20%, rgba(10,14,26,0.75) 55%, rgba(10,14,26,0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 120px 0 90px;
}

.hero-eyebrow {
  color: var(--gold-400);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 { color: var(--white); margin-bottom: 22px; }

.hero-sub {
  color: var(--ink-200);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 54ch;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section { padding: 96px 0; }

.section-light { background: var(--white); }
.section-tint { background: var(--ink-050); }
.section-dark { background: var(--navy-950); color: var(--ink-200); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: var(--ink-200); }

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head h2 { margin-bottom: 16px; }

/* ---------- Value props ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.value-item {
  background: var(--white);
  padding: 40px 36px;
}

.value-item h3 { margin-bottom: 12px; font-size: 1.15rem; }
.value-item p { font-size: 0.95rem; }

/* ---------- Country cards ---------- */
.country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.country-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  background: var(--navy-900);
}

.country-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.country-card:hover img { transform: scale(1.06); }

.country-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,26,0.92) 10%, rgba(10,14,26,0.15) 60%);
}

.country-card-body {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  color: var(--white);
}

.country-card-body .kicker {
  color: var(--gold-400);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.country-card-body h3 { color: var(--white); margin-bottom: 4px; }

.country-card-body span.route {
  font-size: 0.85rem;
  color: var(--ink-200);
}

/* ---------- Process ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  counter-reset: step;
}

.process-item { position: relative; padding-top: 8px; border-top: 1px solid var(--line-dark); }

.process-item .num {
  font-family: var(--font-display);
  color: var(--gold-500);
  font-size: 2rem;
  display: block;
  margin-bottom: 14px;
}

.process-item h3 { margin-bottom: 10px; }
.process-item p { font-size: 0.95rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--navy-950);
  padding: 80px 0;
  text-align: left;
}

.cta-banner .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner h2 { color: var(--white); max-width: 520px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: var(--ink-200);
  border-top: 1px solid var(--line-dark);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand img { height: 40px; margin-bottom: 18px; }

.footer-brand p {
  font-size: 0.92rem;
  color: var(--slate-500);
  max-width: 34ch;
}

.footer-col h4 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }

.footer-col a {
  color: var(--ink-200);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold-400); }

.footer-contact p { font-size: 0.92rem; margin-bottom: 12px; color: var(--ink-200); }

.footer-social { display: flex; gap: 14px; margin-top: 18px; }

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-200);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-social a:hover { border-color: var(--gold-500); color: var(--gold-400); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.82rem;
  color: var(--slate-500);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom .legal-links { display: flex; gap: 20px; }
.footer-bottom .legal-links a { color: var(--slate-500); }
.footer-bottom .legal-links a:hover { color: var(--gold-400); }

/* ---------- Disclosure strip (compliance) ---------- */
.disclosure {
  background: var(--ink-050);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 18px 0;
}
.disclosure p {
  font-size: 0.82rem;
  color: var(--slate-500);
  max-width: 100%;
}

/* ---------- Inner page hero (shorter than homepage) ---------- */
.hero-inner { min-height: 52vh; }
.hero-inner .hero-content { padding: 100px 0 70px; max-width: 720px; }

.breadcrumb {
  position: relative;
  z-index: 1;
  color: var(--ink-200);
  font-size: 0.85rem;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--ink-200); }
.breadcrumb a:hover { color: var(--gold-400); }

/* ---------- Route blocks ---------- */
.route-block {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--line-light);
}
.route-block:first-of-type { border-top: none; }

.route-heading .tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-950);
  background: var(--gold-200);
  padding: 4px 10px;
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.route-heading h3 { font-size: 1.5rem; margin-bottom: 8px; }
.route-heading .short-desc { font-size: 0.92rem; color: var(--slate-500); }

.route-body h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-950);
  text-transform: none;
  margin: 18px 0 8px;
}
.route-body h4:first-child { margin-top: 0; }
.route-body ul { padding-left: 20px; margin-bottom: 4px; }
.route-body li { font-size: 0.95rem; margin-bottom: 6px; }
.route-body p { font-size: 0.95rem; margin-bottom: 8px; }

.note-box {
  background: var(--ink-050);
  border-left: 3px solid var(--gold-500);
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--slate-600);
  margin-top: 14px;
  max-width: none;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--line-light);
  padding: 26px 0;
}
.faq-item h3 { font-size: 1.1rem; margin-bottom: 10px; }
.faq-item p { font-size: 0.95rem; }

/* ---------- Compliance disclosure strip ---------- */
.disclosure-inline {
  background: var(--ink-050);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.88rem;
  color: var(--slate-500);
  margin-top: 48px;
  max-width: none;
}
.disclosure-inline strong { color: var(--navy-950); }

/* ---------- Visa hub link cards ---------- */
.visa-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.visa-link-card {
  background: var(--white);
  padding: 40px;
  display: block;
  transition: background 0.2s ease;
}
.visa-link-card:hover { background: var(--ink-050); }

.visa-link-card .tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-950);
  background: var(--gold-200);
  padding: 4px 10px;
  border-radius: var(--radius);
  margin-bottom: 14px;
}

.visa-link-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.visa-link-card p { font-size: 0.93rem; margin-bottom: 16px; }
.visa-link-card .read-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-950);
  border-bottom: 1px solid var(--gold-500);
  padding-bottom: 2px;
}

/* ---------- Simple page header (utility pages) ---------- */
.page-header {
  background: var(--navy-950);
  padding: 64px 0 56px;
}
.page-header .breadcrumb { margin-bottom: 18px; }
.page-header h1 { color: var(--white); margin-bottom: 14px; }
.page-header p { color: var(--ink-200); font-size: 1.05rem; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 48px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row.single { grid-template-columns: 1fr; }

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 8px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(10,14,26,0.18);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy-950);
  background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}

.form-field textarea { resize: vertical; min-height: 110px; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 28px 0;
  font-size: 0.88rem;
  color: var(--slate-600);
}
.form-consent input { margin-top: 3px; }
.form-consent a { color: var(--navy-950); text-decoration: underline; }

.form-submit { text-align: left; }

/* ---------- Legal / long-form text pages ---------- */
.legal-content h2 { margin-top: 40px; margin-bottom: 14px; font-size: 1.3rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { font-size: 0.95rem; max-width: none; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; }
.legal-content .updated { color: var(--slate-500); font-size: 0.88rem; margin-bottom: 32px; }

/* ---------- Contact details block ---------- */
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-details h3 { font-size: 1rem; margin-bottom: 6px; }
.contact-details p { font-size: 0.95rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .value-grid, .country-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .route-block { grid-template-columns: 1fr; gap: 16px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 32px 24px; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .value-grid, .country-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-phone { display: none; }
  .cta-banner .wrap { flex-direction: column; align-items: flex-start; }
  section { padding: 64px 0; }
}
