/* Vina Travel — Visa & Passport service pages.
   Loaded in addition to guide.css (which provides the base tokens + chrome).
   Kept separate so guide pages and their cache are untouched. */

/* Section switcher — links every service to the others. */
.g-svc-nav {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin: 18px 0 4px; padding: 14px 0 0; border-top: 1px solid var(--line);
}
.g-svc-nav-label { font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.g-svc-pill {
  border: 1px solid var(--line); background: #fff; color: #4a423b;
  border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 700;
  transition: background .15s, color .15s, border-color .15s;
}
.g-svc-pill:hover { border-color: var(--gold); color: var(--ink); }
.g-svc-pill.is-on { background: var(--gold); border-color: var(--gold); color: #fff; }

.g-svc-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 16px; margin-top: 22px; align-items: start; }
.g-svc-main { display: flex; flex-direction: column; gap: 16px; }
.g-svc-aside { background: var(--cream); position: sticky; top: 78px; }
.g-svc-aside .g-btn { display: flex; justify-content: center; margin: 4px 0 2px; }
.g-svc-asidesub { color: var(--muted); font-size: 13px; line-height: 1.55; margin: 0 0 14px; }
.g-svc-rel { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.g-svc-rel h3 { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin: 0 0 6px; }

.g-steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.g-steps li { position: relative; padding: 0 0 16px 46px; counter-increment: step; }
.g-steps li:last-child { padding-bottom: 0; }
.g-steps li::before {
  content: counter(step); position: absolute; left: 0; top: -2px; width: 32px; height: 32px;
  border-radius: 50%; background: var(--red); color: #fff; font-weight: 800; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.g-steps li:not(:last-child)::after { content: ""; position: absolute; left: 15px; top: 32px; bottom: 8px; width: 2px; background: var(--line); }
.g-steps b { display: block; font-size: 15px; margin-bottom: 2px; }
.g-steps span { color: #4f463f; font-size: 14px; line-height: 1.65; }

.g-needs { list-style: none; margin: 0; padding: 0; }
.g-needs li { position: relative; padding: 6px 0 6px 26px; color: #4f463f; font-size: 14px; line-height: 1.6; }
.g-needs li::before { content: "✓"; position: absolute; left: 0; top: 6px; color: var(--gold); font-weight: 800; }
.g-note {
  margin: 14px 0 0; background: var(--cream); border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: 12px; padding: 13px 15px; font-size: 13.5px; line-height: 1.6; color: #4f463f;
}

.g-ref { margin: 18px 0 0; }
.g-ref a { color: var(--red); font-weight: 700; white-space: nowrap; }
.g-ref a:hover { text-decoration: underline; }

.g-faq dl { margin: 0; }
.g-faq dt { font-weight: 800; font-size: 14.5px; color: var(--ink); margin-top: 14px; }
.g-faq dt:first-child { margin-top: 0; }
.g-faq dd { margin: 4px 0 0; color: #4f463f; font-size: 14px; line-height: 1.7; }

@media (max-width: 860px) {
  .g-svc-grid { grid-template-columns: 1fr; }
  .g-svc-aside { position: static; order: 2; }
}

/* ── Request form ───────────────────────────────────────────────────── */
.g-req-head { margin-bottom: 6px; }
.g-req-head h1 {
  font-family: Georgia, "Times New Roman", serif; font-weight: 700;
  font-size: clamp(26px, 3.2vw, 42px); line-height: 1.05; margin: 12px 0 10px;
}
.g-form { display: flex; flex-direction: column; gap: 14px; }
.g-form > label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 800; color: var(--ink); }
.g-form-opt { font-weight: 600; color: var(--muted); }
.g-form input, .g-form select, .g-form textarea {
  font-family: inherit; font-size: 15px; padding: 11px 13px; width: 100%;
  border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink);
}
.g-form textarea { resize: vertical; }
.g-form input:focus, .g-form select:focus, .g-form textarea:focus {
  outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold);
}
.g-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.g-form > label.g-form-check { flex-direction: row; align-items: center; gap: 9px; font-weight: 600; font-size: 14px; }
.g-form-check input { width: auto; flex: none; }
.g-form .g-btn { align-self: flex-start; margin-top: 2px; }
.g-form-msg { font-size: 14px; font-weight: 700; margin: 0; min-height: 1.1em; }
.g-form-msg.ok { color: #156d3b; }
.g-form-msg.err { color: var(--red); }
.g-form-safe { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin: 4px 0 0; }
.g-form-safe a { color: var(--red); font-weight: 700; }
@media (max-width: 560px) { .g-form-row { grid-template-columns: 1fr; } }
