/* =========================================================
   Dr. Ziad El Hachem — Pediatric Care
   Luxurious informational website
   ========================================================= */

:root {
  /* Palette — fresh teal-green + warm coral + soft cream (pediatric, calm, trustworthy) */
  --ink:        #134e46;   /* deep teal-green */
  --ink-2:      #185a50;
  --ink-soft:   #466f67;
  --cream:      #fbf9f4;   /* warm paper */
  --cream-2:    #f0ebe0;
  --sand:       #e9e0d1;
  --gold:       #ef7259;   /* warm coral accent (kept var name for simplicity) */
  --gold-deep:  #d6543c;
  --gold-soft:  #f7cabf;
  --teal-glow:  #54a89b;
  --white:      #ffffff;
  --line:       rgba(19, 78, 70, 0.13);
  --line-light: rgba(255, 255, 255, 0.16);
  --muted:      #5f7872;

  --shadow-sm: 0 2px 10px rgba(19, 78, 70, 0.07);
  --shadow-md: 0 14px 40px rgba(19, 78, 70, 0.11);
  --shadow-lg: 0 30px 70px rgba(19, 78, 70, 0.17);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --radius: 18px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: 1.35rem; font-weight: 600; letter-spacing: 0; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}

.accent { color: var(--gold-deep); font-style: italic; }
.note { font-size: 0.85rem; color: var(--muted); margin-top: 1.4rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.82rem; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(214, 84, 60, 0.32);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(214, 84, 60, 0.42); }
.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: translateY(-3px); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.topbar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.55rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.topbar strong { color: var(--gold-soft); font-weight: 600; }

.pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: #6fd1a0; position: relative; flex: none;
}
.pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  background: #6fd1a0; opacity: 0.5; animation: pulse 2s infinite;
}
.pulse--gold { background: var(--gold); }
.pulse--gold::after { background: var(--gold); }
@keyframes pulse { 0% { transform: scale(0.7); opacity: 0.6; } 70%, 100% { transform: scale(2.2); opacity: 0; } }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 243, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.nav.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__mark { color: var(--gold-deep); display: grid; place-items: center; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }
.brand__role { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.nav__links { display: flex; gap: 1.9rem; margin-left: auto; }
.nav__links a {
  font-size: 0.9rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 0.2rem 0; transition: color 0.3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 1.5px; width: 0;
  background: var(--gold-deep); transition: width 0.35s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.is-active { color: var(--ink); font-weight: 600; }
.nav__links a.is-active::after { width: 100%; }
.nav__cta { padding: 0.6rem 1.3rem; }

/* Language switch */
.lang-switch {
  display: flex; gap: 2px; align-items: center;
  border: 1px solid var(--line); border-radius: 999px; padding: 3px;
  background: var(--white);
}
.lang-switch button {
  border: none; background: none; font-family: var(--sans);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.03em;
  padding: 0.32rem 0.62rem; border-radius: 999px; cursor: pointer;
  color: var(--muted); line-height: 1; transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.lang-switch button[data-lang="ar"] { font-size: 0.95rem; }
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.is-active { background: var(--ink); color: var(--cream); }
.mobile-menu__lang { margin-top: 1.4rem; align-self: flex-start; background: rgba(255,255,255,0.08); border-color: var(--line-light); }
.mobile-menu__lang button { color: rgba(255,255,255,0.7); }
.mobile-menu__lang button.is-active { background: var(--gold); color: #fff; }

.nav__burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 6px; margin-left: auto;
}
.nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s var(--ease); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(82%, 340px);
  background: var(--ink); color: var(--cream); z-index: 49;
  transform: translateX(100%); transition: transform 0.45s var(--ease);
  display: flex; flex-direction: column; gap: 0.4rem;
  padding: 6rem 2rem 2rem; box-shadow: var(--shadow-lg);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a { padding: 0.85rem 0; font-size: 1.1rem; border-bottom: 1px solid var(--line-light); }
.mobile-menu .btn { margin-top: 1.2rem; }

/* ---------- Layout helpers ---------- */
.section { padding: clamp(4rem, 9vw, 7.5rem) 1.5rem; }
.section__inner { max-width: var(--maxw); margin: 0 auto; }
.section__head { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.section__sub { color: var(--muted); font-size: 1.08rem; margin-top: 1.1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) 1.5rem clamp(4rem, 8vw, 6rem);
}
.hero__glow {
  position: absolute; top: -10%; right: -5%; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle at 60% 40%, rgba(84,168,155,0.18), transparent 62%),
              radial-gradient(circle at 30% 70%, rgba(239,114,89,0.16), transparent 60%);
  filter: blur(8px); z-index: -1; pointer-events: none;
}
.hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: 1.6rem; }
.hero__lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 36rem; }
.hero__lead strong { color: var(--ink); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2.2rem 0 1.6rem; }
.hero__assurance {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; color: var(--ink-soft);
  background: var(--white); border: 1px solid var(--line);
  padding: 0.6rem 1.1rem; border-radius: 999px; box-shadow: var(--shadow-sm);
}

/* Portrait */
.hero__portrait { display: grid; place-items: center; }
.portrait-frame { position: relative; width: 100%; max-width: 380px; }
.portrait-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 55%, var(--teal-glow) 130%);
  color: rgba(255,255,255,0.55);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem;
  font-size: 0.85rem; letter-spacing: 0.05em;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.portrait-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(201,162,74,0.22), transparent 55%);
}
.portrait-placeholder--lg { aspect-ratio: 1 / 1.05; border-radius: var(--radius); }
.portrait-badge {
  position: absolute; bottom: -22px; left: -22px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff; border-radius: 18px; padding: 1rem 1.3rem;
  display: flex; align-items: center; gap: 0.7rem; box-shadow: var(--shadow-md);
}
.portrait-badge strong { font-family: var(--serif); font-size: 2.1rem; line-height: 1; font-weight: 600; }
.portrait-badge span { font-size: 0.74rem; line-height: 1.2; font-weight: 600; }

/* ---------- Trust strip ---------- */
.trust { background: var(--ink); color: var(--cream); }
.trust__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 2.6rem 1.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center;
}
.trust__item { display: flex; flex-direction: column; gap: 0.3rem; position: relative; }
.trust__item:not(:last-child)::after {
  content: ""; position: absolute; right: -0.75rem; top: 15%; height: 70%; width: 1px; background: var(--line-light);
}
.trust__num { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold-soft); font-weight: 600; }
.trust__label { font-size: 0.84rem; color: rgba(255,255,255,0.7); }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__media { position: relative; }
.about__photo { border-radius: var(--radius); overflow: hidden; }
.about__seal {
  position: absolute; top: -18px; right: -18px;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); color: var(--gold-deep);
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.about__body p { color: var(--ink-soft); margin-top: 1rem; }
.about__body h2 { margin-top: 0.3rem; }
.about__points { list-style: none; margin-top: 1.8rem; display: grid; gap: 0.9rem; }
.about__points li { display: flex; align-items: center; gap: 0.8rem; font-weight: 500; }
.about__points svg { color: var(--gold-deep); flex: none; }

/* ---------- Philosophy ---------- */
.philosophy { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--sand), var(--cream-2));
  color: var(--gold-deep); margin-bottom: 1.2rem;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.95rem; }

.pullquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem); line-height: 1.3;
  text-align: center; max-width: 820px; margin: 4rem auto 0; color: var(--ink);
  position: relative; padding-top: 1.5rem;
}
.pullquote::before {
  content: ""; display: block; width: 54px; height: 2px; background: var(--gold);
  margin: 0 auto 1.6rem;
}

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.service {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.service:hover { border-color: var(--gold-soft); transform: translateY(-4px); }
.service > svg { color: var(--gold-deep); flex: none; margin-top: 3px; }
.service h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.service p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Hospitals ---------- */
.hospitals { background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%); }
.hospitals__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; max-width: 860px; margin: 0 auto; }
.hospital {
  text-align: center; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 2.6rem 2rem; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.hospital:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.hospital__icon {
  width: 64px; height: 64px; margin: 0 auto 1.2rem; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink);
  background: linear-gradient(135deg, var(--sand), var(--cream-2));
}
.hospital h3 { font-size: 1.4rem; }
.hospital__loc { color: var(--muted); font-size: 0.92rem; margin-top: 0.3rem; }
.hospital__days {
  margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line);
  font-size: 0.95rem; color: var(--ink-soft);
}
.hospital__days span { display: block; font-family: var(--serif); font-size: 1.2rem; color: var(--gold-deep); font-weight: 600; }
.note { text-align: center; }

/* ---------- Hours ---------- */
.hours__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hours__body p { color: var(--ink-soft); margin-top: 1rem; }
.oncall-card {
  display: flex; align-items: center; gap: 1rem; margin-top: 1.8rem;
  background: var(--ink); color: var(--cream); border-radius: var(--radius);
  padding: 1.3rem 1.5rem; box-shadow: var(--shadow-md);
}
.oncall-card strong { color: var(--gold-soft); font-size: 1.05rem; }
.oncall-card p { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin: 0.2rem 0 0; }

.schedule { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.schedule__row {
  display: grid; grid-template-columns: 1fr auto; gap: 0.5rem;
  padding: 1rem 1.5rem; align-items: center; border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.schedule__row:last-child { border-bottom: none; }
.schedule__row--head {
  background: var(--cream-2); font-weight: 600; font-size: 0.74rem;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted);
}
.schedule__row span:first-child { font-weight: 600; }
.schedule__row--muted { color: var(--muted); background: var(--cream); }
.schedule .am, .schedule .pm {
  justify-self: start; font-size: 0.78rem; font-weight: 600; padding: 0.2rem 0.7rem; border-radius: 999px;
}
.schedule .am { background: rgba(47,111,126,0.12); color: var(--teal-glow); }
.schedule .pm { background: rgba(201,162,74,0.16); color: var(--gold-deep); }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.contact__sub { color: var(--muted); margin: 1rem 0 2rem; }
.contact__list { list-style: none; display: grid; gap: 1.3rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__ico {
  width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: var(--white); color: var(--gold-deep); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.contact__list strong { display: block; font-size: 0.95rem; }
.contact__list p { color: var(--muted); font-size: 0.95rem; margin: 0.1rem 0 0; }
.contact__list a:hover { color: var(--gold-deep); }
.contact__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.contact__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 380px; }
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-placeholder {
  height: 100%; min-height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 60%, var(--teal-glow) 130%);
  color: rgba(255,255,255,0.7); text-align: center; padding: 2rem;
}
.map-placeholder .btn--ghost { color: var(--cream); }
.map-placeholder .btn--ghost:hover { background: var(--cream); color: var(--ink); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--cream); padding: 3.5rem 1.5rem 2.5rem; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 2rem 3rem; align-items: start; }
.footer__brand { display: flex; align-items: center; gap: 0.9rem; }
.footer__brand .brand__mark { color: var(--gold-soft); }
.footer__brand strong { font-family: var(--serif); font-size: 1.25rem; display: block; }
.footer__brand span { font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.3rem; }
.footer__links a { font-size: 0.9rem; color: rgba(255,255,255,0.8); transition: color 0.3s; }
.footer__links a:hover { color: var(--gold-soft); }
.footer__legal { grid-column: 1 / -1; font-size: 0.78rem; color: rgba(255,255,255,0.55); border-top: 1px solid var(--line-light); padding-top: 1.6rem; line-height: 1.7; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav__links, .nav__cta, .nav__lang { display: none; }
  .nav__burger { display: flex; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__assurance { justify-content: center; }
  .hero__portrait { order: -1; margin-bottom: 1rem; }
  .portrait-frame { max-width: 300px; }
  .about__grid, .hours__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; margin: 0 auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .trust__inner { grid-template-columns: 1fr; gap: 2rem; }
  .trust__item::after { display: none !important; }
  .cards, .services__grid, .hospitals__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

/* ---------- Sub-page banner ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 55%, var(--teal-glow) 150%);
  color: var(--cream); text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) 1.5rem clamp(3rem, 6vw, 4.5rem);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 15%, rgba(239,114,89,0.22), transparent 55%);
  pointer-events: none;
}
.page-hero__inner { position: relative; max-width: 760px; margin: 0 auto; }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 3.6rem); }
.page-hero p { color: rgba(255,255,255,0.82); margin-top: 1rem; font-size: 1.08rem; }

/* ---------- Link arrow ---------- */
.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.6rem;
  font-weight: 600; color: var(--gold-deep); font-size: 0.95rem;
}
.link-arrow::after { content: "→"; transition: transform 0.3s var(--ease); }
.link-arrow:hover::after { transform: translateX(5px); }
[dir="rtl"] .link-arrow::after { content: "←"; }
[dir="rtl"] .link-arrow:hover::after { transform: translateX(-5px); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--cream); text-align: center; border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem) 2rem; position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(239,114,89,0.25), transparent 55%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-band p { color: rgba(255,255,255,0.8); margin: 1rem auto 2rem; max-width: 540px; }

/* ---------- Updates / posts ---------- */
.posts { display: grid; gap: 1.8rem; max-width: 820px; margin: 0 auto; }
.post {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.post:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.post__meta { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1rem; }
.post__tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-deep); background: rgba(239,114,89,0.12); padding: 0.3rem 0.75rem; border-radius: 999px;
}
.post__date { font-size: 0.85rem; color: var(--muted); }
.post h2 { font-size: clamp(1.5rem, 3.4vw, 2rem); margin-bottom: 0.8rem; }
.post p { color: var(--ink-soft); margin-bottom: 0.9rem; }
.post__share { display: flex; align-items: center; gap: 0.6rem; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line); flex-wrap: wrap; }
.post__share span { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.share-btn {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cream-2); color: var(--ink); border: 1px solid var(--line);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.share-btn:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.share-btn.is-copied { background: var(--teal-glow); color: #fff; border-color: var(--teal-glow); }

/* Comments placeholder area */
.comments {
  max-width: 820px; margin: 3rem auto 0; padding: 2.2rem;
  border: 1px dashed var(--line); border-radius: var(--radius); background: var(--white);
  text-align: center;
}
.comments h3 { margin-bottom: 0.6rem; }
.comments p { color: var(--muted); font-size: 0.95rem; max-width: 520px; margin: 0 auto; }

/* Specialty chip on home hero */
.cred {
  display: inline-flex; align-items: center; gap: 0.55rem; margin-bottom: 1.4rem;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.86rem; font-weight: 600; color: var(--ink);
}
.cred svg { color: var(--gold-deep); }

/* ---------- Feedback form ---------- */
.fb-wrap { max-width: 640px; margin: 0 auto; }
.fb-form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.8rem); box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.4rem; }
.field > label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 0.5rem; }
.field .opt { color: var(--muted); font-weight: 400; font-size: 0.82rem; }
.field input, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line); border-radius: 12px;
  padding: 0.85rem 1rem; transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }

/* Star rating */
.stars { display: inline-flex; flex-direction: row-reverse; gap: 0.25rem; }
.stars input { position: absolute; opacity: 0; pointer-events: none; }
.stars label {
  font-size: 2rem; line-height: 1; color: var(--sand); cursor: pointer;
  transition: color 0.15s var(--ease), transform 0.15s var(--ease);
}
.stars label:hover, .stars label:hover ~ label,
.stars input:checked ~ label { color: var(--gold); }
.stars label:hover { transform: scale(1.12); }
[dir="rtl"] .stars { flex-direction: row; }

.fb-form .btn { width: 100%; margin-top: 0.4rem; }
.fb-thanks {
  display: none; text-align: center; padding: 2rem 1rem;
}
.fb-thanks.is-shown { display: block; animation: fadeUp 0.6s var(--ease); }
.fb-thanks .check {
  width: 72px; height: 72px; margin: 0 auto 1.2rem; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--teal-glow), var(--ink));
}
.fb-thanks h2 { font-size: 1.9rem; }
.fb-thanks p { color: var(--muted); max-width: 420px; margin: 0.6rem auto 0; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.fb-form.is-hidden { display: none; }

/* ---------- Arabic / RTL ---------- */
[dir="rtl"] { font-family: "Tajawal", var(--sans); }
[dir="rtl"] body { font-family: "Tajawal", var(--sans); }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 { font-family: "Amiri", var(--serif); letter-spacing: 0; line-height: 1.25; }
[dir="rtl"] .accent { font-style: normal; }
[dir="rtl"] .pullquote { font-style: normal; }
[dir="rtl"] .eyebrow { letter-spacing: 0.04em; text-transform: none; }
[dir="rtl"] .brand__role { letter-spacing: 0; text-transform: none; }
[dir="rtl"] .schedule__row--head { letter-spacing: 0.02em; text-transform: none; }
[dir="rtl"] .trust__label { font-weight: 500; }

/* Mirror the few absolutely-positioned accents */
[dir="rtl"] .portrait-badge { left: auto; right: -22px; }
[dir="rtl"] .about__seal { right: auto; left: -18px; }
[dir="rtl"] .nav__links a::after { left: auto; right: 0; }
[dir="rtl"] .trust__item:not(:last-child)::after { right: auto; left: -0.75rem; }
[dir="rtl"] .service > svg,
[dir="rtl"] .about__points svg { transform: scaleX(-1); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
