/* ==========================================================================
   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 {
  --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-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; }
}
