/* Obayar Travels v2: deep evergreen + saffron, Young Serif display / Hanken Grotesk body.
   English-only iteration: arch-photo hero with stamp seal, saffron marquee, how-it-works,
   services bento, Umrah arch lattice, stats count-up, closing CTA band. */

:root {
  --green-950: oklch(0.24 0.045 160);
  --green-900: oklch(0.29 0.055 158);
  --green-800: oklch(0.36 0.06 156);
  --surface: oklch(0.975 0.008 150);
  --surface-alt: oklch(0.955 0.012 150);
  --surface-raised: oklch(1 0 0);
  --ink: oklch(0.24 0.02 160);
  --ink-soft: oklch(0.42 0.02 160);
  --saffron: oklch(0.78 0.14 75);
  --saffron-deep: oklch(0.7 0.15 68);
  --vermillion: oklch(0.55 0.19 30);
  --on-dark: oklch(0.965 0.008 95);
  --on-dark-soft: oklch(0.86 0.02 120);
  --line: oklch(0.88 0.015 150);
  --line-dark: oklch(0.42 0.04 158);
  --green-tint: oklch(0.91 0.03 156);

  --font-display: "Young Serif", "Iowan Old Style", Georgia, serif;
  --font-body: "Hanken Grotesk", "Avenir Next", system-ui, sans-serif;

  --shell: 1160px;
  --shell-header: 1400px;
  --radius: 14px;
  --radius-lg: 20px;
  --arch: 999px 999px var(--radius) var(--radius);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 500ms;

  --z-header: 20;
  --z-callbar: 30;
  --callbar-h: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.shell {
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 40;
  background: var(--saffron);
  color: var(--ink);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: top 150ms var(--ease-out);
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 180ms var(--ease-out), color 180ms var(--ease-out), transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.btn:active {
  transform: translateY(1px);
}

.btn svg {
  width: 1.1em;
  height: 1.1em;
  flex: none;
}

.btn-saffron {
  background: var(--saffron);
  color: oklch(0.2 0.03 160);
  box-shadow: 0 6px 18px oklch(0.7 0.15 68 / 0.35);
}

.btn-saffron:hover {
  background: var(--saffron-deep);
}

.btn-outline {
  border: 1.5px solid var(--line-dark);
  color: var(--on-dark);
}

.btn-outline:hover {
  border-color: var(--on-dark-soft);
  background: oklch(0.32 0.05 158);
}

.btn-ghost {
  color: var(--on-dark);
}

.btn-ghost:hover {
  background: oklch(0.32 0.05 158);
}

.btn-green {
  background: var(--green-800);
  color: var(--on-dark);
}

.btn-green:hover {
  background: var(--green-900);
}

.btn-dark {
  background: var(--green-950);
  color: var(--on-dark);
}

.btn-dark:hover {
  background: var(--green-900);
}

.btn-outline-dark {
  border: 2px solid var(--green-950);
  color: var(--green-950);
}

.btn-outline-dark:hover {
  background: oklch(0.24 0.045 160 / 0.09);
}

.btn-lg {
  font-size: 1.05rem;
  padding: 0.95rem 1.6rem;
}

:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--green-950);
  color: var(--on-dark);
  border-bottom: 1px solid oklch(0.32 0.05 158);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  min-height: 72px;
  max-width: var(--shell-header);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  margin-right: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.brand-text span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  gap: 1.9rem;
}

.site-nav a {
  color: var(--on-dark-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: color 150ms var(--ease-out);
}

.site-nav a:hover {
  color: var(--on-dark);
}

.site-nav a.is-current {
  color: var(--on-dark);
  text-decoration: underline;
  text-decoration-color: var(--saffron);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.header-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: none;
  border: 1.5px solid var(--line-dark);
  color: var(--on-dark);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle:hover {
  background: oklch(0.32 0.05 158);
}

.nav-toggle-bar {
  width: 16px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1.25rem 1.25rem;
  gap: 0.15rem;
  background: var(--green-950);
  border-bottom: 1px solid var(--line-dark);
}

.mobile-nav a {
  color: var(--on-dark);
  text-decoration: none;
  font-weight: 600;
  padding: 0.7rem 0.5rem;
  border-radius: 8px;
}

.mobile-nav a:hover {
  background: var(--green-900);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(58rem 34rem at 88% 115%, oklch(0.78 0.14 75 / 0.14), transparent 62%),
    radial-gradient(40rem 26rem at -10% -30%, oklch(0.36 0.06 156 / 0.55), transparent 65%),
    var(--green-950);
  color: var(--on-dark);
  overflow: clip;
  padding-block: clamp(1.4rem, 3.2vh, 2.6rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
  width: 100%;
}

.hero-tagline {
  margin: 0 0 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--saffron);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--saffron);
}

.hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--on-dark-soft);
  max-width: 34rem;
  margin: 0 0 1.4rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.hero-alt-line {
  margin: 0 0 1.6rem;
  font-size: 0.95rem;
  color: var(--on-dark-soft);
}

.hero-alt-line a {
  color: var(--on-dark);
  font-weight: 600;
  text-decoration-color: var(--saffron);
  text-underline-offset: 3px;
}

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--on-dark-soft);
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-weight: 600;
}

.hero-trust svg {
  width: 17px;
  height: 17px;
  flex: none;
  fill: none;
  stroke: var(--saffron);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Hero art: one arch photo of home, a dotted flight path, a spinning stamp
   pressed onto the image like a seal. */

.hero-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: clamp(2.2rem, 4.5vw, 3.4rem);
  min-width: 0;
}

/* Hero art: one arch photo of an international destination with a spinning
   stamp pressed onto it like a seal. Kept compact so the route ticker below
   is visible within the first screen. */

.hero-photo-wrap {
  position: relative;
  z-index: 1;
  width: min(340px, 100%);
}

.hero-photo {
  margin: 0;
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 46vh;
  object-fit: cover;
  border-radius: var(--arch);
  background: var(--green-900);
  box-shadow: 0 24px 54px oklch(0.12 0.02 160 / 0.45);
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  left: -1.8rem;
  bottom: 1.6rem;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--surface-raised);
  border: 2px solid var(--saffron);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px oklch(0.2 0.03 160 / 0.45);
}

.hero-stamp > img {
  width: 44px;
  height: auto;
}

.stamp-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: stamp-spin 28s linear infinite;
}

.stamp-ring text {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  fill: var(--green-950);
}

@keyframes stamp-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-stage-caption {
  margin: 1.1rem 0 0;
  max-width: 100%;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--on-dark-soft);
  text-align: center;
}

/* ---------- Saffron route marquee ---------- */

.marquee {
  background: var(--saffron);
  overflow: hidden;
  padding-block: 0.8rem;
  border-block: 1px solid oklch(0.7 0.15 68 / 0.6);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 34s linear infinite;
}

.marquee-seq {
  display: flex;
  align-items: center;
  flex: none;
  gap: 0.9rem;
  padding-right: 0.9rem;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-950);
  white-space: nowrap;
}

.marquee-item svg {
  width: 15px;
  height: 15px;
  fill: var(--vermillion);
  flex: none;
}

.marquee-arrow {
  color: var(--vermillion);
  font-weight: 400;
  text-transform: none;
}

.marquee-sep {
  color: var(--vermillion);
  flex: none;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    width: 100%;
  }

  .marquee-seq {
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }

  .marquee-seq:last-of-type {
    display: none;
  }
}

/* ---------- Section scaffolding ---------- */

section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.marquee,
.hero {
  padding-block: initial;
}

.hero {
  padding-block: clamp(1.4rem, 3.2vh, 2.6rem);
}

.marquee {
  padding-block: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  margin: 0 0 0.8rem;
}

.section-title em {
  font-style: normal;
  color: var(--vermillion);
}

.section-title.on-dark em {
  color: var(--saffron);
}

.section-lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 44rem;
  margin: 0 0 2.6rem;
}

/* ---------- Search (flight enquiry -> WhatsApp) ---------- */

.search {
  background: var(--surface);
}

.search-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.search-intro .section-lede {
  margin-bottom: 1.6rem;
}

.routes-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.routes-label {
  width: 100%;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin-bottom: 0.15rem;
}

.route-chip {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-900);
  background: var(--surface-raised);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  cursor: pointer;
  transition: border-color 150ms var(--ease-out), background-color 150ms var(--ease-out), color 150ms var(--ease-out);
}

.route-chip:hover {
  border-color: var(--green-800);
  background: var(--green-tint);
}

.route-chip.is-picked {
  background: var(--green-950);
  border-color: var(--green-950);
  color: var(--on-dark);
}

.search-form {
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  display: grid;
  gap: 1.4rem;
  box-shadow: 0 20px 48px oklch(0.24 0.045 160 / 0.07);
}

.search-triptype {
  display: flex;
  gap: 0.6rem;
}

.search-pill {
  position: relative;
  cursor: pointer;
}

.search-pill input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.search-pill span {
  display: inline-flex;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: background-color 150ms var(--ease-out), color 150ms var(--ease-out), border-color 150ms var(--ease-out);
}

.search-pill input:checked+span {
  background: var(--green-950);
  border-color: var(--green-950);
  color: var(--on-dark);
}

.search-pill input:focus-visible+span {
  outline: 3px solid var(--saffron);
  outline-offset: 2px;
}

.search-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.search-fields--route {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
}

.swap-btn {
  width: 42px;
  height: 42px;
  margin-bottom: 2px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--green-900);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 150ms var(--ease-out), transform 300ms var(--ease-out);
}

.swap-btn svg {
  width: 18px;
  height: 18px;
}

.swap-btn:hover {
  background: var(--green-tint);
}

.swap-btn.is-flipped {
  transform: rotate(180deg);
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.search-field[hidden] {
  display: none;
}

.search-field-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.search-field input[type="date"],
.search-field .combo-input {
  font: inherit;
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  width: 100%;
}

.search-field input[type="date"]:focus-visible,
.combo-input:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 1px;
}

.combo {
  position: relative;
}

.combo-list {
  position: absolute;
  z-index: 5;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: var(--surface-raised);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 28px oklch(0.2 0.03 160 / 0.16);
  max-height: 15rem;
  overflow-y: auto;
}

.combo-list[hidden] {
  display: none;
}

.combo-option {
  padding: 0.6rem 0.7rem;
  border-radius: 7px;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
}

.combo-option mark {
  background: none;
  color: var(--green-900);
  font-weight: 700;
}

.combo-option:hover,
.combo-option.is-active {
  background: var(--green-tint);
}

.combo-empty {
  padding: 0.6rem 0.7rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.stepper {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.4rem 0.5rem;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  width: fit-content;
}

.stepper-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--surface-raised);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: var(--green-900);
}

.stepper-btn:hover {
  background: var(--green-tint);
}

.stepper-value {
  min-width: 1.4rem;
  text-align: center;
  font-weight: 700;
}

.search-submit {
  width: 100%;
  justify-content: center;
}

.search-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ---------- How it works ---------- */

.steps {
  background: var(--surface-alt);
}

.step-grid {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 3.5vw, 3rem);
}

.step-grid::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 12%;
  right: 12%;
  border-top: 2px dashed var(--line);
}

.step {
  position: relative;
}

.step-badge {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 92px;
  border-radius: var(--arch);
  background: var(--saffron);
  color: var(--green-950);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 8px var(--surface-alt);
}

.step-badge > svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-count {
  position: absolute;
  top: -7px;
  right: -10px;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--vermillion);
  color: var(--on-dark);
  font-family: var(--font-display);
  font-size: 1.05rem;
  display: grid;
  place-items: center;
  border: 3px solid var(--surface-alt);
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  margin: 1.2rem 0 0.5rem;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 22rem;
}

/* ---------- Services bento ---------- */

.bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}

.svc-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-raised);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.svc-card--flights {
  grid-column: span 7;
}

.svc-card--visas {
  grid-column: span 5;
}

.svc-card--tours {
  grid-column: span 5;
}

.svc-card--counter {
  grid-column: span 7;
}

.svc-media {
  overflow: hidden;
}

.svc-media img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  background: var(--green-tint);
  transition: transform var(--dur) var(--ease-out);
}

.svc-card:hover .svc-media img {
  transform: scale(1.035);
}

.svc-body {
  padding: 1.4rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
}

.svc-body p {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.svc-link {
  margin-top: auto;
  align-self: flex-start;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-800);
  text-decoration: none;
  border-bottom: 2px solid var(--saffron);
  padding-bottom: 2px;
  transition: color 150ms var(--ease-out);
}

.svc-link:hover {
  color: var(--green-950);
}

.svc-card--counter {
  background: var(--green-950);
  border-color: var(--green-950);
  color: var(--on-dark);
  padding: 1.6rem 1.8rem 1.8rem;
}

.svc-card--counter h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  margin: 0 0 1.2rem;
  color: var(--on-dark);
}

.counter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2rem;
}

.counter-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--on-dark-soft);
}

.counter-list svg {
  width: 24px;
  height: 24px;
  flex: none;
  fill: var(--saffron);
}

.counter-list svg.ic-stroke {
  fill: none;
  stroke: var(--saffron);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Umrah band ---------- */

.umrah {
  position: relative;
  background: var(--green-950);
  color: var(--on-dark);
  overflow: hidden;
}

.umrah-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--saffron);
  opacity: 0.07;
  pointer-events: none;
}

.umrah-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.umrah-media {
  margin: 0;
  position: relative;
}

.umrah-media::before {
  content: "";
  position: absolute;
  inset: -14px -14px auto -14px;
  height: 100%;
  border: 1.5px solid oklch(0.78 0.14 75 / 0.45);
  border-radius: var(--arch);
  transform: translateY(14px);
  pointer-events: none;
}

.umrah-media img {
  border-radius: var(--arch);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  background: var(--green-900);
}

.umrah-copy p {
  color: var(--on-dark-soft);
  max-width: 38rem;
}

.umrah-copy strong {
  color: var(--on-dark);
}

.umrah-points {
  list-style: none;
  margin: 1.6rem 0 1.8rem;
  padding: 0;
  max-width: 32rem;
}

.umrah-points li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.2rem;
  border-bottom: 1px solid var(--line-dark);
  font-weight: 600;
}

.umrah-points li:first-child {
  border-top: 1px solid var(--line-dark);
}

.umrah-points svg {
  width: 22px;
  height: 22px;
  flex: none;
  fill: none;
  stroke: var(--saffron);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.umrah-timeline {
  list-style: none;
  counter-reset: tl;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 36rem;
}

.umrah-timeline li {
  counter-increment: tl;
  position: relative;
  background: oklch(0.29 0.055 158 / 0.75);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 0.85rem 0.95rem 0.9rem;
  font-size: 0.85rem;
}

.umrah-timeline li::before {
  content: counter(tl);
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-bottom: 0.45rem;
  border-radius: 50%;
  background: var(--saffron);
  color: var(--green-950);
  font-weight: 700;
  font-size: 0.75rem;
}

.umrah-timeline strong {
  display: block;
  color: var(--on-dark);
  font-size: 0.92rem;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.umrah-timeline span {
  color: var(--on-dark-soft);
  line-height: 1.4;
  display: block;
}

.umrah-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}

.link-on-dark {
  color: var(--on-dark);
  font-weight: 600;
  text-decoration-color: var(--saffron);
  text-underline-offset: 3px;
}

/* ---------- Tours ---------- */

.tours {
  background: var(--surface);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.4rem, 3vw, 2.4rem);
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.tour-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.tour-media img {
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  background: var(--line);
  transition: transform var(--dur) var(--ease-out);
}

.tour:hover .tour-media img {
  transform: scale(1.03);
}

.tour-tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--saffron);
  color: var(--green-950);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

.tour-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.45rem;
  margin: 1.1rem 0 0.5rem;
}

.tour-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 44rem;
}

.tours-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tours-banner > img {
  width: 100%;
  aspect-ratio: 16 / 5.5;
  min-height: 240px;
  object-fit: cover;
}

.tours-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, oklch(0.24 0.045 160 / 0.88) 18%, oklch(0.24 0.045 160 / 0.55) 52%, oklch(0.24 0.045 160 / 0.12) 100%);
}

.tours-banner-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.4rem;
  padding: clamp(1.4rem, 4vw, 3rem);
  color: var(--on-dark);
}

.tours-banner::after {
  z-index: 0;
}

.tours-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.15;
  margin: 0;
}

.tours-banner-sub {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--on-dark-soft);
  font-weight: 600;
}

/* ---------- Why + stats ---------- */

.why {
  background: var(--surface-alt);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.why-intro {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
}

.why-stamp {
  flex: none;
  width: 108px;
  height: 108px;
  margin: 0.3rem 0 0;
  border-radius: 50%;
  border: 2px dashed var(--vermillion);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
  color: var(--vermillion);
}

.why-stamp-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 0.85;
}

.why-stamp-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.why-statement {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.45;
  color: var(--ink);
  margin: 1rem 0 0;
}

.why-values {
  margin: 0;
  display: grid;
  gap: 0;
}

.why-value {
  display: flex;
  gap: 1.1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.why-value:first-child {
  padding-top: 0;
  border-top: none;
}

.why-value:last-child {
  padding-bottom: 0;
}

.why-value-icon {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-tint);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-value-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--green-800);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-values dt {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: var(--green-900);
}

.why-values dd {
  margin: 0;
  color: var(--ink-soft);
  max-width: 34rem;
}

.why-stats {
  list-style: none;
  margin: clamp(2.6rem, 5vw, 4rem) 0 0;
  padding: clamp(1.6rem, 3vw, 2.4rem) 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.why-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1;
  color: var(--green-900);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  max-width: 13rem;
}

/* ---------- FAQ ---------- */

.faq {
  background: var(--surface);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  column-gap: 3.5rem;
  align-items: start;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0.2rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex: none;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--green-800);
  border-bottom: 2px solid var(--green-800);
  transform: rotate(45deg);
  transition: transform 220ms var(--ease-out);
}

.faq-item[open] summary::after {
  transform: rotate(225deg);
}

.faq-item p {
  margin: 0 0 1.3rem;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ---------- Branches ---------- */

.branches {
  background: var(--surface-alt);
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}

.branch {
  position: relative;
  background: var(--surface-raised);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.6rem 1.5rem;
  border: 1px solid var(--line);
  overflow: hidden;
}

.branch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--saffron), var(--vermillion));
}

.branch h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  margin: 0 0 0.6rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.branch-tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vermillion);
}

.branch-address {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.branch-phones {
  list-style: none;
  margin: 0 0 0.8rem;
  padding: 0;
}

.branch-phones a {
  display: inline-block;
  padding: 0.2rem 0;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}

.branch-phones a:hover {
  color: var(--green-800);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.branch-hours {
  display: inline-block;
  margin: 0 0 1.2rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: var(--green-tint);
  color: var(--green-900);
  font-size: 0.8rem;
  font-weight: 700;
}

.branch-directions {
  display: inline-block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green-800);
  text-decoration: none;
  border-bottom: 2px solid var(--saffron);
  padding-bottom: 2px;
}

.branch-directions:hover {
  color: var(--green-950);
}

/* ---------- Closing CTA band ---------- */

.cta-band {
  position: relative;
  background: var(--saffron);
  color: var(--green-950);
  overflow: hidden;
  text-align: center;
}

.cta-arcs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: oklch(0.24 0.045 160 / 0.18);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 0.8rem;
  max-width: 24ch;
}

.cta-title em {
  font-style: normal;
  color: var(--vermillion);
}

.cta-lede {
  margin: 0 0 1.8rem;
  font-size: 1.08rem;
  font-weight: 500;
  color: oklch(0.3 0.05 120);
  max-width: 38rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.cta-alt {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.cta-alt a {
  color: var(--green-950);
  text-decoration-color: var(--vermillion);
  text-underline-offset: 3px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--green-950);
  color: var(--on-dark-soft);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
}

.footer-brand img {
  margin-bottom: 1rem;
}

.footer-lockup {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.footer-lockup strong {
  color: var(--on-dark);
  letter-spacing: 0.12em;
}

.footer-lockup span {
  font-size: 0.85rem;
}

.site-footer h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--on-dark);
  margin: 0 0 1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer a {
  color: var(--on-dark-soft);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--on-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-family em {
  font-style: italic;
  color: var(--saffron);
}

.footer-note {
  margin-top: 1.2rem;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 1.2rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.85rem;
}

.footer-legal p {
  margin: 0;
}

/* ---------- Mobile call bar ---------- */

.mobile-callbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-callbar);
  gap: 0.6rem;
  padding: 0.6rem 0.9rem calc(0.6rem + env(safe-area-inset-bottom));
  background: oklch(0.24 0.045 160 / 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-dark);
}

.mobile-callbar .btn {
  flex: 1;
  justify-content: center;
  padding-block: 0.9rem;
}

/* ---------- Hero entrance (runs once, never gates content) ---------- */

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-copy>* {
  animation: rise-in 600ms var(--ease-out) both;
}

.hero-copy>*:nth-child(2) {
  animation-delay: 70ms;
}

.hero-copy>*:nth-child(3) {
  animation-delay: 140ms;
}

.hero-copy>*:nth-child(4) {
  animation-delay: 210ms;
}

.hero-copy>*:nth-child(5) {
  animation-delay: 280ms;
}

.hero-copy>*:nth-child(6) {
  animation-delay: 350ms;
}

.hero-stage {
  animation: rise-in 700ms var(--ease-out) 150ms both;
}

/* ---------- Reveal motion ---------- */

html.js .reveal {
  opacity: 0.001;
  transform: translateY(18px);
  transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}

html.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-copy>*,
  .hero-stage {
    animation: none;
  }

  .stamp-ring {
    animation: none;
  }

  .svc-card:hover .svc-media img,
  .tour:hover .tour-media img {
    transform: none;
  }

  .btn,
  .site-nav a,
  .swap-btn {
    transition: none;
  }

  .faq-item summary::after {
    transition: none;
  }
}

/* ---------- Responsive ---------- */

/* 7 nav links + WhatsApp/Call need real width; hand over to
   the hamburger well before a cramped wrap */
@media (max-width: 1200px) {
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-inner {
    gap: 0.75rem;
  }
}

@media (max-width: 1020px) {

  .svc-card--flights,
  .svc-card--visas,
  .svc-card--tours,
  .svc-card--counter {
    grid-column: span 6;
  }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.2rem;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 8vw, 2.8rem);
  }

  .hero-stage {
    max-width: 30rem;
    margin-inline: auto;
    padding-top: 1.4rem;
  }

  .hero-photo-wrap {
    width: min(300px, 100%);
  }

  .hero-photo img {
    max-height: 42vh;
  }

  .hero-stamp {
    width: 88px;
    height: 88px;
    left: -0.5rem;
    bottom: 1.4rem;
  }

  .hero-stamp > img {
    width: 36px;
  }

  .hero-stage-caption {
    margin-top: 1rem;
  }

  .search-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .step-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .step-grid::before {
    top: 0;
    bottom: 0;
    left: 38px;
    right: auto;
    border-top: none;
    border-left: 2px dashed var(--line);
  }

  .step {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    column-gap: 1.2rem;
  }

  .step-badge {
    grid-row: 1 / 3;
  }

  .step h3 {
    margin-top: 0.4rem;
  }

  .svc-card--flights,
  .svc-card--visas,
  .svc-card--tours,
  .svc-card--counter {
    grid-column: span 12;
  }

  .counter-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .umrah-grid,
  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .umrah-media {
    max-width: 26rem;
  }

  .umrah-timeline {
    grid-template-columns: minmax(0, 1fr);
    max-width: 26rem;
  }

  .why-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tours-banner > img {
    aspect-ratio: auto;
    height: 320px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 700px) {
  :root {
    --callbar-h: 68px;
  }

  .header-actions {
    display: none;
  }

  .mobile-callbar {
    display: flex;
  }

  body {
    padding-bottom: 68px;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-fields--route {
    grid-template-columns: minmax(0, 1fr);
  }

  .swap-btn {
    justify-self: center;
    transform: rotate(90deg);
  }

  .swap-btn.is-flipped {
    transform: rotate(270deg);
  }
}

@media (min-width: 1201px) {
  .mobile-nav {
    display: none !important;
  }
}
