/* ==========================================================================
   عيادات الملكة – أم هالة | نظام التصميم
   الألوان مستخرجة من اللوغو: تدرّج ذهبي على خلفية بيضاء/عاجية
   ========================================================================== */

/* ---------- 1. التوكنز (المتغيرات) ---------- */
:root {
  /* الذهبي — من اللوغو */
  --gold-100: #F7EDD2;
  --gold-200: #EDD9A3;
  --gold-300: #E0C273;
  --gold-400: #C9A227;
  --gold-500: #AE8A1E;
  --gold-600: #8B6B16;
  --gold-700: #6B5210;

  --gold-grad: linear-gradient(135deg, #8B6B16 0%, #C9A227 32%, #EDD9A3 55%, #C9A227 78%, #8B6B16 100%);
  --gold-grad-soft: linear-gradient(135deg, #C9A227 0%, #E0C273 50%, #AE8A1E 100%);

  /* الحبر */
  --ink-900: #16120D;
  --ink-800: #2A2219;
  --ink-600: #574B3C;
  --ink-400: #857868;
  --ink-200: #B9AE9F;

  /* الأسطح */
  --surface: #FFFFFF;
  --surface-2: #FCFAF5;
  --surface-3: #F6F1E6;
  --line: rgba(139, 107, 22, 0.16);
  --line-strong: rgba(139, 107, 22, 0.32);

  /* الظلال */
  --shadow-sm: 0 1px 2px rgba(22, 18, 13, .04), 0 2px 8px rgba(22, 18, 13, .04);
  --shadow-md: 0 4px 12px rgba(22, 18, 13, .06), 0 12px 32px rgba(22, 18, 13, .06);
  --shadow-lg: 0 8px 24px rgba(22, 18, 13, .08), 0 24px 64px rgba(22, 18, 13, .10);
  --shadow-gold: 0 8px 28px rgba(174, 138, 30, .22);

  /* الخطوط */
  --font-display: 'Almarai', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans Arabic', 'Almarai', 'Segoe UI', system-ui, sans-serif;

  /* المقاسات */
  --container: 1200px;
  --container-narrow: 880px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --header-h: 84px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- 2. إعادة التهيئة ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-600);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: 1.25;
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.01em;
}
p { margin: 0; }

::selection { background: var(--gold-200); color: var(--ink-900); }

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

/* ---------- 3. أدوات مساعدة ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: clamp(72px, 9vw, 130px); }
.section--tint { background: var(--surface-2); }
.section--edge { border-block: 1px solid var(--line); }

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

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ---------- 4. ترويسة القسم ---------- */
.sec-head {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(44px, 5vw, 72px);
}
.sec-head--start { text-align: start; margin-inline: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gold-600);
  margin-bottom: 18px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-400));
}
.sec-head--start .eyebrow::after { display: none; }

.sec-title {
  font-size: clamp(30px, 4.2vw, 52px);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.sec-lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-400);
  line-height: 1.9;
}

/* ---------- 5. الأزرار ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background-color .3s, color .3s, border-color .3s;
}
.btn svg { width: 19px; height: 19px; flex: none; }

.btn--gold {
  background: var(--gold-grad-soft);
  background-size: 200% 100%;
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  transform: translateY(-3px);
  background-position: 100% 0;
  box-shadow: 0 12px 36px rgba(174, 138, 30, .34);
}

.btn--ghost {
  border: 1.5px solid var(--line-strong);
  color: var(--ink-900);
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: var(--gold-400);
  color: var(--gold-600);
  transform: translateY(-3px);
}

.btn--light {
  background: #fff;
  color: var(--gold-600);
  box-shadow: var(--shadow-md);
}
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn--sm { padding: 11px 22px; font-size: 14.5px; }
.btn--block { width: 100%; }

/* ---------- 6. الهيدر ---------- */
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.header::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.header.is-stuck { height: 70px; }
.header.is-stuck::before { opacity: 1; }

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.brand { display: flex; align-items: center; gap: 13px; flex: none; }
.brand__logo {
  width: 52px; height: 52px;
  object-fit: contain;
  transition: width .4s var(--ease), height .4s var(--ease);
}
.header.is-stuck .brand__logo { width: 44px; height: 44px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.25; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.brand__sub {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--gold-600);
}

.nav { margin-inline-start: auto; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink-600);
  transition: color .25s, background-color .25s;
}
.nav__link:hover { color: var(--gold-600); background: var(--gold-100); }
.nav__link.is-active { color: var(--gold-600); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  inset-block-end: 2px;
  inset-inline: 15px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-grad-soft);
}

.header__cta { flex: none; }

.burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .7);
  align-items: center;
  justify-content: center;
  flex: none;
  margin-inline-start: auto;
}
.burger span {
  display: block;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--ink-900);
  position: relative;
  transition: background-color .2s;
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--ink-900);
  transition: transform .35s var(--ease-out);
}
.burger span::before { top: -6.5px; }
.burger span::after { top: 6.5px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span::after { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- 7. القائمة الجوالة ---------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: calc(var(--header-h) + 28px) 26px 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer__list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink-900);
  border: 1px solid transparent;
  transition: background-color .25s, border-color .25s;
}
.drawer__link:hover, .drawer__link:focus-visible {
  background: var(--surface-2);
  border-color: var(--line);
}
.drawer__link::after {
  content: "";
  width: 8px; height: 8px;
  border-inline-start: 2px solid var(--gold-400);
  border-block-end: 2px solid var(--gold-400);
  transform: rotate(45deg);
  opacity: .7;
}
.drawer__social { display: flex; gap: 10px; justify-content: center; margin-top: 24px; }

/* ---------- 8. الهيرو ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: calc(var(--header-h) + 48px) 80px;
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(224, 194, 115, .30), transparent 62%),
    radial-gradient(820px 520px at 8% 108%, rgba(247, 237, 210, .55), transparent 60%),
    linear-gradient(180deg, #FFFDF8 0%, #FFFFFF 60%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px 8px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-600);
  margin-bottom: 26px;
}
.hero__badge b {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--gold-grad-soft);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
}

.hero__title {
  font-size: clamp(44px, 7.2vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 8px;
}
.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  color: var(--gold-600);
  letter-spacing: .02em;
  margin-bottom: 26px;
}
.hero__lead {
  font-size: clamp(16.5px, 1.7vw, 20px);
  color: var(--ink-400);
  line-height: 1.95;
  max-width: 62ch;
  margin-bottom: 38px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero__meta-item { display: flex; align-items: center; gap: 11px; font-size: 15px; }
.hero__meta-item svg { width: 19px; height: 19px; color: var(--gold-500); flex: none; }
.hero__meta-item b { color: var(--ink-900); font-weight: 700; }

/* شعار الهيرو */
.hero__visual { position: relative; display: grid; place-items: center; }
.hero__logo-wrap {
  position: relative;
  width: min(100%, 400px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.hero__logo-wrap::before {
  content: "";
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  background: conic-gradient(from 210deg, transparent, rgba(201, 162, 39, .28), transparent 46%, rgba(237, 217, 163, .3), transparent 78%);
  filter: blur(28px);
  animation: spin 26s linear infinite;
}
.hero__logo-wrap::after {
  content: "";
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.hero__logo {
  position: relative;
  width: 78%;
  object-fit: contain;
  filter: drop-shadow(0 18px 42px rgba(139, 107, 22, .22));
  animation: float 7s ease-in-out infinite;
}

.hero__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-900);
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}
.hero__chip svg { width: 17px; height: 17px; color: var(--gold-500); }
.hero__chip--1 { inset-block-start: 8%; inset-inline-start: -6%; animation-delay: -1.6s; }
.hero__chip--2 { inset-block-end: 14%; inset-inline-end: -4%; animation-delay: -3.4s; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

.hero__scroll {
  position: absolute;
  inset-block-end: 26px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--ink-200);
}
.hero__scroll i {
  width: 1px; height: 42px;
  background: linear-gradient(180deg, var(--gold-400), transparent);
}

/* ---------- 9. شريط الثقة ---------- */
.trust { background: var(--ink-900); color: #fff; padding-block: 22px; }
.trust__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 46px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, .82);
}
.trust__item svg { width: 18px; height: 18px; color: var(--gold-300); flex: none; }

/* ---------- 10. بطاقات الأقسام ---------- */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  gap: 24px;
}

.dept-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 32px 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s;
}
.dept-card::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 3px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: inline-end;
  transition: transform .55s var(--ease-out);
}
.dept-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}
.dept-card:hover::before { transform: scaleX(1); }

.dept-card__icon {
  width: 62px; height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--gold-100), #fff);
  border: 1px solid var(--line);
  margin-bottom: 24px;
  transition: transform .45s var(--ease-out);
}
.dept-card__icon svg { width: 30px; height: 30px; color: var(--gold-500); }
.dept-card:hover .dept-card__icon { transform: scale(1.06) rotate(-4deg); }

.dept-card__title { font-size: 22px; margin-bottom: 8px; }
.dept-card__tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-600);
  margin-bottom: 16px;
}
.dept-card__text {
  font-size: 15.5px;
  color: var(--ink-400);
  line-height: 1.85;
  margin-bottom: 22px;
}
.dept-card__list { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 26px; }
.dept-card__list li {
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--surface-3);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-600);
}
.dept-card__link {
  margin-block-start: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--gold-600);
}
.dept-card__link svg { width: 16px; height: 16px; transition: transform .3s var(--ease-out); }
.dept-card:hover .dept-card__link svg { transform: translateX(-5px); }

/* ---------- 11. من نحن ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.about__body p { margin-bottom: 20px; font-size: 17px; line-height: 1.95; }
.about__body strong { color: var(--ink-900); font-weight: 700; }

.about__panel {
  position: relative;
  padding: clamp(32px, 4vw, 52px);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #FFFDF7, var(--surface-3));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.about__panel::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: clamp(32px, 4vw, 52px);
  width: 56px; height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--gold-grad);
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 24px;
}
.stat__value {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 48px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.stat__label { font-size: 14.5px; font-weight: 600; color: var(--ink-400); }

/* ---------- 12. لماذا نحن ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 20px;
}
.value {
  padding: 32px 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value__icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--gold-grad-soft);
  box-shadow: var(--shadow-gold);
  margin-bottom: 20px;
}
.value__icon svg { width: 25px; height: 25px; color: #fff; }
.value__title { font-size: 19px; margin-bottom: 10px; }
.value__text { font-size: 15.5px; color: var(--ink-400); line-height: 1.85; }

/* ---------- 13. الأسئلة الشائعة ---------- */
.faq { max-width: var(--container-narrow); margin-inline: auto; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq__item[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq__q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 700;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
  transition: color .25s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--gold-600); }
.faq__q::after {
  content: "";
  margin-inline-start: auto;
  width: 11px; height: 11px;
  border-inline-end: 2px solid var(--gold-500);
  border-block-end: 2px solid var(--gold-500);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .35s var(--ease-out);
  flex: none;
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg) translateY(-2px); }
.faq__a {
  padding: 0 26px 24px;
  font-size: 16px;
  color: var(--ink-400);
  line-height: 1.95;
}

/* ---------- 14. الموقع ---------- */
.loc__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}
.loc__panel {
  padding: clamp(30px, 3.6vw, 44px);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.loc__row {
  display: flex;
  gap: 15px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}
.loc__row:first-of-type { padding-block-start: 0; }
.loc__ico {
  width: 42px; height: 42px;
  flex: none;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--gold-100);
  border: 1px solid var(--line);
}
.loc__ico svg { width: 20px; height: 20px; color: var(--gold-600); }
.loc__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold-600);
  margin-bottom: 5px;
}
.loc__value { font-size: 16.5px; font-weight: 600; color: var(--ink-900); line-height: 1.7; }
.loc__value a:hover { color: var(--gold-600); }
.loc__panel .btn { margin-block-start: 26px; }

.hours { display: grid; gap: 3px; }
.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 7px 0;
  font-size: 15px;
}
.hours__row + .hours__row { border-top: 1px dashed var(--line); }
.hours__day { font-weight: 600; color: var(--ink-600); }
.hours__time { font-weight: 700; color: var(--ink-900); font-variant-numeric: tabular-nums; }
.hours__row.is-closed .hours__time { color: var(--ink-200); font-weight: 600; }

.loc__map {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: var(--surface-3);
}
.loc__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- 15. شريط الدعوة للحجز ---------- */
.cta-band {
  position: relative;
  padding-block: clamp(64px, 7vw, 100px);
  background: var(--ink-900);
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset-block-start: -45%;
  inset-inline-start: 50%;
  transform: translateX(50%);
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, .28), transparent 62%);
}
.cta-band__inner { position: relative; max-width: 660px; margin-inline: auto; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 3.8vw, 44px); margin-bottom: 18px; }
.cta-band p { color: rgba(255, 255, 255, .68); font-size: 17.5px; margin-bottom: 34px; line-height: 1.9; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-band .btn--ghost { border-color: rgba(255, 255, 255, .28); color: #fff; background: rgba(255, 255, 255, .06); }
.cta-band .btn--ghost:hover { border-color: var(--gold-300); color: var(--gold-300); background: rgba(255, 255, 255, .1); }

/* ---------- 16. صفحة القسم ---------- */
.page-hero {
  position: relative;
  padding-block: calc(var(--header-h) + 66px) 66px;
  background:
    radial-gradient(760px 400px at 82% 0%, rgba(224, 194, 115, .26), transparent 62%),
    linear-gradient(180deg, #FFFDF8, var(--surface));
  border-bottom: 1px solid var(--line);
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--ink-400);
  margin-bottom: 24px;
}
.crumbs a:hover { color: var(--gold-600); }
.crumbs span { color: var(--ink-200); }
.page-hero__title { font-size: clamp(32px, 5vw, 60px); letter-spacing: -0.03em; margin-bottom: 14px; }
.page-hero__tag {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 400;
  color: var(--gold-600);
  margin-bottom: 26px;
}
.page-hero__lead { max-width: 68ch; font-size: 17.5px; color: var(--ink-400); line-height: 1.95; margin-bottom: 32px; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.notice {
  display: flex;
  gap: 14px;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: var(--gold-100);
  border: 1px solid var(--line-strong);
  margin-bottom: 34px;
  font-size: 16px;
  color: var(--ink-800);
  line-height: 1.85;
}
.notice svg { width: 22px; height: 22px; color: var(--gold-600); flex: none; margin-top: 3px; }

.highlight-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--gold-100), #fff);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 44px;
}
.highlight-bar svg { width: 24px; height: 24px; color: var(--gold-500); flex: none; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
}
.svc-group {
  padding: 34px 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.svc-group:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-group__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.svc-group__title::before {
  content: "";
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold-grad-soft);
  flex: none;
}
.svc-list li {
  position: relative;
  padding-inline-start: 30px;
  padding-block: 9px;
  font-size: 16px;
  color: var(--ink-600);
  line-height: 1.7;
}
.svc-list li + li { border-top: 1px dashed var(--line); }
.svc-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 4px;
  inset-block-start: 17px;
  width: 11px; height: 6px;
  border-inline-start: 2px solid var(--gold-400);
  border-block-end: 2px solid var(--gold-400);
  transform: rotate(-45deg);
}

/* ---------- 16b. الطاقم الطبي ---------- */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 24px;
}
.doc-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.doc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.doc-card__top { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.doc-card__avatar {
  width: 72px; height: 72px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, var(--gold-100), #fff);
  border: 1px solid var(--line);
}
.doc-card__avatar svg { width: 34px; height: 34px; color: var(--gold-500); }
.doc-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.doc-card__name { font-size: 21px; margin-bottom: 4px; }
.doc-card__role { font-size: 14.5px; font-weight: 600; color: var(--gold-600); line-height: 1.6; }
.doc-card__bio { font-size: 15.5px; color: var(--ink-400); line-height: 1.85; margin-bottom: 20px; }
.doc-card__meta { display: grid; gap: 11px; margin-bottom: 20px; width: 100%; }
.doc-card__meta li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; }
.doc-card__meta svg { width: 17px; height: 17px; color: var(--gold-500); flex: none; margin-top: 5px; }
.doc-card__meta b { color: var(--ink-900); font-weight: 700; }
.doc-card .btn { margin-block-start: auto; }

/* ---------- 16c. المقالات ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--gold-100);
  border: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gold-600);
  margin-bottom: 20px;
}
.pill svg { width: 16px; height: 16px; }

.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-400);
}
.article__meta span { display: flex; align-items: center; gap: 8px; }
.article__meta svg { width: 16px; height: 16px; color: var(--gold-500); flex: none; }

.article { max-width: var(--container-narrow); margin-inline: auto; }

.keypoints {
  padding: 30px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--gold-100), #FFFDF7);
  border: 1px solid var(--line-strong);
  margin-bottom: 44px;
}
.keypoints__title {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 18px;
  margin-bottom: 18px;
}
.keypoints__title svg { width: 22px; height: 22px; color: var(--gold-500); flex: none; }
.keypoints ul { display: grid; gap: 12px; }
.keypoints li {
  position: relative;
  padding-inline-start: 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-800);
  line-height: 1.75;
}
.keypoints li::before {
  content: "";
  position: absolute;
  inset-inline-start: 2px;
  inset-block-start: 11px;
  width: 11px; height: 6px;
  border-inline-start: 2px solid var(--gold-500);
  border-block-end: 2px solid var(--gold-500);
  transform: rotate(-45deg);
}

.article__section { margin-bottom: 42px; }
.article__section h2 {
  position: relative;
  font-size: clamp(23px, 2.8vw, 31px);
  letter-spacing: -0.02em;
  padding-inline-start: 20px;
  margin-bottom: 20px;
}
.article__section h2::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block: 6px 6px;
  width: 4px;
  border-radius: 4px;
  background: var(--gold-grad);
}
.article__section p {
  font-size: 17px;
  line-height: 2;
  color: var(--ink-600);
  margin-bottom: 18px;
}
.article__section p strong { color: var(--ink-900); font-weight: 700; }
.article__section p em { color: var(--gold-600); font-style: italic; }

.article__cta {
  padding: clamp(30px, 4vw, 44px);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #FFFDF7, var(--surface-3));
  border: 1px solid var(--line);
  text-align: center;
  margin-top: 52px;
}
.article__cta h2 { font-size: clamp(22px, 2.6vw, 29px); margin-bottom: 14px; }
.article__cta p { font-size: 16.5px; color: var(--ink-400); line-height: 1.9; margin-bottom: 26px; }

/* ---------- 17. الفوتر ---------- */
.footer {
  background: var(--ink-900);
  color: rgba(255, 255, 255, .62);
  padding-block: clamp(56px, 6vw, 84px) 0;
  font-size: 15.5px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px 32px;
  padding-bottom: 52px;
}
.footer__brand { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.footer__brand img {
  width: 60px; height: 60px;
  object-fit: contain;
  /* اللوغو شفاف — الذهبي يظهر مباشرة على خلفية الفوتر الداكنة */
  filter: drop-shadow(0 2px 10px rgba(224, 194, 115, .28));
}
.footer__brand .brand__name { color: #fff; font-size: 19px; }
.footer__brand .brand__sub { color: var(--gold-300); }
.footer__about { line-height: 1.9; max-width: 40ch; }

.footer__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: .01em;
}
.footer__list { display: grid; gap: 11px; }
.footer__list a, .footer__list li { transition: color .25s; }
.footer__list a:hover { color: var(--gold-300); }

.footer__contact { display: grid; gap: 16px; }
.footer__contact-row { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact-row svg { width: 18px; height: 18px; color: var(--gold-300); flex: none; margin-top: 5px; }
.footer__contact-row a:hover { color: var(--gold-300); }

.social { display: flex; gap: 10px; }
.social a {
  width: 44px; height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: background-color .3s, transform .3s var(--ease-out), border-color .3s;
}
.social a:hover {
  background: var(--gold-grad-soft);
  border-color: transparent;
  transform: translateY(-3px);
}
.social svg { width: 20px; height: 20px; color: #fff; }
.drawer .social a { background: var(--surface-2); border-color: var(--line); }
.drawer .social svg { color: var(--ink-900); }
.drawer .social a:hover svg { color: #fff; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  padding-block: 26px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
}

/* ---------- 18. زر واتساب العائم ---------- */
.wa-float {
  position: fixed;
  inset-block-end: 26px;
  inset-inline-start: 26px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px 13px 13px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .38);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.wa-float:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 16px 40px rgba(37, 211, 102, .46); }
.wa-float svg { width: 26px; height: 26px; flex: none; }
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid #25D366;
  animation: pulse 2.6s var(--ease-out) infinite;
  pointer-events: none;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .7; }
  70%, 100% { transform: scale(1.16); opacity: 0; }
}

/* ---------- 19. حركة الظهور ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- 20. الاستجابة ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions, .hero__meta { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__logo-wrap { width: min(76%, 320px); }
  .hero__chip { display: none; }
  .about__grid { grid-template-columns: 1fr; }
  .loc__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; }
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  body.is-locked { overflow: hidden; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding-inline: 18px; }
  .hero { min-height: auto; padding-block: calc(var(--header-h) + 34px) 60px; }
  .hero__scroll { display: none; }
  .hero__actions .btn { width: 100%; }
  .hero__meta { flex-direction: column; gap: 14px; align-items: center; }
  .stats { gap: 24px 18px; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { justify-content: center; text-align: center; }
  .trust__list { gap: 12px 24px; }
  .trust__item { font-size: 14px; }
  .wa-float { inset-block-end: 18px; inset-inline-start: 18px; padding: 12px; }
  .wa-float span { display: none; }
  .dept-card, .svc-group { padding: 28px 24px; }
  .faq__q { padding: 18px 20px; font-size: 16.5px; }
  .faq__a { padding: 0 20px 20px; font-size: 15.5px; }
}

/* ---------- 21. تفضيلات إمكانية الوصول ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 22. الطباعة ---------- */
@media print {
  .header, .drawer, .wa-float, .hero__scroll, .cta-band { display: none !important; }
  body { color: #000; }
}
