/* ==========================================================================
   arabian.ceo travel vertical
   Booking.com structure (search-first, dense, conventional) with Oman Air
   restraint (generous type, quiet surfaces, no decoration for its own sake).
   Travel is a category where unconventional reads as untrustworthy, so the
   layout is deliberately familiar. Personality comes from type and spacing.
   Inherits tokens from bzd-2026.css. No purple: this surface is orange + ink.
   ========================================================================== */

.tv {
  --font: "Manrope", "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #1a1410;
  --ink2: #44372f;
  --muted: #75685f;
  --white: #ffffff;
  --surface: #faf7f2;
  --line: #e8e0d7;
  --line-2: #b9aea4;
  --orange: #ff5c00;
  --orange-dk: #d94e00;
  --orange-bg: #fff0e8;
  --wrap: 1180px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 8px 24px rgba(35, 24, 16, .08);
  --shadow-lg: 0 24px 60px rgba(35, 24, 16, .14);
  --sky-a: #0e2a47;
  --sky-b: #1b4a76;
  --field-h: 58px;
  font-family: var(--font);
  color: var(--ink);
}

/* Scope reset.
   Two global rules reach in here and both are wrong for this surface:
   bzd-2026.css sets `color: var(--ink)` on every heading, which beat the
   white the hero inherits and rendered the H1 dark-on-dark; and
   arabian-design-system.css sets a serif italic face on H1.
   Element-level rules beat inheritance, so these have to be explicit. */
.tv h1, .tv h2, .tv h3 {
  font-family: var(--font);
  font-style: normal;
  text-transform: none;   /* theme uppercases h1; sentence case matches the h2s */
  color: inherit;
}

.tv-wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }

/* --------------------------------------------------------------- hero ---- */

.tv-hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(255, 92, 0, .22) 0%, transparent 55%),
    linear-gradient(160deg, var(--sky-a) 0%, var(--sky-b) 100%);
  color: #fff;
  padding: 72px 0 132px;
  overflow: hidden;
}

/* Horizon line. Cheap, non-photographic depth cue: no stock imagery to
   license, no broken placeholder to ship. Replace with real photography
   when it exists. */
.tv-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
}

.tv-hero-inner { max-width: 720px; }

.tv-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #ffd9c4;
  background: rgba(255, 92, 0, .16);
  border: 1px solid rgba(255, 138, 74, .34);
  padding: 7px 13px; border-radius: var(--radius-pill);
}

.tv-hero h1 {
  color: #fff;
  margin: 20px 0 0;
  font-size: clamp(34px, 5.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -.025em;
  font-weight: 800;
}

.tv-hero p {
  margin: 18px 0 0;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
  max-width: 58ch;
}

/* --------------------------------------------------------- search card --- */
/* Overlaps the hero's bottom edge. The single strongest signal that this is
   a real travel agency rather than a document shop. */

.tv-searchwrap { margin-top: -92px; position: relative; z-index: 2; }

.tv-search {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 10px 10px 16px;
}

.tv-tabs {
  display: flex; gap: 4px; flex-wrap: wrap;
  padding: 6px 6px 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}

.tv-tab {
  appearance: none; border: 0; cursor: pointer;
  background: transparent; color: var(--muted);
  font: inherit; font-weight: 700; font-size: 14px;
  padding: 9px 15px; border-radius: var(--radius-pill);
  transition: background .18s ease, color .18s ease;
}
.tv-tab:hover { background: var(--surface); color: var(--ink); }
.tv-tab[aria-selected="true"] { background: var(--orange-bg); color: var(--orange-dk); }

.tv-fields {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr .95fr .95fr .8fr auto;
  gap: 10px;
  padding: 0 6px;
}

.tv-field {
  display: grid; gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 13px;
  min-height: var(--field-h);
  background: var(--white);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.tv-field:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 92, 0, .14);
}

.tv-field label {
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted);
}

.tv-field input,
.tv-field select {
  appearance: none; border: 0; outline: 0; background: transparent;
  font: inherit; font-size: 15px; font-weight: 600; color: var(--ink);
  width: 100%; padding: 0;
}
.tv-field input::placeholder { color: var(--line-2); font-weight: 500; }

.tv-phone-field {
  overflow: visible;
}

.tv-phone-field .iti {
  min-width: 0;
  min-height: 32px;
}

.tv-phone-field .iti input[type="tel"] {
  min-height: 32px;
  line-height: 32px;
}

.tv-phone-field .iti__selected-country {
  background: #fffaf5;
  border-right-color: var(--line);
  border-radius: 8px 0 0 8px;
}

.tv-phone-field .iti__selected-country:hover {
  background: var(--orange-bg);
}

.tv-phone-field .iti__selected-dial-code {
  color: var(--orange-dk);
}

.tv-phone-field .iti__dropdown-content {
  z-index: 300;
  border-color: var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.tv-phone-field .iti__search-input {
  border: 1px solid var(--line);
  min-height: 42px;
  padding: 9px 11px;
}

.tv-submit {
  appearance: none; border: 0; cursor: pointer;
  background: var(--orange); color: #fff;
  font: inherit; font-weight: 800; font-size: 15px;
  padding: 0 30px; min-height: var(--field-h);
  border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  transition: background .18s ease, translate .18s ease;
}
.tv-submit:hover { background: var(--orange-dk); }
.tv-submit:active { translate: 0 1px; }
.tv-submit svg { flex: none; }

/* -------------------------------------------------------- trust strip ---- */

.tv-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
}

.tv-trust > div {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  display: grid; gap: 5px; align-content: start;
}
.tv-trust > div:last-child { border-right: 0; }

.tv-trust strong { font-size: 14px; font-weight: 800; letter-spacing: -.01em; }
.tv-trust span { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ------------------------------------------------------------ sections --- */

.tv-section { padding: 76px 0; }
.tv-section--alt { background: var(--surface); }

.tv-h2 {
  color: var(--ink);
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.12; letter-spacing: -.022em; font-weight: 800;
  margin: 0 0 12px;
}
.tv-lede { font-size: 17px; color: var(--muted); line-height: 1.65; max-width: 60ch; margin: 0; }

/* Numbered flow, not three equal cards. The connecting rule carries the
   sequence so the eye reads it as one process. */
.tv-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
  position: relative;
}
.tv-steps::before {
  content: ""; position: absolute; top: 19px; left: 8%; right: 8%;
  height: 1px; background: var(--line-2);
}

.tv-step { position: relative; display: grid; gap: 9px; align-content: start; }

.tv-step-n {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line-2);
  display: grid; place-items: center;
  font-weight: 800; font-size: 14px; color: var(--orange-dk);
  position: relative; z-index: 1;
}
.tv-step h3 { margin: 6px 0 0; font-size: 17px; font-weight: 800; letter-spacing: -.012em; }
.tv-step p  { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.62; }

/* ---------------------------------------------------------- corridors ---- */
/* The organic SEO play: one page per consulate, carrying that consulate's
   real requirement text. Competitors buy this traffic; these pages earn it. */

.tv-corridors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(232px, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.tv-corridor {
  display: grid; gap: 3px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  text-decoration: none; color: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, translate .18s ease;
}
.tv-corridor:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
  translate: 0 -2px;
}
.tv-corridor strong { font-size: 15px; font-weight: 800; letter-spacing: -.01em; }
.tv-corridor span   { font-size: 13px; color: var(--muted); }

/* -------------------------------------------------------- credibility ---- */
/* The block that matters in a supplier meeting: who we are, on the record. */

.tv-cred {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}

.tv-facts { display: grid; gap: 0; margin-top: 26px; }
.tv-fact {
  display: grid; grid-template-columns: 168px 1fr; gap: 18px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.tv-fact:last-child { border-bottom: 0; }
.tv-fact dt { color: var(--muted); }
.tv-fact dd { margin: 0; font-weight: 650; }

/* ------------------------------------------------------------------ faq -- */

.tv-faq { margin-top: 38px; display: grid; gap: 0; max-width: 820px; }
.tv-faq details {
  border-bottom: 1px solid var(--line);
  padding: 19px 0;
}
.tv-faq summary {
  cursor: pointer; list-style: none;
  font-size: 16px; font-weight: 700; letter-spacing: -.01em;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.tv-faq summary::-webkit-details-marker { display: none; }
.tv-faq summary::after {
  content: ""; flex: none; width: 10px; height: 10px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  rotate: 45deg; transition: rotate .2s ease;
}
.tv-faq details[open] summary::after { rotate: -135deg; }
.tv-faq p { margin: 13px 0 0; color: var(--muted); font-size: 15px; line-height: 1.68; max-width: 68ch; }

/* --------------------------------------------------------- responsive ---- */

@media (max-width: 1020px) {
  .tv-fields { grid-template-columns: 1fr 1fr; }
  .tv-submit { grid-column: 1 / -1; }
  .tv-cred   { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 820px) {
  .tv-trust { grid-template-columns: 1fr 1fr; }
  .tv-trust > div:nth-child(2n) { border-right: 0; }
  .tv-trust > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .tv-steps { grid-template-columns: 1fr; gap: 26px; }
  .tv-steps::before { display: none; }
}

@media (max-width: 640px) {
  /* Keep all three trip tabs on one row; a wrapped third tab reads as broken. */
  .tv-tab { padding: 9px 11px; font-size: 13px; }
  .tv-hero { padding: 52px 0 116px; }
  .tv-searchwrap { margin-top: -84px; }
  .tv-fields { grid-template-columns: 1fr; }
  .tv-trust { grid-template-columns: 1fr; }
  .tv-trust > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .tv-trust > div:last-child { border-bottom: 0; }
  .tv-section { padding: 54px 0; }
  .tv-fact { grid-template-columns: 1fr; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  .tv-corridor, .tv-submit, .tv-field, .tv-faq summary::after { transition: none; }
  .tv-corridor:hover { translate: none; }
}

/* Travel platform additions: constrained search, traveller intake and hotel partners. */

.tv * { box-sizing: border-box; }

.tv select {
  appearance: auto;
  cursor: pointer;
}

.tv button:focus-visible,
.tv a:focus-visible,
.tv input:focus-visible,
.tv select:focus-visible,
.tv textarea:focus-visible {
  outline: 3px solid rgba(255, 92, 0, .32);
  outline-offset: 3px;
}

.tv-field[hidden],
[data-integration][hidden] { display: none !important; }

.tv-alert {
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 18px;
  border: 1px solid;
  font-size: 14px;
  line-height: 1.55;
}

.tv-alert > strong { display: block; font-size: 16px; margin-bottom: 5px; }
.tv-alert p { margin: 4px 0 0; }
.tv-alert ul { margin: 8px 0 0; padding-left: 20px; }
.tv-alert--error { color: #8b2e20; border-color: #efc1b9; background: #fff5f2; }
.tv-alert--success { color: #205f3c; border-color: #b9dcc8; background: #f3faf6; }

.tv-fields--search {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.tv-fields--search .tv-submit { min-width: 0; }
.tv-form-note {
  margin: 13px 8px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.tv-field textarea {
  border: 0;
  outline: 0;
  resize: vertical;
  min-height: 92px;
  width: 100%;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  line-height: 1.6;
}

.tv-field small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.tv-partner-cta {
  margin-top: 30px;
  padding: 19px 20px;
  background: #fff7f2;
  border-left: 3px solid var(--orange);
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.tv-partner-cta div { display: grid; gap: 3px; }
.tv-partner-cta strong { font-size: 15px; }
.tv-partner-cta span { color: var(--muted); font-size: 13px; line-height: 1.5; }
.tv-partner-cta a,
.tv-back-link,
.tv-add-room {
  color: var(--orange-dk);
  font-weight: 800;
  text-decoration: none;
}

.tv-checkout-alert,
.tv-checkout-form { max-width: 980px; }

.tv-checkout-form {
  margin-top: 34px;
  display: grid;
  gap: 34px;
}

.tv-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.tv-fieldset > legend {
  padding: 0;
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.015em;
}

.tv-fieldset > p {
  color: var(--muted);
  margin: 7px 0 18px;
  font-size: 14px;
  line-height: 1.55;
}

.tv-fields--contact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
}

.tv-travellers { display: grid; gap: 16px; }

.tv-traveller {
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
}

.tv-traveller h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.tv-fields--traveller {
  grid-template-columns: .7fr 1.15fr 1.15fr 1fr 1fr 1.25fr;
  padding: 0;
}

.tv-checkout-actions {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.tv-checkout-actions p {
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
  font-size: 13px;
  line-height: 1.55;
}

/* Hotel partner onboarding */

.tv-partner-page { background: #f7f8fa; }

.tv-partner-hero {
  background:
    radial-gradient(80% 130% at 100% 0%, rgba(255, 92, 0, .20), transparent 58%),
    linear-gradient(150deg, #102c49, #173f65);
  color: #fff;
  padding: 58px 0 66px;
}

.tv-partner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr);
  gap: 72px;
  align-items: end;
}

.tv-back-link {
  display: block;
  width: fit-content;
  margin-bottom: 24px;
  color: #ffd9c4;
  font-size: 13px;
}

.tv-back-link::before { content: "‹"; margin-right: 7px; font-size: 18px; }

.tv-partner-hero h1 {
  color: #fff;
  margin: 18px 0 0;
  font-size: clamp(36px, 5vw, 58px);
  max-width: 15ch;
  line-height: 1.03;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.tv-partner-hero p {
  max-width: 62ch;
  margin: 18px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.65;
}

.tv-partner-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.18);
}

.tv-partner-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.tv-partner-steps li > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 50%;
  color: #ffd9c4;
  font-size: 12px;
  font-weight: 800;
}

.tv-partner-steps div { display: grid; gap: 3px; }
.tv-partner-steps strong { font-size: 14px; }
.tv-partner-steps small { color: rgba(255,255,255,.66); line-height: 1.45; }

.tv-partner-section { padding-top: 50px; }

.tv-partner-form {
  max-width: 1040px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid #e5e8ed;
  border-radius: 22px;
  padding: 8px 34px 34px;
  box-shadow: 0 20px 55px rgba(14, 42, 71, .08);
}

.tv-form-section {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 34px;
  padding: 38px 0 42px;
  border-bottom: 1px solid var(--line);
}

.tv-form-section-head {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.tv-form-section-head > span {
  flex: none;
  color: var(--orange-dk);
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  padding-top: 5px;
}

.tv-form-section-head h2 {
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -.02em;
  margin: 0;
}

.tv-form-section-head p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.tv-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.tv-field--wide { grid-column: 1 / -1; }

.tv-choice-grid {
  grid-column: 2;
  border: 0;
  padding: 24px 0 0;
  margin: 0;
}

.tv-choice-grid legend {
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 12px;
}

.tv-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.tv-choice-grid legend { grid-column: 1 / -1; }

.tv-choice-grid label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 11px;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
}

.tv-choice-grid label:has(input:checked) {
  border-color: var(--orange);
  background: #fff7f2;
}

.tv-choice-grid input { accent-color: var(--orange); }

.tv-room-types {
  grid-column: 2;
  display: grid;
  gap: 14px;
}

.tv-room {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfcfd;
}

.tv-room-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 13px;
}

.tv-room-head h3 { color: var(--ink); font-size: 14px; margin: 0; }
.tv-room-head button {
  appearance: none;
  border: 0;
  background: transparent;
  color: #a13f2e;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.tv-form-grid--room { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.tv-add-room {
  grid-column: 2;
  width: fit-content;
  appearance: none;
  border: 1px solid #ffc3a1;
  background: #fff7f2;
  border-radius: 9px;
  padding: 10px 14px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  margin-top: 13px;
}

.tv-add-room:disabled { opacity: .45; cursor: not-allowed; }

.tv-field--standalone {
  grid-column: 2;
  margin-top: 22px;
}

.tv-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.tv-upload {
  min-height: 180px;
  padding: 24px;
  border: 1px dashed #c6ccd5;
  border-radius: 14px;
  background: #fbfcfd;
  color: var(--ink);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}

.tv-upload:hover { border-color: var(--orange); background: #fff8f4; }
.tv-upload input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.tv-upload svg { color: var(--orange-dk); }
.tv-upload strong { font-size: 14px; }
.tv-upload span { max-width: 28ch; color: var(--muted); font-size: 12px; line-height: 1.5; }

.tv-photo-preview {
  grid-column: 2;
  margin-top: 13px;
}

.tv-photo-preview:empty { display: none; }

.tv-photo-preview,
.tv-photo-preview--gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}

.tv-photo-preview figure { margin: 0; min-width: 0; }
.tv-photo-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 9px;
  background: var(--surface);
}

.tv-photo-preview figcaption {
  margin-top: 5px;
  font-size: 11px;
  color: var(--muted);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.tv-upload-note,
.tv-security-note {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 12px 0 0;
}

.tv-security-note {
  padding: 12px 14px;
  background: #f5f7fa;
  border-left: 3px solid #8190a4;
}

.tv-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  max-width: 760px;
  margin: 30px 0 0 264px;
  color: var(--ink2);
  font-size: 13px;
  line-height: 1.6;
  cursor: pointer;
}

.tv-consent input { margin-top: 4px; accent-color: var(--orange); }

.tv-partner-submit {
  margin: 26px 0 0 264px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}

.tv-partner-submit p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  max-width: 48ch;
}

@media (max-width: 1020px) {
  .tv-fields--search { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tv-fields--traveller { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tv-partner-hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .tv-form-section { grid-template-columns: 1fr; gap: 22px; }
  .tv-choice-grid,
  .tv-room-types,
  .tv-add-room,
  .tv-field--standalone,
  .tv-photo-preview,
  .tv-upload-note,
  .tv-security-note { grid-column: 1; }
  .tv-consent,
  .tv-partner-submit { margin-left: 0; }
}

@media (max-width: 640px) {
  .tv-fields--search,
  .tv-fields--contact,
  .tv-fields--traveller,
  .tv-form-grid,
  .tv-form-grid--room,
  .tv-upload-grid { grid-template-columns: 1fr; }

  .tv-field--wide { grid-column: 1; }
  .tv-checkout-actions,
  .tv-partner-submit,
  .tv-partner-cta { align-items: stretch; flex-direction: column; }

  .tv-checkout-actions .tv-submit,
  .tv-partner-submit .tv-submit { width: 100%; }

  .tv-traveller { padding: 14px; }
  .tv-partner-hero { padding: 42px 0 50px; }
  .tv-partner-hero h1 { font-size: 38px; }
  .tv-partner-form { padding: 5px 17px 26px; border-radius: 16px; }
  .tv-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tv-photo-preview,
  .tv-photo-preview--gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .tv-upload { transition: none; }
}

/* Document studio and airline-style checkout */

.tv-studio-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 78px;
  color: #fff;
  background:
    radial-gradient(80% 140% at 92% 0%, rgba(255, 92, 0, .26), transparent 55%),
    linear-gradient(145deg, #0e2a47, #17476f);
}

.tv-studio-hero h1 {
  max-width: 740px;
  margin: 17px 0 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.tv-studio-hero p {
  max-width: 620px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.65;
}

.tv-back-link--light { color: #ffd9c4; }
.tv-studio-section { padding-top: 0; background: #f5f7fa; }
.tv-studio-section > .tv-wrap { margin-top: -36px; position: relative; z-index: 2; }

.tv-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-bottom: 18px;
  background: #fff;
  border: 1px solid #e1e6eb;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(14, 42, 71, .08);
}

.tv-progress > span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px 20px;
  color: #657386;
  border-right: 1px solid #e6e9ed;
}

.tv-progress > span:last-child { border-right: 0; }
.tv-progress > span.is-current { color: var(--ink); background: #fff8f3; }

.tv-progress b {
  display: grid;
  place-items: center;
  flex: none;
  width: 28px;
  height: 28px;
  color: #fff;
  background: #7890a5;
  border-radius: 50%;
  font-size: 12px;
}

.tv-progress .is-current b { background: var(--orange); }
.tv-progress span span { display: grid; font-size: 13px; font-weight: 800; }
.tv-progress small { color: #8793a2; font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }

.tv-studio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 18px;
  align-items: start;
}

.tv-studio-form {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e6eb;
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(14, 42, 71, .08);
}

.tv-studio-form .tv-form-section {
  display: block;
  padding: 30px;
  border-bottom: 1px solid #e5e9ed;
}

.tv-product-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tv-product-picker input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.tv-product-picker label {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 86px;
  padding: 17px 18px;
  cursor: pointer;
  background: #f7f9fb;
  border: 1px solid #dde3e9;
  border-radius: 12px;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.tv-product-picker label::after {
  content: "";
  position: absolute;
  top: 17px;
  right: 17px;
  width: 15px;
  height: 15px;
  border: 1px solid #a6b0bb;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #fff;
}

.tv-product-picker label:hover { border-color: #aeb8c2; background: #fff; }
.tv-product-picker input:focus-visible + label { outline: 3px solid rgba(255, 92, 0, .28); outline-offset: 2px; }
.tv-product-picker input:checked + label { border-color: var(--orange); background: #fff7f2; box-shadow: 0 0 0 1px var(--orange); }
.tv-product-picker input:checked + label::after { background: var(--orange); border-color: var(--orange); }
.tv-product-picker strong { padding-right: 24px; font-size: 14px; }
.tv-product-picker span { max-width: 32ch; color: var(--muted); font-size: 12px; line-height: 1.45; }

.tv-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
}

.tv-section-heading > span {
  display: grid;
  place-items: center;
  flex: none;
  width: 27px;
  height: 27px;
  color: #fff;
  background: #193f62;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.tv-section-heading legend { padding: 0; color: var(--ink); font-size: 19px; font-weight: 800; letter-spacing: -.015em; }
.tv-section-heading p { margin: 4px 0 0; color: var(--muted); font-size: 13px; line-height: 1.45; }

.tv-fields--studio {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
}

.tv-traveller--document {
  padding: 20px;
  background: #f7f9fb;
  border: 1px solid #e2e7ec;
  border-radius: 14px;
}

.tv-traveller-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.tv-traveller--document .tv-traveller-head h2 { margin: 0; font-size: 15px; }
.tv-traveller-head > span { color: var(--orange-dk); background: #fff0e8; border-radius: 999px; padding: 5px 9px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }

.tv-fields--traveller-main {
  grid-template-columns: .7fr 1.1fr 1.1fr 1fr 1fr 1.2fr;
  padding: 0;
}

.tv-passport-field { grid-column: span 2; }
.tv-passport-field label span { color: var(--orange-dk); text-transform: none; letter-spacing: 0; }

.tv-download-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 30px;
  background: #fffaf7;
}

.tv-download-panel > div { max-width: 500px; }
.tv-download-panel strong { color: var(--orange-dk); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.tv-download-panel p { margin: 5px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.tv-download-button { min-width: 230px; }
.tv-download-button.is-loading { cursor: wait; opacity: .72; }

.tv-studio-aside {
  position: sticky;
  top: 20px;
  padding: 24px;
  color: #fff;
  background: #112f4a;
  border-radius: 17px;
  box-shadow: 0 18px 42px rgba(14, 42, 71, .16);
}

.tv-aside-kicker { color: #ffbd96; font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.tv-studio-aside h2 { margin: 8px 0 20px; color: #fff; font-size: 24px; letter-spacing: -.025em; }
.tv-studio-aside dl { display: grid; gap: 0; margin: 0; }
.tv-studio-aside dl > div { display: grid; gap: 4px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.tv-studio-aside dt { color: rgba(255,255,255,.58); font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.tv-studio-aside dd { margin: 0; font-size: 13px; font-weight: 700; line-height: 1.45; }

.tv-legal-note { margin: 17px 0 0; color: rgba(255,255,255,.56); font-size: 10px; line-height: 1.6; }
.tv-legal-note a { color: #fff; }

.tv-test-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 26px;
  padding: 24px 26px;
  color: #fff;
  background: #123450;
  border-radius: 16px;
}

.tv-test-cta strong { display: block; font-size: 18px; }
.tv-test-cta span { display: block; margin-top: 5px; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.5; }
.tv-test-cta .tv-submit { flex: none; min-height: 48px; text-decoration: none; }

.tv-checkout-progress { margin-bottom: 30px; box-shadow: none; }
.tv-checkout-form .tv-fieldset { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.tv-checkout-form .tv-checkout-actions { padding: 24px 26px; background: #f7f9fb; border: 1px solid #e2e7ec; border-radius: 16px; }
.tv-action-stack { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.tv-submit--secondary { color: #15415f; background: #fff; border: 1px solid #9dabb8; text-decoration: none; }
.tv-submit--secondary:hover { color: #fff; background: #15415f; }
.tv-specimen-hint { display: block; margin-top: 7px; color: var(--muted); font-size: 11px; }

@media (max-width: 1020px) {
  .tv-studio-layout { grid-template-columns: 1fr; }
  .tv-studio-aside { position: static; }
  .tv-fields--traveller-main { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .tv-progress span span { display: none; }
  .tv-progress > span { justify-content: center; padding: 12px; }
  .tv-product-picker,
  .tv-fields--studio,
  .tv-fields--traveller-main { grid-template-columns: 1fr; }
  .tv-passport-field { grid-column: 1; }
  .tv-studio-form .tv-form-section { padding: 22px 17px; }
  .tv-download-panel,
  .tv-test-cta { align-items: stretch; flex-direction: column; }
  .tv-download-panel { padding: 22px 17px; }
  .tv-download-button,
  .tv-test-cta .tv-submit { width: 100%; }
  .tv-action-stack { width: 100%; }
  .tv-action-stack .tv-submit { width: 100%; }
}

/* ------------------------------------------------------------ v4 additions */
/* The studio's free/paid service toggle and the paid document service. */

.d-none { display: none !important; }

.tv-service-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.tv-service-option {
  display: block;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.tv-service-option input { position: absolute; opacity: 0; pointer-events: none; }
.tv-service-option:hover { border-color: var(--orange, #ff5c00); }
.tv-service-option:has(input:checked) {
  border-color: var(--orange, #ff5c00);
  background: #fff5ee;
}
.tv-service-option--paid:has(input:checked) {
  border-color: #1c6b38;
  background: #f2faf4;
}
.tv-service-body strong { display: block; font-size: 14px; }
.tv-service-body span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.5; }

.tv-download-panel--paid {
  border-color: #1c6b38;
  background: #f2faf4;
}
.tv-download-panel--paid strong { color: #1c6b38; }

/* Brand picker rows in the studio summary. */
.tv-studio-aside [data-brand-row] dt { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .07em; }
.tv-studio-aside [data-brand-row] dd { margin: 2px 0 10px; font-weight: 600; }
.tv-studio-aside [data-price-row] dd { color: #1c6b38; font-weight: 700; }

@media (max-width: 720px) {
  .tv-service-toggle { grid-template-columns: 1fr; }
}
