@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');
/* =================================================================
   DARB · Religious Travel Campaign Platform
   Palette: Emerald Deep · Royal Gold · Pearl Cream  (Identity A)
================================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --emerald:        #064E3B;
  --emerald-deep:   #022C22;
  --emerald-dark:   #0A1F1A;
  --emerald-light:  #10b981;
  --gold:           #C9A961;
  --gold-light:     #E5C868;
  --gold-deep:      #8B7340;
  --cream:          #F5F1E8;
  --cream-2:        #EBE6D8;
  --bg:             #0A0F0D;
  --surface:        #131A17;
  --surface-2:      #1A2421;
  --surface-3:      #232E2A;
  --line:           rgba(201,169,97,.18);
  --line-soft:      rgba(245,241,232,.08);
  --gray:           #94A3A0;
  --gray-soft:      #6B7975;
  --text:           #F5F1E8;
  --text-soft:      #C9CFC7;

  --sans-en: 'Inter', -apple-system, sans-serif;
  --sans-ar: 'IBM Plex Sans Arabic', 'Cairo', sans-serif;
  --serif-en: 'Cormorant', 'Playfair Display', Georgia, serif;
  --serif-ar: 'Reem Kufi', 'Cairo', serif;
  --mono: 'JetBrains Mono', monospace;

  --r-sm: 6px;
  --r: 10px;
  --r-lg: 16px;
  --ease: cubic-bezier(.25, .8, .25, 1);
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans-en);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
html[lang="ar"] body { font-family: var(--sans-ar); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s; }
a:hover { color: var(--gold); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: var(--emerald-deep); }

h1, h2, h3, h4 { font-family: var(--serif-en); font-weight: 600; line-height: 1.12; letter-spacing: -.015em; }
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4 {
  font-family: var(--serif-ar); font-weight: 600; letter-spacing: 0; line-height: 1.25;
}

.eyebrow {
  font-family: var(--sans-en);
  font-size: 11px; letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
html[lang="ar"] .eyebrow { font-family: var(--sans-ar); letter-spacing: .08em; font-size: 12px; }

.text-gold { color: var(--gold); }
.text-emerald { color: var(--emerald-light); }
.italic-serif { font-family: var(--serif-en); font-style: italic; font-weight: 400; color: var(--gold); }
html[lang="ar"] .italic-serif { font-family: var(--serif-ar); font-style: normal; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 1040px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 768px) { .container, .container-narrow { padding: 0 18px; } }
.section { padding: 100px 0; position: relative; }
.section-sm { padding: 60px 0; }
@media (max-width: 768px) { .section { padding: 64px 0; } .section-sm { padding: 48px 0; } }

/* Demo banner */
#demoBanner {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #050505 0%, #0A0F0D 50%, #050505 100%);
  border-bottom: 1px solid rgba(201,169,97,.4);
  padding: 9px 16px;
  font-family: var(--sans-en);
  font-size: 12px; letter-spacing: .02em;
  color: var(--cream); text-align: center;
  white-space: nowrap; overflow-x: auto;
  box-shadow: 0 2px 12px rgba(0,0,0,.6);
}
html[lang="ar"] #demoBanner { font-family: var(--sans-ar); font-size: 12px; }
#demoBanner::-webkit-scrollbar { display: none; }
#demoBanner .db-inner { display: inline-flex; align-items: center; gap: 12px; }
#demoBanner .db-tag {
  background: var(--gold); color: var(--emerald-deep);
  padding: 3px 10px; font-weight: 700;
  letter-spacing: .25em; font-size: 10px;
}
#demoBanner .db-link {
  color: var(--emerald-deep); background: var(--gold);
  text-decoration: none; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 999px;
  transition: filter .2s var(--ease), transform .2s var(--ease);
}
#demoBanner .db-link:hover { filter: brightness(1.08); transform: translateY(-1px); }
#demoBanner .db-link:focus-visible { outline: 2px solid var(--cream); outline-offset: 2px; }
#demoBanner .db-intro { color: var(--cream); opacity: .82; }
#demoBanner .db-sep { opacity: .35; }
@media (max-width: 560px) {
  #demoBanner .db-intro { display: none; }
  #demoBanner { padding: 7px 12px; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 30px;
  font-family: var(--sans-en);
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--cream);
  border-radius: var(--r-sm);
  transition: all .4s var(--ease);
  cursor: pointer;
  text-decoration: none;
}
html[lang="ar"] .btn { font-family: var(--sans-ar); font-size: 14px; letter-spacing: .01em; text-transform: none; }
.btn:hover { background: var(--gold); color: var(--emerald-deep); border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(201,169,97,.26); }
.btn-gold { background: var(--gold); color: var(--emerald-deep); box-shadow: 0 8px 22px rgba(201,169,97,.20); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 16px 38px rgba(201,169,97,.34); }
.btn-emerald { background: var(--emerald); color: var(--cream); border-color: var(--emerald); }
.btn-emerald:hover { background: var(--emerald-light); border-color: var(--emerald-light); color: var(--emerald-deep); }
.btn-ghost { border-color: rgba(245,241,232,.25); }
.btn-ghost:hover { background: var(--cream); color: var(--emerald-deep); border-color: var(--cream); }
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-lg { padding: 14px 32px; font-size: 14px; }

/* NAV */
.nav {
  position: fixed; top: 38px; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all .35s ease;
  background: rgba(10,15,13,.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav.transparent { background: transparent; backdrop-filter: none; border-bottom-color: transparent; }
.nav.scrolled { background: rgba(10,15,13,.95); border-bottom-color: var(--line); padding: 12px 0; }
.nav-row { display: flex; align-items: center; justify-content: space-between; }
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif-en);
  font-size: 22px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--cream); font-weight: 600;
}
html[lang="ar"] .brand { font-family: var(--serif-ar); font-size: 22px; letter-spacing: .08em; }
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--emerald);
  border: 1.5px solid var(--gold);
  display: grid; place-items: center;
  color: var(--gold);
}
.brand-mark svg { width: 22px; height: 22px; }

.nav-menu { display: flex; gap: 32px; align-items: center; }
.nav-menu a {
  font-family: var(--sans-en);
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
  color: var(--cream); position: relative;
}
html[lang="ar"] .nav-menu a { font-family: var(--sans-ar); letter-spacing: .04em; font-size: 13px; }
.nav-menu a::after {
  content: ''; position: absolute; bottom: -7px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform .3s;
}
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.nav-menu a.active { color: var(--gold); }

.nav-actions { display: flex; gap: 8px; align-items: center; }
.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  font-size: 16px; color: var(--cream);
  border-radius: 50%; transition: all .25s;
}
.icon-btn:hover { color: var(--gold); background: rgba(201,169,97,.08); }
.lang-sw {
  background: transparent;
  border: 1px solid rgba(245,241,232,.2);
  color: var(--cream);
  padding: 7px 14px;
  font-size: 11px; letter-spacing: .15em; font-weight: 600;
  border-radius: var(--r-sm);
  cursor: pointer; transition: all .25s;
}
.lang-sw:hover { border-color: var(--gold); color: var(--gold); }
.hamburger { display: none; width: 30px; height: 30px; flex-direction: column; justify-content: center; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 100%; height: 1px; background: var(--cream); transition: .3s; }
@media (max-width: 992px) {
  .nav-menu {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 300px; max-width: 85%;
    background: var(--emerald-deep);
    flex-direction: column; padding: 100px 36px; gap: 26px;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    z-index: 999;
    border-inline-start: 1px solid var(--line);
  }
  html[dir="rtl"] .nav-menu { right: auto; left: 0; transform: translateX(-100%); }
  .nav-menu.open { transform: translateX(0); }
  .hamburger { display: flex; }
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 130px 0 60px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(120% 90% at 70% 10%, rgba(201,169,97,.10) 0%, transparent 55%),
    linear-gradient(180deg, rgba(2,44,34,.42) 0%, rgba(4,30,22,.80) 62%, var(--bg) 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1591604129939-f1efa4d9f7fa?auto=format&fit=crop&w=1920&q=85');
  background-size: cover; background-position: center;
  filter: brightness(.45) saturate(1.05);
  z-index: -1;
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 28px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-size: clamp(2.7rem, 6.6vw, 5.6rem); font-weight: 600;
  line-height: 1.05; letter-spacing: -.02em;
  margin-bottom: 24px;
  text-shadow: 0 6px 44px rgba(0,0,0,.55);
}
html[lang="ar"] .hero h1 { font-weight: 600; line-height: 1.16; letter-spacing: 0; }
.hero-sub {
  font-size: 17px; color: var(--text-soft);
  max-width: 580px; margin-bottom: 40px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* HERO SEARCH BAR */
.search-bar {
  background: rgba(19,26,23,.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 0;
  max-width: 920px; margin-top: 30px;
}
@media (max-width: 768px) { .search-bar { grid-template-columns: 1fr; } }
.search-field { padding: 14px 18px; border-inline-end: 1px solid var(--line); }
@media (max-width: 768px) { .search-field { border-inline-end: 0; border-bottom: 1px solid var(--line); } }
.search-field:last-of-type { border-inline-end: 0; }
.search-field label {
  display: block;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 6px;
}
.search-field select, .search-field input {
  width: 100%; background: transparent; border: 0;
  color: var(--cream); font-size: 14px;
  font-family: inherit; outline: none;
}
.search-field select option { background: var(--emerald-deep); }
.search-btn {
  background: var(--gold); color: var(--emerald-deep);
  border-radius: var(--r-sm);
  padding: 12px 32px;
  font-size: 13px; letter-spacing: .15em; text-transform: uppercase; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .25s;
}
.search-btn:hover { background: var(--gold-light); }

.hero-stats {
  display: flex; gap: 50px; margin-top: 60px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-n {
  font-family: var(--serif-en);
  font-size: 44px; color: var(--gold); font-weight: 600; line-height: 1;
}
html[lang="ar"] .hero-stat-n { font-family: var(--serif-ar); }
.hero-stat-l {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gray); margin-top: 6px;
}

/* SECTION HEAD */
.sec-head { text-align: center; margin-bottom: 64px; }
.sec-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-top: 12px; margin-bottom: 14px;
}
.sec-head p {
  color: var(--text-soft); max-width: 600px; margin: 0 auto; font-size: 15.5px; line-height: 1.85;
}
.divider {
  width: 64px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 22px auto; position: relative;
}
.divider::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 5px; height: 5px; background: var(--gold);
  border-radius: 50%; transform: translate(-50%,-50%) rotate(45deg);
}

/* TRIP CARDS */
.trip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 992px) { .trip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .trip-grid { grid-template-columns: 1fr; } }

.trip-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: all .35s var(--ease);
  position: relative;
  display: flex; flex-direction: column;
}
.trip-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(201,169,97,.15);
}
.trip-cover {
  aspect-ratio: 16/10;
  position: relative; overflow: hidden;
}
.trip-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.trip-card:hover .trip-cover img { transform: scale(1.08); }
.trip-cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,15,13,.85) 100%);
}
.trip-badge {
  position: absolute; top: 14px;
  inset-inline-start: 14px;
  background: var(--gold); color: var(--emerald-deep);
  padding: 4px 12px;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
  z-index: 2;
}
.trip-fav {
  position: absolute; top: 14px;
  inset-inline-end: 14px;
  width: 36px; height: 36px;
  background: rgba(19,26,23,.85);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--cream);
  cursor: pointer;
  transition: all .25s;
  z-index: 2;
}
.trip-fav:hover, .trip-fav.active { color: var(--gold); border-color: var(--gold); }
.trip-meta-top {
  position: absolute; bottom: 14px;
  inset-inline-start: 14px;
  z-index: 2;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--cream);
  letter-spacing: .08em;
}
.trip-meta-top svg { width: 14px; height: 14px; color: var(--gold); }

.trip-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.trip-country {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 6px;
}
.trip-card h3 { font-size: 19px; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.trip-card-desc {
  font-size: 13px; color: var(--text-soft); line-height: 1.7;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.trip-info {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-size: 12px; color: var(--gray);
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 14px;
}
.trip-info-item { display: flex; align-items: center; gap: 5px; }
.trip-info-item svg { width: 14px; height: 14px; color: var(--gold); }
.trip-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
}
.trip-price-block .from { font-size: 10px; color: var(--gray); letter-spacing: .15em; text-transform: uppercase; }
.trip-price {
  font-family: var(--serif-en);
  font-size: 26px; color: var(--gold); font-weight: 500;
  line-height: 1;
}
html[lang="ar"] .trip-price { font-family: var(--serif-ar); }
.trip-currency { font-size: 13px; color: var(--gray); margin-inline-start: 4px; }
.seats-left {
  font-size: 11px; color: var(--cream);
  background: rgba(16,185,129,.15);
  color: #6EE7B7;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(16,185,129,.3);
}
.seats-left.low { background: rgba(220,38,38,.15); color: #FCA5A5; border-color: rgba(220,38,38,.3); }

/* Featured cats grid (countries) */
.country-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
@media (max-width: 992px) { .country-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 576px) { .country-grid { grid-template-columns: repeat(2, 1fr); } }
.country-card {
  aspect-ratio: 1;
  position: relative; overflow: hidden;
  border-radius: var(--r);
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: all .3s;
}
.country-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.country-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
  filter: brightness(.55);
}
.country-card:hover img { transform: scale(1.1); filter: brightness(.7); }
.country-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,78,59,.9) 100%);
}
.country-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 16px 18px;
  z-index: 2; text-align: center;
}
.country-info h4 {
  font-size: 18px; color: var(--cream); margin-bottom: 3px;
  font-family: var(--serif-en);
}
html[lang="ar"] .country-info h4 { font-family: var(--serif-ar); }
.country-info .count {
  font-size: 11px; color: var(--gold);
  letter-spacing: .15em; text-transform: uppercase;
}

/* TESTIMONIALS */
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 992px) { .t-grid { grid-template-columns: 1fr; } }
.t-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 28px;
  position: relative;
}
.t-stars { color: var(--gold); margin-bottom: 12px; font-size: 14px; letter-spacing: 2px; }
.t-card p {
  font-family: var(--serif-en);
  font-style: italic; font-size: 16px;
  line-height: 1.75; color: var(--cream);
  margin-bottom: 24px;
}
html[lang="ar"] .t-card p { font-family: var(--serif-ar); font-size: 17px; font-style: normal; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--emerald-deep);
  display: grid; place-items: center;
  font-weight: 700; font-size: 18px;
  font-family: var(--serif-en);
}
.t-name { font-weight: 600; font-size: 14px; }
.t-trip { font-size: 11px; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; margin-top: 2px; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 10px;
  background: var(--surface);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 600;
  color: var(--cream); text-align: start;
  cursor: pointer; transition: color .25s;
}
.faq-q:hover { color: var(--gold); }
.faq-q-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--emerald-deep);
  display: grid; place-items: center;
  font-size: 16px;
  transition: transform .3s;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px 18px;
  font-size: 14px; color: var(--text-soft); line-height: 1.8;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* CTA banner */
.cta-banner {
  background:
    linear-gradient(120deg, var(--emerald-deep) 0%, var(--emerald) 100%),
    url('https://images.unsplash.com/photo-1542816417-0983c9c9ad53?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-blend-mode: overlay;
  padding: 80px 40px;
  border-radius: var(--r-lg);
  text-align: center;
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 12px; }
.cta-banner p { color: var(--text-soft); max-width: 540px; margin: 0 auto 30px; }

/* FOOTER */
.footer {
  background: var(--emerald-deep);
  padding: 70px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 576px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-about { color: var(--gray); font-size: 13px; line-height: 1.8; max-width: 380px; margin-top: 16px; }
.footer-col h4 {
  font-family: var(--sans-en);
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 600;
}
html[lang="ar"] .footer-col h4 { font-family: var(--sans-ar); letter-spacing: .08em; font-size: 13px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: var(--text-soft); font-size: 13px; display: inline-block; transition: all .25s; }
.footer-col a:hover { color: var(--gold); padding-inline-start: 5px; }
.footer-contact { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13px; color: var(--text-soft); }
.footer-contact svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--cream); transition: all .25s;
}
.social-icon:hover { background: var(--gold); color: var(--emerald-deep); border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--gray);
  flex-wrap: wrap; gap: 10px;
}

/* PAGE HERO */
.page-hero {
  padding: 180px 0 70px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(201,169,97,.12) 0%, transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(16,185,129,.08) 0%, transparent 55%);
}
.page-hero > * { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin: 10px 0 14px; }
.page-hero p { color: var(--text-soft); max-width: 560px; margin: 0 auto; font-size: 15px; }
.breadcrumb {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 18px;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gray);
}
.breadcrumb a { color: var(--text-soft); }
.breadcrumb a:hover { color: var(--gold); }

/* TRIPS PAGE — filters */
.filters-bar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 22px;
  margin-bottom: 32px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px;
  align-items: end;
}
.filter-field label {
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 6px; font-weight: 600;
}
.filter-field select, .filter-field input {
  width: 100%; padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--cream);
  font-family: inherit; font-size: 13px;
  border-radius: var(--r-sm); outline: none;
}
.filter-field select option { background: var(--emerald-deep); }

/* TRIP DETAIL */
.trip-detail-hero {
  padding: 130px 0 40px;
  background: var(--bg);
}
.trip-detail-cover {
  aspect-ratio: 21/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}
.trip-detail-cover img { width: 100%; height: 100%; object-fit: cover; }
.trip-detail-cover .badge-overlay {
  position: absolute; top: 20px;
  inset-inline-start: 20px;
  background: var(--gold); color: var(--emerald-deep);
  padding: 6px 16px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
}

.trip-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 50px;
  align-items: start;
}
@media (max-width: 992px) { .trip-detail-grid { grid-template-columns: 1fr; gap: 30px; } }

.trip-detail-title { font-size: clamp(2rem, 4vw, 2.8rem); margin: 10px 0 14px; }
.trip-detail-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 13px; color: var(--text-soft);
}
.trip-detail-meta-item { display: flex; align-items: center; gap: 6px; }
.trip-detail-meta-item svg { width: 16px; height: 16px; color: var(--gold); }

.trip-tabs {
  display: flex; gap: 0; flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  margin: 40px 0 30px;
}
.trip-tab {
  padding: 14px 24px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  color: var(--gray);
  position: relative;
  background: transparent; cursor: pointer;
  font-family: var(--sans-en);
}
html[lang="ar"] .trip-tab { font-family: var(--sans-ar); letter-spacing: .04em; font-size: 13px; }
.trip-tab::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform .25s;
}
.trip-tab.active { color: var(--gold); }
.trip-tab.active::after { transform: scaleX(1); }
.trip-tab-content { display: none; animation: fadeUp .35s; }
.trip-tab-content.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

/* Itinerary timeline */
.itinerary { position: relative; padding-inline-start: 30px; }
.itinerary::before {
  content: ''; position: absolute; top: 0; bottom: 0;
  inset-inline-start: 10px;
  width: 1px; background: var(--line);
}
.day-row {
  position: relative;
  padding-bottom: 30px;
}
.day-row::before {
  content: ''; position: absolute; top: 4px;
  inset-inline-start: -25px;
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--gold);
}
.day-num {
  font-family: var(--serif-en);
  color: var(--gold); font-size: 14px; font-weight: 500;
  letter-spacing: .1em;
}
html[lang="ar"] .day-num { font-family: var(--serif-ar); }
.day-title { font-size: 18px; margin: 4px 0 6px; color: var(--cream); }
.day-desc { color: var(--text-soft); font-size: 14px; line-height: 1.75; }
.day-cities {
  display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap;
}
.day-city {
  background: rgba(201,169,97,.1);
  color: var(--gold);
  padding: 3px 10px;
  font-size: 11px; letter-spacing: .08em;
  border-radius: var(--r-sm);
}

/* Pricing tiers */
.pricing-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
@media (max-width: 768px) { .pricing-tiers { grid-template-columns: 1fr; } }
.tier-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px 20px;
  background: var(--surface);
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: all .25s;
}
.tier-card:hover, .tier-card.featured { border-color: var(--gold); }
.tier-card.featured {
  background: linear-gradient(180deg, rgba(201,169,97,.08) 0%, var(--surface) 100%);
  transform: scale(1.03);
}
.tier-card.featured::before {
  content: 'موصى به · Featured'; position: absolute; top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold); color: var(--emerald-deep);
  padding: 4px 12px;
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
}
.tier-name { color: var(--gold); font-size: 12px; letter-spacing: .25em; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.tier-price { font-family: var(--serif-en); font-size: 36px; color: var(--cream); font-weight: 500; line-height: 1; }
html[lang="ar"] .tier-price { font-family: var(--serif-ar); }
.tier-curr { font-size: 14px; color: var(--gray); margin-inline-start: 5px; }
.tier-features { list-style: none; margin: 18px 0; text-align: start; }
.tier-features li {
  padding: 6px 0; font-size: 13px; color: var(--text-soft);
  display: flex; align-items: center; gap: 8px;
}
.tier-features li svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* SIDE: booking widget */
.booking-side {
  position: sticky; top: 110px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.booking-side .price-now {
  font-family: var(--serif-en);
  font-size: 38px; color: var(--gold); font-weight: 500; line-height: 1;
}
html[lang="ar"] .booking-side .price-now { font-family: var(--serif-ar); }
.booking-side .from-tag { font-size: 11px; color: var(--gray); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 8px; }
.booking-form { margin-top: 18px; }
.booking-form .form-row { margin-bottom: 14px; }
.booking-form label { display: block; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-weight: 600; }
.booking-form input, .booking-form select {
  width: 100%; padding: 11px 14px;
  background: var(--bg); border: 1px solid var(--line);
  color: var(--cream); font-family: inherit; font-size: 13px;
  border-radius: var(--r-sm); outline: none;
}
.booking-form select option { background: var(--emerald-deep); }
.booking-side .btn { width: 100%; margin-top: 8px; }
.live-occupancy {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.occ-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-soft); margin-bottom: 6px; }
.occ-bar {
  height: 5px; background: var(--bg); border-radius: 50px; overflow: hidden;
}
.occ-fill {
  height: 100%; background: linear-gradient(90deg, var(--emerald-light), var(--gold));
  border-radius: 50px;
  transition: width .8s var(--ease);
}

/* BUS SEAT MAP */
.bus-map {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 20px;
  max-width: 480px; margin: 0 auto;
}
.bus-driver {
  width: 70px; height: 70px;
  background: var(--emerald-deep); border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 28px;
  font-size: 11px; color: var(--gold); font-weight: 600;
  letter-spacing: .1em;
}
.bus-seats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.bus-seats .seat-aisle { grid-column: 3; }
.seat {
  aspect-ratio: 1; max-width: 56px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  font-size: 12px; color: var(--text-soft);
  font-weight: 600;
  cursor: pointer; transition: all .2s;
  position: relative;
}
.seat:hover:not(.booked):not(.aisle) { border-color: var(--gold); color: var(--gold); transform: scale(1.05); }
.seat.aisle { background: transparent; border: none; cursor: default; }
.seat.booked { background: var(--surface-3); color: var(--gray); cursor: not-allowed; }
.seat.booked::after {
  content: '✕'; position: absolute; opacity: .4; font-size: 18px;
}
.seat.selected { background: var(--gold); border-color: var(--gold); color: var(--emerald-deep); }
.seat.vip { border-color: #A855F7; }
.seat.vip.booked { background: rgba(168,85,247,.15); border-color: #A855F7; }
.seat-legend {
  display: flex; gap: 16px; justify-content: center;
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  flex-wrap: wrap;
}
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-soft); }
.legend-swatch {
  width: 14px; height: 14px; border-radius: 3px;
  background: var(--bg); border: 1px solid var(--line);
}
.legend-swatch.booked { background: var(--surface-3); }
.legend-swatch.selected { background: var(--gold); border-color: var(--gold); }
.legend-swatch.vip { border-color: #A855F7; }

/* HOTEL/ROOM CARDS */
.hotel-list { display: grid; gap: 16px; }
.hotel-card {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 22px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
}
@media (max-width: 576px) { .hotel-card { grid-template-columns: 1fr; text-align: center; } }
.hotel-img {
  aspect-ratio: 4/3; border-radius: var(--r-sm); overflow: hidden;
}
.hotel-img img { width: 100%; height: 100%; object-fit: cover; }
.hotel-name { font-size: 17px; color: var(--cream); margin-bottom: 4px; }
.hotel-city { font-size: 11px; color: var(--gold); letter-spacing: .15em; text-transform: uppercase; margin-bottom: 8px; }
.hotel-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 6px; }
.hotel-amenities { display: flex; gap: 12px; font-size: 11px; color: var(--gray); flex-wrap: wrap; }
.hotel-amenity { display: flex; align-items: center; gap: 4px; }
.hotel-amenity svg { width: 13px; height: 13px; color: var(--gold); }
.hotel-price { font-family: var(--serif-en); font-size: 22px; color: var(--gold); }
html[lang="ar"] .hotel-price { font-family: var(--serif-ar); }
.hotel-night { font-size: 10px; color: var(--gray); letter-spacing: .15em; text-transform: uppercase; }

/* TRAVELER CARD (digital pass) */
.pass-card {
  background:
    linear-gradient(135deg, rgba(201,169,97,.15) 0%, transparent 50%),
    var(--emerald-deep);
  border: 1px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 32px;
  max-width: 540px;
  position: relative;
  overflow: hidden;
}
.pass-card::before {
  content: ''; position: absolute;
  top: -50%; right: -30%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(201,169,97,.15), transparent 60%);
}
.pass-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.pass-head .brand { font-size: 16px; color: var(--gold); }
.pass-num {
  font-family: var(--mono); color: var(--gold);
  font-size: 11px; letter-spacing: .1em;
  padding: 4px 10px;
  background: rgba(201,169,97,.1);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
}
.pass-body {
  display: grid; grid-template-columns: 1fr 130px;
  gap: 22px; align-items: center;
  position: relative; z-index: 1;
}
.pass-info-rows { display: grid; gap: 10px; }
.pass-info-row { display: grid; grid-template-columns: 100px 1fr; gap: 10px; align-items: baseline; }
.pass-info-label { font-size: 10px; color: var(--gray); letter-spacing: .15em; text-transform: uppercase; font-weight: 600; }
.pass-info-val { font-size: 14px; color: var(--cream); font-weight: 500; }
.pass-qr {
  background: white; padding: 10px;
  border-radius: var(--r-sm); aspect-ratio: 1;
  display: grid; place-items: center;
}
.pass-qr img { width: 100%; }
.pass-foot {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px dashed var(--line);
  display: flex; gap: 16px; font-size: 11px; color: var(--gray);
  letter-spacing: .08em;
  position: relative; z-index: 1;
  flex-wrap: wrap;
}

/* ADMIN STYLES */
body.admin-body { background: var(--bg); }
.admin-login-wrap {
  min-height: 100vh; display: grid; place-items: center;
  padding: 60px 20px;
  background:
    radial-gradient(circle at 20% 20%, rgba(201,169,97,.08), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(16,185,129,.05), transparent 55%),
    var(--bg);
}
.admin-login-card {
  width: 100%; max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}
.admin-login-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold), var(--emerald));
}
.admin-login-card .brand-mark { margin: 0 auto 16px; }
.admin-login-card h1 { font-size: 24px; text-align: center; margin-bottom: 4px; }
.admin-login-card .sub { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); text-align: center; margin-bottom: 28px; }
.admin-shell { display: none; min-height: 100vh; }
.admin-shell.show { display: grid; grid-template-columns: 260px 1fr; }
@media (max-width: 992px) { .admin-shell.show { grid-template-columns: 1fr; } }
.admin-side {
  background: var(--surface);
  border-inline-end: 1px solid var(--line);
  padding: 30px 22px;
  min-height: 100vh;
  position: sticky; top: 0;
}
@media (max-width: 992px) { .admin-side { min-height: auto; position: static; border-bottom: 1px solid var(--line); } }
.admin-side .brand { font-size: 18px; margin-bottom: 30px; }
.side-section { font-size: 9px; letter-spacing: .25em; text-transform: uppercase; color: var(--gray-soft); margin: 22px 0 8px; font-weight: 600; }
.side-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  color: var(--text-soft); font-size: 13px;
  border-radius: var(--r-sm);
  margin-bottom: 3px;
  width: 100%; text-align: start;
  transition: all .2s;
  cursor: pointer;
}
.side-link svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gray); }
.side-link:hover { background: rgba(201,169,97,.08); color: var(--gold); }
.side-link:hover svg { color: var(--gold); }
.side-link.active { background: var(--emerald); color: var(--cream); }
.side-link.active svg { color: var(--gold); }
.side-link .badge-side {
  margin-inline-start: auto;
  background: var(--gold); color: var(--emerald-deep);
  font-size: 9px; padding: 2px 7px; border-radius: 50px;
  font-weight: 700;
}

.admin-main { padding: 30px 32px; min-height: 100vh; }
@media (max-width: 992px) { .admin-main { padding: 24px 20px; } }
.admin-topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 30px; padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap; gap: 14px;
}
.admin-topbar h1 { font-size: 26px; }
.admin-topbar .topbar-actions { display: flex; gap: 10px; align-items: center; }
.admin-search {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 8px 16px;
  width: 280px;
  color: var(--cream); font-size: 13px; outline: none;
  font-family: inherit;
}
@media (max-width: 768px) { .admin-search { width: 100%; } }

.admin-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 28px;
}
@media (max-width: 992px) { .admin-stats { grid-template-columns: repeat(2, 1fr); } }
.admin-stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  position: relative; overflow: hidden;
}
.admin-stat-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
}
.stat-icn-w {
  width: 42px; height: 42px;
  background: rgba(201,169,97,.12);
  color: var(--gold);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.stat-icn-w svg { width: 20px; height: 20px; }
.stat-n {
  font-family: var(--serif-en);
  font-size: 30px; color: var(--cream); font-weight: 500; line-height: 1;
}
html[lang="ar"] .stat-n { font-family: var(--serif-ar); }
.stat-l { font-size: 11px; letter-spacing: .15em; color: var(--gray); margin-top: 6px; }
.stat-tr { font-size: 11px; margin-top: 6px; color: #6EE7B7; }
.stat-tr.dn { color: #FCA5A5; }

.admin-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 22px;
}
.admin-card-h {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.admin-card-h h3 { font-size: 15px; font-weight: 600; color: var(--cream); display: inline-flex; align-items: center; gap: 8px; }
.admin-card-h h3 svg { color: var(--gold); width: 18px; height: 18px; }
.admin-card-b { padding: 22px; }
.admin-card-b.p-0 { padding: 0; }

.tbl-wrap { overflow-x: auto; }
.tbl {
  width: 100%; border-collapse: collapse;
}
.tbl th {
  padding: 12px 18px;
  text-align: start;
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gray); font-weight: 600;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.tbl td {
  padding: 14px 18px;
  font-size: 13px; color: var(--text-soft);
  border-bottom: 1px solid var(--line-soft);
}
.tbl tr:last-child td { border-bottom: 0; }
.tbl tr:hover td { background: rgba(201,169,97,.03); }
.tbl img { width: 36px; height: 36px; object-fit: cover; border-radius: 4px; }
.tbl .price { color: var(--gold); font-family: var(--serif-en); font-size: 15px; font-weight: 500; }
html[lang="ar"] .tbl .price { font-family: var(--serif-ar); }

.pill {
  display: inline-block;
  padding: 3px 10px;
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  border-radius: 50px;
}
.pill-success { background: rgba(16,185,129,.15); color: #6EE7B7; }
.pill-pending { background: rgba(201,169,97,.15); color: var(--gold); }
.pill-progress { background: rgba(74,108,247,.15); color: #94B3FF; }
.pill-cancelled { background: rgba(220,38,38,.15); color: #FCA5A5; }
.pill-info { background: rgba(99,102,241,.15); color: #A5B4FC; }

/* CHARTS placeholder bars */
.chart-bars { display: flex; gap: 10px; align-items: flex-end; height: 180px; padding: 16px 0; }
.chart-bar {
  flex: 1; background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  border-radius: 4px 4px 0 0;
  position: relative;
  cursor: pointer; transition: filter .25s;
}
.chart-bar:hover { filter: brightness(1.15); }
.chart-bar .bar-val { position: absolute; top: -22px; left: 0; right: 0; text-align: center; font-size: 11px; color: var(--gold); }
.chart-bar .bar-lbl {
  position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%);
  text-align: center; font-size: 10.5px; color: var(--gray);
  white-space: nowrap; overflow: visible; /* الاسم كامل، أفقي، بلا قصّ */
}
.chart-container { padding-bottom: 34px; padding-top: 20px; overflow: visible; }

/* TIMELINE MAP */
.timeline-map {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
}
.tl-slider-wrap {
  background: var(--bg); padding: 16px;
  border-radius: var(--r-sm);
  margin-bottom: 22px;
}
.tl-slider {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 6px; background: var(--surface-3); border-radius: 50px;
  outline: none;
}
.tl-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px; background: var(--gold);
  border-radius: 50%; cursor: pointer; border: 2px solid var(--emerald-deep);
  box-shadow: 0 0 0 4px rgba(201,169,97,.15);
}
.tl-day-label { text-align: center; font-size: 14px; color: var(--gold); margin-top: 12px; font-weight: 600; letter-spacing: .04em; }
.tl-cities-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.tl-city {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 16px;
  position: relative; overflow: hidden;
}
.tl-city-name { font-size: 14px; color: var(--cream); margin-bottom: 4px; }
.tl-city-country { font-size: 10px; color: var(--gold); letter-spacing: .15em; text-transform: uppercase; }
.tl-city-num { font-family: var(--serif-en); font-size: 30px; color: var(--gold); font-weight: 500; line-height: 1; margin-top: 10px; }
html[lang="ar"] .tl-city-num { font-family: var(--serif-ar); }
.tl-city-bar {
  height: 4px; background: var(--surface-3); border-radius: 50px; margin-top: 10px; overflow: hidden;
}
.tl-city-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--emerald-light), var(--gold));
  border-radius: 50px; transition: width .8s var(--ease);
}

/* MODAL */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(5,5,5,.85);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; transition: opacity .3s;
}
.modal-backdrop.open { display: flex; opacity: 1; }
.modal {
  background: var(--surface);
  max-width: 700px; width: 100%; max-height: 90vh;
  border-radius: var(--r);
  border: 1px solid var(--line);
  overflow: auto;
  transform: scale(.95); transition: transform .3s var(--ease);
}
.modal-backdrop.open .modal { transform: scale(1); }
.modal-h {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.modal-h h3 { font-size: 18px; }
.modal-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--cream);
  transition: all .25s;
}
.modal-close:hover { background: var(--gold); color: var(--emerald-deep); border-color: var(--gold); }
.modal-b { padding: 24px; }
.modal-f { padding: 16px 22px; border-top: 1px solid var(--line-soft); display: flex; gap: 8px; justify-content: flex-end; flex-wrap: wrap; }

/* Notification toast */
.toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(140px);
  background: var(--gold);
  color: var(--emerald-deep);
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 13px; font-weight: 600;
  z-index: 3000;
  transition: transform .35s var(--ease);
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* WhatsApp notifications card */
.wa-card {
  background: #075E54;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.03), transparent 50%);
  border-radius: var(--r);
  padding: 14px 16px;
  margin-bottom: 10px;
  display: flex; gap: 12px;
  border: 1px solid rgba(255,255,255,.05);
}
.wa-avatar {
  width: 38px; height: 38px;
  background: #25D366; color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.wa-msg { flex: 1; color: #E9EDEF; font-size: 13px; line-height: 1.6; }
.wa-msg .name { color: #25D366; font-weight: 600; font-size: 12px; margin-bottom: 4px; }
.wa-time { font-size: 10px; color: rgba(255,255,255,.5); margin-top: 4px; text-align: end; }

/* muzn tag */
.muzn-tag {
  position: fixed; bottom: 18px;
  inset-inline-start: 18px;
  z-index: 100;
  background: rgba(10,15,13,.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  padding: 8px 14px;
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--cream);
  border-radius: 50px;
  transition: all .25s;
}
.muzn-tag:hover { color: var(--gold); border-color: var(--gold); }
.muzn-tag .accent { color: var(--gold); }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(25px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="100"] { transition-delay: .1s; }
[data-reveal-delay="200"] { transition-delay: .2s; }
[data-reveal-delay="300"] { transition-delay: .3s; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

/* ─── Polish additions (QA pass) ─── */

/* Focus-visible — keyboard users get a clear gold ring without affecting mouse-only clicks */
a:focus-visible, button:focus-visible, [role="button"]:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reduce-motion: respect user OS preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* Touch targets — bump nav links a touch on small screens */
@media (max-width: 768px) {
  .nav-menu a { padding: 10px 4px; min-height: 40px; display: inline-flex; align-items: center; }
  .lang-sw { min-height: 38px; padding: 6px 12px; }
  .footer ul a { display: inline-block; padding: 4px 0; }
}

/* Favorite button — pressed state */
.trip-fav { transition: transform .18s var(--ease), color .2s var(--ease), background .2s var(--ease); }
.trip-fav:hover { transform: scale(1.08); }
.trip-fav.active { color: #DC2626; background: rgba(220,38,38,.12); }
.trip-fav.active svg { fill: #DC2626; }

/* Skeleton loaders for grids — fades out once content lands */
.skeleton-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.skeleton-card {
  background: linear-gradient(135deg, rgba(245,241,232,.04), rgba(245,241,232,.07));
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  min-height: 360px;
  display: flex; flex-direction: column;
}
.skeleton-shimmer {
  background: linear-gradient(90deg, rgba(245,241,232,.04) 0%, rgba(245,241,232,.10) 50%, rgba(245,241,232,.04) 100%);
  background-size: 200% 100%;
  animation: sk-shimmer 1.4s linear infinite;
}
.skeleton-cover { height: 200px; }
.skeleton-line { height: 14px; border-radius: 4px; margin: 12px 18px; }
.skeleton-line.lg { height: 18px; }
.skeleton-line.sm { width: 40%; }
@keyframes sk-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Empty state (trip-not-found, generic) */
.empty-state {
  max-width: 560px; margin: 80px auto; padding: 48px 32px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(245,241,232,.02);
}
.empty-state-icn { color: var(--gold); margin-bottom: 16px; }
.empty-state-h { font-family: var(--serif); font-size: 32px; margin-bottom: 14px; color: var(--cream); }
.empty-state-p { color: var(--text-soft); font-size: 15px; line-height: 1.8; margin-bottom: 8px; }
.empty-state-actions { margin-top: 22px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Legal page */
.legal-doc h2 { font-family: var(--serif); font-size: 24px; color: var(--gold); margin-bottom: 14px; }
.legal-doc p { color: var(--text-soft); font-size: 14.5px; line-height: 2; }
.legal-doc article { scroll-margin-top: 120px; }

/* Admin demo notice — subtle pill in admin shell */
.admin-demo-notice {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,169,97,.10);
  color: var(--gold);
  border: 1px solid rgba(201,169,97,.32);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600;
}
.admin-demo-notice svg { width: 12px; height: 12px; }

/* Skip-to-content link for screen readers */
.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--gold); color: var(--emerald-deep);
  padding: 10px 16px; border-radius: 6px;
  font-weight: 600; font-size: 13px; z-index: 99999;
}
.skip-link:focus { left: 16px; }

/* ─── Traveler Pass (بطاقة مسافر) — Nusuk-style printable badge ─── */
.mpass-wrap { max-width: 360px; margin: 0 auto; }
.mpass {
  background: #ffffff; color: #1b1b1b; border-radius: 18px; overflow: hidden;
  box-shadow: 0 20px 55px rgba(0,0,0,.30); border: 1px solid #ececec;
  font-family: var(--sans-ar); position: relative;
}
.mpass-top {
  background: linear-gradient(135deg, #C9A961, #b8923f);
  color: #fff; text-align: center; padding: 13px 12px; font-weight: 700;
  font-size: 16px; letter-spacing: .02em;
}
.mpass-logo { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 18px 0 4px; color: #064E3B; }
.mpass-logo svg { width: 44px; height: 44px; }
.mpass-logo .wm { font-family: var(--serif-ar); font-weight: 700; font-size: 24px; color: #064E3B; }
.mpass-avatar {
  width: 110px; height: 110px; border-radius: 50%; background: #f1f1f1;
  display: grid; place-items: center; margin: 10px auto 4px; color: #b6bdb4;
  font-size: 42px; font-weight: 700; border: 4px solid #f7f1e2;
}
.mpass-name { text-align: center; font-size: 22px; font-weight: 700; color: #111; margin-top: 4px; }
.mpass-name-en { text-align: center; font-size: 14px; color: #777; margin-bottom: 8px; }
.mpass-nat { text-align: center; margin-bottom: 8px; }
.mpass-nat span {
  display: inline-block; font-size: 14px; color: #2b6a4f; font-weight: 600;
  background: rgba(6,78,59,.08); padding: 3px 14px; border-radius: 20px;
}
.mpass-id { text-align: center; margin: 8px auto 12px; }
.mpass-id .lbl { font-size: 11px; color: #999; margin-bottom: 5px; letter-spacing: .04em; }
.mpass-id .val {
  display: inline-block; background: #F9D3E2; color: #9B1C4B;
  font-family: var(--sans-en); font-weight: 700; letter-spacing: .14em;
  padding: 6px 18px; border-radius: 6px; font-size: 16px;
}
.mpass-qr { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; margin: 10px auto; }
.mpass-qr a { display: inline-flex; padding: 8px; background: #fff; border: 1px solid #eee; border-radius: 12px; }
.mpass-qr img { width: 160px; height: 160px; display: block; margin: 0 auto; }
.mpass-qr .cap { font-size: 11px; color: #999; margin-top: 6px; padding: 0 16px; }
.mpass-booking { text-align: center; margin: 10px 0 2px; }
.mpass-booking .lbl { font-size: 11px; color: #999; }
.mpass-booking .val { font-family: var(--sans-en); font-weight: 700; font-size: 16px; color: #111; letter-spacing: .08em; }
.mpass-foot { background: #ececec; color: #555; text-align: center; padding: 11px; margin-top: 14px; }
.mpass-foot .ar { font-size: 12.5px; font-weight: 600; }
.mpass-foot .en { color: #8a8a8a; font-size: 11px; margin-top: 2px; font-family: var(--sans-en); }
.mpass-actions { display: flex; gap: 10px; justify-content: center; margin-top: 14px; }

/* Print: show only the active pass */
@media print {
  body.printing * { visibility: hidden !important; }
  body.printing .print-active, body.printing .print-active * { visibility: visible !important; }
  body.printing .print-active { position: absolute; left: 50%; top: 0; transform: translateX(-50%); box-shadow: none; }
  body.printing #demoBanner, body.printing .nav, body.printing .footer, body.printing .muzn-tag { display: none !important; }
}

/* ───────── Expanding cards showcase — الرحلات المميّزة ───────── */
.exp-section { padding-top: 10px; }
.exp-head { margin-bottom: 22px; }
.exp-head h2 { font-size: clamp(26px, 4vw, 40px); line-height: 1.15; margin: 6px 0 8px; color: var(--cream); }
.exp-head p { color: var(--text-soft); font-size: 14px; line-height: 1.7; max-width: 540px; }

.exp-cards {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 12px; width: 100%;
  grid-template-columns: 1fr;            /* mobile: single column, rows expand */
  grid-template-rows: 1fr;
  height: 560px;
  transition: grid-template-columns .55s cubic-bezier(.22,1,.36,1),
              grid-template-rows .55s cubic-bezier(.22,1,.36,1);
}
@media (min-width: 768px) { .exp-cards { height: 440px; } }

.exp-card {
  position: relative; overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(201,169,97,.18);
  cursor: pointer; outline: none;
  min-width: 0; min-height: 0;
  box-shadow: 0 12px 34px -18px rgba(2,28,22,.7);
}
@media (min-width: 768px) { .exp-card { min-width: 64px; } }
.exp-card:focus-visible { box-shadow: 0 0 0 2px var(--gold); }

.exp-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.12); filter: grayscale(1) brightness(.82);
  transition: transform .6s ease, filter .6s ease;
}
.exp-card[data-active="true"] .exp-img { transform: scale(1); filter: grayscale(0) brightness(1); }

.exp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(2,28,22,.94) 0%, rgba(2,28,22,.48) 40%, transparent 80%);
}

.exp-article {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 8px; padding: 18px; color: var(--cream);
}

/* collapsed label — horizontal on mobile, vertical on desktop */
.exp-vtitle {
  position: absolute; bottom: 16px; right: 18px; left: 18px;
  margin: 0; font-family: var(--sans-ar); font-weight: 600; font-size: 14px;
  letter-spacing: .03em; color: rgba(245,241,232,.92);
  transition: opacity .3s ease;
}
@media (min-width: 768px) {
  .exp-vtitle { writing-mode: vertical-rl; text-orientation: mixed; left: auto; top: 18px; bottom: auto; }
}
.exp-card[data-active="true"] .exp-vtitle { opacity: 0; }

.exp-content { opacity: 0; transform: translateY(10px); transition: opacity .4s ease .05s, transform .4s ease .05s; }
.exp-card[data-active="true"] .exp-content { opacity: 1; transform: none; }

.exp-icon {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 11px; background: rgba(201,169,97,.18);
  color: var(--gold-light); margin-bottom: 10px;
}
.exp-icon svg { width: 22px; height: 22px; }
.exp-country { font-size: 12px; letter-spacing: .06em; color: var(--gold-light); font-weight: 600; margin-bottom: 2px; }
.exp-title { font-size: clamp(18px, 2.4vw, 24px); font-weight: 700; margin: 0 0 4px; color: #fff; }
.exp-desc {
  font-size: 13px; line-height: 1.7; color: rgba(245,241,232,.82);
  max-width: 44ch; margin: 0 0 12px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.exp-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.exp-price { font-family: var(--serif-en); font-size: 19px; color: var(--gold-light); font-weight: 600; line-height: 1.2; }
html[lang="ar"] .exp-price { font-family: var(--sans-ar); }
.exp-price .from { display: block; font-family: var(--sans-ar); font-size: 11px; color: var(--text-soft); font-weight: 400; }
.exp-cta {
  font-size: 13px; font-weight: 600; color: var(--cream); text-decoration: none;
  border: 1px solid rgba(201,169,97,.5); padding: 7px 15px; border-radius: 999px;
  white-space: nowrap; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.exp-cta:hover { background: var(--gold); color: var(--emerald-deep); border-color: var(--gold); }

/* ===================================================================
   Expandable trip card → detail sheet (shared-layout / FLIP)
=================================================================== */
.trip-card--expand { cursor: pointer; }
.trip-card--expand h3 { transition: color .25s var(--ease); }
.trip-card--expand:hover h3 { color: var(--gold); }
.trip-card--expand:focus-visible { outline: none; border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold); }
.trip-expand-hint {
  position: absolute; bottom: 14px; inset-inline-end: 14px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold); color: var(--emerald-deep);
  box-shadow: 0 6px 18px rgba(201,169,97,.35);
  opacity: 0; transform: scale(.6) rotate(-45deg);
  transition: opacity .3s var(--ease), transform .4s var(--ease);
}
.trip-expand-hint svg { width: 17px; height: 17px; }
.trip-card--expand:hover .trip-expand-hint,
.trip-card--expand:focus-visible .trip-expand-hint { opacity: 1; transform: scale(1) rotate(0); }

#txRoot { position: fixed; inset: 0; z-index: 100000; }
#txRoot[hidden] { display: none; }
body.tx-open { overflow: hidden; }
.tx-backdrop {
  position: fixed; inset: 0; z-index: 1;
  background: rgba(2,28,22,.62);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  opacity: 0;
}
.tx-wrap {
  position: fixed; inset: 0; z-index: 2;
  display: grid; place-items: center;
  padding: 24px; padding-top: max(24px, env(safe-area-inset-top));
}
@media (min-width: 700px) { .tx-wrap { align-items: start; padding-top: 56px; } }

.tx-panel {
  position: relative; width: 100%; max-width: 860px;
  max-height: calc(100dvh - 48px);
  display: flex; flex-direction: column;
  overflow-y: auto; overscroll-behavior: contain;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 40px 120px -30px rgba(2,28,22,.9);
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.tx-panel::-webkit-scrollbar { display: none; }
@media (min-width: 700px) { .tx-panel { max-height: calc(100dvh - 88px); } }

.tx-hero { position: relative; flex: none; }
.tx-hero img { width: 100%; height: 320px; object-fit: cover; object-position: center; display: block; }
.tx-hero-grad { position: absolute; inset: 0; background: linear-gradient(to top, var(--surface) 1px, rgba(19,26,23,.35) 70px, transparent 180px); pointer-events: none; }
.tx-badge {
  position: absolute; top: 18px; inset-inline-start: 18px;
  background: var(--gold); color: var(--emerald-deep);
  padding: 5px 13px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700;
  border-radius: 4px;
}
html[lang="ar"] .tx-badge { letter-spacing: .04em; }
.tx-hero-meta {
  position: absolute; bottom: 18px; inset-inline-start: 28px; inset-inline-end: 28px;
  display: flex; align-items: center; gap: 8px;
  color: var(--cream); font-size: 13px; letter-spacing: .05em;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.tx-hero-meta svg { width: 16px; height: 16px; color: var(--gold-light); flex: none; }

.tx-close {
  position: sticky; top: 14px; z-index: 6;
  align-self: flex-end;
  margin-top: 14px; margin-inline-end: 14px; margin-bottom: -56px;
  width: 42px; height: 42px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(10,15,13,.72); color: var(--cream);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: transform .4s var(--ease), background .25s, color .25s, border-color .25s;
}
.tx-close svg { width: 20px; height: 20px; transform: rotate(45deg); }
.tx-close:hover { background: var(--gold); color: var(--emerald-deep); border-color: var(--gold); transform: rotate(90deg); }

.tx-body { padding: 26px 32px 32px; opacity: 0; transform: translateY(8px); transition: opacity .35s ease .12s, transform .45s var(--ease) .12s; }
#txRoot.tx-active .tx-body { opacity: 1; transform: none; }
#txRoot.tx-closing .tx-body { opacity: 0 !important; transform: none; transition: opacity .12s ease; }
@media (max-width: 600px) { .tx-body { padding: 22px 20px 26px; } .tx-hero img { height: 240px; } }

.tx-head { margin-bottom: 20px; }
.tx-country { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
html[lang="ar"] .tx-country { letter-spacing: .08em; }
.tx-title { font-size: clamp(26px, 4.2vw, 38px); color: var(--cream); margin: 0 0 12px; line-height: 1.2; }
.tx-desc { color: var(--text-soft); font-size: 15px; line-height: 1.8; margin: 0; max-width: 62ch; }

.tx-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden;
  margin-bottom: 24px;
}
.tx-stat { background: var(--surface-2); padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; }
.tx-stat-l { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gray); }
html[lang="ar"] .tx-stat-l { letter-spacing: .04em; }
.tx-stat-v { font-size: 14px; color: var(--cream); font-weight: 500; }
.tx-rating { display: inline-flex; align-items: center; gap: 5px; color: var(--gold-light); }
.tx-rating svg { width: 15px; height: 15px; }
.tx-rating small { color: var(--gray); font-weight: 400; }

.tx-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 26px; }
@media (max-width: 600px) { .tx-cols { grid-template-columns: 1fr; gap: 22px; } }
.tx-block h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin: 0 0 12px; font-family: var(--sans-en); }
html[lang="ar"] .tx-block h4 { font-family: var(--sans-ar); letter-spacing: .03em; font-size: 14px; }
.tx-incl { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.tx-incl li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-soft); line-height: 1.5; }
.tx-incl svg { width: 18px; height: 18px; flex: none; color: var(--emerald-light); margin-top: 1px; }
.tx-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.tx-chip {
  font-size: 12.5px; color: var(--cream); padding: 5px 12px; border-radius: 999px;
  background: var(--surface-3); border: 1px solid var(--line);
}
.tx-sup { display: flex; flex-direction: column; gap: 10px; }
.tx-sup-i { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-soft); }
.tx-sup-d {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: rgba(201,169,97,.15); color: var(--gold-light);
  font-weight: 700; font-size: 14px;
}

.tx-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding-top: 22px; border-top: 1px solid var(--line-soft);
}
.tx-price-block .from { font-size: 11px; color: var(--gray); letter-spacing: .15em; text-transform: uppercase; }
html[lang="ar"] .tx-price-block .from { letter-spacing: .04em; }
.tx-price { font-family: var(--serif-en); font-size: 32px; color: var(--gold); font-weight: 600; line-height: 1; }
html[lang="ar"] .tx-price { font-family: var(--serif-ar); }
.tx-currency { font-size: 14px; color: var(--gray); margin-inline-start: 5px; }
.tx-actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) {
  .tx-backdrop, .tx-body, .tx-panel { transition: none !important; }
  .tx-body { opacity: 1; transform: none; }
}
