@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600&family=Outfit:wght@300;400;500;600;700&family=Noto+Sans+Arabic:wght@300;400;500;600;700&display=swap');

:root {
  --color-background: #0C0B09;
  --color-foreground: #F0EAE0;
  --color-card: #161410;
  --color-card-foreground: #F0EAE0;
  --color-primary: #D4A843;
  --color-primary-foreground: #0C0B09;
  --color-secondary: #1E1B16;
  --color-secondary-foreground: #B8A898;
  --color-muted: #121009;
  --color-muted-foreground: #7A6E62;
  --color-accent: #C9922E;
  --color-border: #2A2620;
  --color-gold: #D4A843;
  --color-gold-light: #ECC96A;
  --color-navy: #0C0B09;
  --color-navy-card: #161410;
  --body-bg: #0C0B09;
  --body-fg: #F0EAE0;

  --font-display: 'Fraunces', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-arabic: 'Noto Sans Arabic', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--body-bg);
  color: var(--body-fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
[dir="rtl"] body, body.lang-ar { font-family: var(--font-arabic); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,p { margin: 0; }

.font-display { font-family: var(--font-display); }
.font-arabic { font-family: var(--font-arabic); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--body-bg); }
::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-gold-light); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.animate-fade-up { animation: fadeUp .7s ease forwards; }
.animate-fade-in { animation: fadeIn .5s ease forwards; }
.d-100 { animation-delay: .1s; } .d-200 { animation-delay: .2s; } .d-300 { animation-delay: .3s; }

/* ---------- Layout ---------- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container-narrow { padding: 0 1.5rem; } }

.section { padding: 6rem 0; }
.section-sm { padding: 5rem 0; }
.section-lg { padding: 8rem 0; }
.bg-muted { background: var(--color-muted); }
.bg-secondary { background: var(--color-secondary); }
.bg-card { background: var(--color-card); }
.border-y { border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.border-t { border-top: 1px solid var(--color-border); }
.border-b { border-bottom: 1px solid var(--color-border); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-grow { flex-grow: 1; }
.gap-1 { gap: .25rem; } .gap-2 { gap: .5rem; } .gap-3 { gap: .75rem; } .gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; } .gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; } .gap-10 { gap: 2.5rem; }
[dir="rtl"] .rtl-row-reverse { flex-direction: row-reverse; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.grid-5 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

.text-center { text-align: center; }
[dir="rtl"] .text-right-rtl { text-align: right; }
.muted { color: var(--color-secondary-foreground); }
.muted-2 { color: var(--color-muted-foreground); }
.gold { color: var(--color-gold); }
.lead { color: var(--color-secondary-foreground); line-height: 1.7; }
.max-w { max-width: 640px; margin: 0 auto; }

/* ---------- Typography ---------- */
/* Fixed breakpoint sizes (not a fluid clamp) to match the reference design's
   text-5xl sm:text-6xl lg:text-7xl / text-4xl lg:text-5xl scale exactly —
   a clamp() here was rendering noticeably smaller than the design on phones. */
.h1 { font-family: var(--font-display); font-weight: 700; font-size: 3rem; line-height: 1.1; color: var(--color-foreground); white-space: pre-line; }
@media (min-width: 640px) { .h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .h1 { font-size: 4.5rem; } }
.h2 { font-family: var(--font-display); font-weight: 700; font-size: 2.25rem; line-height: 1.15; color: var(--color-foreground); white-space: pre-line; }
@media (min-width: 1024px) { .h2 { font-size: 3rem; } }
.h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--color-foreground); }
.h4 { font-weight: 600; color: var(--color-foreground); }
.eyebrow { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--color-gold); border: 1px solid rgba(212,168,67,.3); background: rgba(212,168,67,.06); border-radius: 3px; padding: .35rem .8rem; }

/* ---------- Buttons ---------- */
.btn { display: inline-block; text-align: center; font-weight: 600; padding: 1rem 2rem; border-radius: 6px; transition: all .2s ease; border: 1px solid transparent; font-size: .95rem; }
.btn-primary { background: var(--color-gold); color: var(--color-primary-foreground); }
.btn-primary:hover { background: var(--color-gold-light); }
.btn-outline { border-color: rgba(240,234,224,.3); color: var(--color-foreground); background: transparent; }
.btn-outline:hover { border-color: var(--color-gold); color: var(--color-gold); }
.btn-sm { padding: .6rem 1.1rem; font-size: .85rem; border-radius: 5px; }
.btn-block { display: block; width: 100%; }

/* ---------- Cards ---------- */
.card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: 8px; transition: border-color .2s ease, background .2s ease; }
.card:hover { border-color: rgba(212,168,67,.35); }
.icon-box { width: 44px; height: 44px; border-radius: 6px; background: rgba(212,168,67,.1); border: 1px solid rgba(212,168,67,.2); display: flex; align-items: center; justify-content: center; color: var(--color-gold); flex-shrink: 0; }
.icon-box svg { width: 20px; height: 20px; }
.divider-line { width: 40px; height: 1px; background: rgba(212,168,67,.3); }

/* ---------- Navbar ---------- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all .3s ease; background: transparent; }
.navbar.scrolled { background: rgba(12,11,9,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--color-border); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-links { display: none; align-items: center; gap: 1.5rem; }
.nav-link { font-size: .9rem; font-weight: 500; color: var(--color-secondary-foreground); white-space: nowrap; transition: color .2s; }
.nav-link:hover, .nav-link.active { color: var(--color-gold); }
.nav-right { display: none; align-items: center; gap: .75rem; }
.lang-btn { font-size: .85rem; color: var(--color-secondary-foreground); border: 1px solid var(--color-border); border-radius: 5px; padding: .4rem .8rem; background: transparent; transition: all .2s; }
.lang-btn:hover { border-color: var(--color-gold); color: var(--color-gold); }
.mobile-only { display: flex; align-items: center; gap: .5rem; }
.hamburger { padding: .5rem; color: var(--color-foreground); background: transparent; border: none; }
@media (min-width: 1024px) {
  .nav-links, .nav-right { display: flex; }
  .mobile-only { display: none; }
}
.mobile-menu { position: fixed; inset: 0; z-index: 40; background: var(--body-bg); padding-top: 72px; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; padding: 1.5rem; border-top: 1px solid var(--color-border); }
.mobile-menu .nav-link { padding: .9rem 0; border-bottom: 1px solid rgba(42,38,32,.5); font-size: 1rem; }
@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* ---------- Logo ---------- */
.logo { display: flex; align-items: center; gap: .75rem; }
.logo img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(212,168,67,.3); }
.logo-text-en { display: flex; flex-direction: column; line-height: 1.15; gap: .15rem; }
.logo-name { font-family: 'Cinzel', serif; font-weight: 600; letter-spacing: .06em; font-size: .92rem; background: linear-gradient(135deg,#ECC96A 0%,#D4A843 45%,#B8882A 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-sub { font-family: 'Cinzel', serif; font-weight: 400; letter-spacing: .18em; font-size: .6rem; color: #9A8060; text-transform: uppercase; }
.logo-text-ar { font-family: var(--font-arabic); font-weight: bold; font-size: 1rem; background: linear-gradient(135deg,#ECC96A 0%,#D4A843 45%,#B8882A 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 20%, #2A2114 0%, var(--body-bg) 60%), linear-gradient(160deg,#161410 0%, #0C0B09 100%); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 75% 70%, rgba(212,168,67,.10), transparent 55%); }
.hero-content { position: relative; z-index: 10; max-width: 1280px; margin: 0 auto; padding: 6rem 1rem 4rem; text-align: center; }
.hero-cta-row { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .hero-cta-row { flex-direction: row; } }
.hero-cta-row .btn { width: 100%; }
@media (min-width: 640px) { .hero-cta-row .btn { width: auto; } }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; color: rgba(212,168,67,.6); }

/* ---------- Stats ---------- */
.stats-strip { background: var(--color-secondary); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.stats-grid { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; padding: 1.25rem 0; }
.stat-value { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; color: var(--color-gold); margin-bottom: .25rem; }
.stat-label { font-size: .85rem; color: var(--color-muted-foreground); }

/* ---------- Feature tiles (Why Afak preview) ---------- */
.feature-tiles { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--color-border); }
@media (min-width: 640px) { .feature-tiles { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .feature-tiles { grid-template-columns: repeat(3,1fr); } }
.feature-tile { background: var(--body-bg); padding: 2rem; transition: background .2s; }
.feature-tile:hover { background: var(--color-card); }

/* ---------- Destination cards ---------- */
.dest-card { position: relative; overflow: hidden; border-radius: 8px; background: var(--color-card); border: 1px solid var(--color-border); aspect-ratio: 4/3; display: block; }
@media (min-width: 640px) { .dest-card { aspect-ratio: 16/9; } }
.dest-card-bg { position: absolute; inset: 0; }
.dest-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,11,9,.95), rgba(12,11,9,.5) 55%, transparent); }
.dest-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; }
.dest-flag { font-size: 1.9rem; }

/* ---------- Process steps ---------- */
.process-grid { grid-template-columns: 1fr; }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(5,1fr); } }
.process-num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: rgba(212,168,67,.3); }

/* ---------- Testimonials ---------- */
.stars { color: var(--color-gold); display: flex; gap: .15rem; }
.stars svg { width: 15px; height: 15px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--color-border); padding: 1rem 0; }
.faq-q { width: 100%; background: none; border: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; color: var(--color-foreground); font-weight: 500; font-size: .92rem; padding: .5rem 0; }
[dir="rtl"] .faq-q { text-align: right; }
.faq-q svg { width: 16px; height: 16px; color: var(--color-gold); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { display: none; padding: .25rem 0 .75rem; color: var(--color-muted-foreground); font-size: .9rem; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-chip { font-size: .72rem; padding: .35rem 1rem; border-radius: 5px; border: 1px solid var(--color-border); color: var(--color-muted-foreground); background: transparent; transition: all .2s; }
.faq-chip.active, .faq-chip:hover { border-color: var(--color-gold); color: var(--color-gold); }
.faq-chip.active { background: var(--color-gold); color: var(--color-primary-foreground); border-color: var(--color-gold); }

/* ---------- Forms ---------- */
.field { margin-bottom: 0; }
.field label { display: block; font-size: .72rem; font-weight: 600; color: var(--color-muted-foreground); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--color-card); border: 1px solid var(--color-border); border-radius: 6px;
  padding: .8rem 1rem; font-size: .9rem; color: var(--color-foreground); outline: none; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--color-gold); }
.field textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.checkbox-row { display: flex; gap: .75rem; align-items: flex-start; }
.checkbox-row input { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--color-gold); flex-shrink: 0; }
.checkbox-row label { font-size: .78rem; color: var(--color-muted-foreground); line-height: 1.6; }

/* Cloudflare Turnstile widget — 'dark' + 'flexible' (set in app.js) already
   match the site's black background and full-width fields. Cloudflare doesn't
   allow recoloring the widget's own iframe (by design — a page can't spoof a
   captcha's chrome), so the closest we can get to the site's gold/black look
   is the same bordered "field" frame every other input already has. */
#cf-turnstile-container {
  width: 100%; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--color-border); transition: border-color .2s;
}
#cf-turnstile-container:focus-within { border-color: var(--color-gold); }

/* File inputs — themed to match the site's outline buttons */
.field input[type="file"] {
  padding: .5rem .55rem;
  font-size: .82rem;
  color: var(--color-muted-foreground);
  cursor: pointer;
}
.field input[type="file"]::file-selector-button {
  margin-inline-end: .9rem;
  padding: .55rem 1.1rem;
  border-radius: 5px;
  border: 1px solid rgba(212, 168, 67, .35);
  background: rgba(212, 168, 67, .08);
  color: var(--color-gold);
  font: inherit;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.field input[type="file"]::file-selector-button:hover {
  background: rgba(212, 168, 67, .16);
  border-color: var(--color-gold);
}
.field input[type="file"]::-webkit-file-upload-button {
  margin-inline-end: .9rem;
  padding: .55rem 1.1rem;
  border-radius: 5px;
  border: 1px solid rgba(212, 168, 67, .35);
  background: rgba(212, 168, 67, .08);
  color: var(--color-gold);
  font: inherit;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.field input[type="file"]::-webkit-file-upload-button:hover {
  background: rgba(212, 168, 67, .16);
  border-color: var(--color-gold);
}

/* ---------- Contact card ---------- */
.contact-card { display: flex; align-items: center; gap: 1rem; background: var(--color-card); border: 1px solid var(--color-border); border-radius: 8px; padding: 1.25rem; transition: border-color .2s; }
.contact-card:hover { border-color: rgba(212,168,67,.4); }
.contact-card svg { width: 20px; height: 20px; }

/* ---------- Footer ---------- */
.footer { background: var(--color-muted); border-top: 1px solid var(--color-border); }
.footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4,1fr); } }
.footer h4 { font-size: .82rem; font-weight: 600; color: var(--color-foreground); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1.1rem; }
.footer-link { display: block; font-size: .88rem; color: var(--color-muted-foreground); padding: .35rem 0; transition: color .2s; }
.footer-link:hover { color: var(--color-gold); }
.social-icon { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; color: var(--color-muted-foreground); transition: all .2s; }
.social-icon:hover { color: var(--color-gold); border-color: var(--color-gold); }
.social-icon svg { width: 15px; height: 15px; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }

/* ---------- WhatsApp button ---------- */
.wa-btn { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; display: flex; align-items: center;
  background: #25D366; color: #fff; padding: .8rem 1.1rem .8rem .75rem; border-radius: 999px; box-shadow: 0 8px 24px rgba(0,0,0,.35); transition: all .2s; }
[dir="rtl"] .wa-btn { right: auto; left: 1.5rem; }
.wa-btn:hover { background: #20BB5A; box-shadow: 0 10px 28px rgba(0,0,0,.45); }
/* #wa-btn-inner is the <span> wrapper app.js fills with the icon + label —
   it needs to be the flex container (not .wa-btn, which only ever has this
   one child) so the icon and label actually get a gap between them. */
#wa-btn-inner { display: inline-flex; align-items: center; gap: .6rem; }
.wa-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.wa-btn-label { font-size: .85rem; font-weight: 500; white-space: nowrap; }
/* Icon-only below 640px (matches the reference design's `hidden sm:inline`).
   This must target only the label — a previous version of this rule matched
   any span inside .wa-btn, which included the #wa-btn-inner wrapper itself
   and hid the icon along with the text, leaving an empty circle. */
@media (max-width: 639px) { .wa-btn-label { display: none; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding: 8rem 0 5rem; overflow: hidden; background: var(--color-secondary); }
.page-hero-glow { position: absolute; bottom: 0; left: 0; width: 16rem; height: 16rem; border-radius: 50%; background: rgba(212,168,67,.06); filter: blur(60px); }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .h1 { max-width: 700px; margin-bottom: 1.1rem; }
.page-hero .lead { max-width: 560px; font-size: 1.05rem; }

/* ---------- Skeleton placeholders (for un-populated real data) ---------- */
.sk { background: rgba(184,168,152,.12); border-radius: 4px; }

/* ---------- Misc ---------- */
.rounded { border-radius: 6px; }
.rounded-lg { border-radius: 10px; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.w-full { width: 100%; }
.small { font-size: .8rem; }
.xsmall { font-size: .72rem; }
.italic { font-style: italic; }
.badge-outline { font-size: .72rem; color: var(--color-muted-foreground); border: 1px solid var(--color-border); border-radius: 4px; padding: .15rem .6rem; }
.link-arrow { display: inline-flex; align-items: center; gap: .5rem; color: var(--color-gold); font-weight: 500; transition: gap .2s; }
.link-arrow:hover { gap: .75rem; }
.link-arrow svg { width: 16px; height: 16px; }
[dir="rtl"] .link-arrow svg { transform: scaleX(-1); }

.uni-card, .prog-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: 8px; overflow: hidden; transition: border-color .2s; }
.uni-card:hover, .prog-card:hover { border-color: rgba(212,168,67,.35); }
.uni-thumb { position: relative; height: 11rem; background: var(--color-secondary); overflow: hidden; }
.uni-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }

.filter-btn { padding: .8rem 1.2rem; font-size: .88rem; font-weight: 500; border-radius: 6px; border: 1px solid var(--color-border); background: var(--color-card); color: var(--color-muted-foreground); transition: all .2s; }
.filter-btn.active { background: var(--color-gold); color: var(--color-primary-foreground); border-color: var(--color-gold); }

.search-wrap { position: relative; flex-grow: 1; }
.search-wrap svg { position: absolute; top: 50%; left: 1rem; transform: translateY(-50%); width: 16px; height: 16px; color: var(--color-muted-foreground); }
[dir="rtl"] .search-wrap svg { left: auto; right: 1rem; }
.search-wrap input { padding-left: 2.5rem; }
[dir="rtl"] .search-wrap input { padding-left: 1rem; padding-right: 2.5rem; text-align: right; }

.value-num, .step-num { font-family: var(--font-display); font-weight: 700; color: rgba(212,168,67,.2); }

.timeline-line { position: absolute; top: 0; bottom: 0; left: 20px; width: 1px; background: var(--color-border); }
[dir="rtl"] .timeline-line { left: auto; right: 20px; }
.timeline-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--color-card); border: 2px solid rgba(212,168,67,.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ---------- Photo panels (self-contained stand-ins for photography) ---------- */
.photo-panel { position: absolute; inset: 0; width: 100%; height: 100%; }
.uni-thumb .photo-panel, .dest-card-bg .photo-panel { position: absolute; inset: 0; }
.photo-panel-1 { background: radial-gradient(circle at 30% 20%, rgba(212,168,67,.22), transparent 60%), linear-gradient(135deg, #2A2013 0%, #0C0B09 100%); }
.photo-panel-2 { background: radial-gradient(circle at 70% 30%, rgba(201,146,46,.20), transparent 60%), linear-gradient(135deg, #241C14 0%, #100D0A 100%); }
.photo-panel-3 { background: radial-gradient(circle at 50% 70%, rgba(236,201,106,.18), transparent 60%), linear-gradient(135deg, #201a12 0%, #0C0B09 100%); }
.photo-panel::after { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0px, rgba(255,255,255,.02) 1px, transparent 1px, transparent 14px); }
.relative > .photo-panel { position: relative; aspect-ratio: 4/3; border-radius: 10px; }
.relative.rounded-lg { aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; }
