/* ============================================================================
   siyanacenter.net — site.css
   Compiled production CSS. No build step required.
   Brand tokens + utility classes (Tailwind-style subset) + components.
   Mobile-first, RTL-aware, performance-first.
   ============================================================================ */

/* ---------- 1. Brand tokens (from brand.css) -------------------------------- */
:root {
  --sc-onyx:        #0A0A0A;
  --sc-gold:        #C9A961;
  --sc-gold-dark:   #9c823d;
  --sc-gold-light:  #e0c587;
  --sc-burgundy:    #7A1626;
  --sc-cream:       #FAF7F0;
  --sc-graphite:    #1A1815;
  --sc-slate:       #2C2826;
  --sc-ash:         #5C5852;
  --sc-ink:         #1A1611;

  --sc-bg:          var(--sc-onyx);
  --sc-bg-elevated: var(--sc-graphite);
  --sc-bg-card:     var(--sc-slate);
  --sc-text:        var(--sc-cream);
  --sc-text-muted:  #9c9690;
  --sc-accent:      var(--sc-gold);
  --sc-accent-h:    var(--sc-gold-light);
  --sc-warning:     var(--sc-burgundy);
  --sc-border:      rgba(201, 169, 97, 0.15);
  --sc-border-h:    rgba(201, 169, 97, 0.45);

  --sc-font-ar-display: 'Noto Kufi Arabic', 'Tajawal', 'Cairo', system-ui, sans-serif;
  --sc-font-ar-body:    'Noto Naskh Arabic', 'Tajawal', system-ui, sans-serif;
  --sc-font-la-display: 'Cinzel', 'EB Garamond', Georgia, serif;
  --sc-font-mono:       'JetBrains Mono', 'Fira Code', monospace;

  --sc-ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
  --sc-dur-quick:   220ms;
  --sc-dur-normal:  450ms;
  --sc-dur-slow:    600ms;

  --sc-radius-sm: 4px;
  --sc-radius-md: 8px;
  --sc-radius-lg: 16px;
  --sc-radius-xl: 24px;
  --sc-radius-pill: 999px;

  --sc-container: 1200px;
}

/* ---------- 2. Reset --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 4; line-height: 1.6; scroll-behavior: smooth; overflow-x: clip; }
body {
  background: var(--sc-bg);
  color: var(--sc-text);
  font-family: var(--sc-font-ar-body);
  font-size: 17px;
  line-height: 1.85;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern', 'liga';
  min-height: 100vh;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--sc-accent); text-decoration: none; transition: color var(--sc-dur-quick) var(--sc-ease); }
a:hover { color: var(--sc-accent-h); }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--sc-font-ar-display); font-weight: 900; line-height: 1.25; letter-spacing: -0.01em; }

/* ---------- 3. Layout primitives -------------------------------------------- */
.container { max-width: var(--sc-container); margin-inline: auto; padding-inline: 20px; }
@media (min-width: 768px) { .container { padding-inline: 32px; } }

.section { padding-block: 64px; }
@media (min-width: 768px) { .section { padding-block: 96px; } }
.section-sm { padding-block: 48px; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-4 { 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); } }

.flex     { display: flex; }
.flex-col { flex-direction: column; }
.cta-row  { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
@media (max-width: 480px) { .cta-row { flex-direction: column; align-items: stretch; } .cta-row .btn { width: 100%; } }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }  .gap-3 { gap: 12px; }
.gap-4 { gap: 16px; } .gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

.text-center { text-align: center; }
.text-right  { text-align: right; }

.mt-0 {margin-top:0}     .mt-2 {margin-top:8px}    .mt-4 {margin-top:16px}
.mt-6 {margin-top:24px}  .mt-8 {margin-top:32px}   .mt-10{margin-top:48px}
.mb-0 {margin-bottom:0}  .mb-2 {margin-bottom:8px} .mb-4 {margin-bottom:16px}
.mb-6 {margin-bottom:24px} .mb-8 {margin-bottom:32px} .mb-10{margin-bottom:48px}

.hidden { display: none; }
@media (min-width: 768px) { .md\:block { display: block; } .md\:flex { display: flex; } .md\:hidden { display: none; } }

/* ---------- 4. Typography utilities ----------------------------------------- */
.display-ar { font-family: var(--sc-font-ar-display); font-weight: 900; letter-spacing: -0.02em; }
.display-la { font-family: var(--sc-font-la-display); font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }
.body-ar    { font-family: var(--sc-font-ar-body); }
.text-mono  { font-family: var(--sc-font-mono); }

.text-xs   { font-size: 12px; }
.text-sm   { font-size: 14px; }
.text-base { font-size: 17px; }
.text-lg   { font-size: 20px; }
.text-xl   { font-size: 24px; }
.text-2xl  { font-size: 28px; line-height: 1.3; }
.text-3xl  { font-size: 36px; line-height: 1.2; }
.text-4xl  { font-size: 48px; line-height: 1.15; }
.text-5xl  { font-size: 60px; line-height: 1.1; }
@media (min-width: 768px) {
  .md\:text-2xl { font-size: 32px; }
  .md\:text-3xl { font-size: 44px; }
  .md\:text-4xl { font-size: 60px; }
  .md\:text-5xl { font-size: 84px; }
}

.font-light  { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-bold   { font-weight: 700; }
.font-black  { font-weight: 900; }

.text-gold     { color: var(--sc-gold); }
.text-cream    { color: var(--sc-cream); }
.text-muted    { color: var(--sc-text-muted); }
.text-burgundy { color: var(--sc-burgundy); }

.tracking-wide  { letter-spacing: 0.08em; }
.tracking-mega  { letter-spacing: 0.18em; }
.tracking-tight { letter-spacing: -0.02em; }

.leading-tight { line-height: 1.2; }
.leading-loose { line-height: 2.0; }

/* ---------- 5. Surfaces ------------------------------------------------------ */
.bg-onyx     { background: var(--sc-onyx); }
.bg-graphite { background: var(--sc-graphite); }
.bg-slate    { background: var(--sc-slate); }
.bg-cream    { background: var(--sc-cream); color: var(--sc-onyx); }
.bg-gold     { background: var(--sc-gold); color: var(--sc-onyx); }

.surface-card {
  background: var(--sc-bg-card);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-lg);
  padding: 24px;
  transition: border-color var(--sc-dur-normal) var(--sc-ease),
              transform var(--sc-dur-normal) var(--sc-ease);
}
.surface-card:hover { border-color: var(--sc-border-h); transform: translateY(-2px); }

.divider-gold {
  width: 60px; height: 1px;
  background: var(--sc-gold);
  margin: 24px auto;
  opacity: 0.5;
}

/* ---------- 6. Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: var(--sc-radius-pill);
  font-family: var(--sc-font-ar-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--sc-dur-normal) var(--sc-ease);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--sc-gold);
  color: var(--sc-onyx);
  border-color: var(--sc-gold);
}
.btn-primary:hover {
  background: var(--sc-gold-light);
  color: var(--sc-onyx);
  border-color: var(--sc-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--sc-gold);
  border-color: var(--sc-gold);
}
.btn-outline:hover {
  background: var(--sc-gold);
  color: var(--sc-onyx);
}
.btn-lg { padding: 18px 40px; font-size: 18px; }
.btn-sm { padding: 10px 22px; font-size: 14px; }

/* ---------- 7. Header ------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sc-border);
  transition: background var(--sc-dur-normal) var(--sc-ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
}
.site-header__logo img {
  height: 48px;
  width: auto;
}
@media (min-width: 768px) {
  .site-header__logo img { height: 56px; }
}
.site-nav {
  display: none;
  gap: 32px;
}
@media (min-width: 1024px) { .site-nav { display: flex; } }
.site-nav a {
  color: var(--sc-text);
  font-family: var(--sc-font-ar-display);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding-block: 6px;
}
.site-nav a:hover { color: var(--sc-gold); }
.site-nav a::after {
  content: '';
  position: absolute;
  inset-inline-start: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--sc-gold);
  transition: width var(--sc-dur-normal) var(--sc-ease);
}
.site-nav a:hover::after { width: 100%; }

.menu-toggle {
  display: flex; flex-direction: column; gap: 4px;
  padding: 8px;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: var(--sc-cream);
  transition: all var(--sc-dur-quick) var(--sc-ease);
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Header mobile actions container — phone icon + hamburger side-by-side */
.site-header__mobile-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 1024px) {
  .site-header__mobile-actions { display: none; }
}

/* Phone icon button in header (mobile only) — eye-catching */
.header-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--sc-gold);
  color: var(--sc-onyx);
  text-decoration: none;
  position: relative;
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.45);
  transition: transform var(--sc-dur-quick) var(--sc-ease), box-shadow var(--sc-dur-quick) var(--sc-ease);
}
/* Pulsing ring to draw attention */
.header-call-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--sc-gold);
  opacity: 0;
  animation: header-call-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes header-call-pulse {
  0%   { transform: scale(0.9); opacity: 0.7; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}
.header-call-btn:hover,
.header-call-btn:focus {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(201, 169, 97, 0.65);
  color: var(--sc-onyx);
}
.header-call-btn:active { transform: scale(0.95); }
.header-call-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
  /* Subtle ringing wiggle on the phone icon */
  animation: header-call-wiggle 2.4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes header-call-wiggle {
  0%, 60%, 100% { transform: rotate(0deg); }
  68% { transform: rotate(-12deg); }
  74% { transform: rotate(12deg); }
  80% { transform: rotate(-8deg); }
  86% { transform: rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .header-call-btn::before,
  .header-call-btn svg { animation: none; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10, 10, 10, 0.86);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: flex-end;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--sc-ease);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__inner {
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: linear-gradient(180deg, var(--sc-graphite) 0%, var(--sc-onyx) 100%);
  border-inline-start: 1px solid rgba(201, 169, 97, 0.18);
  padding: 24px 24px calc(24px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}
[dir="ltr"] .mobile-menu__inner { transform: translateX(100%); }
.mobile-menu.is-open .mobile-menu__inner { transform: translateX(0); }
.mobile-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sc-border);
}
.mobile-menu__logo img {
  height: 54px;
  width: auto;
  display: block;
}
.mobile-menu__close {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--sc-border);
  background: transparent;
  color: var(--sc-cream);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--sc-dur-normal) var(--sc-ease);
}
.mobile-menu__close:hover {
  border-color: var(--sc-gold);
  color: var(--sc-gold);
}
.mobile-menu__close svg { width: 18px; height: 18px; }
.mobile-menu__eyebrow {
  font-family: var(--sc-font-la-display);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sc-gold);
  font-size: 10px;
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 10px;
  opacity: 0.8;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--sc-cream);
  font-family: var(--sc-font-ar-display);
  font-weight: 500;
  font-size: 17px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--sc-border);
  text-decoration: none;
  transition: padding var(--sc-dur-normal) var(--sc-ease), color var(--sc-dur-normal) var(--sc-ease);
}
.mobile-menu__nav a:hover,
.mobile-menu__nav a:focus {
  color: var(--sc-gold);
  padding-inline-start: 12px;
}
.mobile-menu__nav a:last-child { border-bottom: 0; }
.mobile-menu__nav a > span:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-menu__nav a > svg {
  width: 16px;
  height: 16px;
  color: var(--sc-gold);
  opacity: 0.5;
  transition: transform var(--sc-dur-normal) var(--sc-ease), opacity var(--sc-dur-normal) var(--sc-ease);
}
.mobile-menu__nav a:hover > svg {
  opacity: 1;
  transform: translateX(-4px);
}
.mobile-menu__mono {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid rgba(201, 169, 97, 0.3);
  font-family: var(--sc-font-la-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--sc-gold);
  letter-spacing: 0;
}
.mobile-menu__footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--sc-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-menu__footer .btn { width: 100%; }
.mobile-menu__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  color: var(--sc-cream);
  font-family: var(--sc-font-la-display);
  font-size: 15px;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-pill);
  transition: all var(--sc-dur-normal) var(--sc-ease);
}
.mobile-menu__phone:hover {
  border-color: var(--sc-gold);
  color: var(--sc-gold);
}
.mobile-menu__phone svg {
  width: 16px;
  height: 16px;
  color: var(--sc-gold);
}

/* ---------- 8. Hero --------------------------------------------------------- */
.hero {
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 120px 0 96px; } }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201, 169, 97, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--sc-onyx) 0%, var(--sc-graphite) 100%);
  z-index: -1;
}
.hero__logo {
  width: 200px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
}
@media (min-width: 768px) { .hero__logo { width: 260px; margin-bottom: 32px; } }
.hero__eyebrow {
  font-family: var(--sc-font-ar-display);
  letter-spacing: 0.4em;
  color: var(--sc-gold);
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
  padding: 0 56px;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--sc-gold);
  opacity: 0.4;
}
.hero__eyebrow::before { right: 0; }
.hero__eyebrow::after  { left: 0; }
@media (min-width: 768px) { .hero__eyebrow { font-size: 13px; padding: 0 72px; } .hero__eyebrow::before, .hero__eyebrow::after { width: 56px; } }
.hero__title {
  font-size: 32px;
  margin-bottom: 16px;
  max-width: 800px;
  margin-inline: auto;
}
@media (min-width: 768px) { .hero__title { font-size: 56px; margin-bottom: 24px; } }
.hero__sub {
  color: var(--sc-text-muted);
  font-size: 17px;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .hero__sub { font-size: 20px; margin-bottom: 56px; } }

/* ---------- 9. Brand grid (homepage) ---------------------------------------- */
.brand-card {
  background: linear-gradient(180deg, var(--sc-graphite) 0%, var(--sc-slate) 100%);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-lg);
  padding: 36px 24px 32px;
  text-align: center;
  transition: all var(--sc-dur-normal) var(--sc-ease);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sc-gold), transparent);
  opacity: 0;
  transition: opacity var(--sc-dur-normal) var(--sc-ease);
}
.brand-card:hover {
  border-color: var(--sc-border-h);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}
.brand-card:hover::before { opacity: 1; }
.brand-card__name {
  font-size: 28px;
  margin-bottom: 6px;
  color: var(--sc-cream);
  font-weight: 700;
}
.brand-card__country {
  font-family: var(--sc-font-la-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sc-gold);
  font-size: 11px;
  margin-bottom: 16px;
}
.brand-card__tagline {
  color: var(--sc-text-muted);
  font-size: 15px;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 24px;
}
.brand-card__cta {
  color: var(--sc-gold);
  font-family: var(--sc-font-ar-display);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex; gap: 8px;
  justify-content: center;
}

/* ---------- 10. How-it-works steps ------------------------------------------ */
.step-grid { gap: 32px; }
.step {
  text-align: center;
  padding: 32px 20px;
  background: linear-gradient(180deg, var(--sc-graphite) 0%, var(--sc-slate) 100%);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-lg);
  transition: all var(--sc-dur-normal) var(--sc-ease);
  position: relative;
}
.step:hover {
  border-color: var(--sc-border-h);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}
.step__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--sc-border);
  color: var(--sc-gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  transition: all var(--sc-dur-normal) var(--sc-ease);
  background: var(--sc-onyx);
}
.step__icon svg { width: 28px; height: 28px; }
.step:hover .step__icon {
  border-color: var(--sc-gold);
  background: rgba(201,169,97,0.06);
}
.step__title {
  font-family: var(--sc-font-ar-display);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--sc-cream);
  letter-spacing: 0.01em;
}
.step__text {
  color: var(--sc-text-muted);
  font-size: 14.5px;
  line-height: 1.85;
}

/* ---------- 10b. Hero trust badges ------------------------------------------ */
.hero__trust {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--sc-border);
  list-style: none;
  padding-inline-start: 0;
  max-width: 720px;
  margin-inline: auto;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sc-text-muted);
  font-size: 14px;
}
.hero__trust svg {
  width: 18px;
  height: 18px;
  color: var(--sc-gold);
  flex-shrink: 0;
}

/* ---------- 10c. Section heads ---------------------------------------------- */
.section-head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 680px;
  margin-inline: auto;
}
.section-head__eyebrow {
  font-family: var(--sc-font-la-display);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sc-gold);
  font-size: 11px;
  margin-bottom: 12px;
  font-weight: 500;
}
.section-head__title {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--sc-cream);
}
@media (min-width: 768px) { .section-head__title { font-size: 36px; } }
.section-head__sub {
  color: var(--sc-text-muted);
  font-size: 15px;
  line-height: 1.85;
  margin-top: 16px;
  max-width: 560px;
  margin-inline: auto;
}

/* ---------- 10d. Brand card monogram ---------------------------------------- */
.brand-grid { gap: 24px; }
.brand-card__monogram {
  font-family: var(--sc-font-la-display);
  font-size: 44px;
  font-weight: 500;
  color: var(--sc-gold);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  opacity: 0.85;
  line-height: 1;
}
.brand-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}
.brand-card__cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--sc-dur-normal) var(--sc-ease);
}
.brand-card:hover .brand-card__cta svg { transform: translateX(-4px); }

/* ---------- 10e. Promise strip ---------------------------------------------- */
.promise-grid { gap: 24px; }
.promise {
  text-align: center;
  padding: 16px 12px;
}
.promise__icon {
  width: 44px;
  height: 44px;
  color: var(--sc-gold);
  margin: 0 auto 16px;
  display: block;
}
.promise__title {
  font-family: var(--sc-font-ar-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--sc-cream);
  margin-bottom: 8px;
}
.promise__text {
  color: var(--sc-text-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* ---------- 10f. CTA strip -------------------------------------------------- */
.cta-strip {
  background: linear-gradient(180deg, var(--sc-graphite) 0%, var(--sc-onyx) 100%);
  border-top: 1px solid var(--sc-border);
  border-bottom: 1px solid var(--sc-border);
}
.cta-strip__sub {
  color: var(--sc-text-muted);
  max-width: 560px;
  margin: 0 auto 24px;
  font-size: 15px;
  line-height: 1.85;
}

/* ---------- 11. Testimonial cards ------------------------------------------- */
.testimonial {
  background: var(--sc-bg-card);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-lg);
  padding: 32px;
  position: relative;
  display: flex; flex-direction: column;
}
.testimonial__rating {
  color: var(--sc-gold);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.testimonial__body {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 24px;
  color: var(--sc-cream);
  flex-grow: 1;
}
.testimonial__author {
  border-top: 1px solid var(--sc-border);
  padding-top: 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.testimonial__author-name {
  font-family: var(--sc-font-ar-display);
  font-weight: 700;
  color: var(--sc-cream);
  font-size: 15px;
}
.testimonial__author-meta {
  color: var(--sc-text-muted);
  font-size: 13px;
}

/* ---------- 12. Tier 1 brand-hub specific ----------------------------------- */
.brand-hero {
  padding-block: 80px 56px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--sc-border);
}
.brand-hero__country {
  display: inline-block;
  font-family: var(--sc-font-la-display);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sc-gold);
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 24px;
  opacity: 0.9;
}
.brand-hero__title {
  font-size: 32px;
  max-width: 720px;
  margin: 0 auto 20px;
  line-height: 1.3;
}
@media (min-width: 768px) { .brand-hero__title { font-size: 48px; } }
.brand-hero__tagline {
  color: var(--sc-text-muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.85;
}

.prose {
  max-width: 760px;
  margin-inline: auto;
}
.prose h2 {
  font-size: 28px;
  color: var(--sc-cream);
  margin-top: 56px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sc-border);
}
@media (min-width: 768px) { .prose h2 { font-size: 36px; } }
.prose h2::before {
  content: '';
  position: absolute; bottom: -1px; inset-inline-start: 0;
  width: 60px; height: 1px;
  background: var(--sc-gold);
}
.prose h3 {
  font-size: 22px;
  color: var(--sc-burgundy);
  filter: brightness(1.4);
  margin-top: 36px; margin-bottom: 12px;
}
.prose p {
  font-size: 17px;
  line-height: 1.95;
  color: var(--sc-text);
  margin-bottom: 18px;
}
.prose ul, .prose ol {
  margin-bottom: 18px;
  padding-inline-start: 24px;
}
.prose ul { list-style: none; }
.prose ul li {
  padding-inline-start: 24px;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.85;
}
.prose ul li::before {
  content: '◆';
  position: absolute;
  inset-inline-start: 0; top: 0;
  color: var(--sc-gold);
  font-size: 10px;
  line-height: 1.85;
}
.prose ol li {
  list-style: arabic-indic;
  margin-bottom: 10px;
  padding-inline-start: 8px;
  line-height: 1.85;
}
.prose strong { color: var(--sc-gold); font-weight: 700; }
.prose blockquote {
  border-inline-start: 3px solid var(--sc-gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--sc-graphite);
  border-radius: 0 var(--sc-radius-md) var(--sc-radius-md) 0;
  font-style: italic;
  color: var(--sc-cream);
}

/* Lede — opening paragraph with gold edge bar */
.prose-lede {
  font-size: 19px;
  line-height: 1.95;
  color: var(--sc-cream);
  margin-bottom: 40px;
  padding: 24px 28px;
  background: var(--sc-graphite);
  border-inline-start: 3px solid var(--sc-gold);
  border-radius: 0 var(--sc-radius-md) var(--sc-radius-md) 0;
}
.prose-lede strong { color: var(--sc-gold); }

/* Figure with placeholder for admin uploads */
.prose-figure {
  margin: 32px 0;
  text-align: center;
}
.prose-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--sc-radius-lg);
  border: 1px solid var(--sc-border);
}
.prose-figure__placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, var(--sc-graphite) 0%, var(--sc-slate) 100%);
  border: 1px dashed rgba(201, 169, 97, 0.35);
  border-radius: var(--sc-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(201, 169, 97, 0.55);
  padding: 32px;
}
.prose-figure__placeholder svg { width: 48px; height: 48px; opacity: 0.6; }
.prose-figure__placeholder span {
  font-family: var(--sc-font-ar-display);
  font-size: 14px;
  color: var(--sc-text-muted);
  text-align: center;
  max-width: 480px;
  line-height: 1.7;
}
.prose-figure figcaption {
  margin-top: 14px;
  font-size: 14px;
  color: var(--sc-text-muted);
  font-style: italic;
}

/* Model card — highlighted product callout */
.model-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: linear-gradient(180deg, var(--sc-graphite) 0%, var(--sc-slate) 100%);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-lg);
  margin: 32px 0;
  overflow: hidden;
  transition: border-color var(--sc-dur-normal) var(--sc-ease);
}
@media (min-width: 640px) { .model-card { grid-template-columns: 240px 1fr; } }
.model-card:hover { border-color: var(--sc-border-h); }
.model-card__media { background: var(--sc-onyx); }
.model-card__media img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; }
.model-card__placeholder {
  width: 100%; min-height: 180px; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(201, 169, 97, 0.4);
  border-inline-end: 1px solid var(--sc-border);
}
.model-card__placeholder svg { width: 56px; height: 56px; }
.model-card__body { padding: 24px; }
.model-card__country {
  font-family: var(--sc-font-la-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sc-gold);
  margin-bottom: 8px;
}
.model-card__title {
  font-family: var(--sc-font-ar-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--sc-cream);
  margin-bottom: 12px !important;
}
.model-card__desc {
  font-size: 15px !important;
  line-height: 1.85 !important;
  color: var(--sc-text-muted) !important;
  margin-bottom: 16px !important;
}
.model-card__errors {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  padding-top: 14px; border-top: 1px dashed var(--sc-border);
}
.model-card__errors span {
  font-size: 13px;
  color: var(--sc-text-muted);
  margin-inline-end: 4px;
}

/* Error code badge */
.error-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--sc-radius-sm);
  background: rgba(122, 22, 38, 0.18);
  border: 1px solid rgba(122, 22, 38, 0.45);
  color: #e8a4af;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.error-badge--lg {
  padding: 12px 20px;
  font-size: 18px;
  flex-shrink: 0;
}

/* Code callout — for explaining error codes inline */
.code-callout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--sc-graphite);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}
.code-callout__body { flex: 1; }
.code-callout__body strong {
  display: block;
  color: var(--sc-cream);
  font-family: var(--sc-font-ar-display);
  font-size: 16px;
  margin-bottom: 6px;
}
.code-callout__body p {
  margin: 0 !important;
  font-size: 14.5px !important;
  color: var(--sc-text-muted) !important;
  line-height: 1.85 !important;
}

/* Stat grid — for highlighting numbers */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  text-align: center;
  padding: 24px 16px;
  background: var(--sc-graphite);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-md);
}
.stat__value {
  font-family: var(--sc-font-la-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--sc-gold);
  margin-bottom: 6px;
  line-height: 1.1;
}
.stat__label {
  font-size: 13px;
  color: var(--sc-text-muted);
  line-height: 1.6;
}

/* Tip / aside callout */
.prose-tip {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(201, 169, 97, 0.06);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-inline-start-width: 3px;
  border-radius: var(--sc-radius-md);
  padding: 18px 22px;
  margin: 24px 0;
}
.prose-tip > svg {
  width: 22px; height: 22px;
  color: var(--sc-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.prose-tip__body {
  flex: 1;
  font-size: 15px;
  color: var(--sc-cream);
  line-height: 1.85;
}
.prose-tip__body strong { color: var(--sc-gold); }

/* ---------- 13. FAQ accordion ----------------------------------------------- */
.faq {
  border-bottom: 1px solid var(--sc-border);
  padding-block: 4px;
}
.faq[open] { border-color: var(--sc-border-h); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 0;
  font-family: var(--sc-font-ar-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--sc-cream);
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px;
  transition: color var(--sc-dur-quick) var(--sc-ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--sc-gold); }
.faq summary::after {
  content: '+';
  font-family: var(--sc-font-la-display);
  font-size: 24px;
  color: var(--sc-gold);
  flex-shrink: 0;
  transition: transform var(--sc-dur-normal) var(--sc-ease);
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq__body {
  padding: 0 0 24px;
  color: var(--sc-text-muted);
  line-height: 1.95;
  font-size: 16px;
}

/* ---------- 14. Internal links / category-grid ------------------------------ */
.link-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px)  { .link-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .link-grid { grid-template-columns: repeat(3, 1fr); } }
.link-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--sc-bg-card);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-md);
  color: var(--sc-cream);
  font-family: var(--sc-font-ar-display);
  font-weight: 500;
  font-size: 15px;
  transition: all var(--sc-dur-quick) var(--sc-ease);
}
.link-grid a:hover {
  border-color: var(--sc-gold);
  color: var(--sc-gold);
  transform: translateX(-4px);
}
[dir="ltr"] .link-grid a:hover { transform: translateX(4px); }

/* ---------- 15. Floating WhatsApp button ----------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  inset-inline-start: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 90;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform var(--sc-dur-normal) var(--sc-ease);
}
.whatsapp-float:hover { transform: scale(1.08); color: white; }
.whatsapp-float svg { width: 28px; height: 28px; }

/* Hide whatsapp float on mobile (replaced by mobile CTA bar) */
@media (max-width: 1023px) {
  .whatsapp-float { display: none; }
}

/* Mobile utility: hide element on mobile (when CTA bar replaces it) */
@media (max-width: 1023px) {
  .hide-on-mobile { display: none !important; }
}

/* ---------- Mobile sticky CTA bar (mobile only) ---------------------------- */
.mobile-cta {
  display: none;
}
@media (max-width: 1023px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    inset-inline: 0;
    z-index: 95;
    background: linear-gradient(180deg, rgba(10,10,10,0.92) 0%, var(--sc-onyx) 100%);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(201, 169, 97, 0.18);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
  }
}
.mobile-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--sc-radius-pill);
  font-family: var(--sc-font-ar-display);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform var(--sc-dur-quick) var(--sc-ease), opacity var(--sc-dur-quick) var(--sc-ease);
}
.mobile-cta__btn:active { transform: scale(0.96); }
.mobile-cta__btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.mobile-cta__btn--call {
  background: var(--sc-gold);
  color: var(--sc-onyx);
  border-color: var(--sc-gold);
}
.mobile-cta__btn--wa {
  background: #25d366;
  color: white;
  border-color: #25d366;
}

/* Add bottom padding to body on mobile so content not hidden under CTA bar */
@media (max-width: 1023px) {
  body { padding-bottom: 78px; }
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
}

/* ---------- 16. Footer ----------------------------------------------------- */
.site-footer {
  background: var(--sc-graphite);
  border-top: 1px solid var(--sc-border);
  padding-block: 64px 32px;
  margin-top: 96px;
}
.site-footer__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(1, 1fr);
  margin-bottom: 48px;
}
@media (min-width: 640px)  { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.site-footer h4 {
  font-family: var(--sc-font-ar-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--sc-gold);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.site-footer__col ul li { margin-bottom: 10px; }
.site-footer__col a { color: var(--sc-text-muted); font-size: 14px; }
.site-footer__col a:hover { color: var(--sc-cream); }
.site-footer__disclaimer {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--sc-bg-elevated);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-md);
  font-size: 12px;
  color: var(--sc-text-muted);
  line-height: 1.85;
  text-align: center;
}
.site-footer__bottom {
  border-top: 1px solid var(--sc-border);
  padding-top: 24px;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 16px;
  color: var(--sc-text-muted);
  font-size: 13px;
}

/* ---------- 17. Booking form ----------------------------------------------- */
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-family: var(--sc-font-ar-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--sc-cream);
  margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--sc-bg-card);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-md);
  color: var(--sc-cream);
  font-family: var(--sc-font-ar-body);
  font-size: 16px;
  transition: border-color var(--sc-dur-quick) var(--sc-ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--sc-gold);
}
.form-field input::placeholder, .form-field textarea::placeholder {
  color: var(--sc-text-muted);
}
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ---------- 18. Animations -------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  animation: fadeUp 600ms var(--sc-ease) both;
}

/* ---------- 19. Print ------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .whatsapp-float, .booking-cta { display: none !important; }
  body { background: white; color: black; }
}

/* ---------- 20. Reduced motion -------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- 21. Logical-property fixes for RTL ----------------------------- */
[dir="rtl"] .site-nav a::after { left: auto; right: 0; }

/* ============================================================
   ============== DESIGN POLISH — PROSE ENHANCEMENTS =============
   ============================================================
   These classes layer on top of existing .prose styles to bring
   premium typographic touches: drop caps, gold pull quotes,
   inline stat highlights, elegant section dividers.
   Added as part of the design refinement — May 2026.
   ============================================================ */

/* ---------- Drop cap — first letter of lead paragraph ---------- */
.prose .prose__lead {
  font-size: 19px;
  line-height: 1.95;
  color: var(--sc-cream);
  margin-bottom: 28px;
}
.prose .prose__lead .dropcap,
.prose .dropcap {
  float: right;
  font-family: 'Cinzel', 'Noto Kufi Arabic', serif;
  font-size: 64px;
  line-height: 0.85;
  color: var(--sc-gold);
  margin: 6px 0 0 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .prose .prose__lead { font-size: 20px; line-height: 2.0; }
  .prose .dropcap { font-size: 76px; margin: 8px 0 0 18px; }
}

/* ---------- Gold pull quote — every 400-500 words ---------- */
.prose .pullquote-gold {
  position: relative;
  margin: 48px 0;
  padding: 28px 32px 28px 64px;
  background: var(--sc-bg-elevated);
  border: 1px solid var(--sc-border);
  border-right: 4px solid var(--sc-gold);
  border-radius: var(--sc-radius-md);
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--sc-cream);
  font-style: normal;
}
.prose .pullquote-gold::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 18px;
  font-family: 'Cinzel', serif;
  font-size: 56px;
  color: var(--sc-gold);
  opacity: 0.25;
  line-height: 1;
  pointer-events: none;
}
.prose .pullquote-gold p { margin: 0 0 12px; }
.prose .pullquote-gold p:last-child { margin-bottom: 0; }
.prose .pullquote-gold cite {
  display: block;
  margin-top: 14px;
  font-family: 'Noto Naskh Arabic', sans-serif;
  font-size: 14px;
  color: var(--sc-text-muted);
  font-style: normal;
}
.prose .pullquote-gold cite::before { content: ''; }
@media (min-width: 768px) {
  .prose .pullquote-gold { padding: 36px 40px 36px 80px; font-size: 22px; }
  .prose .pullquote-gold::before { font-size: 72px; top: 12px; right: 24px; }
}

/* ---------- Inline stat highlight — within paragraphs ---------- */
.prose .prose-stat {
  display: inline-block;
  font-family: 'Cinzel', sans-serif;
  font-weight: 700;
  font-size: 1.4em;
  color: var(--sc-gold);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0 4px;
  vertical-align: -2px;
}

/* ---------- Elegant section divider — replaces stark <hr> ---------- */
.divider-gold-elegant {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
  margin: 0;
  background: transparent;
}
.divider-gold-elegant::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 480px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(201, 169, 97, 0.3) 30%,
    rgba(201, 169, 97, 0.6) 50%,
    rgba(201, 169, 97, 0.3) 70%,
    transparent 100%
  );
}
.divider-gold-elegant::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--sc-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--sc-bg-base);
}

/* ---------- Numbered H2 — adds "01" "02" prefix in gold ---------- */
.prose--enhanced h2 {
  position: relative;
  padding-right: 0;
  counter-increment: prose-h2-counter;
}
.prose--enhanced { counter-reset: prose-h2-counter; }
.prose--enhanced h2.prose__h2-numbered::before {
  content: counter(prose-h2-counter, decimal-leading-zero);
  display: inline-block;
  font-family: 'Cinzel', sans-serif;
  font-size: 0.55em;
  font-weight: 400;
  color: var(--sc-gold);
  margin-left: 14px;
  vertical-align: 8px;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

/* ---------- Brand Hero with background image overlay ---------- */
.brand-hero--with-image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.brand-hero--with-image .brand-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.68) 50%,
    rgba(10, 10, 10, 0.92) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.brand-hero--with-image > .container {
  position: relative;
  z-index: 2;
}

/* ---------- Trust badges row beneath hero H1 ---------- */
.brand-hero__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 32px;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  font-size: 14px;
  color: var(--sc-text-muted);
}
.brand-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Enhanced spacing for prose sections ---------- */
.prose--enhanced > h2 { margin-top: 56px; margin-bottom: 20px; }
.prose--enhanced > h2:first-child { margin-top: 0; }
.prose--enhanced > p { margin-bottom: 22px; }
.prose--enhanced ul, .prose--enhanced ol { margin-bottom: 28px; }
.prose--enhanced ul li, .prose--enhanced ol li { margin-bottom: 12px; line-height: 1.85; }

/* ---------- FAQ block inside prose ---------- */
.prose--enhanced details.prose-faq {
  background: var(--sc-bg-elevated);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.prose--enhanced details.prose-faq[open] { border-color: rgba(201, 169, 97, 0.4); }
.prose--enhanced details.prose-faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--sc-cream);
  list-style: none;
  position: relative;
  padding-left: 56px;
}
.prose--enhanced details.prose-faq summary::-webkit-details-marker { display: none; }
.prose--enhanced details.prose-faq summary::after {
  content: '+';
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 1px solid var(--sc-gold);
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  font-size: 16px;
  color: var(--sc-gold);
  transition: transform 0.2s ease;
}
.prose--enhanced details.prose-faq[open] summary::after { content: '−'; }
.prose--enhanced details.prose-faq > div,
.prose--enhanced details.prose-faq > p {
  padding: 0 22px 20px;
  color: var(--sc-text-muted);
  line-height: 1.85;
  font-size: 15px;
}

/* ---------- Diagnostic table styling ---------- */
.prose--enhanced table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 15px;
  background: var(--sc-bg-elevated);
  border-radius: var(--sc-radius-md);
  overflow: hidden;
}
.prose--enhanced table th {
  background: rgba(201, 169, 97, 0.08);
  padding: 14px 18px;
  text-align: right;
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-weight: 700;
  color: var(--sc-gold);
  font-size: 14px;
  border-bottom: 1px solid var(--sc-border);
}
.prose--enhanced table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--sc-border);
  color: var(--sc-cream);
  line-height: 1.7;
}
.prose--enhanced table tr:last-child td { border-bottom: none; }
.prose--enhanced table tr:hover td { background: rgba(201, 169, 97, 0.03); }

/* ---------- Emphasis box for critical info inside content ---------- */
.prose--enhanced .prose-warning,
.prose .prose-warning {
  background: rgba(201, 169, 97, 0.06);
  border-right: 4px solid var(--sc-gold);
  padding: 18px 22px;
  margin: 28px 0;
  border-radius: var(--sc-radius-md);
  font-size: 15px;
  line-height: 1.85;
}
.prose-warning strong { color: var(--sc-gold); }

/* ============================================================================
   Tier 6 — Local Page Components (Phase 6.1)
   Trust bar, pricing strip, author block, related grid, image figures, banners.
   Used by app/Views/pages/local.php for /{brand}/{area}/ pages.
   ============================================================================ */

/* ---------- Hero variant: location pin badge instead of country ---------- */
.local-hero .local-hero__area-badge {
  color: var(--sc-gold);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.25em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.local-hero__pin {
  display: inline-flex;
  color: var(--sc-gold);
}
.local-hero__gov {
  color: var(--sc-text-muted);
  font-weight: 400;
  letter-spacing: 0.1em;
}

/* ---------- Last Updated badge (sits inside hero, just above trust list) ---------- */
.last-updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  padding: 6px 14px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--sc-text-muted);
  background: rgba(201, 169, 97, 0.06);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-pill);
}
.last-updated-badge time { color: var(--sc-gold-light); font-weight: 500; }
.last-updated-badge svg { color: var(--sc-gold); }

/* ---------- Trust signals bar ---------- */
.trust-bar-section {
  background: var(--sc-graphite);
  border-block: 1px solid var(--sc-border);
  padding: 36px 0;
}
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-bar__item {
  text-align: center;
  flex: 1 1 160px;
  min-width: 120px;
}
.trust-bar__number {
  font-family: var(--sc-font-la-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--sc-gold);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.trust-bar__star { color: var(--sc-gold-light); }
.trust-bar__label {
  font-size: 13px;
  color: var(--sc-text-muted);
  letter-spacing: 0.04em;
}
.trust-bar__divider {
  width: 1px;
  height: 48px;
  background: var(--sc-border);
}
@media (max-width: 768px) {
  .trust-bar__divider { display: none; }
  .trust-bar { gap: 24px; }
  .trust-bar__number { font-size: 28px; }
  .trust-bar-section { padding: 28px 0; }
}

/* ---------- Pricing transparency strip ---------- */
.pricing-strip-section {
  padding: 56px 0;
  border-block: 1px solid var(--sc-border);
}
.pricing-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-lg);
  overflow: hidden;
  background: var(--sc-graphite);
  max-width: 1100px;
  margin-inline: auto;
}
.pricing-strip__col {
  padding: 32px 22px;
  text-align: center;
  border-right: 1px solid var(--sc-border);
}
.pricing-strip__col:last-child { border-right: none; }
.pricing-strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.08);
  color: var(--sc-gold);
}
.pricing-strip__price {
  font-family: var(--sc-font-la-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--sc-gold);
  line-height: 1.1;
  margin-bottom: 6px;
}
.pricing-strip__cur {
  font-size: 16px;
  color: var(--sc-text-muted);
  font-weight: 500;
  letter-spacing: 0;
}
.pricing-strip__label {
  font-size: 15px;
  color: var(--sc-text);
  font-weight: 600;
  margin-bottom: 4px;
}
.pricing-strip__sublabel {
  display: block;
  font-size: 12.5px;
  color: var(--sc-text-muted);
  font-weight: 400;
  line-height: 1.6;
}
.pricing-strip__note {
  text-align: center;
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--sc-text-muted);
  font-style: italic;
  max-width: 800px;
  margin-inline: auto;
  line-height: 1.7;
}
.pricing-strip__note strong { color: var(--sc-gold); font-style: normal; }
@media (max-width: 768px) {
  .pricing-strip { grid-template-columns: 1fr; }
  .pricing-strip__col {
    border-right: none;
    border-bottom: 1px solid var(--sc-border);
  }
  .pricing-strip__col:last-child { border-bottom: none; }
  .pricing-strip__price { font-size: 26px; }
  .pricing-strip-section { padding: 44px 0; }
}

/* ---------- Mid-page CTA banner ---------- */
.local-cta-banner {
  padding: 48px 0;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.08), rgba(122, 22, 38, 0.04));
  border-block: 1px solid var(--sc-border);
}
.local-cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1080px;
  margin-inline: auto;
}
.local-cta-banner__text { flex: 1 1 420px; }
.local-cta-banner__text h3 {
  color: var(--sc-text);
  margin-bottom: 8px;
  line-height: 1.4;
}
.local-cta-banner__text p {
  color: var(--sc-text-muted);
  font-size: 15.5px;
  margin: 0;
  line-height: 1.7;
}
.local-cta-banner__action {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.local-cta-banner__phone {
  color: var(--sc-gold);
  font-family: var(--sc-font-la-display);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed var(--sc-border);
  padding-bottom: 2px;
  transition: color var(--sc-dur-quick) var(--sc-ease);
}
.local-cta-banner__phone:hover { color: var(--sc-gold-light); }
@media (max-width: 768px) {
  .local-cta-banner__inner { flex-direction: column; align-items: stretch; text-align: center; }
  .local-cta-banner__action { justify-content: center; }
}

/* ---------- Author bio block ---------- */
.author-block {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: var(--sc-graphite);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-lg);
  align-items: flex-start;
  max-width: 980px;
  margin-inline: auto;
}
.author-block__avatar {
  position: relative;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sc-gold), var(--sc-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--sc-border-h);
}
.author-block__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  display: block;
}
.author-block__avatar-letter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sc-font-la-display);
  font-size: 40px;
  color: var(--sc-onyx);
  font-weight: 700;
  z-index: 1;
}
.author-block__info { flex: 1; min-width: 0; }
.author-block__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--sc-text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}
.author-block__name {
  font-family: var(--sc-font-ar-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--sc-gold);
  margin-bottom: 4px;
  line-height: 1.4;
}
.author-block__title {
  font-size: 14.5px;
  color: var(--sc-text);
  margin-bottom: 14px;
  line-height: 1.5;
}
.author-block__bio {
  font-size: 14.5px;
  color: var(--sc-text-muted);
  line-height: 1.85;
  margin: 0 0 12px;
}
.author-block__meta {
  font-size: 12.5px;
  color: var(--sc-text-muted);
  font-style: italic;
  border-top: 1px solid var(--sc-border);
  padding-top: 10px;
  margin-top: 14px;
}
.author-block__meta time { color: var(--sc-gold-light); font-style: normal; }
@media (max-width: 640px) {
  .author-block { flex-direction: column; text-align: center; align-items: center; padding: 24px 20px; }
  .author-block__avatar { width: 84px; height: 84px; }
  .author-block__meta { text-align: center; }
}

/* ---------- Image figure (used inside content_ar for inline images) ---------- */
.prose .image-figure,
.prose--enhanced .image-figure {
  margin: 36px 0;
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-md);
  overflow: hidden;
  background: rgba(201, 169, 97, 0.04);
  position: relative;
}
.prose .image-figure img,
.prose--enhanced .image-figure img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.prose .image-figure figcaption,
.prose--enhanced .image-figure figcaption {
  padding: 14px 20px;
  font-size: 13.5px;
  color: var(--sc-text-muted);
  border-top: 1px solid var(--sc-border);
  text-align: center;
  font-style: italic;
  line-height: 1.6;
  background: rgba(0, 0, 0, 0.15);
}
/* Graceful placeholder when img fails to load (Bassam uploads images later) */
.prose .image-figure--placeholder::before,
.prose--enhanced .image-figure--placeholder::before {
  content: '🖼  صورة قيد التحضير';
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  color: var(--sc-text-muted);
  font-size: 14px;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.10), rgba(122, 22, 38, 0.05));
  border-bottom: 1px solid var(--sc-border);
}
/* Aspect ratio variants for portrait or square images */
.prose .image-figure--portrait img,
.prose--enhanced .image-figure--portrait img { aspect-ratio: 4/5; }
.prose .image-figure--square img,
.prose--enhanced .image-figure--square img { aspect-ratio: 1/1; }

/* ---------- Image-pair (side-by-side before/after) ---------- */
.prose .image-pair,
.prose--enhanced .image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}
.prose .image-pair .image-figure,
.prose--enhanced .image-pair .image-figure { margin: 0; }
@media (max-width: 640px) {
  .prose .image-pair, .prose--enhanced .image-pair { grid-template-columns: 1fr; }
}

/* ---------- Related pages grid ---------- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin-inline: auto;
}
.related-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 18px 22px;
  background: var(--sc-graphite);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-md);
  text-decoration: none;
  transition: all var(--sc-dur-quick) var(--sc-ease);
  overflow: hidden;
}
.related-card::after {
  content: '';
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 3px;
  background: var(--sc-gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--sc-dur-quick) var(--sc-ease);
}
.related-card:hover {
  border-color: var(--sc-border-h);
  background: rgba(201, 169, 97, 0.06);
  transform: translateY(-2px);
}
.related-card:hover::after { transform: scaleY(1); }
.related-card__type {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--sc-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.related-card__title {
  font-family: var(--sc-font-ar-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--sc-text);
  line-height: 1.5;
}
.related-card__arrow {
  position: absolute;
  bottom: 14px;
  inset-inline-end: 18px;
  color: var(--sc-gold);
  font-size: 18px;
  opacity: 0;
  transition: opacity var(--sc-dur-quick) var(--sc-ease), transform var(--sc-dur-quick) var(--sc-ease);
}
.related-card:hover .related-card__arrow { opacity: 1; transform: translateX(-4px); }

/* ---------- FAQ wrapper for local pages ---------- */
.faq-wrap {
  max-width: 820px;
  margin-inline: auto;
}
.faq-wrap details.prose-faq {
  margin-bottom: 12px;
  background: var(--sc-bg-card);
  border: 1px solid var(--sc-border);
  border-radius: var(--sc-radius-md);
}
.faq-wrap details.prose-faq[open] {
  border-color: rgba(201, 169, 97, 0.4);
  background: rgba(201, 169, 97, 0.04);
}
.faq-wrap details.prose-faq summary {
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--sc-font-ar-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--sc-text);
  list-style: none;
  position: relative;
  padding-inline-end: 50px;
  line-height: 1.6;
}
.faq-wrap details.prose-faq summary::-webkit-details-marker { display: none; }
.faq-wrap details.prose-faq summary::after {
  content: '+';
  position: absolute;
  inset-inline-end: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sc-font-la-display);
  font-size: 22px;
  color: var(--sc-gold);
  font-weight: 400;
  border: 1px solid var(--sc-border);
  border-radius: 50%;
  transition: all var(--sc-dur-quick) var(--sc-ease);
}
.faq-wrap details.prose-faq[open] summary::after {
  content: '−';
  background: var(--sc-gold);
  color: var(--sc-onyx);
  border-color: var(--sc-gold);
}
.faq-wrap details.prose-faq > div {
  padding: 0 22px 20px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--sc-text-muted);
}
.faq-wrap details.prose-faq > div p { margin-bottom: 12px; }
.faq-wrap details.prose-faq > div p:last-child { margin-bottom: 0; }
.faq-wrap details.prose-faq > div a { color: var(--sc-gold); text-decoration: underline; text-decoration-color: rgba(201,169,97,0.4); }
.faq-wrap details.prose-faq > div a:hover { color: var(--sc-gold-light); }
.faq-wrap details.prose-faq > div strong { color: var(--sc-gold); }
.faq-wrap details.prose-faq > div ul,
.faq-wrap details.prose-faq > div ol {
  padding-inline-start: 24px;
  margin-bottom: 12px;
}
.faq-wrap details.prose-faq > div li { margin-bottom: 6px; }

/* ============================================================================
   Siyana Center additions — Independence disclaimer bar & Siyana Center brand updates
   ========================================================================== */

/* ---------- Independence bar (above header, every page) -------------------- */
.independence-bar {
  background: linear-gradient(180deg, rgba(201,169,97,0.06) 0%, rgba(201,169,97,0.10) 100%);
  border-bottom: 1px solid rgba(201,169,97,0.25);
  color: var(--sc-text);
  font-size: 13px;
  line-height: 1.6;
  position: relative;
  z-index: 50;
}
.independence-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-block: 9px;
}
.independence-bar__icon {
  width: 18px;
  height: 18px;
  color: var(--sc-gold);
  flex-shrink: 0;
}
.independence-bar__text {
  margin: 0;
  color: var(--sc-cream);
  font-size: 13px;
}
.independence-bar__text strong {
  color: var(--sc-gold);
  font-weight: 700;
}
.independence-bar__brands {
  color: var(--sc-text-muted);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
}
.independence-bar__nowrap { white-space: nowrap; }

@media (max-width: 640px) {
  .independence-bar__inner { padding-block: 8px; gap: 8px; }
  .independence-bar__text { font-size: 11.5px; line-height: 1.55; }
  .independence-bar__icon { width: 16px; height: 16px; }
}

/* ---------- Siyana Center hero disclaimer chip (used inside hero sections) -------- */
.fp-disclaimer-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(201,169,97,0.4);
  background: rgba(201,169,97,0.08);
  border-radius: var(--sc-radius-pill);
  color: var(--sc-gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.fp-disclaimer-chip svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.fp-disclaimer-chip__sep {
  color: var(--sc-ash);
  margin: 0 4px;
}

/* ---------- Booking-form data notice -------------------------------------- */
.booking-form__data-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 24px;
  background: rgba(201,169,97,0.06);
  border: 1px solid rgba(201,169,97,0.25);
  border-radius: var(--sc-radius-md);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--sc-text);
}
.booking-form__data-notice svg {
  width: 20px;
  height: 20px;
  color: var(--sc-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.booking-form__data-notice strong { color: var(--sc-gold); }

/* ---------- Workshop page styles ------------------------------------------ */
.workshop-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}
@media (min-width: 768px) {
  .workshop-gallery { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.workshop-gallery__item {
  position: relative;
  border-radius: var(--sc-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--sc-bg-elevated);
  border: 1px solid var(--sc-border);
}
.workshop-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--sc-dur-normal) var(--sc-ease);
}
.workshop-gallery__item:hover img { transform: scale(1.04); }
.workshop-gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px 12px;
  background: linear-gradient(0deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0) 100%);
  color: var(--sc-cream);
  font-size: 13px;
  font-weight: 500;
}

/* ---------- Independence callout box (use inside content) ----------------- */
.fp-independence-callout {
  margin: 32px 0;
  padding: 20px 24px;
  background: rgba(201,169,97,0.05);
  border-inline-start: 3px solid var(--sc-gold);
  border-radius: var(--sc-radius-md);
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--sc-text);
}
.fp-independence-callout__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--sc-gold);
  margin-bottom: 10px;
}
.fp-independence-callout__title svg { width: 18px; height: 18px; }
.fp-independence-callout p { margin-bottom: 8px; }
.fp-independence-callout p:last-child { margin-bottom: 0; }


/* ---------- Siyana Center H1 subtitle (under every page heading) ----------------- */
.fp-h1-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: -8px auto 24px;
  padding: 6px 16px;
  font-family: 'Inter', 'Noto Kufi Arabic', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--sc-gold);
  text-transform: none;
}
.fp-h1-subtitle::before,
.fp-h1-subtitle::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(201, 169, 97, 0.5);
}
.fp-h1-subtitle__sep {
  color: var(--sc-ash);
  margin: 0 4px;
}
.fp-h1-subtitle--start {
  justify-content: flex-start;
}
.fp-h1-subtitle--start::after { display: none; }
.fp-h1-subtitle--start::before { display: none; }

/* Tighter version for brand cards / smaller spaces */
.fp-card-attribution {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(201, 169, 97, 0.18);
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--sc-text-muted);
  text-align: center;
  line-height: 1.5;
}
.fp-card-attribution__brand {
  color: var(--sc-gold);
  font-weight: 600;
  font-size: 11px;
}
.fp-card-attribution__sep {
  color: rgba(201, 169, 97, 0.4);
  margin: 0 5px;
}

/* Inline brand attribution (used inside content paragraphs after brand mentions) */
.fp-inline-attr {
  display: inline-block;
  padding: 1px 8px;
  margin: 0 2px;
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: var(--sc-radius-pill);
  font-size: 11px;
  font-weight: 500;
  color: var(--sc-gold);
  vertical-align: middle;
  white-space: nowrap;
}

/* ============================================================
   Category showcase grid (home page)
   ============================================================ */
.cat-showcase-grid {
  gap: 24px;
}
.cat-showcase {
  background: var(--sc-bg-elevated, #181818);
  border: 1px solid var(--sc-border, rgba(201,169,97,.15));
  border-radius: var(--sc-radius-lg, 14px);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.cat-showcase:hover {
  transform: translateY(-4px);
  border-color: rgba(201,169,97,.4);
  box-shadow: 0 10px 28px rgba(0,0,0,0.4), 0 2px 8px rgba(201,169,97,0.15);
}
.cat-showcase__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  overflow: hidden;
}
.cat-showcase__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-showcase__title {
  font-size: 20px;
  color: var(--sc-cream, #FAF7F0);
  padding: 18px 20px 8px;
  margin: 0;
}
.cat-showcase__desc {
  font-size: 14px;
  color: var(--sc-text-muted, #9c9690);
  padding: 0 20px 22px;
  line-height: 1.75;
  margin: 0;
}

/* Brand-hub category links with images */
.cat-link {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 14px 16px !important;
  background: var(--sc-bg-elevated, #181818);
  border: 1px solid var(--sc-border, rgba(201,169,97,.15));
  border-radius: var(--sc-radius-md, 10px);
  transition: all .25s ease;
}
.cat-link:hover {
  border-color: rgba(201,169,97,.4);
  transform: translateX(-4px);
}
.cat-link__img {
  width: 56px;
  height: 42px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: #0a0a0a;
}
.cat-link__name {
  flex: 1;
  color: var(--sc-cream, #FAF7F0);
  font-weight: 500;
  font-size: 14px;
}
.cat-link__arrow {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .cat-showcase-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .cat-showcase__title { font-size: 17px; padding: 14px 16px 6px; }
  .cat-showcase__desc { font-size: 13px; padding: 0 16px 18px; }
}
@media (max-width: 480px) {
  .cat-showcase-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ============================================================
   Mobile App-Style Tab Bar (replaces old mobile-cta)
   ============================================================ */
.m-tabbar { display: none; }

@media (max-width: 1023px) {
  /* Hide old mobile-cta if any cached HTML still references it */
  .mobile-cta { display: none !important; }

  .m-tabbar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    bottom: 0;
    inset-inline: 0;
    z-index: 95;
    background: linear-gradient(180deg, rgba(15,15,15,0.96) 0%, rgba(10,10,10,1) 100%);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(201, 169, 97, 0.25);
    padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.5);
  }

  .m-tabbar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 4px 4px;
    color: rgba(250, 247, 240, 0.65);
    text-decoration: none;
    font-family: var(--sc-font-ar-display, "Tajawal", "Cairo", sans-serif);
    font-size: 11px;
    font-weight: 600;
    transition: color .2s ease, transform .15s ease;
    position: relative;
  }
  .m-tabbar__item:active { transform: scale(0.94); }
  .m-tabbar__item:hover,
  .m-tabbar__item:focus {
    color: var(--sc-gold, #C9A961);
  }
  .m-tabbar__item svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
  }

  /* Center CTA item (WhatsApp) — elevated golden bubble */
  .m-tabbar__item--cta {
    position: relative;
    color: var(--sc-gold, #C9A961);
    font-weight: 700;
  }
  .m-tabbar__cta-bubble {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E6C788 0%, #D4B16C 50%, #A88947 100%);
    color: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.5),
                0 0 0 4px rgba(10, 10, 10, 0.95),
                0 0 0 5px rgba(201, 169, 97, 0.3);
    transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s ease;
  }
  .m-tabbar__cta-bubble svg {
    width: 26px;
    height: 26px;
    stroke-width: 2.2;
  }
  .m-tabbar__item--cta:active .m-tabbar__cta-bubble {
    transform: translateX(-50%) scale(0.92);
  }
  .m-tabbar__item--cta:hover .m-tabbar__cta-bubble {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 12px 30px rgba(201, 169, 97, 0.65),
                0 0 0 4px rgba(10, 10, 10, 0.95),
                0 0 0 5px rgba(201, 169, 97, 0.5);
  }
  .m-tabbar__item--cta > span:last-child {
    margin-top: 24px;
  }
  /* Pulse animation on the bubble */
  .m-tabbar__cta-bubble::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #C9A961;
    opacity: 0;
    animation: tabbar-pulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
  }
  @keyframes tabbar-pulse {
    0%   { transform: scale(0.95); opacity: 0.65; }
    70%  { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1.3); opacity: 0; }
  }

  /* Spacer so content isn't hidden behind tabbar */
  body { padding-bottom: 70px; }
}

@media (max-width: 360px) {
  .m-tabbar__item { font-size: 10px; gap: 2px; }
  .m-tabbar__item svg { width: 20px; height: 20px; }
  .m-tabbar__cta-bubble { width: 48px; height: 48px; }
  .m-tabbar__cta-bubble svg { width: 22px; height: 22px; }
}

/* ============================================================
   Mobile Side FAB Stack (left side: Call + WhatsApp)
   ============================================================ */
@media (max-width: 1023px) {
  .m-side-fab {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: fixed;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    z-index: 90;
  }

  .m-side-fab__btn {
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .m-side-fab__btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
  }
  .m-side-fab__btn:active { transform: scale(0.92); }
  .m-side-fab__btn:hover { transform: scale(1.05); }

  /* Call button — gold */
  .m-side-fab__btn--call {
    background: linear-gradient(135deg, #E6C788 0%, #D4B16C 50%, #A88947 100%);
    color: #0A0A0A;
    box-shadow: 0 8px 22px rgba(201, 169, 97, 0.5),
                0 2px 6px rgba(0,0,0,0.35);
  }
  .m-side-fab__btn--call:hover {
    box-shadow: 0 12px 28px rgba(201, 169, 97, 0.65),
                0 2px 6px rgba(0,0,0,0.35);
  }
  /* Pulsing ring on call button only */
  .m-side-fab__btn--call::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #C9A961;
    opacity: 0;
    animation: tabbar-pulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
  }

  /* WhatsApp button — green */
  .m-side-fab__btn--wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4),
                0 2px 6px rgba(0,0,0,0.35);
  }
  .m-side-fab__btn--wa:hover {
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55),
                0 2px 6px rgba(0,0,0,0.35);
  }
}

@media (min-width: 1024px) {
  .m-side-fab { display: none; }
}

/* ============================================================
   Page hero image (internal pages: category, problem, part, etc.)
   ============================================================ */
.page-hero-img {
  padding: 0 0 32px;
}
.page-hero-img__frame {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: 18px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.03);
}
/* Corner ornaments */
.page-hero-img__frame::before,
.page-hero-img__frame::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(201, 169, 97, 0.4);
}
.page-hero-img__frame::before {
  top: 12px;
  inset-inline-start: 12px;
  border-right: 0;
  border-bottom: 0;
}
.page-hero-img__frame::after {
  bottom: 12px;
  inset-inline-end: 12px;
  border-left: 0;
  border-top: 0;
}
.page-hero-img__img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  display: block;
  aspect-ratio: 4/3;
}

@media (max-width: 767px) {
  .page-hero-img__frame {
    padding: 14px;
    border-radius: 14px;
  }
  .page-hero-img__img { max-height: 240px; }
  .page-hero-img__frame::before,
  .page-hero-img__frame::after {
    width: 18px; height: 18px;
  }
}

/* ============================================================
   Other-Brands category image cards
   ============================================================ */
.other-brands__img-wrap {
  width: 100% !important;
  height: 160px !important;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%) !important;
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 12px;
  overflow: hidden;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin-bottom: 16px !important;
}
.other-brands__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Make cat-showcase work as a link */
a.cat-showcase--link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
a.cat-showcase--link:hover .cat-showcase__title {
  color: var(--sc-gold, #C9A961);
}

/* Tab bar button (for "الأقسام" that opens drawer) */
.m-tabbar__btn {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
}
.m-tabbar__btn:focus { outline: none; }

/* SVG appliance illustrations inside prose content blocks */
.prose-figure__svg {
  width: 100%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 24px;
  border-radius: var(--sc-radius-lg, 14px);
  border: 1px solid rgba(201, 169, 97, 0.25);
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .prose-figure__svg {
    padding: 14px;
    max-height: 320px;
  }
}
