/* Theme: Luxury black + metallic gold (reference) */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&family=Montserrat:wght@500;600;700&display=swap");

:root {
  --ink: #f7f4ec;
  --ink-soft: #b8b0a0;
  --paper: #000000;
  --surface: #0c0c0c;
  --surface-2: #141414;
  --gold: #d4af37;
  --gold-bright: #e8c547;
  --gold-deep: #a8892a;
  --red: #d4af37;
  --red-hot: #e8c547;
  --brass: #d4af37;
  --line: rgba(212, 175, 55, 0.18);
  --line-strong: rgba(212, 175, 55, 0.45);
  --font-ar: "IBM Plex Sans Arabic", "Montserrat", "Segoe UI", Tahoma, sans-serif;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-en: "Montserrat", "IBM Plex Sans Arabic", sans-serif;
  --header: #000000;
  --hero-base: #000000;
}

body {
  color: var(--ink);
  background: #000;
  font-family: var(--font-ar);
}

a:hover {
  color: var(--gold-bright);
}

.site-header {
  background: rgba(0, 0, 0, 0.88);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  backdrop-filter: blur(10px);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(0, 0, 0, 0.96);
  border-bottom-color: rgba(212, 175, 55, 0.28);
}

.nav a {
  color: var(--gold);
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

html[lang^="ar"] .nav a {
  font-family: var(--font-ar);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.95rem;
}

.nav a:not(.nav-cta)::after {
  background: var(--gold);
}

.nav-cta {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  box-shadow: none !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: #000 !important;
}

.lang-switch {
  color: var(--gold) !important;
}

.nav-toggle {
  border-color: rgba(212, 175, 55, 0.35);
}

.nav-toggle span {
  background: var(--gold);
}

/* Hero */
.hero,
.page-home .hero-home {
  background: #000;
  min-height: auto;
  position: relative;
  overflow: hidden;
}

@media (min-width: 901px) {
  .page-home .hero-home {
    min-height: min(78vh, 720px);
  }
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img.hero-photo,
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  display: block;
  animation: hero-drift 22s ease-in-out infinite alternate;
}

html[dir="rtl"] .hero-photo {
  object-position: 30% center;
}

.hero-media::before,
.page-home .hero-home .hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.2) 72%, rgba(0, 0, 0, 0.35) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, transparent 42%) !important;
}

html[dir="rtl"] .hero-media::before,
html[dir="rtl"] .page-home .hero-home .hero-media::before {
  background:
    linear-gradient(270deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.2) 72%, rgba(0, 0, 0, 0.35) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, transparent 42%) !important;
}

.hero::after,
.page-home .hero-home::after {
  background: linear-gradient(0deg, #000, transparent) !important;
  height: 56px !important;
}

.hero-copy,
.page-home .hero-home .hero-copy {
  color: var(--ink);
  position: relative;
  z-index: 2;
}

.hero-home .hero-kicker {
  color: var(--gold) !important;
  font-family: var(--font-ar);
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 700;
}

html[lang^="en"] .hero-home .hero-kicker {
  font-family: var(--font-en);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.hero-home h1 {
  color: var(--gold) !important;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero .lede,
.hero-home .lede {
  color: rgba(247, 244, 236, 0.88) !important;
}

.hero-brand,
.hero-home .hero-brand {
  background: transparent;
  padding: 0;
  width: min(420px, 94%);
  box-sizing: border-box;
  border: 0;
}

.btn-primary {
  background: var(--gold) !important;
  color: #000 !important;
  box-shadow: 0 10px 32px rgba(212, 175, 55, 0.28) !important;
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--gold-bright) !important;
  color: #000 !important;
}

.btn-ghost {
  border: 1px solid rgba(212, 175, 55, 0.65) !important;
  color: var(--ink) !important;
  background: rgba(0, 0, 0, 0.35) !important;
}

.btn-ghost:hover {
  border-color: var(--gold) !important;
  background: rgba(212, 175, 55, 0.12) !important;
  color: var(--gold-bright) !important;
}

.section h2,
.home-section-title,
.page-hero h1,
.prose h2,
.related h2,
.home-contact h2,
.choose-tile strong,
.why-list strong,
.faq summary,
.quick-bar strong {
  color: var(--gold);
  font-family: var(--font-display);
}

.home-section-title,
.home-contact h2,
.section h2,
.page-hero h1 {
  letter-spacing: 0.02em;
}

.section-lede,
.home-section-lede,
.prose p,
.prose ul,
.choose-tile span,
.home-bullets li,
.why-list span,
.home-contact > .shell > p,
.footer-inner p,
.page-hero .lede,
.breadcrumb,
.quick-bar span {
  color: var(--ink-soft);
}

.page-hero {
  background:
    radial-gradient(700px 320px at 80% 0%, rgba(212, 175, 55, 0.14), transparent 60%),
    #050505;
  border-bottom-color: var(--line);
}

.page-hero::after {
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 68%);
}

.page-hero h1 {
  color: var(--gold) !important;
}

.why,
.home-split {
  background: rgba(212, 175, 55, 0.03);
  border-color: var(--line);
}

.link-list a,
.home-links-row a,
.footer-inner nav a {
  color: #e8dfc8;
}

.link-list a::before {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.link-list a:hover,
.home-links-row a:hover {
  color: var(--gold-bright);
}

.service-row,
.home-links,
.quick-bar,
.faq,
.faq details,
.why-list li,
.home-bullets li,
.related {
  border-color: var(--line);
}

.service-row:hover {
  background: rgba(212, 175, 55, 0.05);
}

.service-kicker,
.choose-num,
.why-num,
.choose-go {
  color: var(--gold);
}

.choose-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
}

.choose-tile:hover {
  background: var(--surface-2);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25);
}

.home-choose {
  background: transparent;
}

.home-links,
.quick-bar {
  background: #050505;
}

.home-links-row a,
.quick-bar a {
  border-color: var(--line);
  color: var(--gold);
}

.home-links-row a:hover,
.quick-bar a:hover {
  background: rgba(212, 175, 55, 0.08);
  color: var(--gold-bright);
}

.steps li,
.toc {
  background: var(--surface);
  border-color: var(--line);
}

.steps li::before {
  color: var(--gold);
}

.toc strong {
  color: var(--gold);
}

.prose h2::before {
  background: var(--gold);
}

.callout {
  background: rgba(212, 175, 55, 0.07);
  border-color: rgba(212, 175, 55, 0.3);
}

.callout p {
  color: var(--ink-soft);
}

.home-contact {
  background:
    radial-gradient(700px 300px at 100% 0%, rgba(212, 175, 55, 0.16), transparent 60%),
    #050505;
  border-top: 1px solid var(--line);
}

.home-bullets li::before {
  background: var(--gold);
}

.site-footer {
  background: #000;
  border-top-color: var(--line);
}

.site-footer::before {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.journey-band {
  background: #050505;
}

.journey-copy,
.journey-copy h2 {
  color: var(--gold);
}

.journey-copy p {
  color: var(--ink-soft);
}

.mobile-cta {
  background: rgba(0, 0, 0, 0.94);
  border-top: 1px solid var(--line);
}

.mobile-cta a {
  background: var(--gold);
  color: #000 !important;
}

/* Trust strip under hero */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  border-block: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.95);
}

.trust-bar li {
  list-style: none;
  margin: 0;
  padding: 1rem 0.75rem;
  text-align: center;
  border-inline-start: 1px solid var(--line);
  color: var(--gold);
  font-family: var(--font-en);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
}

html[lang^="ar"] .trust-bar li {
  font-family: var(--font-ar);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.82rem;
}

.trust-bar li:first-child {
  border-inline-start: 0;
}

.trust-bar svg {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 auto 0.45rem;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
}

.hero-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.25rem;
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
  max-width: 34rem;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(247, 244, 236, 0.92);
  font-size: 0.92rem;
}

.hero-checks li::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  background:
    linear-gradient(var(--gold), var(--gold)) center / 0.35rem 0.35rem no-repeat;
  box-shadow: inset 0 0 0 2px #000;
}

@media (max-width: 900px) {
  .nav {
    background: rgba(0, 0, 0, 0.98) !important;
  }

  .page-home .hero-home {
    min-height: 0 !important;
  }

  .trust-bar {
    grid-template-columns: 1fr 1fr;
  }

  .trust-bar li:nth-child(odd) {
    border-inline-start: 0;
  }

  .trust-bar li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .trust-bar li:last-child {
    grid-column: 1 / -1;
  }

  .hero-checks {
    grid-template-columns: 1fr;
  }
}
