/* ═══════════════════════════════════════════════════
   ROOT VARIABLES
═══════════════════════════════════════════════════ */
:root {
  --navy-950:  #05101f;
  --navy-900:  #080f1e;
  --navy-800:  #0a1628;
  --navy-700:  #0d1f3c;
  --navy-600:  #142952;
  --navy-500:  #1a3a6c;
  --navy-400:  #2050a0;

  --gold-600:  #a07820;
  --gold-500:  #c9a84c;
  --gold-400:  #d8b96a;
  --gold-300:  #e8ca85;
  --gold-200:  #f5e4b8;
  --gold-100:  #fdf6e3;

  --white:     #ffffff;
  --gray-50:   #f8f9fb;
  --gray-100:  #f0f4f8;
  --gray-200:  #e2e8f0;
  --gray-500:  #6c7a8a;

  --text-dark: #0a1628;
  --text-mid:  #3a4a5a;
  --text-muted:#6c7a8a;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 4px 16px rgba(0,0,0,.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.18);
  --shadow-gold: 0 8px 32px rgba(201,168,76,.25);

  --trans: all .35s cubic-bezier(.4,0,.2,1);
  --trans-fast: all .2s ease;
}

/* ═══════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* منع الـ scroll الأفقي على أي عنصر */
}

body {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
  font-size: 16px;
  line-height: 1.7;
}

img { max-width: 100%; }
a  { text-decoration: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: var(--gold-500); border-radius: 3px; }

/* ═══════════════════════════════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════════════════════════════ */
.text-gold { color: var(--gold-500) !important; }
.bg-dark-navy { background: var(--navy-800) !important; }
.bg-gray      { background: var(--gray-100) !important; }

/* Section label */
.sec-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.sec-label.light { color: var(--gold-300); background: rgba(201,168,76,.08); border-color: rgba(201,168,76,.2); }

/* Section title */
.sec-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 8px;
}
.sec-title.light { color: var(--white); }

/* Section description */
.sec-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 16px auto 0;
}

/* Gold divider */
.gold-line {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400), var(--gold-600));
  border-radius: 2px;
  margin: 16px 0 28px;
  position: relative;
}
.gold-line.centered { margin: 16px auto 28px; }
.gold-line::before,
.gold-line::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  background: var(--gold-500);
  border-radius: 50%;
}
.gold-line::before { right: -14px; }
.gold-line::after  { left:  -14px; }

/* Section padding */
.section-pad { padding: 100px 0; }

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500), var(--gold-400));
  color: var(--navy-900) !important;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 10px 26px;
  font-size: .9rem;
  transition: var(--trans);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.25), transparent);
  opacity: 0;
  transition: var(--trans);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,168,76,.4); }
.btn-gold:hover::after { opacity: 1; }

.btn-whatsapp {
  background: linear-gradient(135deg, #128c5e, #25d366);
  color: #fff !important;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 10px 26px;
  font-size: .9rem;
  transition: var(--trans);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,.45); }

.btn-outline-hero {
  background: transparent;
  color: var(--white) !important;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 50px;
  padding: 10px 26px;
  font-size: .9rem;
  transition: var(--trans);
}
.btn-outline-hero:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--gold-400);
  color: var(--gold-300) !important;
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════════════ */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* على الجوال: اختفاء أسرع */
@media (max-width: 767.98px) {
  #preloader          { transition: opacity .25s ease, visibility .25s ease; }
  .preloader-fill     { animation-duration: .8s; }
}

.preloader-inner { text-align: center; color: var(--white); }

.preloader-eye {
  font-size: 3rem;
  color: var(--gold-500);
  animation: pulse-eye 1.2s ease-in-out infinite;
  margin-bottom: 20px;
}
@keyframes pulse-eye {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.15); opacity: .7; }
}

.preloader-bar {
  width: 180px; height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 12px;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  border-radius: 2px;
  animation: load-bar 2s ease forwards;
}
@keyframes load-bar { from { width: 0; } to { width: 100%; } }
.preloader-inner p { font-size: .85rem; color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
#mainNav {
  padding: 18px 0;
  background: transparent;
  transition: var(--trans);
  z-index: 1050;
}
#mainNav.scrolled {
  background: var(--navy-900);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.4);
  backdrop-filter: blur(10px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--navy-900);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(201,168,76,.3);
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo-sub {
  font-size: .65rem;
  color: var(--gold-400);
  font-weight: 500;
  line-height: 1.3;
}

#mainNav .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 600;
  font-size: .9rem;
  padding: 6px 12px !important;
  border-radius: 8px;
  transition: var(--trans-fast);
  position: relative;
}
#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold-400);
  border-radius: 1px;
  transition: var(--trans);
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: var(--gold-300) !important;
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { width: 60%; }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero-section {
  /* الارتفاع: يملأ كامل الشاشة */
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  min-height: 100svh;
  min-height: 100dvh;

  background: linear-gradient(150deg, var(--navy-950) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;

  /* padding-top يُضبط ديناميكياً بـ JS حسب ارتفاع الناف بار الفعلي
     القيمة الافتراضية لو JS لم يُنفَّذ بعد */
  padding-top: 80px;
  box-sizing: border-box;
}

/* dot-grid pattern */
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(201,168,76,.06) 1px, transparent 1px);
  background-size: 35px 35px;
}

/* glowing orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,58,108,.5), transparent 70%);
  top: -100px; right: -100px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,.08), transparent 70%);
  bottom: -80px; left: -80px;
}

/* particle canvas */
#particleCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: .6;
}

.hero-container { position: relative; z-index: 2; width: 100%; padding-top: 20px; padding-bottom: 60px; }

/* hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold-400);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.hero-name {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}

.hero-specialty {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 600;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: .92rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.hero-btn { font-size: .9rem !important; }

/* hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 20px 24px;
  backdrop-filter: blur(8px);
}
.hstat {
  flex: 1;
  text-align: center;
}
.hstat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-400);
  display: inline;
  font-variant-numeric: tabular-nums;
}
.hstat-plus { font-size: 1.2rem; font-weight: 900; color: var(--gold-400); }
.hstat-lbl  { display: block; font-size: .75rem; color: rgba(255,255,255,.5); margin-top: 2px; }
.hstat-sep  { width: 1px; height: 40px; background: rgba(255,255,255,.1); flex-shrink: 0; margin: 0 8px; }

/* doctor frame */
.hero-img-col { display: flex; justify-content: center; }

.doc-frame-wrap {
  position: relative;
  width: 360px;
  max-width: 100%;
}

.doc-glow-ring {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  border: 1px solid rgba(201,168,76,.2);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.r1 { width: 400px; height: 500px; animation: ring-pulse 4s ease-in-out infinite; }
.r2 { width: 440px; height: 540px; opacity: .5; animation: ring-pulse 4s ease-in-out infinite .5s; }
@keyframes ring-pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .4; }
  50%      { transform: translate(-50%,-50%) scale(1.03); opacity: .15; }
}

.doc-frame {
  width: 340px;
  height: 430px;
  max-width: 100%;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
  border: 3px solid var(--gold-500);
  background: linear-gradient(160deg, var(--navy-500) 0%, var(--navy-800) 100%);
  box-shadow: 0 0 0 8px rgba(201,168,76,.08), 0 30px 80px rgba(0,0,0,.6), var(--shadow-gold);
  position: relative;
  margin: 0 auto;
}
.doc-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute; inset: 0;
}
.doc-placeholder-inner {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  font-size: 9rem;
  color: rgba(201,168,76,.15);
  overflow: hidden;
  padding-bottom: 0;
}

/* floating badges */
.float-badge {
  position: absolute;
  background: var(--navy-800);
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 14px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
}
.float-badge i { font-size: 1.5rem; color: var(--gold-400); }
.float-badge div { display: flex; flex-direction: column; }
.float-badge strong { font-size: 1rem; font-weight: 800; color: var(--white); line-height: 1; }
.float-badge small  { font-size: .65rem; color: rgba(255,255,255,.5); }

.fb-top    { top: 30px; left: -20px; animation: float-badge-anim 3s ease-in-out infinite; }
.fb-bottom { bottom: 40px; right: -20px; animation: float-badge-anim 3s ease-in-out infinite .8s; }
@keyframes float-badge-anim {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.35);
  font-size: .72rem;
  letter-spacing: .1em;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
  animation: scroll-bounce 1.5s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%,100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(6px); opacity: .4; }
}

/* hero animation helpers (CSS, no JS needed) */
.animate-fade-in-up { opacity: 0; animation: anim-fade-up .8s ease forwards; }
@keyframes anim-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-zoom-in { opacity: 0; animation: anim-zoom .9s ease forwards; }
@keyframes anim-zoom {
  from { opacity: 0; transform: scale(.9); }
  to   { opacity: 1; transform: scale(1); }
}

/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
.about-img-wrap {
  position: relative;
  padding: 0 20px 20px 0;
}

.about-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--gold-200);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, var(--navy-500), var(--navy-800));
  aspect-ratio: 4/5;
  position: relative;
}
.about-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute; inset: 0;
}
.about-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center;
  font-size: 7rem;
  color: rgba(201,168,76,.12);
  overflow: hidden;
}

.about-exp-badge {
  position: absolute;
  bottom: 10px;
  left: -10px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--navy-900);
  border-radius: 20px;
  padding: 18px 20px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  min-width: 100px;
}
.exp-num  { font-size: 2.2rem; font-weight: 900; display: block; line-height: 1; }
.exp-plus { font-size: 1.2rem; font-weight: 900; }
.exp-lbl  { font-size: .7rem; font-weight: 700; display: block; margin-top: 2px; }

.about-corner-shape {
  position: absolute;
  top: -15px; right: -15px;
  width: 80px; height: 80px;
  border-top: 3px solid var(--gold-400);
  border-right: 3px solid var(--gold-400);
  border-radius: 0 16px 0 0;
}

.about-para {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 28px;
}

/* About feature list */
.about-features { display: flex; flex-direction: column; gap: 16px; }

.af-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: var(--trans);
}
.af-item:hover {
  border-color: var(--gold-300);
  box-shadow: 0 4px 20px rgba(201,168,76,.12);
  transform: translateX(-4px);
}

.af-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--navy-900);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(201,168,76,.25);
}
.af-body h5 { font-size: .95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.af-body p  { font-size: .82rem; color: var(--text-muted); margin: 0; }

/* ═══════════════════════════════════════════════════
   QUALIFICATIONS
═══════════════════════════════════════════════════ */
.qual-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  color: var(--white);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.qual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.04), transparent);
  opacity: 0;
  transition: var(--trans);
}
.qual-card:hover {
  border-color: rgba(201,168,76,.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(201,168,76,.2);
}
.qual-card:hover::before { opacity: 1; }

.qual-icon-wrap {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--navy-900);
  margin: 0 auto 16px;
  box-shadow: var(--shadow-gold);
}

.qual-badge-tag {
  display: inline-block;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-400);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.qual-card h5 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.4;
}
.qual-card p { font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 0; }

.qual-sep {
  width: 40px; height: 1px;
  background: rgba(201,168,76,.3);
  margin: 16px auto;
}

.qual-loc { font-size: .75rem; color: rgba(255,255,255,.4); }
.qual-loc i { color: var(--gold-500); }

/* ═══════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════ */
.srv-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.srv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--trans);
}
.srv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 0 0 1px rgba(201,168,76,.15);
  border-color: rgba(201,168,76,.3);
}
.srv-card:hover::after { transform: scaleX(1); transform-origin: left; }

.srv-icon-wrap {
  position: relative;
  width: 68px; height: 68px;
  margin-bottom: 22px;
}
.srv-icon-circle {
  width: 68px; height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-600);
  transition: var(--trans);
  position: relative; z-index: 1;
}
.srv-icon-bg {
  position: absolute; inset: -4px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  opacity: 0;
  transition: var(--trans);
  z-index: 0;
}
.srv-card:hover .srv-icon-circle {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--white);
}
.srv-card:hover .srv-icon-bg { opacity: .15; }

.srv-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.srv-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.75; margin: 0; }

.srv-line {
  width: 0; height: 2px;
  background: var(--gold-400);
  margin-top: 20px;
  border-radius: 1px;
  transition: width .4s ease;
}
.srv-card:hover .srv-line { width: 50px; }

/* ═══════════════════════════════════════════════════
   ARTICLES
═══════════════════════════════════════════════════ */
.art-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}
.art-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,.2);
}

.art-img-wrap { position: relative; overflow: hidden; height: 220px; }

.art-img-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform .5s ease;
}
.art-card:hover .art-img-bg { transform: scale(1.05); }

/* ── Real photo thumbnail ────────────────── */
.art-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.art-card:hover .art-thumb { transform: scale(1.06); }

.art-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,18,38,.10) 0%,
    rgba(8,18,38,.55) 100%
  );
  transition: opacity .4s ease;
}
.art-card:hover .art-thumb-overlay { opacity: .7; }

.art-bg-1 { background: linear-gradient(135deg, #0a1628, #1a3a6c); }
.art-bg-2 { background: linear-gradient(135deg, #0d1f3c, #2050a0); }
.art-bg-3 { background: linear-gradient(135deg, #0a2020, #0d4d4d); }
.art-bg-4 { background: linear-gradient(135deg, #1a0a28, #3d1a6c); }

.art-big-icon {
  font-size: 5rem;
  color: rgba(255,255,255,.12);
  position: absolute;
  bottom: 10px;
  left: 20px;
}

.art-cat {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--navy-900);
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

/* ── Article hero with real image ────────── */
.art-hero-has-img .art-hero-pattern { opacity: .04; }
.art-hero-has-img .art-hero-glow    { opacity: .3;  }

.art-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.art-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.art-meta span { font-size: .73rem; color: var(--text-muted); }
.art-meta i { color: var(--gold-500); }

.art-body h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.5;
  transition: var(--trans);
}
.art-card:hover .art-body h4 { color: var(--navy-500); }

.art-body p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 18px;
}

.art-read-more {
  display: inline-flex;
  align-items: center;
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold-500);
  transition: var(--trans);
  margin-top: auto;
}
.art-read-more i { transition: var(--trans); }
.art-read-more:hover { color: var(--gold-600); }
.art-read-more:hover i { transform: translateX(-5px); }

/* ═══════════════════════════════════════════════════
   SOCIAL MEDIA
═══════════════════════════════════════════════════ */
.soc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 12px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: var(--trans);
  text-decoration: none;
  text-align: center;
}
.soc-card:hover { transform: translateY(-10px); }

.soc-icon {
  font-size: 2rem;
  display: block;
  transition: var(--trans);
}
.soc-name  { font-size: .82rem; font-weight: 700; color: var(--white); }
.soc-handle{ font-size: .68rem; color: rgba(255,255,255,.45); }

/* Brand colors */
.soc-wa  { color: #25d366 !important; }
.soc-wa:hover  { background: rgba(37,211,102,.12); border-color: rgba(37,211,102,.3); box-shadow: 0 12px 40px rgba(37,211,102,.2); }
.soc-ig  { color: #e1306c !important; }
.soc-ig:hover  { background: rgba(225,48,108,.12); border-color: rgba(225,48,108,.3); box-shadow: 0 12px 40px rgba(225,48,108,.2); }
.soc-tt  { color: #ffffff !important; }
.soc-tt:hover  { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); }
.soc-sc  { color: #fffc00 !important; }
.soc-sc:hover  { background: rgba(255,252,0,.1); border-color: rgba(255,252,0,.3); box-shadow: 0 12px 40px rgba(255,252,0,.15); }
.soc-fb  { color: #1877f2 !important; }
.soc-fb:hover  { background: rgba(24,119,242,.12); border-color: rgba(24,119,242,.3); box-shadow: 0 12px 40px rgba(24,119,242,.2); }
.soc-x   { color: #ffffff !important; }
.soc-x:hover   { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════════════════
   BOOKING FORM
═══════════════════════════════════════════════════ */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  box-shadow: 0 24px 80px rgba(0,0,0,.1);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400), var(--gold-300));
}

.booking-header { text-align: center; margin-bottom: 40px; }
.booking-header p { color: var(--text-muted); font-size: .95rem; }

/* form inputs */
.form-floating-custom { margin-bottom: 0; }
.form-floating-custom label {
  display: block;
  font-size: .83rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-floating-custom label i { color: var(--gold-500); }

.form-control {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Cairo', sans-serif;
  font-size: .9rem;
  color: var(--text-dark);
  transition: var(--trans-fast);
  width: 100%;
  background: var(--gray-50);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
  background: var(--white);
}
.form-control::placeholder { color: var(--gray-500); }

textarea.form-control { resize: vertical; min-height: 110px; }

select.form-control { cursor: pointer; }

.btn-booking-submit {
  background: linear-gradient(135deg, #128c5e, #25d366);
  color: var(--white);
  font-family: 'Cairo', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 16px 48px;
  cursor: pointer;
  transition: var(--trans);
  box-shadow: 0 8px 28px rgba(37,211,102,.35);
  letter-spacing: .02em;
  width: 100%;
  max-width: 360px;
}
.btn-booking-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,.45);
}
.btn-booking-submit:active { transform: translateY(0); }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer { background: var(--navy-950); }

.footer-top { padding: 80px 0 60px; }

.ft-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.ft-logo-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--navy-900);
  flex-shrink: 0;
}
.ft-brand h5 { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 2px; }
.ft-brand p  { font-size: .75rem; color: rgba(255,255,255,.45); margin: 0; line-height: 1.5; }

.ft-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.35);
  line-height: 1.8;
  margin-bottom: 24px;
}

.ft-social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.ft-soc {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--trans-fast);
  text-decoration: none;
}
.ft-soc:hover { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); transform: translateY(-3px); }

.ft-heading {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.ft-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ft-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: var(--trans-fast);
  display: flex; align-items: center;
}
.ft-links a i { color: var(--gold-500); font-size: .6rem; margin-left: 6px; }
.ft-links a:hover { color: var(--gold-300); padding-right: 6px; }

.ft-contacts { display: flex; flex-direction: column; gap: 12px; }
.ft-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  text-decoration: none;
  transition: var(--trans-fast);
}
.ft-contact-item i {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: var(--gold-400);
  flex-shrink: 0;
  transition: var(--trans-fast);
}
.ft-contact-item:hover { color: var(--gold-300); }
.ft-contact-item:hover i { background: var(--gold-500); color: var(--navy-900); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px 0;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.25);
  margin: 0;
}

/* ═══════════════════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  left: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #128c5e, #25d366);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  z-index: 999;
  text-decoration: none;
  transition: var(--trans);
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,.6);
  color: var(--white);
}
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 8px 28px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.3); }
  50%      { box-shadow: 0 8px 28px rgba(37,211,102,.45), 0 0 0 12px rgba(37,211,102,0); }
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy-700);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-400);
  font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--trans);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); transform: translateY(-3px); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════
   TABLET  ≤ 992px
═══════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .section-pad { padding: 70px 0; }

  .hero-section { padding-bottom: 20px; }
  .hero-container { padding-top: 10px; padding-bottom: 32px; }
  .hero-name { font-size: 2.4rem; }
  .hero-specialty { font-size: 1rem; }
  .hero-stats { gap: 0; }
  .hstat-num { font-size: 1.6rem; }

  .doc-frame-wrap { width: 280px; }
  .doc-frame { width: 258px; height: 326px; }
  .r1 { width: 308px; height: 386px; }
  .r2 { width: 342px; height: 420px; }
  .fb-top  { left: -10px; }
  .fb-bottom { right: -10px; }

  .about-frame { aspect-ratio: 3/2; }
  .booking-card { padding: 36px 24px; }
}

/* ═══════════════════════════════════════════════════
   MOBILE  ≤ 767px  — صورة فوق + نص تحت
═══════════════════════════════════════════════════ */
@media (max-width: 767.98px) {
  .section-pad { padding: 60px 0; }
  .sec-title   { font-size: 1.7rem; }

  /* ── الهيدر ───────────────────────────────────── */
  .hero-section {
    /* padding-top يضبطه JS تلقائياً */
    padding-bottom: 0;
    align-items: flex-start;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    overflow-x: hidden;
    overflow-y: visible;
  }
  .hero-container {
    padding-top: 6px;
    padding-bottom: 24px;
    width: 100%;
    overflow: hidden;          /* يمنع أي عنصر داخلي من الطفو */
  }

  /* الصف: تقليل الـ gap فقط — Bootstrap يتحكم بالـ stacking */
  .hero-section .row {
    --bs-gutter-y: 12px;
  }

  /* عمود الصورة — مركز، صغير، بدون overflow */
  .hero-img-col {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-bottom: 0;
  }
  .doc-frame-wrap {
    width: 148px;
  }
  .doc-frame {
    width: 136px;
    height: 172px;
    margin: 0 auto;
  }
  /* الحلقات — السبب الرئيسي للـ scroll الأفقي */
  .r1, .r2    { display: none; }
  .float-badge { display: none; }

  /* عمود النص — مركز */
  .hero-text-col {
    text-align: center;
    padding-top: 0;
  }

  /* النصوص */
  .hero-badge    { margin: 0 auto 10px; font-size: .72rem; }
  .hero-name     { font-size: 1.85rem; line-height: 1.2; margin-bottom: 8px; }
  .hero-specialty{ font-size: .88rem; line-height: 1.55; margin-bottom: 8px; }
  .hero-desc     { font-size: .83rem; margin-bottom: 12px; }
  .gold-line     { margin: 10px 0 14px; }
  .gold-line.centered { margin: 10px auto 14px; }

  /* الأزرار — محاذاة مركز */
  .hero-btns {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px !important;
    margin-bottom: 14px;
  }
  .hero-btn { font-size: .82rem !important; padding: 9px 16px !important; }

  /* الإحصائيات — صف أفقي بفاصل */
  .hero-stats {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 14px;
    margin-top: 4px;
  }
  .hstat       { text-align: center; padding: 0 14px; }
  .hstat-sep   { display: block !important; width: 1px; height: 32px; background: rgba(255,255,255,.15); margin: 0; flex-shrink: 0; }
  .hstat-num   { font-size: 1.45rem; }
  .hstat-plus  { font-size: 1rem; }
  .hstat-lbl   { font-size: .67rem; }

  /* إخفاء hint التمرير */
  .hero-scroll-hint { display: none; }

  /* ── باقي الأقسام ── */
  .qual-card  { padding: 28px 18px; }
  .art-img-wrap { height: 160px; }
  .soc-card   { padding: 18px 8px; }
  .soc-icon   { font-size: 1.6rem; }
  .booking-card { padding: 28px 18px; border-radius: var(--radius-lg); }
  .whatsapp-float { bottom: 80px; left: 16px; width: 50px; height: 50px; font-size: 1.4rem; }
  .back-to-top    { bottom: 20px; left: 16px; width: 42px; height: 42px; }
}

/* ═══════════════════════════════════════════════════
   SMALL  ≤ 575px
═══════════════════════════════════════════════════ */
@media (max-width: 575.98px) {
  .doc-frame-wrap { width: 130px; }
  .doc-frame { width: 118px; height: 150px; }
  .hero-name { font-size: 1.7rem; }
  .hero-badge { font-size: .68rem; padding: 5px 12px; }
  .hstat-num  { font-size: 1.3rem; }
  .hstat      { padding: 0 10px; }
}

/* ═══════════════════════════════════════════════════
   VERY SMALL  ≤ 400px
═══════════════════════════════════════════════════ */
@media (max-width: 400px) {
  .hero-name  { font-size: 1.5rem; }
  .hero-btn   { font-size: .76rem !important; padding: 8px 12px !important; }
  .hstat      { padding: 0 7px; }
  .hstat-num  { font-size: 1.15rem; }
  .doc-frame-wrap { width: 112px; }
  .doc-frame  { width: 100px; height: 128px; }
}

/* ═══════════════════════════════════════════════════
   NAVBAR COLLAPSE (mobile)
═══════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  #navMenu {
    background: var(--navy-900);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: 10px;
    border: 1px solid rgba(255,255,255,.07);
  }
  #mainNav .nav-link { padding: 10px 14px !important; border-radius: 10px; }
  #mainNav .nav-link:hover { background: rgba(255,255,255,.07); }
}

/* ═══════════════════════════════════════════════════
   NAVBAR LOGO IMAGE
═══════════════════════════════════════════════════ */
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--trans);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
}
#mainNav.scrolled .nav-logo-img { height: 44px; }

/* ═══════════════════════════════════════════════════
   GALLERY / VIDEO SECTION
═══════════════════════════════════════════════════ */
.gallery-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-900);
  aspect-ratio: 9/16;
  max-height: 540px;
  box-shadow: 0 24px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(201,168,76,.15);
}
.gallery-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.3);
  border: none; cursor: pointer;
  transition: var(--trans);
}
.gallery-play-btn:hover { background: rgba(0,0,0,.45); }
.gallery-play-btn i {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--navy-900);
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  padding-right: 4px; /* optical center */
  box-shadow: 0 0 0 12px rgba(201,168,76,.2), var(--shadow-gold);
  transition: var(--trans);
}
.gallery-play-btn:hover i {
  transform: scale(1.1);
  box-shadow: 0 0 0 20px rgba(201,168,76,.15), var(--shadow-gold);
}
.gallery-video-badge {
  position: absolute;
  bottom: 16px; right: 16px;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-300);
  font-size: .78rem; font-weight: 700;
  padding: 6px 14px; border-radius: 50px;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  height: 100%;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--navy-800);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--trans);
}
.gallery-overlay i { font-size: 1.5rem; color: var(--gold-300); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-item-large { grid-row: 1 / 3; }
.gallery-item-wide  { grid-column: 1 / 3; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: var(--trans);
  padding: 20px;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 92vw; max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: 20px; left: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--trans-fast);
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }

/* ═══════════════════════════════════════════════════
   REVIEWS SECTION
═══════════════════════════════════════════════════ */

/* Rating summary */
.reviews-summary {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 60px;
  padding: 14px 28px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.reviews-score {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy-800);
  line-height: 1;
}
.reviews-stars-wrap { display: flex; flex-direction: column; gap: 4px; }
.reviews-stars { color: #f4c430; font-size: 1rem; letter-spacing: 2px; }
.reviews-stars-wrap span { font-size: .72rem; color: var(--text-muted); }
.reviews-google {
  font-size: .8rem; font-weight: 700;
  color: #4285f4;
  display: flex; align-items: center;
}
.reviews-google i { font-size: 1.1rem; }

/* Review card */
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  display: flex; flex-direction: column;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--trans);
}
.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
  border-color: rgba(201,168,76,.25);
}
.review-card:hover::before { transform: scaleX(1); transform-origin: left; }

.review-featured {
  background: linear-gradient(160deg, #fdfaf3, #fff);
  border-color: rgba(201,168,76,.3);
}
.review-featured::before { transform: scaleX(1) !important; }

/* Avatar */
.review-top {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.rv-purple { background: linear-gradient(135deg,#7c3aed,#a855f7); }
.rv-blue   { background: linear-gradient(135deg,#1d4ed8,#3b82f6); }
.rv-gold   { background: linear-gradient(135deg,var(--gold-600),var(--gold-400)); color: var(--navy-900) !important; }
.rv-teal   { background: linear-gradient(135deg,#0f766e,#14b8a6); }
.rv-navy   { background: linear-gradient(135deg,#1e3a5f,#2563eb); }
.rv-green  { background: linear-gradient(135deg,#15803d,#22c55e); }
.rv-orange { background: linear-gradient(135deg,#c2410c,#f97316); }
.rv-red    { background: linear-gradient(135deg,#991b1b,#ef4444); }

.review-name  { font-size: .9rem; font-weight: 800; color: var(--text-dark); }
.review-stars { color: #f4c430; font-size: .75rem; letter-spacing: 1px; margin-top: 2px; }

.review-google-icon {
  margin-right: auto;
  color: #4285f4; font-size: 1.1rem;
}

/* Quote icon */
.review-quote {
  color: var(--gold-300);
  font-size: 1.3rem;
  margin-bottom: 10px;
  opacity: .6;
}

/* Text */
.review-text {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 16px;
}

/* Footer badges */
.review-footer { margin-top: auto; }
.review-lang {
  display: inline-block;
  font-size: .68rem; font-weight: 700;
  padding: 3px 12px; border-radius: 50px;
  letter-spacing: .05em;
}
.ar-badge {
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-600);
}
.en-badge {
  background: rgba(29,78,216,.08);
  border: 1px solid rgba(29,78,216,.2);
  color: #1d4ed8;
}

/* CTA review card */
.review-cta-card {
  background: linear-gradient(150deg, var(--navy-800) 0%, var(--navy-600) 100%);
  border-color: rgba(201,168,76,.2);
  cursor: default;
}
.review-cta-card:hover { border-color: rgba(201,168,76,.4); }
.review-cta-card::before { background: linear-gradient(90deg, var(--gold-500), var(--gold-300)) !important; }

.review-cta-inner {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; text-align: center;
  gap: 10px; padding: 10px 0;
}
.review-cta-stars { color: #f4c430; font-size: 1.4rem; letter-spacing: 3px; }
.review-cta-inner h4 {
  font-size: 1.4rem; font-weight: 900;
  color: var(--white); margin: 0;
}
.review-cta-inner p { font-size: .88rem; color: rgba(255,255,255,.55); margin: 0; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE — new sections
═══════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .gallery-video-wrap { aspect-ratio: 16/9; max-height: 360px; }
  .gallery-grid { grid-template-columns: repeat(4,1fr); grid-template-rows: auto; }
  .gallery-item-large { grid-row: auto; grid-column: span 2; }
  .gallery-item-wide  { grid-column: span 2; }
}
@media (max-width: 767.98px) {
  .gallery-video-wrap { aspect-ratio: 9/16; max-height: 420px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item-large { grid-row: 1/3; }
  .gallery-item-wide  { grid-column: 1/3; }
  .reviews-summary { gap: 12px; padding: 12px 18px; }
  .reviews-score { font-size: 1.8rem; }
  .review-card { padding: 22px 18px; }
}
