/* ============================================================
   د. أحمد السعيد — Warm Premium Cardiology RTL (zr2)
   Dark Green #21483F / Deep #183B35 / Brown #96563D
   Terracotta #A96245 / Gold #C69A58 / Cream #F4F0E8
   Warm #FAF8F3 / Ink #1A2825 / Muted #6E6A63 / Red #B84A3E
   Organic curved layout — RTL — Cairo
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --green: #21483F;
  --green-deep: #183B35;
  --green-soft: #2E5C52;
  --brown: #96563D;
  --terra: #A96245;
  --gold: #C69A58;
  --gold-soft: #E4C98F;
  --cream: #F4F0E8;
  --warm: #FAF8F3;
  --white: #FFFFFF;
  --ink: #1A2825;
  --muted: #6E6A63;
  --red: #B84A3E;
  --primary: #C69A58;
  --secondary: #21483F;
  --radius: 28px;
  --shadow-sm: 0 6px 18px rgba(24,59,53,.08);
  --shadow: 0 24px 55px -18px rgba(24,59,53,.25);
  --shadow-warm: 0 20px 45px -14px rgba(150,86,61,.28);
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Cairo', tahoma, sans-serif;
  background: var(--warm);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; width: 100%; }
a { color: inherit; text-decoration: none; transition: .3s; }
img { max-width: 100%; display: block; }
.hand { font-family: 'Aref Ruqaa','Reem Kufi','Cairo',serif; }
button { font-family: inherit; }
section { position: relative; }

/* ---------- Ticker ---------- */
.ticker { overflow: hidden; white-space: nowrap; padding: 8px 0; font-weight: 700; font-size: 13px; position: relative; z-index: 120; }
.ticker-track { display: inline-flex; gap: 44px; animation: tick 32s linear infinite; padding-inline-start: 20px; will-change: transform; }
@keyframes tick { to { transform: translateX(50%); } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 110;
  background: rgba(250,248,243,.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(150,86,61,.12);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 14px; }
.brand { display: flex; align-items: center; gap: 11px; min-width: 0; }
.brand-logo {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: var(--brown); color: #fff;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-warm);
}
.brand-logo svg { width: 30px; height: 30px; }
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.brand-logo.sm { width: 44px; height: 44px; }
.brand-txt { line-height: 1.5; min-width: 0; }
.brand-txt b { display: block; font-size: 19px; font-weight: 900; color: var(--ink); white-space: nowrap; }
.brand-txt small { display: block; font-size: 11px; color: var(--muted); font-weight: 700; white-space: nowrap; }
.links { display: flex; gap: 24px; align-items: center; font-weight: 700; font-size: 14.5px; color: var(--ink); }
.links a { position: relative; padding: 8px 2px; white-space: nowrap; }
.links a::after {
  content: ''; position: absolute; bottom: 2px; right: 0; left: 0; height: 2.5px;
  background: var(--terra); border-radius: 99px;
  transform: scaleX(0); transform-origin: right; transition: .3s;
}
.links a:hover::after, .links a.active::after { transform: scaleX(1); }
.links a.active { color: var(--ink); font-weight: 800; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.burger { display: none; background: transparent; color: var(--green-deep); border: 1.5px solid rgba(33,72,63,.25); width: 44px; height: 44px; border-radius: 12px; font-size: 22px; cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 0 30px; border-radius: 999px; height: 52px;
  font-weight: 800; font-size: 15.5px; border: 0; cursor: pointer;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  text-align: center; white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn.green { background: var(--green); color: #fff !important; box-shadow: 0 12px 26px -10px rgba(33,72,63,.55); }
.btn.green:hover { background: var(--green-deep); transform: translateY(-2px); }
.btn.terra { background: linear-gradient(135deg,var(--terra),var(--brown)); color: #fff !important; box-shadow: var(--shadow-warm); }
.btn.terra:hover { transform: translateY(-2px) scale(1.02); filter: brightness(1.06); }
.btn.gold { background: linear-gradient(135deg,var(--gold-soft),var(--gold)); color: var(--green-deep) !important; }
.btn.big { height: 56px; padding: 0 38px; font-size: 16.5px; }
.btn.full { width: 100%; }

/* ============================================================
   HERO — cream + clinic blob + doctor cutout + organic curve
   ============================================================ */
.hero { background: var(--cream); overflow: hidden; padding: 26px 0 0; }
.hero::before {
  content: ''; position: absolute; top: -140px; left: -140px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(198,154,88,.18), transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 20px; align-items: center;
  position: relative; z-index: 3; padding-top: 18px;
}
.hero-text { text-align: right; padding-bottom: 30px; }
.hero-intro { color: var(--terra); font-weight: 800; font-size: clamp(18px,1.8vw,23px); margin-bottom: 2px; }
.doc-name {
  font-size: clamp(52px,6vw,84px); line-height: 1.25; font-weight: 900; color: var(--green-deep);
  letter-spacing: 0; margin: 0 0 2px;
}
.hero-specialty { color: var(--brown); font-weight: 800; font-size: clamp(22px,2.3vw,30px); line-height: 1.8; margin-bottom: 8px; }
.hero-support1 { color: var(--ink); font-weight: 800; font-size: clamp(16px,1.5vw,19px); }
.hero-support2 { color: var(--muted); font-size: clamp(14px,1.35vw,17px); font-weight: 600; margin: 0 0 22px; }
.hero-btns { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; margin-bottom: 26px; }
.play-wrap { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; color: var(--ink); font-size: 15px; }
.play-btn {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  transition: .3s; box-shadow: 0 12px 24px -8px rgba(33,72,63,.5);
}
.play-btn:hover { background: var(--green-deep); transform: scale(1.07); }
.play-btn svg { width: 20px; height: 20px; fill: currentColor; }
/* stats — subtle separators, no bulky cards */
.hero-stats { display: grid; grid-template-columns: repeat(3,auto); gap: 0; max-width: 560px; justify-content: start; }
.hstat { padding: 4px 26px; text-align: center; position: relative; }
.hstat:first-child { padding-right: 0; }
.hstat + .hstat::before { content: ''; position: absolute; right: 0; top: 10px; bottom: 10px; width: 1px; background: rgba(110,106,99,.28); }
.hstat b { display: block; font-size: clamp(24px,2.4vw,32px); font-weight: 900; color: var(--ink); line-height: 1.3; }
.hstat span { font-size: 13px; color: var(--muted); font-weight: 700; display: block; }

/* doctor + clinic blob (right side) */
.hero-media { position: relative; display: flex; justify-content: center; align-items: flex-end; min-height: 600px; }
.clinic-blob {
  position: absolute; top: 0; bottom: 40px; right: 0; left: 8%;
  border-radius: 180px 28px 34px 28px;
  overflow: hidden; box-shadow: var(--shadow);
  background: #E8DCC8;
}
.clinic-blob img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.clinic-blob::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,59,53,.05) 40%, rgba(24,59,53,.28) 100%); }
.clinic-wall {
  position: absolute; top: 34px; left: 26px; z-index: 3; text-align: left; direction: ltr;
  color: rgba(26,40,37,.72); font-weight: 800; font-size: 19px; letter-spacing: .5px; line-height: 1.55;
  display: flex; flex-direction: column;
}
.doc-frame { position: relative; z-index: 4; width: 100%; max-width: 440px; margin-bottom: -10px; }
.doc-img {
  width: 100%; height: 580px; object-fit: cover; object-position: top center;
  -webkit-mask-image: linear-gradient(180deg,#000 80%,transparent 99%);
  mask-image: linear-gradient(180deg,#000 80%,transparent 99%);
  filter: drop-shadow(0 28px 50px rgba(24,59,53,.35)) saturate(1.04);
}
.doc-card-hand {
  position: absolute; z-index: 5; bottom: 66px; left: 4px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border: 1px solid rgba(198,154,88,.35);
  border-radius: 18px; padding: 12px 18px;
  font-family: 'Aref Ruqaa','Cairo',serif; color: var(--ink); font-size: 19px; line-height: 1.9;
  box-shadow: var(--shadow-sm); text-align: center; max-width: 220px;
}
.doc-card-hand i { display: block; width: 46px; height: 3px; background: var(--gold); border-radius: 99px; margin: 6px auto 0; }
.hero-curve { height: 70px; background: var(--warm); border-radius: 70px 70px 0 0; margin-top: -30px; position: relative; z-index: 5; }

/* ============================================================
   DARK GREEN ORGANIC SECTION — heart + quote + lifestyle
   ============================================================ */
.organic-dark {
  background: var(--warm); padding: 10px 0 0;
}
.organic-dark-inner {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 70%);
  border-radius: 90px 22px 90px 22px;
  margin: 0 18px; overflow: hidden; position: relative;
  box-shadow: var(--shadow);
}
.organic-dark-inner::before {
  content: ''; position: absolute; top: -90px; left: -90px; width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(198,154,88,.16), transparent 65%); border-radius: 50%;
}
.organic-dark-inner::after {
  content: ''; position: absolute; bottom: -120px; right: -80px; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(184,74,62,.14), transparent 65%); border-radius: 50%;
}
.dark-grid {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 30px; align-items: center;
  padding: 56px 54px; position: relative; z-index: 2;
}
.heart-wrap { position: relative; display: flex; justify-content: center; align-items: center; min-height: 380px; }
.heart-orbit {
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  border: 1.5px solid rgba(228,201,143,.45);
  box-shadow: 0 0 40px rgba(228,201,143,.18), inset 0 0 40px rgba(228,201,143,.08);
  animation: spin 22s linear infinite;
}
.heart-orbit::before { content: ''; position: absolute; top: -6px; right: 50%; width: 12px; height: 12px; background: var(--gold-soft); border-radius: 50%; box-shadow: 0 0 18px var(--gold); }
@keyframes spin { to { transform: rotate(360deg); } }
.heart-photo {
  width: 270px; height: 270px; object-fit: cover; border-radius: 46% 54% 52% 48%/48% 46% 54% 52%;
  box-shadow: 0 0 70px rgba(184,74,62,.55); border: 3px solid rgba(228,201,143,.35);
  position: relative; z-index: 2;
}
.heart-glow { width: 270px; height: 270px; position: relative; display: flex; align-items: center; justify-content: center; z-index: 2; }
.heart-glow::before {
  content: ''; position: absolute; inset: -30px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,74,62,.5), rgba(184,74,62,.08) 60%, transparent 70%);
  filter: blur(8px); animation: beat 1.9s ease-in-out infinite;
}
@keyframes beat { 0%,100% { transform: scale(1); opacity: .9; } 12% { transform: scale(1.06); } 24% { transform: scale(1); } }
.heart-glow svg { width: 210px; height: 210px; position: relative; filter: drop-shadow(0 14px 34px rgba(184,74,62,.65)); }
.heart-quote { color: var(--cream); text-align: right; }
.heart-quote .hand { font-size: clamp(30px,3.4vw,44px); line-height: 2; display: block; }
.heart-quote .gold-rule { display: block; width: 64px; height: 3px; background: var(--gold); border-radius: 99px; margin-top: 12px; }

/* lifestyle sunset — organic */
.life-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 0 0 10px; align-items: stretch; }
.life-img {
  position: relative; border-radius: 70px 18px 70px 18px; overflow: hidden;
  min-height: 380px; box-shadow: var(--shadow);
}
.life-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: .6s; }
.life-img:hover img { transform: scale(1.05); }
.life-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(24,59,53,.02) 40%, rgba(24,59,53,.55) 100%); }
.life-hand {
  position: absolute; z-index: 2; top: 30px; right: 30px;
  font-family: 'Aref Ruqaa','Cairo',serif; color: #fff; font-size: 30px; line-height: 2;
  text-shadow: 0 2px 16px rgba(0,0,0,.55); display: flex; flex-direction: column;
}
.life-hand i { display: block; width: 52px; height: 3px; background: var(--gold); border-radius: 99px; margin-top: 8px; }
.life-side { display: flex; flex-direction: column; justify-content: center; text-align: right; padding: 10px 6px; }
.life-side .gold-line { width: 60px; height: 4px; background: var(--terra); border-radius: 99px; margin-bottom: 14px; }
.life-side h2 { font-size: clamp(22px,2.4vw,30px); font-weight: 900; color: var(--green-deep); line-height: 1.9; }
.life-side p { color: var(--muted); font-weight: 700; margin: 6px 0 18px; }

/* ============================================================
   SERVICES — warm cream organic panel, 6 items
   ============================================================ */
.services-sec { padding: 34px 0 10px; }
.services-panel {
  background: var(--cream); border-radius: 60px 24px 60px 24px;
  padding: 50px 48px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(150,86,61,.1); position: relative; overflow: hidden;
}
.services-panel::before {
  content: ''; position: absolute; top: -70px; right: 10%; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(198,154,88,.14), transparent 65%); border-radius: 50%;
}
.center { text-align: center; max-width: 720px; margin: 0 auto 38px; position: relative; }
.sec-title { font-size: clamp(28px,3.2vw,40px); font-weight: 900; color: var(--ink); margin-bottom: 6px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.sec-title i { display: block; width: 54px; height: 3px; background: var(--brown); border-radius: 99px; opacity: .8; }
.sec-sub { color: var(--muted); font-size: 16px; font-weight: 700; }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px 22px; position: relative; }
.svc { text-align: center; padding: 10px 12px; border-radius: 22px; transition: .3s; }
.svc:hover { background: rgba(255,255,255,.7); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.svc-icon {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 14px;
  background: #fff; border: 1.5px solid rgba(169,98,69,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--terra); box-shadow: var(--shadow-sm); transition: .3s;
}
.svc:hover .svc-icon { background: var(--terra); color: #fff; transform: scale(1.06); }
.svc-icon svg { width: 34px; height: 34px; }
.svc h3 { font-size: 16.5px; font-weight: 800; color: var(--ink); line-height: 1.9; min-height: 62px; }
.svc p { font-size: 13px; color: var(--muted); font-weight: 600; }
.svc-link { display: inline-block; margin-top: 6px; color: var(--brown); font-weight: 800; font-size: 13.5px; }
.svc-link:hover { color: var(--terra); }

/* lounge */
.lounge-wrap { margin-top: 30px; position: relative; border-radius: 70px 20px 70px 20px; overflow: hidden; min-height: 420px; box-shadow: var(--shadow); }
.lounge-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lounge-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(-90deg, rgba(24,59,53,.55) 0%, rgba(24,59,53,.05) 55%); }
.lounge-hand {
  position: absolute; z-index: 2; top: 44px; left: 44px;
  font-family: 'Aref Ruqaa','Cairo',serif; color: #fff; font-size: 29px; line-height: 2;
  text-shadow: 0 2px 16px rgba(0,0,0,.5); display: flex; flex-direction: column;
}
.lounge-hand i { display: block; width: 52px; height: 3px; background: var(--gold); border-radius: 99px; margin-top: 8px; }

/* showcase marquee (optional) */
.marquee { overflow: hidden; padding: 28px 0 0; }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: marq 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marq { to { transform: translateX(50%); } }
.m-item { position: relative; width: 300px; height: 200px; border-radius: 26px 10px 26px 10px; overflow: hidden; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.m-item img, .m-item video { width: 100%; height: 100%; object-fit: cover; }
.m-item span { position: absolute; bottom: 12px; right: 12px; background: rgba(24,59,53,.85); color: #fff; font-size: 13px; font-weight: 700; padding: 5px 16px; border-radius: 999px; }

/* ============================================================
   TESTIMONIALS + CTA side by side
   ============================================================ */
.mix-sec { padding: 30px 0 10px; }
.mix-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; align-items: stretch; }
.testi-card {
  background: #fff; border-radius: 30px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(150,86,61,.1); padding: 38px 36px; text-align: center; position: relative;
  display: flex; flex-direction: column; justify-content: center;
}
.testi-card .qmark { color: var(--brown); font-size: 52px; line-height: 1; font-family: serif; display: block; }
.testi-title { font-size: clamp(24px,2.6vw,32px); font-weight: 900; color: var(--ink); margin-bottom: 8px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.testi-title i { display: block; width: 44px; height: 3px; background: var(--brown); border-radius: 99px; opacity: .7; }
.tcard blockquote { font-size: 16.5px; font-weight: 700; color: var(--ink); line-height: 2.1; min-height: 90px; }
.tcard .stars { color: var(--gold); font-size: 21px; letter-spacing: 5px; margin: 12px 0; }
.twho { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 6px; }
.twho img, .tavatar {
  width: 58px; height: 58px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 3px solid var(--gold); background: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; color: var(--green-deep); font-size: 20px;
}
.tmeta { text-align: right; }
.tmeta b { display: block; color: var(--ink); font-size: 16px; }
.tmeta small { color: var(--muted); font-size: 13px; }
.t-nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 16px; }
.t-arrow {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid rgba(150,86,61,.3); background: var(--warm);
  color: var(--brown); font-size: 22px; cursor: pointer; transition: .3s;
  display: inline-flex; align-items: center; justify-content: center;
}
.t-arrow:hover { background: var(--brown); color: #fff; transform: scale(1.06); }
.t-dots { display: flex; gap: 8px; justify-content: center; align-items: center; }
.t-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(110,106,99,.3); cursor: pointer; transition: .3s; }
.t-dots span.on { background: var(--terra); width: 28px; border-radius: 99px; }
/* CTA */
.cta-card {
  background: linear-gradient(150deg, var(--green) 0%, var(--green-deep) 75%);
  border-radius: 34px; color: #fff; text-align: center;
  padding: 44px 32px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.cta-card::before { content: ''; position: absolute; top: -70px; left: -70px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(198,154,88,.2), transparent 65%); border-radius: 50%; }
.cta-heart { width: 64px; height: 64px; border-radius: 50%; border: 2px solid rgba(255,255,255,.5); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; position: relative; }
.cta-heart svg { width: 30px; height: 30px; stroke: #fff; }
.cta-card h2 { font-size: clamp(23px,2.4vw,30px); font-weight: 900; line-height: 1.9; margin-bottom: 8px; position: relative; }
.cta-card p { color: #D8E2DF; font-size: 14.5px; font-weight: 600; margin-bottom: 22px; position: relative; }

/* ============================================================
   BOOKING — warm
   ============================================================ */
.booking-sec { padding: 26px 0; }
.booking-panel {
  background: #fff; border-radius: 36px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(150,86,61,.1); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.book-info { background: linear-gradient(150deg,var(--green),var(--green-deep)); color: #fff; padding: 42px 36px; display: flex; flex-direction: column; justify-content: center; }
.book-info h2 { font-size: clamp(23px,2.6vw,32px); font-weight: 900; margin-bottom: 8px; }
.mini-badge { background: rgba(198,154,88,.18); color: var(--gold-soft); font-weight: 800; padding: 6px 18px; border-radius: 999px; display: inline-block; margin-bottom: 12px; font-size: 13px; border: 1px solid rgba(198,154,88,.4); align-self: flex-start; }
.book-info .sub { color: #D8E2DF; font-size: 15px; }
.contact-box { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 18px 20px; margin: 20px 0; display: grid; gap: 8px; font-weight: 700; font-size: 14.5px; }
.contact-box a { color: var(--gold-soft); }
.map iframe { box-shadow: var(--shadow-sm); border: 3px solid rgba(255,255,255,.15) !important; border-radius: 14px; background: #0a3a48; }
.book-form { padding: 36px 34px; color: var(--ink); }
.book-form h3 { margin-bottom: 18px; color: var(--green-deep); font-size: 21px; font-weight: 900; }
.book-form label { display: block; font-weight: 800; font-size: 14px; margin-bottom: 12px; color: var(--green-deep); }
.book-form input, .book-form select, .book-form textarea { width: 100%; margin-top: 6px; padding: 12px 15px; border: 2px solid #E7E0D2; border-radius: 13px; font-family: inherit; font-size: 14px; background: #FCFAF5; transition: .3s; color: var(--ink); }
.book-form input:focus, .book-form select:focus, .book-form textarea:focus { border-color: var(--terra); background: #fff; outline: none; box-shadow: 0 0 0 4px rgba(169,98,69,.14); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.book-msg { padding: 12px; border-radius: 12px; margin-bottom: 12px; font-weight: 700; font-size: 14px; text-align: center; }
.book-msg.ok { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.book-msg.err { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ============================================================
   CONTACT BAR + ECG + FOOTER
   ============================================================ */
.contact-bar { padding: 20px 0 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 18px; text-align: center; align-items: start; background: #fff; border-radius: 28px; box-shadow: var(--shadow-sm); border: 1px solid rgba(150,86,61,.08); padding: 32px 26px; }
.c-block { position: relative; padding: 4px 14px; }
.c-block svg { width: 30px; height: 30px; stroke: var(--green-deep); margin: 0 auto 8px; display: block; }
.c-block b { display: block; font-size: 16.5px; font-weight: 800; color: var(--ink); }
.c-block span { color: var(--muted); font-weight: 700; font-size: 14px; display: block; }
.c-block + .c-block::before { content: ''; position: absolute; right: -9px; top: 10px; bottom: 10px; width: 1px; background: #ECE5D6; }
.socials { display: flex; gap: 9px; justify-content: center; margin-top: 8px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid #E7E0D2; display: inline-flex; align-items: center; justify-content: center; color: var(--green-deep); transition: .3s; }
.socials a:hover { border-color: var(--terra); color: var(--terra); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.follow { font-weight: 800; color: var(--ink); font-size: 13.5px; margin-top: 10px; }
.final-quote { text-align: center; padding: 26px 0 30px; display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.final-quote .hand { font-size: 30px; color: var(--ink); line-height: 2; }
.final-quote .ecg { width: 120px; height: 40px; }
.footer { background: var(--green-deep); color: #E9E2D4; border-radius: 46px 46px 0 0; padding: 30px 0 20px; margin-top: 10px; }
.foot-grid { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-brand b { color: #fff; font-size: 17px; display: block; }
.foot-brand small { color: #B9C6C2; font-size: 11.5px; display: block; }
.foot-links { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13.5px; font-weight: 700; color: #D8E2DF; }
.foot-links a:hover { color: var(--gold-soft); }
.copy { font-size: 12.5px; color: #9DB3AD; text-align: center; width: 100%; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.copy a:hover { color: var(--gold-soft); }

/* whatsapp */
.wa-float { position: fixed; bottom: 22px; left: 22px; z-index: 99; transition: .3s; background-color: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 50%; box-shadow: 0 8px 22px rgba(0,0,0,.25); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.1) translateY(-4px); }

/* pages */
.page-hero { background: linear-gradient(135deg, var(--green-deep), var(--green)); color: #fff; padding: 66px 0 56px; border-radius: 0 0 48px 48px; text-align: center; }
.page-hero h1 { font-size: clamp(26px,4vw,40px); font-weight: 900; margin: 10px 0; }
.page-hero p { color: #D8E2DF; }
.price { background: var(--gold); color: var(--green-deep); font-weight: 800; padding: 6px 18px; border-radius: 999px; font-size: 14px; }
.price.big { font-size: 15px; padding: 9px 24px; display: inline-block; margin-top: 12px; }
.page-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 32px; padding: 50px 0; }
.page-content { background: #fff; border-radius: 26px; padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid rgba(150,86,61,.1); }
.page-img { width: 100%; border-radius: 18px; margin-bottom: 18px; }
.rich { line-height: 2; font-size: 15.5px; }
.rich ul { padding-right: 20px; }

.reveal { opacity: 0; transform: translateY(28px); transition: .7s cubic-bezier(.4,0,.2,1); }
.reveal.vis { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE — كل الأجهزة
   ============================================================ */
@media (max-width: 1200px) {
  .container { max-width: 1024px; }
  .doc-name { font-size: clamp(48px,5.4vw,68px); }
  .svc-grid { gap: 20px 16px; }
}
@media (max-width: 1024px) {
  .container { padding: 0 26px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .doc-img { height: 500px; }
  .hero-media { min-height: 520px; }
  .dark-grid { grid-template-columns: 1fr 1fr; padding: 44px 34px; gap: 22px; }
  .mix-grid { grid-template-columns: 1fr; }
  .booking-panel { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .c-block + .c-block::before { display: none; }
  .life-row { grid-template-columns: 1fr; }
  .page-grid { grid-template-columns: 1fr; }
  .services-panel { padding: 40px 30px; }
}
@media (max-width: 900px) {
  .links {
    position: absolute; top: 84px; right: 16px; left: 16px; background: #fff;
    flex-direction: column; padding: 20px; border-radius: 18px;
    box-shadow: 0 20px 50px rgba(24,59,53,.25); display: none; z-index: 99;
    border: 1px solid rgba(150,86,61,.2);
  }
  .links.open { display: flex; animation: slideDown .3s ease; }
  @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
  .burger { display: block; }
  .hero { padding-top: 10px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding-top: 10px; }
  .hero-text { text-align: center; order: -1; padding-bottom: 0; }
  .hero-support2 { margin-inline: auto; }
  .hero-btns, .hero-stats { justify-content: center; margin-inline: auto; }
  .hero-stats { grid-template-columns: repeat(3,1fr); }
  .hstat { padding: 4px 16px; }
  .hero-media { min-height: 500px; order: 2; }
  .clinic-blob { left: 4%; right: 4%; }
  .clinic-wall { font-size: 15px; top: 22px; left: 18px; }
  .doc-card-hand { left: 50%; transform: translateX(-50%); bottom: 30px; font-size: 17px; }
  .dark-grid { grid-template-columns: 1fr; text-align: center; }
  .heart-quote { text-align: center; }
  .heart-quote .gold-rule { margin-inline: auto; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .organic-dark-inner { margin: 0 10px; border-radius: 56px 16px 56px 16px; }
  .dark-grid { padding: 36px 22px; }
  .heart-photo, .heart-glow { width: 220px; height: 220px; }
  .heart-orbit { width: 260px; height: 260px; }
  .life-img { min-height: 320px; border-radius: 48px 14px 48px 14px; }
  .life-hand { font-size: 24px; }
  .services-panel { border-radius: 40px 18px 40px 18px; padding: 34px 22px; }
  .testi-card { padding: 30px 22px; }
  .cta-card { padding: 36px 24px; }
  .contact-grid { grid-template-columns: 1fr 1fr; padding: 26px 18px; }
  .foot-grid { flex-direction: column; text-align: center; justify-content: center; }
  .copy { flex-direction: column; align-items: center; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .nav { height: 70px; gap: 8px; }
  .brand-logo { width: 44px; height: 44px; }
  .brand-txt b { font-size: 15.5px; }
  .brand-txt small { font-size: 10px; }
  .btn { height: 48px; padding: 0 22px; font-size: 14px; }
  .btn.big { height: 52px; padding: 0 24px; font-size: 15px; width: 100%; }
  .nav-cta .btn { padding: 0 14px; font-size: 12.5px; height: 43px; }
  .hero-grid { gap: 6px; }
  .doc-name { font-size: clamp(40px,11vw,54px); }
  .hero-specialty { font-size: 21px; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 12px; }
  .play-wrap { justify-content: center; }
  .hero-stats { grid-template-columns: 1fr; max-width: 380px; gap: 10px; margin-top: 8px; }
  .hstat { background: rgba(255,255,255,.65); border: 1px solid rgba(150,86,61,.14); border-radius: 16px; padding: 10px; }
  .hstat + .hstat::before { display: none; }
  .hero-media { min-height: 440px; }
  .doc-img { height: 420px; }
  .doc-frame { max-width: 360px; }
  .clinic-wall { display: none; }
  .hero-curve { height: 44px; border-radius: 34px 34px 0 0; }
  .heart-quote .hand { font-size: 30px; }
  .svc-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .svc h3 { font-size: 14px; min-height: 58px; }
  .svc-icon { width: 64px; height: 64px; }
  .svc-icon svg { width: 28px; height: 28px; }
  .lounge-wrap { min-height: 320px; border-radius: 44px 14px 44px 14px; }
  .lounge-hand { font-size: 22px; top: 26px; left: 26px; }
  .row2 { grid-template-columns: 1fr; }
  .book-form { padding: 26px 20px; }
  .book-info { padding: 30px 22px; }
  .contact-grid { grid-template-columns: 1fr; border-radius: 24px; }
  .final-quote .hand { font-size: 26px; }
  .m-item { width: 260px; height: 180px; }
  .wa-float { width: 52px !important; height: 52px !important; bottom: 16px !important; left: 16px !important; }
  .footer { border-radius: 32px 32px 0 0; }
  .foot-links { justify-content: center; }
}
@media (max-width: 400px) {
  .container { padding: 0 12px; }
  .doc-name { font-size: 38px; }
  .hero-specialty { font-size: 19px; }
  .brand-txt b { font-size: 13.5px; }
  .brand-txt small { display: none; }
  .nav-cta .btn { font-size: 11.5px; padding: 0 10px; }
  .burger { width: 40px; height: 40px; font-size: 19px; }
  .svc-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .svc h3 { min-height: 0; }
  .ticker { font-size: 11.5px; }
  .contact-grid { padding: 22px 14px; }
  .testi-card { padding: 24px 16px; }
  .tcard blockquote { font-size: 14.5px; }
}
@media (min-width: 1400px) {
  .container { max-width: 1280px; }
  .doc-name { font-size: 88px; }
  .doc-img { height: 620px; }
}
