/* =======================================================================
   page-foreigner-friendly.css
   Hotel The Black Gold — Foreigner-Friendly page
   v1.0 — Scope: Form C section visual treatment only.
   Everything else on the page resolves to utilities in global.css.
   ======================================================================= */

/* ── Form C "How It Works" — 3-column grid override at desktop ────────── */
/* (.amenity-sections-grid is 2-col by default; this section needs 3-up
    to keep the three Form C paths balanced and avoid a lonely card on
    row 2.) */
@media (min-width: 900px) {
  .form-c-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Form C QR code block inside the "Before arrival" card ────────────── */
.form-c-qr-wrap {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  text-align: center;
}
.form-c-qr-wrap img {
  width: 200px;
  height: 200px;
  max-width: 100%;
  display: inline-block;
  border-radius: 8px;
  background: #ffffff;
  padding: 8px;
}
.form-c-qr-wrap .small {
  margin: 8px 0 0;
  color: #cfcfcf;
}

/* ── "What to bring" mini-block under the Form C cards ────────────────── */
.form-c-bring {
  margin-top: 22px;
  padding: 18px 22px;
  border: 1px dashed rgba(212, 175, 55, .35);
  border-radius: 12px;
  background: rgba(212, 175, 55, .04);
}
.form-c-bring h3 {
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  margin: 0 0 8px;
  color: var(--gold);
}
.form-c-bring ul {
  margin: 0;
  padding-left: 22px;
}
.form-c-bring li {
  margin: 6px 0;
  color: #dcdcdc;
}
