/* ==========================================================================
   Q6 Clinic — Al Qibla Clinic Center
   Design System & Global Styles
   ========================================================================== */

:root {
  /* Brand Colors (from logo) */
  --teal-900: #0a3d44;
  --teal-800: #0d5b66;
  --teal-700: #136874;
  --teal-600: #1a7a85;
  --teal-500: #2a8f9b;
  --teal-100: #e3f1f3;
  --teal-50:  #f3f9fa;

  --gold-900: #8a6a3e;
  --gold-800: #a98253;
  --gold-700: #c9a876;
  --gold-600: #d4b88a;
  --gold-500: #e0caa3;
  --gold-100: #f5ecdb;
  --gold-50:  #faf5ec;

  --cream:    #faf7f2;
  --ivory:    #fdfbf7;
  --white:    #ffffff;
  --ink:      #1c2326;
  --ink-2:    #3a4548;
  --muted:    #6b7679;
  --line:     #e8e2d6;
  --shadow-sm: 0 2px 8px rgba(13, 91, 102, 0.06);
  --shadow-md: 0 8px 28px rgba(13, 91, 102, 0.10);
  --shadow-lg: 0 20px 60px rgba(13, 91, 102, 0.14);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --container: 1240px;

  --font-ar: "Cairo", system-ui, -apple-system, sans-serif;
  --font-en: "Cairo", system-ui, -apple-system, sans-serif;
  --font-display: "Cairo", system-ui, -apple-system, sans-serif;

  --t-fast: 200ms cubic-bezier(.4,0,.2,1);
  --t-base: 320ms cubic-bezier(.4,0,.2,1);
  --t-slow: 600ms cubic-bezier(.4,0,.2,1);
}

/* Reset */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-ar);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.lang-en { font-family: var(--font-en); direction: ltr; }
body.lang-ar { font-family: var(--font-ar); direction: rtl; }

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold-700); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* Utilities */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section { padding: 100px 0; position: relative; }
.section--sm { padding: 60px 0; }
.section--compact-top { padding-top: 60px; }
.section-heading { text-align: center; margin-bottom: 48px; }
.section-footer-cta { text-align: center; margin-top: 36px; }
.section--tint { background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%); }
.section--teal { background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-800) 100%); color: var(--ivory); }
.section--gold-tint { background: linear-gradient(180deg, var(--gold-50) 0%, var(--ivory) 100%); }

/* Section "6" decorative watermark */
.deco-left, .deco-right { position: relative; overflow: hidden; }
.deco-left::before, .deco-right::before {
  content: "6";
  position: absolute;
  font-size: clamp(260px, 32vw, 520px);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(10, 61, 68, 0.07);
  pointer-events: none;
  z-index: 0;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
}
.deco-left::before  { inset-inline-start: -60px; }
.deco-right::before { inset-inline-end: -60px; }
.deco-left > *, .deco-right > * { position: relative; z-index: 1; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 600; line-height: 1.25; color: var(--teal-900); letter-spacing: -0.01em; }
body.lang-ar h1, body.lang-ar h2, body.lang-ar h3, body.lang-ar h4, body.lang-ar h5, body.lang-ar h6 { font-family: var(--font-ar); font-weight: 700; }

h1 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-800);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
}
body.lang-en .eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 32px; height: 1.5px;
  background: var(--gold-700);
}
.section-title {
  text-align: center;
  margin-bottom: 14px;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 60px;
  font-size: 1.05rem;
}

/* ── Category section hero title ── */
.cat-section-title {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 20px;
  padding: 24px 38px;
  position: relative;
  display: inline-block;
}
.cat-section-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(212, 184, 138, 0.18) 0%, rgba(212, 184, 138, 0.24) 50%, rgba(201, 168, 118, 0.20) 100%);
  border-radius: 999px;
  z-index: -1;
}
.cat-section-title .gold-accent {
  background: linear-gradient(130deg, var(--gold-900) 0%, var(--gold-700) 42%, var(--gold-800) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold-800) 0%, var(--gold-700) 100%);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(169, 130, 83, 0.32);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(169, 130, 83, 0.42);
  color: var(--white);
}
.btn--teal {
  background: var(--teal-800);
  color: var(--white);
}
.btn--teal:hover { background: var(--teal-900); color: var(--white); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  border-color: var(--teal-800);
  color: var(--teal-800);
}
.btn--outline:hover { background: var(--teal-800); color: var(--white); }
.btn--ghost-light {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn--ghost-light:hover { background: var(--white); color: var(--teal-900); }
.btn--lg { padding: 18px 38px; font-size: 1rem; }

/* Header */
.topbar {
  background: var(--teal-900);
  color: var(--gold-500);
  font-size: 0.85rem;
  padding: 10px 0;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.topbar a { color: var(--gold-500); }
.topbar a:hover { color: var(--white); }
.topbar__contact { display: flex; gap: 24px; align-items: center; }
.topbar__contact span { display: inline-flex; align-items: center; gap: 8px; }
.topbar__social { display: flex; gap: 14px; }
.topbar__social a { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(201, 168, 118, 0.3); border-radius: 50%; transition: all var(--t-fast); }
.topbar__social a:hover { background: var(--gold-700); color: var(--teal-900); border-color: var(--gold-700); }

.header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(14px);
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t-base);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.header__cta { display: flex; align-items: center; gap: 14px; }
.brand { display: flex; align-items: center; gap: 12px; justify-self: center; }
.brand img { height: 72px; width: auto; transition: transform var(--t-fast); }
.brand:hover img { transform: scale(1.04); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); color: var(--teal-900); font-size: 1.2rem; font-weight: 700; letter-spacing: 0.04em; }
body.lang-ar .brand__name { font-family: var(--font-ar); }
.brand__tag { color: var(--gold-800); font-size: 0.72rem; letter-spacing: 0.18em; margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 8px 14px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 14px; right: 14px;
  height: 2px;
  background: var(--gold-700);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-base);
}
.nav__link:hover, .nav__link.active { color: var(--teal-900); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link.has-children::after { content: none; }

.nav__item { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  inset-inline-start: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--t-base);
  border: 1px solid var(--line);
}
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--ink-2);
  transition: all var(--t-fast);
}
.nav__dropdown a:hover { background: var(--gold-50); color: var(--teal-900); padding-inline-start: 18px; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-800);
  transition: all var(--t-fast);
}
.lang-toggle:hover { background: var(--teal-50); border-color: var(--teal-600); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-800);
  align-items: center;
  justify-content: center;
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  background: radial-gradient(ellipse at top right, var(--teal-700) 0%, var(--teal-900) 60%, #082b30 100%);
  color: var(--ivory);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 30px 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(201,168,118,0.18) 0, transparent 35%),
    radial-gradient(circle at 88% 80%, rgba(201,168,118,0.14) 0, transparent 38%);
}
.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__decor::before, .hero__decor::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}
.hero__decor::before { width: 380px; height: 380px; background: var(--gold-700); top: -100px; right: -80px; }
.hero__decor::after  { width: 460px; height: 460px; background: var(--teal-500); bottom: -180px; left: -100px; }

.hero__decor-6 {
  position: absolute;
  top: 50%;
  inset-inline-end: 42%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}
.hero__decor-6::after {
  content: "6";
  font-size: clamp(300px, 40vw, 620px);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(201, 168, 118, 0.12);
  letter-spacing: -0.05em;
  user-select: none;
  display: block;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
}
.hero__content h1 {
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero__content h1 .accent { color: var(--gold-700); font-style: normal; }
.hero__content p {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.85;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 560px;
}
.hero__stat strong { font-family: var(--font-display); display: block; font-size: 2.2rem; color: var(--gold-700); font-weight: 600; }
body.lang-ar .hero__stat strong { font-family: var(--font-ar); }
.hero__stat span { font-size: 0.86rem; color: rgba(255,255,255,0.7); }

.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero__visual-card {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 5/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  background: linear-gradient(135deg, var(--gold-100), var(--teal-100));
}
.hero__visual-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__stats-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: linear-gradient(to top, rgba(8,43,48,0.88) 0%, rgba(8,43,48,0.55) 70%, transparent 100%);
  padding: 28px 20px 22px;
  gap: 8px;
}
.hero__stat-item { text-align: center; flex: 1; }
.hero__stat-item strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-600);
  line-height: 1.1;
  font-family: var(--font-ar);
}
.hero__stat-item span { font-size: 0.8rem; color: rgba(255,255,255,0.85); display: block; margin-top: 4px; }
.hero__stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

/* Cards / generic */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  border: 1px solid var(--line);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: var(--gold-500); }

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  text-align: center;
  transition: all var(--t-base);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  opacity: 0;
  transition: opacity var(--t-base);
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card__icon {
  width: 76px; height: 76px;
  border-radius: 22px;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-50));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-800);
  transition: all var(--t-base);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; transition: color var(--t-base); }
.service-card p { color: var(--muted); font-size: 0.93rem; margin-bottom: 20px; transition: color var(--t-base); }
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--teal-800);
  transition: all var(--t-fast);
}
.service-card:hover { transform: translateY(-8px); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card:hover h3 { color: var(--white); }
.service-card:hover p { color: rgba(255,255,255,0.8); }
.service-card:hover .service-card__icon { background: var(--gold-700); color: var(--white); transform: scale(1.05); }
.service-card:hover a { color: var(--gold-700); }

/* About / Two col */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.two-col__visual { position: relative; }
.two-col__visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.two-col__visual-2 {
  position: absolute;
  bottom: -40px;
  inset-inline-end: -40px;
  width: 60%;
  border-radius: var(--radius-lg);
  border: 8px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-item__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.feature-item strong { display: block; color: var(--teal-900); font-size: 1rem; margin-bottom: 4px; }
.feature-item span { color: var(--muted); font-size: 0.88rem; }

/* Doctors */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.doctor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  border: 1px solid var(--line);
}
.doctor-card__img {
  aspect-ratio: 4/4.4;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--gold-100), var(--teal-100));
}
.doctor-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.doctor-card__social {
  position: absolute;
  inset-inline-end: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--t-base);
}
.doctor-card__social a {
  width: 36px; height: 36px;
  background: var(--white);
  color: var(--teal-800);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.doctor-card__social a:hover { background: var(--gold-700); color: var(--white); }
.doctor-card:hover img { transform: scale(1.06); }
.doctor-card:hover .doctor-card__social { opacity: 1; transform: translateY(0); }
.doctor-card__info { padding: 24px; text-align: center; }
.doctor-card__info h3 { font-size: 1.15rem; margin-bottom: 4px; }
.doctor-card__info span { color: var(--gold-800); font-size: 0.86rem; font-weight: 600; }

/* Stats Banner */
.stats-banner {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-800) 100%);
  color: var(--ivory);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.stats-banner::before, .stats-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--gold-700);
  opacity: 0.15;
  filter: blur(60px);
}
.stats-banner::before { width: 280px; height: 280px; top: -100px; right: -80px; }
.stats-banner::after { width: 220px; height: 220px; bottom: -80px; left: -50px; }
.stat-item { text-align: center; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat-item > i { font-size: 1.8rem; color: var(--gold-500); margin-bottom: 4px; opacity: 0.9; }
.stat-item strong { font-family: var(--font-display); display: block; font-size: 3rem; font-weight: 600; color: var(--gold-700); line-height: 1; }
body.lang-ar .stat-item strong { font-family: var(--font-ar); }
.stat-item span { font-size: 0.95rem; color: rgba(255,255,255,0.8); }

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line);
  position: relative;
  height: 100%;
}
.testimonial-card::before {
  content: """;
  position: absolute;
  top: 18px; inset-inline-end: 24px;
  font-family: serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-100);
}
/* Reviews grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
@media (max-width: 820px) {
  .reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .reviews-grid .testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
}

.testimonial-card__stars { color: var(--gold-700); margin-bottom: 14px; }
.testimonial-card p { color: var(--ink-2); font-size: 1rem; margin-bottom: 24px; line-height: 1.85; }
.testimonial-card__person { display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-700), var(--teal-700));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
}
.testimonial-card strong { display: block; color: var(--teal-900); }
.testimonial-card small { color: var(--muted); font-size: 0.82rem; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
  border-radius: var(--radius-xl);
  padding: 70px 50px;
  text-align: center;
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); margin-bottom: 18px; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 580px; margin: 0 auto 30px; font-size: 1.05rem; }
.cta-banner .btn-row { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Floating Buttons */
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 80;
}
.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
  transition: all var(--t-fast);
  position: relative;
}
@media (max-width: 820px) {
  .floating-actions { right: 14px; bottom: 90px; }
  .fab { width: 46px; height: 46px; font-size: 1.15rem; }
}
.fab:hover { transform: scale(1.08); color: var(--white); }
.fab--whatsapp { background: #25D366; }
.fab--call { background: var(--teal-800); }
.fab--call::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--teal-700);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.95); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #082b30 0%, var(--teal-900) 100%);
  color: rgba(255,255,255,0.78);
  padding-top: 60px;
}
.footer__simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding-bottom: 40px;
}
.footer__simple img { height: 64px; filter: brightness(0) invert(1); }
.footer__simple p { font-size: 0.95rem; line-height: 1.7; max-width: 420px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: all var(--t-fast);
}
.footer__social a:hover { background: var(--gold-700); border-color: var(--gold-700); color: var(--teal-900); transform: translateY(-3px); }
.footer__contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.9rem;
}
.footer__contact-row a { color: rgba(255,255,255,0.78); display: flex; align-items: center; gap: 7px; transition: color var(--t-fast); }
.footer__contact-row a:hover { color: var(--gold-700); }
.footer__contact-row i { color: var(--gold-700); }
.footer__sep { color: rgba(255,255,255,0.25); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.86rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom a { color: var(--gold-700); }

/* Footer — tighter on mobile */
@media (max-width: 820px) {
  .footer { padding-top: 32px; }
  .footer__simple { gap: 12px; padding-bottom: 20px; }
  .footer__simple img { height: 48px; }
  .footer__simple p { font-size: 0.88rem; line-height: 1.55; max-width: 340px; }
  .footer__social { gap: 8px; }
  .footer__social a { width: 36px; height: 36px; font-size: 0.9rem; }
  .footer__contact-row { gap: 10px; font-size: 0.82rem; }
  .footer__bottom { padding: 14px 0; font-size: 0.78rem; }
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 60%, var(--teal-800) 100%);
  color: var(--ivory);
  padding: 100px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(201,168,118,0.18) 0, transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(201,168,118,0.14) 0, transparent 30%);
}
.page-header__inner { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.78); max-width: 580px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 10px; align-items: center; margin-top: 22px; font-size: 0.9rem; }
.breadcrumb a { color: var(--gold-700); }
.breadcrumb span { color: rgba(255,255,255,0.5); }
.breadcrumb i { color: rgba(255,255,255,0.4); font-size: 0.7rem; }

/* Tabs (Services categories) */
.tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 50px; }
.tab-btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: all var(--t-fast);
}
.tab-btn:hover { border-color: var(--teal-600); color: var(--teal-800); }
.tab-btn.active { background: var(--teal-800); border-color: var(--teal-800); color: var(--white); }

/* Offer Cards */
.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  transition: all var(--t-base);
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-500); }
.offer-card__img { aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(135deg, var(--gold-100), var(--teal-100)); }
.offer-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.offer-card:hover .offer-card__img img { transform: scale(1.06); }
.offer-card__badge {
  position: absolute;
  top: 18px; inset-inline-start: 18px;
  background: var(--gold-700);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}
.offer-card__body { padding: 26px; text-align: center; }
.offer-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.offer-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; }
.offer-card__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.offer-card__new { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--teal-800); }
body.lang-ar .offer-card__new { font-family: var(--font-ar); }
.offer-card__old { color: var(--muted); text-decoration: line-through; font-size: 1rem; }
.offer-card__cur { font-size: 0.85rem; color: var(--muted); font-weight: 500; }

/* Before/After Slider */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.compare-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
}
.compare-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.compare-card__media {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: var(--teal-100);
}
.compare-card__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  pointer-events: none;
}
.compare-card__after { clip-path: inset(0 0 0 50%); transition: clip-path 50ms linear; }
.compare-card__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--white);
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}
.compare-card__handle::after {
  content: "⇆";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-800);
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}
.compare-card__label {
  position: absolute;
  top: 14px;
  background: rgba(13, 91, 102, 0.85);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.compare-card__label--before { inset-inline-start: 14px; color: #fff; }
.compare-card__label--after  { inset-inline-end: 14px; background: rgba(201,168,118,0.95); color: #fff; }
body.lang-ar .compare-card__label--before { inset-inline-start: auto; inset-inline-end: 14px; color: #fff; }
body.lang-ar .compare-card__label--after  { inset-inline-end: auto; inset-inline-start: 14px; color: #fff; }
.compare-card__caption { padding: 18px 20px; text-align: center; }
.compare-card h4 { color: var(--teal-900); font-size: 1rem; margin-bottom: 4px; }
.compare-card span { color: var(--muted); font-size: 0.85rem; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-500); }
.blog-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-100), var(--teal-100));
  flex-shrink: 0;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { display: flex; flex-wrap: wrap; gap: 12px 16px; font-size: 0.78rem; color: var(--muted); margin-bottom: 12px; }
.blog-card__meta i { color: var(--gold-700); margin-inline-end: 5px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card h3 a { color: var(--teal-900); text-decoration: none; }
.blog-card h3 a:hover { color: var(--gold-700); }
.blog-card p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; flex: 1; }

/* Footer: Read button + share icons */
.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.blog-card__footer .btn--sm {
  padding: 8px 16px;
  font-size: 0.82rem;
  border-radius: 999px;
}
.blog-card__share {
  display: flex;
  gap: 6px;
}
.blog-card__share a,
.blog-card__share button {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-700);
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: all var(--t-fast);
  text-decoration: none;
}
.blog-card__share a:hover,
.blog-card__share button:hover {
  background: var(--gold-700);
  color: var(--white);
  transform: translateY(-2px);
}

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all var(--t-base);
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--gold-500); }
.faq-q {
  width: 100%;
  text-align: start;
  padding: 22px 28px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-q i { color: var(--gold-800); transition: transform var(--t-base); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base);
  padding: 0 28px;
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.85;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 28px 22px; }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: stretch; }
.contact-info {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  color: var(--ivory);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.contact-info::before, .contact-info::after {
  content: "";
  position: absolute; border-radius: 50%; background: var(--gold-700); opacity: 0.18; filter: blur(60px);
}
.contact-info::before { width: 220px; height: 220px; top: -80px; right: -60px; }
.contact-info::after { width: 200px; height: 200px; bottom: -60px; left: -40px; }
.contact-info > * { position: relative; z-index: 1; }
.contact-info h3 { color: var(--white); margin-bottom: 12px; }
.contact-info p { color: rgba(255,255,255,0.78); margin-bottom: 28px; }
.contact-info__list li { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-info__list .icon {
  width: 44px; height: 44px;
  background: rgba(201,168,118,0.18);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-700);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info__list strong { display: block; color: var(--white); font-weight: 600; margin-bottom: 4px; }
.contact-info__list span { color: rgba(255,255,255,0.78); font-size: 0.92rem; }
.contact-info__social { display: flex; gap: 10px; margin-top: 26px; }
.contact-info__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
}
.contact-info__social a:hover { background: var(--gold-700); color: var(--teal-900); }

.form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 18px; }
.form__field { display: flex; flex-direction: column; }
.form__field--full { grid-column: 1 / -1; }
.form__field label { font-size: 0.88rem; font-weight: 600; color: var(--teal-900); margin-bottom: 8px; }
.form__field label .req { color: #d04848; }
.form__field input,
.form__field select,
.form__field textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--t-fast);
  font-family: inherit;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus { border-color: var(--gold-700); background: var(--white); box-shadow: 0 0 0 4px rgba(201,168,118,0.12); }
.form__field textarea { resize: vertical; min-height: 130px; }

/* Booking flow */
.steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  position: relative;
}
.step__num {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--t-base);
  flex-shrink: 0;
}
.step__label { color: var(--muted); font-size: 0.88rem; font-weight: 600; }
.step.active .step__num { background: var(--gold-700); border-color: var(--gold-700); color: var(--white); }
.step.active .step__label { color: var(--teal-900); }
.step.done .step__num { background: var(--teal-700); border-color: var(--teal-700); color: var(--white); }
.step.done .step__num::after { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 0.85rem; }
.step.done .step__num span { display: none; }
.step + .step::before {
  content: ""; width: 40px; height: 2px; background: var(--line);
  margin: 0 6px;
}

.booking-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.booking-step { display: none; }
.booking-step.active { display: block; }
.option-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.option-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  cursor: pointer;
  transition: all var(--t-fast);
  text-align: center;
  background: var(--ivory);
}
.option-card:hover { border-color: var(--gold-700); box-shadow: 0 0 0 3px rgba(201,168,118,0.12); }
.option-card.selected { border-color: var(--gold-700); background: var(--gold-50); box-shadow: 0 0 0 3px rgba(201,168,118,0.18); }
.option-card i { font-size: 1.5rem; color: var(--teal-700); margin-bottom: 10px; }
.option-card strong { display: block; color: var(--teal-900); font-size: 0.95rem; margin-bottom: 4px; }
.option-card span { color: var(--muted); font-size: 0.82rem; }
.time-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 10px; }
.time-slot {
  padding: 12px 10px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-2);
  cursor: pointer;
  transition: all var(--t-fast);
}
.time-slot:hover { border-color: var(--gold-700); color: var(--teal-900); }
.time-slot.selected { background: var(--teal-800); border-color: var(--teal-800); color: var(--white); }
.time-slot.disabled { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }

.booking-actions { display: flex; justify-content: space-between; margin-top: 30px; gap: 14px; }
.booking-summary { background: var(--gold-50); border: 1px solid var(--gold-500); border-radius: var(--radius); padding: 22px; margin-bottom: 24px; }
.booking-summary li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--gold-500); font-size: 0.92rem; }
.booking-summary li:last-child { border-bottom: 0; }
.booking-summary li strong { color: var(--teal-900); }

/* Map */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }

/* Mobile nav drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(8, 43, 48, 0.6);
  backdrop-filter: blur(6px);
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: all var(--t-base);
}
.mobile-drawer.open { visibility: visible; opacity: 1; }
.mobile-drawer__panel {
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  width: min(360px, 86vw);
  background: var(--white);
  padding: 30px 24px;
  transform: translateX(100%);
  transition: transform var(--t-base);
  overflow-y: auto;
  text-align: center;
}
.mobile-drawer__panel .brand {
  position: static;
  transform: none;
  justify-content: center;
}
.mobile-drawer__panel .brand img { height: 50px; }
.mobile-drawer__panel p { display: flex; align-items: center; justify-content: center; gap: 8px; }
.mobile-drawer.open .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-800);
}
.mobile-drawer h4 { margin: 30px 0 12px; font-size: 0.95rem; font-weight: 700; color: var(--gold-800); letter-spacing: 0; }
body.lang-en .mobile-drawer h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; }
.mobile-drawer a.mlink {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-weight: 500;
}
.mobile-drawer a.mlink:hover { color: var(--teal-800); }

/* AOS-like reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: all 700ms cubic-bezier(.4,0,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
═══════════════════════════════════════ */

/* Tablet */
@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero__visual { order: -1; }
  .hero__visual-card { max-width: 580px; margin: 0 auto; aspect-ratio: 5/4; }
  .hero__content { text-align: center; }
  .hero__cta { justify-content: center; }
  .hero__content p { margin-left: auto; margin-right: auto; }
  .stats-banner { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 50px; }
  .two-col__visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .doctors-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}

/* Mobile nav breakpoint */
@media (max-width: 820px) {
  .nav, .topbar { display: none; }
  .menu-toggle { display: inline-flex; }
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 64px;
    position: relative;
  }
  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: auto;
  }
  .brand img { height: 55px; }
  .header__cta { gap: 8px; }
  .header__cta .btn--primary { width: 42px; height: 42px; padding: 0; border-radius: 50%; justify-content: center; }
  .header__cta .btn--primary span { display: none; }
  .header__cta .btn--primary i { margin: 0; font-size: 1.1rem; }
  .menu-toggle { display: inline-flex; }

  .section { padding: 40px 0; }
  .section--sm { padding: 32px 0; }
  .section--compact-top { padding-top: 28px; }
  .section-heading { margin-bottom: 22px; }

  .hero { padding: 24px 0 36px; min-height: auto; }
  .hero__visual-card { max-width: 100%; aspect-ratio: 4/3; }
  .hero__stats-overlay { padding: 20px 14px 16px; }
  .hero__stat-item strong { font-size: 1.35rem; }
  .hero__stat-item span { font-size: 0.72rem; }

  .services-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
  .doctors-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .time-slot { padding: 14px 10px; }

  .section-title { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .section-sub { margin-bottom: 18px; font-size: 0.92rem; }
  .cat-section-title { font-size: clamp(1.7rem, 7vw, 2.5rem); margin-bottom: 8px; line-height: 1.2; padding: 18px 26px; }

  .form__row { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }

  .stats-banner { padding: 36px 20px; gap: 20px; }
  .cta-banner { padding: 44px 20px; }
  .cta-banner h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .btn-row { flex-direction: column; align-items: center; gap: 12px; }

  .booking-card { padding: 20px 16px; }
  .option-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .option-card { padding: 14px 10px; }
  .step__label { display: none; }
  .step + .step::before { width: 20px; }
  .booking-actions { flex-direction: column-reverse; gap: 10px; }
  .booking-actions .btn { width: 100%; justify-content: center; }

  .map-wrap iframe { height: 280px; }
  .page-header { padding: 60px 0 40px; }

  .faq-q { font-size: 0.95rem; padding: 16px 14px; }

  .offer-card { max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* Small mobile */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero { padding: 16px 0 28px; }
  .hero__visual-card { aspect-ratio: 3/2; border-radius: var(--radius); }
  .hero__stats-overlay { padding: 14px 10px 12px; gap: 4px; }
  .hero__stat-item strong { font-size: 1.15rem; }
  .hero__stat-divider { height: 28px; }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-card { padding: 22px 14px; }
  .service-card__icon { width: 52px; height: 52px; font-size: 1.2rem; }
  .service-card h3 { font-size: 0.95rem; }
  .service-card p { display: none; }

  .doctors-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  .stats-banner { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 28px 14px; }
  .stat-item strong { font-size: 2rem; }

  .section-title { font-size: 1.5rem; }
  .section { padding: 48px 0; }

  .time-grid { grid-template-columns: repeat(3, 1fr); }
  .option-grid { grid-template-columns: 1fr; }

  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cta-banner { border-radius: var(--radius); padding: 36px 16px; }

  .hero__cta .btn { font-size: 0.9rem; padding: 12px 20px; }
}

/* ═══════════════════════════════════════
   HOMEPAGE CATEGORY CARDS
═══════════════════════════════════════ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 40px 24px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  text-decoration: none;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-50), var(--gold-50));
  opacity: 0;
  transition: opacity var(--t-base);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal-500); }
.cat-card:hover::before { opacity: 1; }
.cat-card__icon {
  position: relative;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-900));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(10,61,68,0.25);
  transition: transform var(--t-base);
}
.cat-card:hover .cat-card__icon { transform: scale(1.1); }
.cat-card h3 { position: relative; font-size: 1.15rem; font-weight: 700; color: var(--teal-900); margin: 0; }
.cat-card__arrow { position: relative; color: var(--gold-700); font-size: 1rem; }

/* Cat-card with cover image */
.cat-card__cover {
  width: calc(100% + 48px);
  margin: -40px -24px 16px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) var(--radius) var(--radius);
  flex-shrink: 0;
}
.cat-card__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.cat-card:hover .cat-card__cover img { transform: scale(1.06); }

/* Follow bar */
.follow-bar {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  border-radius: var(--radius-lg);
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
}
.follow-bar__icons { display: flex; gap: 12px; }
.follow-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.follow-btn:hover { transform: scale(1.15); box-shadow: 0 6px 18px rgba(201,168,118,0.4); }
.follow-btn--insta,
.follow-btn--snap,
.follow-btn--tiktok,
.follow-btn--fb {
  background: linear-gradient(135deg, var(--gold-800) 0%, var(--gold-700) 50%, var(--gold-900) 100%);
  color: var(--teal-900);
  border: 1px solid var(--gold-600);
}
.follow-btn:hover { background: linear-gradient(135deg, var(--gold-700) 0%, var(--gold-600) 50%, var(--gold-800) 100%); }

/* ═══════════════════════════════════════
   CATEGORY TABS (services page)
═══════════════════════════════════════ */
.cat-tabs {
  display: flex;
  gap: 6px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-2);
  border: 1px solid var(--line);
  transition: all var(--t-fast);
}
.cat-tab img {
  flex-shrink: 0;
  display: inline-block;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
}
.cat-tab:hover {
  background: var(--teal-700);
  color: var(--white);
  border-color: var(--teal-700);
}
.cat-tab.active {
  background: linear-gradient(135deg, var(--teal-800), var(--teal-700));
  color: var(--white);
  border-color: var(--teal-700);
  box-shadow: 0 4px 14px rgba(13, 91, 102, 0.28);
}

/* ═══════════════════════════════════════
   SERVICE CARDS (svc-grid)
═══════════════════════════════════════ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--t-base);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-500); }
.svc-card__img { aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(135deg,var(--teal-50),var(--gold-50)); }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform var(--t-slow); }
.svc-card:hover .svc-card__img img { transform: scale(1.06); }
.svc-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem;
  color: var(--gold-600);
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
}
.svc-card__body { padding: 20px; text-align: center; }
.svc-card__body h3 { font-size: 1rem; font-weight: 700; color: var(--teal-900); margin-bottom: 6px; line-height: 1.4; }
.svc-card__summary { font-size: 0.82rem; color: var(--muted); line-height: 1.55; margin-bottom: 12px; min-height: 2.6em; white-space: pre-line; }
.svc-card__price { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-bottom: 16px; }
.svc-card__price strong { font-size: 1.9rem; font-weight: 800; color: var(--teal-900); line-height: 1; }
.svc-card__price span { font-size: .85rem; color: var(--muted); }
.svc-card__price--consult { flex-direction: column; align-items: center; gap: 4px; }
.svc-card__price--consult span { font-size: .9rem; font-weight: 700; color: var(--teal-800); }
.svc-card__price--consult small { font-size: .78rem; color: var(--gold-700); font-weight: 600; }
.svc-card .btn--book { padding: 12px 22px; font-size: .9rem; }

/* Services grid — 2 per row on mobile */
@media (max-width: 820px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .svc-card__body { padding: 12px 10px 14px; }
  .svc-card__body h3 { font-size: 0.88rem; margin-bottom: 8px; line-height: 1.35; }
  .svc-card__price { margin-bottom: 10px; gap: 4px; }
  .svc-card__price strong { font-size: 1.3rem; }
  .svc-card__price span { font-size: 0.72rem; }
  .svc-card__price--consult span { font-size: 0.78rem; }
  .svc-card__price--consult small { font-size: 0.68rem; }
  .svc-card .btn--book { padding: 8px 12px; font-size: 0.78rem; width: 100%; }
}

/* ═══════════════════════════════════════
   OFFER CARDS
═══════════════════════════════════════ */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 820px) {
  .offers-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .offers-grid::-webkit-scrollbar { display: none; }
  .offers-grid .offer-card {
    flex: 0 0 72vw;
    max-width: 320px;
    scroll-snap-align: start;
  }
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-500); }
.offer-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal-50), var(--gold-50));
  flex-shrink: 0;
}
.offer-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.offer-card:hover .offer-card__img img { transform: scale(1.05); }
.offer-card__placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
  position: relative; overflow: hidden;
}
.offer-card__placeholder::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: var(--gold-700);
  border-radius: 50%;
  opacity: 0.14;
  top: -60px; left: -50px;
  filter: blur(50px);
  pointer-events: none;
}
.offer-card__placeholder i {
  color: var(--gold-600);
  font-size: 2.8rem;
  position: relative; z-index: 1;
}
.offer-card__badge {
  position: absolute; top: 12px;
  inset-inline-start: 12px;
  background: var(--gold-800);
  color: var(--white);
  font-size: .75rem; font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.offer-card__discount {
  position: absolute; top: 12px;
  inset-inline-end: 12px;
  background: #e53e3e;
  color: var(--white);
  font-size: .8rem; font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
}
.offer-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}
.offer-card__body h3 { font-size: 1rem; font-weight: 700; color: var(--teal-900); margin-bottom: 10px; line-height: 1.4; }
.offer-card__price {
  display: flex; align-items: baseline; justify-content: center;
  gap: 8px; margin-bottom: 16px; flex-wrap: wrap;
}
.offer-card__price strong { font-size: 1.7rem; font-weight: 800; color: var(--teal-900); line-height: 1; }
.offer-card__price .unit { font-size: .85rem; color: var(--muted); }
.offer-card__price .old-price { font-size: .9rem; color: var(--muted); text-decoration: line-through; }
.offer-card__body .btn { margin-top: auto; }
.btn--block { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════
   BOOKING BOTTOM SHEET
═══════════════════════════════════════ */
.bsheet-overlay {
  position: fixed; inset: 0;
  background: rgba(8,43,48,0.55);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0; visibility: hidden;
  transition: all .3s;
}
.bsheet-overlay.open { opacity: 1; visibility: visible; }
.bsheet {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 201;
  background: var(--white);
  border-radius: 24px 24px 0 0;
  max-height: 88vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.32,.72,0,1);
}
.bsheet.open { transform: translateY(0); }
.bsheet__handle {
  position: relative;
  width: 40px; height: 4px;
  background: var(--line);
  border-radius: 4px;
  margin: 12px auto 0;
}
.bsheet__inner { padding: 8px 24px calc(40px + env(safe-area-inset-bottom, 0px)); }
.bsheet__close {
  display: flex;
  margin: 6px auto 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-800);
  align-items: center; justify-content: center;
  font-size: .9rem;
}
.bsheet__svc {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 18px 22px;
  background: linear-gradient(180deg, var(--teal-50) 0%, var(--gold-50) 100%);
  border-radius: var(--radius);
  margin: 0 0 24px;
}
.bsheet__svc-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-700));
  color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(13, 91, 102, 0.18);
}
.bsheet__svc-info { width: 100%; }
.bsheet__svc-name {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--teal-900);
  line-height: 1.3;
  margin-bottom: 6px;
}
.bsheet__svc-summary {
  font-size: 0.85rem;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 10px;
}
.bsheet__svc-price {
  display: inline-block;
  font-size: 1.15rem;
  color: var(--teal-900);
  font-weight: 800;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  border: 1.5px solid var(--gold-600);
}
.bsheet__step-title { font-size: 1.05rem; font-weight: 700; color: var(--teal-900); margin-bottom: 14px; display: flex; align-items: center; }
.bsheet__step-title { font-size: 1.05rem; font-weight: 700; color: var(--teal-900); margin-bottom: 14px; display: flex; align-items: center; }

/* Prominent "Change appointment" button on Step 2 — centered + larger */
.bsheet__change-appt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 18px 16px;
  background: linear-gradient(135deg, var(--teal-50) 0%, var(--gold-50) 100%);
  border: 1.5px solid var(--teal-500);
  border-radius: var(--radius);
  margin-bottom: 22px;
  cursor: pointer;
  transition: all var(--t-fast);
  text-align: center;
  position: relative;
}
.bsheet__change-appt:hover {
  background: linear-gradient(135deg, var(--teal-100) 0%, var(--gold-100) 100%);
  border-color: var(--teal-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 91, 102, 0.12);
}
.bsheet__change-appt-icon {
  display: none; /* hidden — we use a centered icon-text layout instead */
}
.bsheet__change-appt-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.bsheet__change-appt-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--teal-900);
  letter-spacing: 0;
}
.bsheet__change-appt-label::before {
  content: '\f304'; /* fa-calendar-pen */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--gold-700);
  font-size: 1rem;
}
.bsheet__change-appt-meta {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-2);
}
.bsheet__change-appt-arrow {
  position: absolute;
  inset-inline-start: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal-700);
  font-size: 0.95rem;
}

.bsheet__days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.bsheet__day-btn {
  padding: 12px 8px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
  transition: all var(--t-fast);
  color: var(--ink-2);
}
.bsheet__day-btn:hover, .bsheet__day-btn.active {
  background: var(--teal-800); color: #fff; border-color: var(--teal-800);
}
.bsheet__slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.bsheet__slot-btn {
  padding: 10px 6px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  text-align: center;
  color: var(--ink-2);
  transition: all var(--t-fast);
}
.bsheet__slot-btn:hover, .bsheet__slot-btn.active {
  background: var(--gold-700); color: #fff; border-color: var(--gold-700);
}
.bsheet__fields { display: flex; flex-direction: column; gap: 12px; }
.bsheet__input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  transition: border-color var(--t-fast);
}
.bsheet__input:focus { border-color: var(--gold-700); outline: none; box-shadow: 0 0 0 4px rgba(201,168,118,0.12); }

/* ═══════════════════════════════════════
   FACE MAP — interactive beauty map
═══════════════════════════════════════ */
.face-map-stage {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--ivory) 0%, var(--gold-50) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.face-map-image {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

/* Biometric facial mesh — wireframe overlay on the face */
.face-mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;     /* blends with the face, looks like a real scan */
  opacity: 0.85;
  filter: drop-shadow(0 0 1px rgba(255,255,255,0.5));
}
.face-mesh .mesh-lines,
.face-mesh .mesh-dots {
  animation: mesh-breathe 6s ease-in-out infinite;
}
@keyframes mesh-breathe {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}

/* Animated scanning beam that sweeps down the face */
.face-mesh .mesh-scan__line {
  animation: mesh-scan 5s ease-in-out infinite;
}
@keyframes mesh-scan {
  0%   { transform: translateY(20%);  opacity: 0; }
  10%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(85%);  opacity: 0; }
}

/* Glow up the mesh subtly when any hotspot is hovered/active */
.face-map-stage:hover .face-mesh { opacity: 1; }
.face-map-stage:hover .mesh-lines { stroke: rgba(212, 184, 138, 0.6); }
.face-map-hint {
  text-align: center;
  color: var(--muted);
  margin-top: 22px;
  font-size: 0.9rem;
}
.face-map-hint i {
  color: var(--gold-700);
  margin-inline-end: 6px;
}

/* Hotspots — small pulsing gold dots with larger transparent hit-zone + glow halo */
.face-spot {
  position: absolute;
  width: 54px; height: 54px;        /* generous touch target */
  transform: translate(-50%, -50%);
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
/* Soft glow halo that appears on hover/touch — the "zone highlight" feel */
.face-spot::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(201, 168, 118, 0.35), rgba(201, 168, 118, 0));
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.face-spot:hover::before,
.face-spot:focus-visible::before,
.face-spot:active::before {
  opacity: 1;
}
.face-spot__dot {
  position: relative;
  width: 11px; height: 11px;         /* small refined dot */
  background: linear-gradient(135deg, var(--gold-700), var(--gold-900));
  border-radius: 50%;
  box-shadow: 0 0 0 2.5px rgba(255, 255, 255, 0.9),
              0 2px 6px rgba(201, 168, 118, 0.6);
  z-index: 2;
  transition: transform var(--t-fast);
}
.face-spot__pulse {
  position: absolute;
  width: 11px; height: 11px;
  background: var(--gold-700);
  border-radius: 50%;
  opacity: 0.45;
  animation: face-pulse 2.2s ease-out infinite;
}
@keyframes face-pulse {
  0%   { transform: scale(1);    opacity: 0.5; }
  100% { transform: scale(3.4);  opacity: 0; }
}
.face-spot__label {
  /* ⬇⬇⬇ المسافة بين النقطة والكلمة — عدّلي هذا الرقم لتقريب/تبعيد ⬇⬇⬇ */
  --label-gap: 10px;
  position: absolute;
  bottom: calc(50% + var(--label-gap));
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-900);
  color: var(--gold-500);
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.face-spot:hover .face-spot__label,
.face-spot:focus .face-spot__label {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}
.face-spot:hover .face-spot__dot {
  transform: scale(1.4);
}

/* Always-visible labels on touch devices */
@media (hover: none) and (pointer: coarse) {
  .face-spot__label {
    opacity: 1;
    font-size: 0.58rem;
    padding: 2px 6px;
    /* ⬇⬇⬇ المسافة على الموبايل — عدّلي هذا الرقم ⬇⬇⬇ */
    --label-gap: 8px;
  }
}

/* ═══ Zone modal — bottom sheet on mobile, centered on desktop ═══ */
.zone-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(8, 43, 48, 0.55);
  backdrop-filter: blur(4px);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-base);
}
.zone-modal-overlay.open { opacity: 1; visibility: visible; }

.zone-modal {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  max-height: 88vh;
  background: var(--white);
  border-radius: 24px 24px 0 0;
  z-index: 111;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.32,.72,0,1);
  overflow-y: auto;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
}
.zone-modal.open { transform: translateY(0); }
@media (min-width: 720px) {
  .zone-modal {
    max-width: 560px;
    margin: 0 auto;
    bottom: 50%;
    transform: translateY(150%);
    border-radius: 24px;
  }
  .zone-modal.open { transform: translateY(50%); }
}
.zone-modal__inner { padding: 8px 22px calc(28px + env(safe-area-inset-bottom, 0px)); position: relative; }
.zone-modal__close {
  display: flex;
  margin: 6px auto 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-800);
  align-items: center; justify-content: center;
  font-size: .9rem;
  border: none;
  cursor: pointer;
}
.zone-modal__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 14px 0 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.zone-modal__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-800), var(--teal-700));
  color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(13, 91, 102, 0.18);
}
.zone-modal__header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--teal-900);
  margin: 0;
}
.zone-modal__sub {
  font-size: 0.85rem;
  color: var(--gold-800);
  font-weight: 600;
  margin: 0;
}

/* Service cards inside the zone modal */
.zone-modal__services {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.zsvc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: all var(--t-fast);
}
.zsvc-card:hover {
  border-color: var(--gold-500);
  box-shadow: 0 4px 14px rgba(201, 168, 118, 0.15);
  transform: translateY(-1px);
}
.zsvc__body { flex: 1; min-width: 0; }
.zsvc__body h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--teal-900);
  margin: 0 0 4px;
}
.zsvc__summary {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 6px;
}
.zsvc__price {
  font-size: 0.9rem;
  color: var(--ink-2);
}
.zsvc__price strong {
  font-size: 1.05rem;
  color: var(--teal-900);
  font-weight: 800;
}
.zsvc__price s { color: var(--muted); font-size: 0.78rem; margin-inline-start: 6px; }
.zsvc__consult {
  font-size: 0.82rem;
  color: var(--gold-800);
  font-weight: 600;
}
.zsvc-card .btn--book {
  flex-shrink: 0;
  padding: 9px 14px;
  font-size: 0.8rem;
  border-radius: 999px;
}

/* ═══════════════════════════════════════
   MY BOOKINGS — patient self-service
═══════════════════════════════════════ */
.mybk-card {
  padding: 18px 18px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-fast);
}
.mybk-card--success { border-inline-start: 4px solid #10b981; }
.mybk-card--warning { border-inline-start: 4px solid #f59e0b; }
.mybk-card--info    { border-inline-start: 4px solid #3b82f6; }
.mybk-card--danger  { border-inline-start: 4px solid #ef4444; opacity: 0.78; }
.mybk-card--gray    { border-inline-start: 4px solid #94a3b8; }
.mybk-card__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; margin-bottom: 14px;
}
.mybk-card__head h4 {
  font-size: 1.02rem; font-weight: 700; color: var(--teal-900);
  margin: 0 0 4px;
}
.mybk-status {
  flex-shrink: 0;
  padding: 4px 10px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700;
}
.mybk-status--success { background: #d1fae5; color: #065f46; }
.mybk-status--warning { background: #fef3c7; color: #92400e; }
.mybk-status--info    { background: #dbeafe; color: #1e40af; }
.mybk-status--danger  { background: #fee2e2; color: #991b1b; }
.mybk-status--gray    { background: #e2e8f0; color: #475569; }
.mybk-card__meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-size: 0.88rem; color: var(--ink-2);
  padding: 12px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  margin-bottom: 12px;
}
.mybk-card__meta i { color: var(--gold-700); margin-inline-end: 4px; }
.mybk-card__actions {
  display: flex; gap: 10px;
}
.mybk-card__actions .btn { flex: 1; padding: 9px 12px; font-size: .85rem; }
.btn--danger {
  background: #ef4444; color: #fff; border: none;
}
.btn--danger:hover { background: #dc2626; }

/* ═══════════════════════════════════════
   BOTTOM BAR
═══════════════════════════════════════ */
.bottom-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: var(--white);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.bottom-bar__item span { font-size: .62rem; }   /* tighter labels with 5 items */
.bottom-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
  font-size: .68rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: color var(--t-fast);
}
.bottom-bar__item i { font-size: 1.3rem; }
.bottom-bar__item:hover, .bottom-bar__item--insta:hover { color: var(--teal-700); }
.bottom-bar__item--call {
  background: linear-gradient(135deg, var(--gold-800), var(--gold-700));
  color: var(--white) !important;
  border-radius: 0;
}
.bottom-bar__item--call:hover { opacity: .9; }

/* Bottom bar buffer — add space inside the footer's bottom strip so
   the copyright isn't hidden behind the fixed bottom bar. This keeps
   the footer flush against the reviews section above (no white gap). */
@media (max-width: 820px) {
  .footer__bottom { padding-bottom: calc(14px + 72px); }
}
@media(min-width:821px) {
  .bottom-bar { display: none; }
}

/* Bottom bar active state */
.bottom-bar__item.active { color: var(--teal-700); }
.bottom-bar__item.active i {
  background: var(--teal-50);
  border-radius: 10px;
  padding: 4px 10px;
}

/* Offer card refined typography */
.offer-card__body h3 { font-size: 1.05rem; font-weight: 700; color: var(--teal-900); margin-bottom: 6px; line-height: 1.45; }
.offer-card__summary {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
  white-space: pre-line;        /* preserve line-breaks in description */
  text-align: start;
}
.offer-card__summary--list {     /* multi-item lists (bride pkg etc.) */
  font-size: 0.8rem;
  line-height: 1.85;
}

/* Svc card refined body typography */
.svc-card__body h3 { font-size: 1.02rem; font-weight: 700; color: var(--teal-900); margin-bottom: 12px; line-height: 1.45; }

/* Page header reduced on mid screens — must not override the ≤820px rule */
@media (min-width: 821px) and (max-width: 1100px) {
  .page-header { padding: 80px 0 70px; }
}

/* Smooth section scroll anchoring */
.section, .page-header { scroll-margin-top: 80px; }

/* Bsheet slot grid — 3 cols on small screens for better touch targets */
@media (max-width: 480px) {
  .bsheet__slots { grid-template-columns: repeat(3, 1fr); }
  .bsheet__days  { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* Tighter cat-card on mobile */
@media (max-width: 820px) {
  .cat-card { padding: 18px 12px 14px; gap: 8px; }
  .cat-card__cover { margin: -18px -12px 8px; aspect-ratio: 4/3; }
  .cat-card h3 { font-size: 0.95rem; }
  .cat-card__icon { width: 56px; height: 56px; font-size: 1.4rem; }
  .cat-card__arrow { font-size: 0.85rem; }

  /* Follow bar — compact mobile */
  .follow-bar { margin-top: 22px; padding: 16px 14px; gap: 12px; font-size: 0.88rem; border-radius: var(--radius); }
  .follow-bar__icons { gap: 8px; }
  .follow-btn { width: 36px; height: 36px; font-size: 0.95rem; }

  /* Tighter offer-card on mobile */
  .offer-card__img { aspect-ratio: 3/2; }
  .offer-card__body { padding: 14px 14px 16px; }
  .offer-card__body h3 { font-size: 0.98rem; margin-bottom: 4px; }
  .offer-card__summary { font-size: 0.76rem; margin-bottom: 8px; line-height: 1.5; }
  .offer-card p { font-size: 0.85rem; margin-bottom: 10px; }
  .offer-card__price { margin-bottom: 10px; gap: 8px; }
  .offer-card__new { font-size: 1.4rem; }
  .offer-card__old { font-size: 0.88rem; }
  .offer-card__badge { top: 12px; padding: 4px 10px; font-size: 0.75rem; }
  .offer-card .btn--block { padding: 10px 16px; font-size: 0.88rem; }

  /* Tighter testimonial-card on mobile */
  .testimonial-card { padding: 20px 18px; }
  .testimonial-card::before { font-size: 3.2rem; top: 10px; inset-inline-end: 16px; }
  .testimonial-card__stars { margin-bottom: 8px; font-size: 0.9rem; }
  .testimonial-card p { font-size: 0.9rem; margin-bottom: 14px; line-height: 1.6; }
  .testimonial-card__person { gap: 10px; }
  .testimonial-card__avatar { width: 40px; height: 40px; font-size: 0.95rem; }
  .testimonial-card strong { font-size: 0.92rem; }
  .testimonial-card small { font-size: 0.75rem; }
  .reviews-grid { gap: 10px; }

  /* Footer CTA below sections */
  .section-footer-cta { margin-top: 18px; }
}
