/* ==========================================================================
   Come To Pakistan — design system
   Tokens mirror the Figma variables (Come To Pakistan — Website & Admin Panel).
   ========================================================================== */

:root {
  /* Surfaces */
  --bg-deep: #04140e;
  --bg-surface: #082019;
  --bg-elevated: #0d2e24;
  --bg-glass: #123a2d;

  /* Borders */
  --border-subtle: #1e4a3b;
  --border-gold: #8a7327;

  /* Text */
  --text-primary: #ffffff;
  --text-cream: #f7f3ea;
  --text-muted: #9bb3a8;
  --text-ink: #0b1f19;

  /* Accents */
  --gold: #d4af37;
  --gold-soft: #e8c766;
  --brand-primary: #0b6e4f;
  --brand-light: #2fbe8a;

  /* Radii */
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Effects */
  --shadow-card: 0 16px 40px -8px rgba(5, 23, 18, 0.28);
  --glow-gold: 0 8px 30px -4px rgba(212, 176, 56, 0.35);

  /* Layout */
  --container: 1280px;
  --gutter: 80px;
  --nav-h: 98px;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

/* --------------------------------------------------------------- reset --- */

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Anchored jump-nav targets must clear the sticky header. */
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text-cream);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
[hidden] { display: none !important; }
ul, ol { padding: 0; list-style: none; }

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--gold);
  color: var(--text-ink);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-weight: 600;
  transition: top .18s ease;
}
.skip-link:focus { top: 16px; }

/* ----------------------------------------------------------- primitives --- */

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
.eyebrow--gold { border-color: var(--border-gold); padding: 9px 18px; }
.eyebrow--gold::before { width: 6px; height: 6px; }
.eyebrow--plain::before { display: none; }

.display {
  font-size: 72px;
  line-height: 1.08;
  letter-spacing: -2.2px;
  font-weight: 800;
  color: var(--text-primary);
}
.display .alt {
  display: block;
  font-weight: 300;
  color: var(--gold-soft);
}

.section-title {
  font-size: 54px;
  line-height: 1.18;
  letter-spacing: -1.6px;
  font-weight: 800;
  color: var(--text-primary);
}
.section-title .alt {
  display: block;
  font-weight: 300;
  color: var(--gold-soft);
}

.lead {
  font-size: 18px;
  line-height: 1.68;
  color: var(--text-muted);
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.section-head .lead { max-width: 720px; }

.section { padding-block: 110px; }
.section--surface { background: var(--bg-surface); }
.section--deep { background: var(--bg-deep); }

.h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.32;
  color: var(--text-primary);
}
.h2-sm {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.3;
  color: var(--text-primary);
}
.muted { color: var(--text-muted); }
.small { font-size: 13px; line-height: 1.58; }
.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ------------------------------------------------------------- buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 17px 34px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.32;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease,
    border-color .18s ease, color .18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(90deg, var(--gold-soft), #b89121);
  color: var(--text-ink);
  box-shadow: var(--glow-gold);
}
.btn--gold:hover { box-shadow: 0 12px 34px -4px rgba(212, 176, 56, 0.48); }

.btn--ghost {
  background: var(--bg-glass);
  border-color: var(--border-gold);
  color: var(--gold-soft);
}
.btn--ghost:hover { border-color: var(--gold-soft); background: #16452f; }

.btn--outline {
  background: transparent;
  border-color: var(--border-subtle);
  color: var(--text-cream);
}
.btn--outline:hover { border-color: var(--brand-light); color: var(--brand-light); }

.btn--sm { padding: 13px 26px; }
.btn--block { display: flex; width: 100%; }

.link-gold {
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.link-gold:hover { color: var(--gold); }

/* ----------------------------------------------------------------- nav --- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 32, 25, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: var(--nav-h);
  padding-block: 22px;
}

.logo { display: inline-flex; align-items: center; gap: 12px; flex: none; }
.logo__mark {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: linear-gradient(90deg, #2ebf8a, #0a5c42);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.logo__mark svg { width: 22px; height: 22px; display: block; }
.logo__wordmark { display: flex; flex-direction: column; }
.logo__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
  white-space: nowrap;
}

/* The Urdu line of the mark. Isolated so the bidi algorithm cannot pull the
   Latin lines around it. */
.logo__ar {
  display: block;
  font-family: "Noto Naskh Arabic", var(--font);
  font-size: 13px;
  line-height: 1.4;
  color: var(--gold-soft);
  white-space: nowrap;
  /* rtl so the glyphs order correctly; aligned to the page, not to itself, so
     it sits flush with the Latin lines above and below it. */
  direction: rtl;
  unicode-bidi: isolate;
  text-align: left;
}
[dir="rtl"] .logo__ar { text-align: right; }
.logo__tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1.8px;
  color: var(--gold);
  white-space: nowrap;
}

.nav__links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
}
.nav__links a { color: var(--text-cream); white-space: nowrap; transition: color .16s ease; }
.nav__links a:hover { color: var(--gold-soft); }
.nav__links a[aria-current="page"] { color: var(--gold-soft); }

.nav__cta { display: flex; align-items: center; gap: 14px; flex: none; }
.nav__cta .btn { padding: 12px 24px; }

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: none;
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-cream);
  position: relative;
  transition: background .16s ease;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text-cream);
  transition: transform .2s ease, top .2s ease;
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

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

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
  padding-block: 140px 0;
  min-height: 880px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 620px at 50% 0%, rgba(47, 190, 138, 0.22), transparent 65%),
    linear-gradient(180deg, rgba(4, 20, 14, 0.55) 0%, rgba(4, 20, 14, 0.82) 55%, var(--bg-deep) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.hero__inner .lead { max-width: 700px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; padding-top: 10px; }

.stat-strip {
  position: relative;
  z-index: 1;
  margin-top: 74px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(18, 58, 45, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-xl);
  padding: 26px 40px;
  box-shadow: var(--shadow-card);
}
.stat { text-align: center; padding: 0 8px; }
.stat__value {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
  color: var(--gold-soft);
}
.stat__label { font-size: 14px; color: var(--text-muted); margin-top: 5px; }

/* ------------------------------------------------------------ page head --- */

.page-head {
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
  padding-block: 74px 86px;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}
.page-head::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -110px;
  width: 760px;
  height: 380px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(47, 190, 138, 0.20), transparent);
  pointer-events: none;
}
.page-head__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.page-head .lead { max-width: 740px; }

.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.58;
}
.breadcrumb a:hover { color: var(--gold-soft); }

/* ---------------------------------------------------------------- grid --- */

.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* --------------------------------------------------- destination cards --- */

.card-dest {
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.card-dest:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 26px 54px -10px rgba(5, 23, 18, 0.5);
}
.card-dest__photo {
  position: relative;
  height: 230px;
  display: flex;
  align-items: flex-end;
  padding: 0 0 18px 18px;
  overflow: hidden;
  background: linear-gradient(147deg, #126b4f 0%, #072b20 43%, #05140f 71%);
}
.card-dest__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card-dest__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 20, 14, 0.05) 30%, rgba(4, 20, 14, 0.78) 100%);
}
.card-dest:hover .card-dest__photo img { transform: scale(1.06); }
.tag {
  position: relative;
  z-index: 1;
  background: var(--gold);
  color: var(--text-ink);
  border-radius: var(--r-pill);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.3;
  text-transform: uppercase;
}
.card-dest__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 24px 26px;
}
.card-dest__title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--text-primary);
}
.card-dest__body p { color: var(--text-muted); }

/* ---------------------------------------------------- university cards --- */

.card-uni {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 26px;
  transition: transform .2s ease, border-color .2s ease;
}
.card-uni:hover { transform: translateY(-4px); border-color: var(--border-gold); }
.card-uni__top { display: flex; align-items: center; gap: 14px; }
.crest {
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: var(--r-md);
  background: var(--gold);
  color: var(--text-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.crest--logo {
  background: var(--text-cream);
  overflow: hidden;
  padding: 0;
}
.crest--logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-uni:hover .crest--logo { box-shadow: 0 0 0 1px var(--border-gold); }

.card-uni__name { display: block; font-size: 21px; font-weight: 700; letter-spacing: -0.3px; line-height: 1.32; color: var(--text-primary); }
.card-uni__sub { display: block; font-size: 13px; line-height: 1.58; color: var(--text-muted); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--brand-primary);
  color: var(--brand-light);
  border-radius: var(--r-pill);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.32;
}
.chip--muted { color: var(--text-muted); }
.card-uni__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  font-size: 14px;
  font-weight: 600;
}
.card-uni__price { flex: 1; color: var(--gold-soft); }
.card-uni__apply { color: var(--text-cream); }

/* ------------------------------------------------------- feature cards --- */

.card-feature {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  transition: transform .2s ease, border-color .2s ease;
}
.card-feature:hover { transform: translateY(-4px); border-color: var(--border-gold); }
.card-feature__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.card-feature__icon { color: var(--text-ink); }
.card-feature__icon svg { width: 24px; height: 24px; }
.card-feature p { color: var(--text-muted); }

/* --------------------------------------------------------- generic card --- */

.panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 28px;
}
.panel--glass { background: var(--bg-glass); }
.panel--gold { border-color: var(--border-gold); }
.panel__title { font-size: 21px; font-weight: 700; letter-spacing: -0.3px; color: var(--text-primary); }

.check-list { display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-cream);
  line-height: 1.6;
}
.check-list li::before {
  content: "";
  flex: none;
  margin-top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand-primary);
  border: 1px solid var(--brand-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.4l2.6 2.6L12 5.6' fill='none' stroke='%232fbe8a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.dot-list { display: flex; flex-direction: column; gap: 12px; }
.dot-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-muted);
  line-height: 1.6;
}
.dot-list li::before {
  content: "";
  flex: none;
  margin-top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ----------------------------------------------------------- study grid --- */

.split {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 72px;
  align-items: start;
}
.discipline {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 24px;
  transition: border-color .2s ease, transform .2s ease;
}
.discipline:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.discipline__name { font-size: 17px; font-weight: 700; color: var(--text-primary); line-height: 1.4; }
.discipline__desc { font-size: 14px; color: var(--text-muted); margin-top: 8px; }
.discipline__unis { font-size: 12px; color: var(--gold-soft); letter-spacing: 0.4px; margin-top: 10px; }

.fee-highlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: 26px 28px;
}
.fee-highlight .stat__value { font-size: 28px; text-align: start; }
.fee-highlight .stat { text-align: start; padding: 0; }
.fee-highlight .stat__label { font-size: 13px; }

.affordability {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: center;
}

/* --------------------------------------------------------------- table --- */

.price-lg {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--gold-soft);
}

.fee-rows { display: flex; flex-direction: column; }
.fee-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
}
.fee-row:last-child { border-bottom: 0; }
.fee-row span:first-child { color: var(--text-muted); }
.fee-row span:last-child { color: var(--text-primary); font-weight: 600; }

/* --------------------------------------------------------------- forms --- */

.field { display: flex; flex-direction: column; gap: 8px; }
.field > label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-cream);
}
.input,
.select,
.textarea {
  width: 100%;
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 14px 16px;
  color: var(--text-cream);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.textarea { min-height: 130px; resize: vertical; }
.input::placeholder, .textarea::placeholder { color: #6d8a7e; }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--brand-light);
  box-shadow: 0 0 0 3px rgba(47, 190, 138, 0.16);
}
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 4.5L6 8.5L10 4.5' fill='none' stroke='%239bb3a8' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}
.select option { background: var(--bg-surface); color: var(--text-cream); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note {
  font-size: 13px;
  color: var(--text-muted);
}
.form-status {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-light);
}
.form-status:empty { display: none; }

.checkbox { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-cream); cursor: pointer; }
.checkbox input { width: 18px; height: 18px; accent-color: var(--brand-light); }

/* --------------------------------------------------------------- chips --- */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.filter-chip {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-cream);
  cursor: pointer;
  transition: all .16s ease;
  white-space: nowrap;
}
.filter-chip:hover { border-color: var(--border-gold); }
.filter-chip[aria-pressed="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text-ink);
}

/* ----------------------------------------------------------- jump nav --- */

.jump-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: rgba(8, 32, 25, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.jump-nav ul {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-block: 10px;
  scrollbar-width: none;
}
.jump-nav ul::-webkit-scrollbar { display: none; }
.jump-nav a {
  display: block;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all .16s ease;
}
.jump-nav a:hover { color: var(--gold-soft); background: var(--bg-glass); }

/* -------------------------------------------------------------- footer --- */

.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding-block: 76px 40px;
}
.footer__top {
  display: grid;
  grid-template-columns: 380px repeat(4, 1fr);
  gap: 64px;
  align-items: start;
}
.footer__brand { display: flex; flex-direction: column; gap: 18px; }
.footer__brand p { font-size: 13px; line-height: 1.58; color: var(--text-muted); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px;
  height: 38px;
  border-radius: var(--r-pill);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .16s ease;
}
.socials a:hover {
  color: var(--text-ink);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}
.socials svg { width: 17px; height: 17px; display: block; }

.footer__wa a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-light);
}
.footer__wa a:hover { color: var(--gold-soft); }
.footer__wa svg { width: 18px; height: 18px; flex: none; }

/* --------------------------------------------------- language switcher --- */

.lang { position: relative; flex: none; }
.lang > summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-subtle);
  background: var(--bg-glass);
  color: var(--text-cream);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: border-color .16s ease, color .16s ease;
}
.lang > summary::-webkit-details-marker { display: none; }
.lang > summary:hover { border-color: var(--border-gold); color: var(--gold-soft); }
.lang > summary svg { width: 15px; height: 15px; flex: none; }

.lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  min-width: 160px;
  z-index: 110;
  display: flex;
  flex-direction: column;
  padding: 6px;
  border-radius: var(--r-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}
.lang__menu a {
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 14px;
  color: var(--text-cream);
  white-space: nowrap;
  transition: background .14s ease, color .14s ease;
}
.lang__menu a:hover { background: var(--bg-glass); color: var(--gold-soft); }
.lang__menu a[aria-current="true"] { color: var(--gold-soft); font-weight: 600; }

/* ----------------------------------------------------- share chooser --- */

.share {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.share__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 20, 14, 0.76);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.share__panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: 30px 26px 24px;
  box-shadow: 0 30px 70px -12px rgba(0, 0, 0, 0.7);
}
.share__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--text-muted);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.share__close:hover { color: var(--gold-soft); background: var(--bg-glass); }
.share__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--text-primary);
  padding-right: 34px;
}
.share__sub { font-size: 14px; color: var(--text-muted); margin-top: 8px; }

.share__option {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 13px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  background: var(--bg-glass);
  transition: border-color .16s ease, transform .16s ease, background .16s ease;
}
.share__option:first-of-type { margin-top: 22px; }
.share__option:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
  background: #16452f;
}
.share__icon {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: var(--r-md);
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  color: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.share__icon svg { width: 20px; height: 20px; }
.share__option[data-share="whatsapp"] .share__icon { background: #25d366; color: #04140e; border-color: #25d366; }
.share__label { display: block; font-size: 15px; font-weight: 600; color: var(--text-primary); }
.share__note { display: block; font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }
.share__status { margin-top: 16px; font-size: 13px; color: var(--brand-light); min-height: 18px; }

/* ------------------------------------------------------- WhatsApp FAB --- */

.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  border-radius: var(--r-pill);
  background: #25d366;
  color: #04140e;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 10px 30px -6px rgba(0, 0, 0, 0.55);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px -6px rgba(37, 211, 102, 0.5);
}
.wa-fab svg { width: 24px; height: 24px; flex: none; }
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__col h3 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer__col a { font-size: 13px; line-height: 1.58; color: var(--text-muted); transition: color .16s ease; }
.footer__col a:hover { color: var(--gold-soft); }
.footer__bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  line-height: 1.58;
  color: var(--text-muted);
}
.footer__bottom p:first-child { flex: 1; }

.footer__credit {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  font-size: 12.5px;
  line-height: 1.58;
  color: var(--text-muted);
}
.footer__credit p:first-child { flex: 1; }
.footer__credit a { color: var(--gold-soft); font-weight: 600; }
.footer__credit a:hover { color: var(--gold); }

/* ---------------------------------------------------------- CTA banner --- */

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
  padding-block: 110px;
  text-align: center;
}
.cta-band__media { position: absolute; inset: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.cta-band__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 420px at 50% 20%, rgba(212, 176, 56, 0.16), transparent 70%),
    linear-gradient(180deg, rgba(8, 32, 25, 0.7), rgba(4, 20, 14, 0.92));
}
.cta-band__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.cta-band__inner .lead { max-width: 680px; }

/* ------------------------------------------------------ detail layouts --- */

.detail-hero {
  position: relative;
  overflow: hidden;
  padding-block: 40px 56px;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background: var(--bg-surface);
}
.detail-hero__media { position: absolute; inset: 0; }
.detail-hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.detail-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 20, 14, 0.55) 0%, rgba(4, 20, 14, 0.86) 70%, var(--bg-deep) 100%);
}
.detail-hero__inner { position: relative; width: 100%; }
.detail-hero h1 {
  font-size: 68px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.08;
  color: var(--text-primary);
  margin-top: 12px;
}
.detail-hero .lead { max-width: 680px; margin-top: 18px; }

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 34px;
}
.fact__label { font-size: 11px; font-weight: 700; letter-spacing: 1.8px; color: var(--gold-soft); text-transform: uppercase; }
.fact__value { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-top: 4px; }

.body-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 96px;
  align-items: start;
}
.block { display: flex; flex-direction: column; gap: 16px; }
.block h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.25;
  color: var(--text-primary);
}
.block p { color: var(--text-muted); }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 1px solid var(--border-subtle);
  transition: transform .3s ease;
}
.gallery a:hover img { transform: scale(1.03); }

.itinerary { display: flex; flex-direction: column; gap: 14px; }
.day {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: start;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 16px 20px;
}
.day__num { font-size: 13px; font-weight: 700; color: var(--gold-soft); letter-spacing: 0.6px; padding-top: 2px; }
.day__title { font-size: 17px; font-weight: 600; color: var(--text-primary); }
.day__desc { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

.sticky-panel { position: sticky; top: calc(var(--nav-h) + 24px); display: flex; flex-direction: column; gap: 20px; }

/* ------------------------------------------------------------- stepper --- */

.stepper {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}
.stepper ul {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-block: 18px;
  scrollbar-width: none;
}
.stepper ul::-webkit-scrollbar { display: none; }
.stepper li { display: flex; align-items: center; gap: 12px; flex: none; padding-inline-end: 12px; }
.step__num {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}
.step--done .step__num { background: var(--brand-primary); border-color: var(--brand-light); color: var(--brand-light); }
.step--active .step__num { background: var(--gold); border-color: var(--gold); color: var(--text-ink); }
.step__label { font-size: 10px; font-weight: 700; letter-spacing: 1.6px; color: var(--text-muted); text-transform: uppercase; }
.step__name { font-size: 14px; font-weight: 600; color: var(--text-cream); white-space: nowrap; }
.step--active .step__name { color: var(--gold-soft); }

/* ------------------------------------------------------------- posts --- */

.post {
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease;
}
.post:hover { transform: translateY(-5px); border-color: var(--border-gold); }
.post__cover { position: relative; height: 180px; overflow: hidden; display: flex; align-items: flex-end; padding: 0 0 14px 14px; }
.post__cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 20, 14, 0.1) 30%, rgba(4, 20, 14, 0.8) 100%);
}
.post:hover .post__cover img { transform: scale(1.06); }
.post__body { display: flex; flex-direction: column; gap: 10px; padding: 22px 24px 24px; flex: 1; }
.post__title { font-size: 19px; font-weight: 700; line-height: 1.36; color: var(--text-primary); }
.post__body p { font-size: 14px; color: var(--text-muted); }
.post__meta { margin-top: auto; padding-top: 12px; font-size: 12px; color: var(--gold-soft); letter-spacing: 0.4px; }

/* --------------------------------------------------------------- auth --- */

.auth {
  display: grid;
  grid-template-columns: 620px 1fr;
  min-height: 100vh;
}
.auth__brand {
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.auth__brand img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
}
.auth__brand::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8, 32, 25, 0.72), rgba(4, 20, 14, 0.94));
}
.auth__brand > * { position: relative; z-index: 1; }
.auth__brand h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.18;
  color: var(--text-primary);
}
.auth__form {
  background: var(--bg-deep);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth__form-inner { width: 100%; max-width: 420px; display: flex; flex-direction: column; gap: 20px; }
.tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-pill);
  align-self: flex-start;
}
.tabs button {
  padding: 9px 22px;
  border-radius: var(--r-pill);
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .16s ease;
}
.tabs button[aria-selected="true"] { background: var(--gold); color: var(--text-ink); }

/* --------------------------------------------------------------- legal --- */

.legal { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 72px; align-items: start; }
.legal__toc { position: sticky; top: calc(var(--nav-h) + 24px); display: flex; flex-direction: column; gap: 12px; }
.legal__toc a { font-size: 13px; color: var(--text-muted); transition: color .16s ease; }
.legal__toc a:hover { color: var(--gold-soft); }
.legal__content { display: flex; flex-direction: column; gap: 40px; }
.legal__content section { display: flex; flex-direction: column; gap: 14px; }
.legal__content h2 { font-size: 24px; font-weight: 700; letter-spacing: -0.5px; color: var(--text-primary); }
.legal__content p { color: var(--text-muted); }

/* ------------------------------------------------------------ partners --- */

.partners { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.partner { display: flex; align-items: center; gap: 14px; }
.partner__crest {
  width: 40px;
  height: 40px;
  flex: none;
  border-radius: var(--r-md);
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.partner__label { font-size: 12px; color: var(--text-muted); }
.partner__name { font-size: 15px; font-weight: 600; color: var(--text-cream); }

/* ------------------------------------------------------ right-to-left --- */

[dir="rtl"] body {
  font-family: "Noto Naskh Arabic", var(--font);
}
/* Latin proper nouns inside Arabic copy keep the Latin face. */
[dir="rtl"] .logo__name,
[dir="rtl"] .logo__tag,
[dir="rtl"] .card-uni__name,
[dir="rtl"] .discipline__unis,
[dir="rtl"] .footer__wa { font-family: var(--font); }

[dir="rtl"] .skip-link { left: auto; right: 16px; }
[dir="rtl"] .wa-fab { right: auto; left: 22px; }
[dir="rtl"] .share__close { right: auto; left: 16px; }
[dir="rtl"] .share__title { padding-right: 0; padding-left: 34px; }
[dir="rtl"] .card-dest__photo { padding: 0 18px 18px 0; }
[dir="rtl"] .post__cover { padding: 0 14px 14px 0; }
[dir="rtl"] .select {
  background-position: left 16px center;
  padding-right: 16px;
  padding-left: 40px;
}
[dir="rtl"] .nav__toggle span::before,
[dir="rtl"] .nav__toggle span::after { left: auto; right: 0; }

/* Runs of Latin text and figures inside RTL copy need their own direction,
   or the bidi algorithm reorders them: "15+" renders as "+15", and a trailing
   full stop jumps to the head of the line. Isolating them fixes both. */
[dir="rtl"] .stat__value,
[dir="rtl"] .fact__value,
[dir="rtl"] .card-uni__price,
[dir="rtl"] .price-lg,
[dir="rtl"] .discipline__unis,
[dir="rtl"] .post__meta,
[dir="rtl"] .day__num,
[dir="rtl"] .partner__crest,
[dir="rtl"] .crest,
[dir="rtl"] .fee-row span:last-child,
[dir="rtl"] .logo__name,
[dir="rtl"] .logo__tag,
[dir="rtl"] .footer__wa a,
[dir="rtl"] .share__note,
[dir="rtl"] address {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: start;
}

/* Arrows in CTA labels are authored as ← in the Arabic dictionary, so nothing
   needs flipping here; only the icon-bearing rules above are physical. */

@media (max-width: 768px) {
  [dir="rtl"] .wa-fab { left: 16px; right: auto; }
}

/* -------------------------------------------------------------- reveal --- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* =====================================================================
   Responsive
   ===================================================================== */

@media (max-width: 1200px) {
  :root { --gutter: 48px; }
  .display { font-size: 60px; letter-spacing: -1.8px; }
  .section-title { font-size: 44px; letter-spacing: -1.2px; }
  .detail-hero h1 { font-size: 54px; letter-spacing: -1.5px; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .body-split { grid-template-columns: minmax(0, 1fr) 340px; gap: 48px; }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; max-width: 460px; }
  .auth { grid-template-columns: 1fr 1fr; }
  .legal { grid-template-columns: 220px minmax(0, 1fr); gap: 48px; }
}

/* The language switcher costs the bar ~90px; tighten up before it overflows. */
@media (max-width: 1280px) {
  .nav__inner { gap: 20px; }
  .nav__links { gap: 20px; }
  .nav__cta { gap: 10px; }
  .nav__cta .btn { padding: 12px 18px; }
  .lang > summary { padding: 8px 10px; }
  .lang > summary span { display: none; }
}

@media (max-width: 1024px) {
  .nav__links,
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__inner { justify-content: space-between; gap: 16px; }

  .nav.is-open .nav__links,
  .nav.is-open .nav__cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
    order: 3;
    padding-bottom: 18px;
  }
  .nav.is-open .nav__inner { flex-wrap: wrap; }
  .nav.is-open .nav__links a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 15px;
  }
  .nav.is-open .nav__cta { gap: 12px; padding-top: 14px; align-items: stretch; }
  .nav.is-open .lang { width: 100%; }
  .nav.is-open .lang > summary { justify-content: center; }
  .nav.is-open .lang > summary span { display: inline; }
  .nav.is-open .lang__menu { position: static; margin-top: 8px; min-width: 0; }
  .nav.is-open .nav__cta .btn { width: 100%; }

  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .partners { grid-template-columns: repeat(2, 1fr); }
  .body-split { grid-template-columns: 1fr; gap: 44px; }
  .sticky-panel { position: static; }
  .legal { grid-template-columns: 1fr; gap: 32px; }
  .legal__toc { position: static; flex-direction: row; flex-wrap: wrap; gap: 8px 20px; }
  .auth { grid-template-columns: 1fr; min-height: 0; }
  .auth__brand { min-height: 320px; padding: 40px 32px; }
  .auth__form { padding: 44px 32px; }
  .hero { min-height: 0; padding-top: 96px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
}

@media (max-width: 768px) {
  :root { --gutter: 22px; }

  body { font-size: 15px; }
  .section { padding-block: 68px; }
  .display { font-size: 40px; letter-spacing: -1.2px; line-height: 1.12; }
  .section-title { font-size: 32px; letter-spacing: -0.8px; line-height: 1.2; }
  .detail-hero h1 { font-size: 38px; letter-spacing: -1px; }
  .h2-sm, .block h2 { font-size: 24px; }
  .lead { font-size: 16px; }
  .card-dest__title { font-size: 32px; }
  .auth__brand h2 { font-size: 30px; }

  .grid, .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; gap: 20px; }
  .affordability { grid-template-columns: 1fr; gap: 22px; }
  .wa-fab { right: 16px; bottom: 16px; padding: 14px; }
  .wa-fab span { display: none; }

  .share { align-items: flex-end; padding: 0; }
  .share__panel {
    max-width: none;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    border-bottom: 0;
    padding: 26px 20px calc(24px + env(safe-area-inset-bottom));
    max-height: 88dvh;
  }
  .footer__col a { padding-block: 3px; }
  .form-row { grid-template-columns: 1fr; gap: 18px; }
  .fee-highlight { grid-template-columns: 1fr; gap: 16px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .partners { grid-template-columns: 1fr; }

  .page-head { padding-block: 44px 56px; }
  .hero { padding-top: 64px; }
  .hero__cta { width: 100%; flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .cta-band { padding-block: 68px; }
  .cta-band__inner .btn { width: 100%; }

  .stat-strip { padding: 24px 20px; border-radius: var(--r-lg); margin-top: 48px; }
  .stat__value { font-size: 24px; }
  .stat__label { font-size: 13px; }

  .facts { gap: 22px; }
  .day { grid-template-columns: 1fr; gap: 6px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer__credit { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer { padding-block: 56px 32px; }

  .detail-hero { min-height: 420px; padding-block: 32px 40px; }
  .panel { padding: 22px; }
  .card-dest__body { padding: 20px 20px 22px; }
  .btn { padding: 15px 26px; }
}

@media (max-width: 420px) {
  .display { font-size: 34px; }
  .section-title { font-size: 28px; }
  .card-dest__title { font-size: 28px; }
  .gallery { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
}
