/* ============================================
   Dr. Eman Kalloub — Playful Minimalism
   ============================================ */

:root {
  /* Brand */
  --brand-primary: #96c209;
  --brand-secondary: #fc6c93;
  --brand-dark: #323663;
  --brand-accent: #46c9f3;
  --brand-yellow: #fcd380;

  /* Backgrounds */
  --bg-cream: #fdf5f2;
  --bg-light: #f8f8f8;
  --bg-warm-grey: #f0efec;
  --bg-white: #ffffff;

  /* Text */
  --text-dark: #212529;
  --text-body: #757575;
  --text-navy: #323663;

  /* Spacing */
  --section-pad: clamp(3rem, 6vw, 6rem);
  --container-max: 1200px;
  --container-pad: 1.25rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(50, 54, 99, 0.06);
  --shadow-md: 0 8px 24px rgba(50, 54, 99, 0.1);
  --shadow-lg: 0 16px 48px rgba(50, 54, 99, 0.12);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Baloo 2', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html[dir="rtl"] body { font-family: 'Cairo', 'Baloo 2', system-ui, sans-serif; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-navy);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); }

.section { padding-block: var(--section-pad); position: relative; }
.section-cream { background: var(--bg-cream); }
.section-light { background: var(--bg-light); }
.section-blue { background: #e3f2fd; }
.section-grey { background: var(--bg-warm-grey); }
.section-dark { background: var(--brand-dark); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }

.section-heading { text-align: center; margin-bottom: 3.5rem; }
.section-heading h2 { margin-bottom: 0.5rem; }
.section-heading .subtitle {
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s var(--ease);
  min-height: 48px;
  text-align: center;
}
.btn-primary {
  background: var(--brand-primary);
  color: #fff;
}
.btn-primary:hover { background: #7da800; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: var(--brand-secondary);
  color: #fff;
}
.btn-secondary:hover { background: #e85a82; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
}
.btn-outline:hover { background: var(--brand-primary); color: #fff; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; min-height: 40px; }
.btn-lg { padding: 1.125rem 2.5rem; font-size: 1.125rem; }

/* Playful button — bouncy, with shadow + wiggle on hover */
.btn-playful {
  position: relative;
  border-radius: var(--radius-full);
  font-weight: 700;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-playful::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 8px;
  background: rgba(0,0,0,0.12);
  border-radius: var(--radius-full);
  filter: blur(4px);
  transition: all 0.25s var(--ease);
}
.btn-playful:hover {
  transform: translateY(-3px) scale(1.03);
}
.btn-playful:hover::after {
  width: 70%;
  height: 6px;
  opacity: 0.5;
}
.btn-playful:active {
  transform: translateY(0) scale(0.98);
}
.btn-playful:active::after {
  width: 95%;
  height: 4px;
}

/* WhatsApp button */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 12px rgba(50, 54, 99, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(50, 54, 99, 0.08);
}
.top-bar {
  background: linear-gradient(90deg, var(--brand-dark) 0%, #3f4480 100%);
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  max-height: 40px;
  opacity: 1;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.site-header.scrolled .top-bar {
  max-height: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.top-bar-contact { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.top-bar-link:hover { color: var(--brand-primary); }
.top-bar-address { margin-inline-end: auto; }
.lang-switcher { display: flex; align-items: center; gap: 0.5rem; }
.lang-link { color: rgba(255,255,255,0.6); font-weight: 600; transition: color 0.2s; }
.lang-link.active { color: var(--brand-primary); }
.lang-divider { color: rgba(255,255,255,0.3); }

.nav-bar { border-bottom: 1px solid rgba(50, 54, 99, 0.05); background: #fff; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.875rem;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.site-header.scrolled .nav-inner {
  padding-block: 0.5rem;
}
.logo img { height: 48px; width: auto; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.logo:hover img { transform: scale(1.03); }

.main-nav { display: flex; align-items: center; gap: 1rem; }
.nav-link {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-navy);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
}
.nav-link:hover {
  color: var(--brand-primary);
  background: rgba(150, 194, 9, 0.06);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  inset-inline-start: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  border-radius: var(--radius-full);
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.nav-link:hover::after { width: 40%; }

/* Dropdown styling */
.nav-dropdown { position: relative; }
.dropdown-chevron {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0.7;
}
.nav-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
  color: var(--brand-primary);
}
.dropdown-menu {
  position: absolute;
  top: 110%;
  inset-inline-start: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(50, 54, 99, 0.08);
  border: 1px solid rgba(50, 54, 99, 0.04);
  padding: 0.625rem;
  min-width: 260px;
  display: grid;
  gap: 0.125rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transform-origin: top inset-inline-start;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 99;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.dropdown-item {
  padding: 0.625rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-navy);
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.dropdown-item-dot {
  width: 4px;
  height: 4px;
  background: var(--brand-primary);
  border-radius: 50%;
  margin-inline-end: 0.75rem;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}
.dropdown-item:hover {
  background: rgba(150, 194, 9, 0.04);
  color: var(--brand-primary);
  padding-inline-start: 1.25rem;
}
.dropdown-item:hover .dropdown-item-dot {
  opacity: 1;
  transform: scale(1);
}

/* Premium Button-in-Button CTA */
.btn-nav-book {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(150, 194, 9, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
  border: 1px solid transparent;
}
html[dir="rtl"] .btn-nav-book {
  padding: 0.5rem 1.25rem 0.5rem 0.5rem;
}
.btn-nav-book-text {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-nav-book-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.btn-nav-book:hover {
  background: #a3cc14;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(150, 194, 9, 0.35);
}
.btn-nav-book:hover .btn-nav-book-icon {
  background: #fff;
  color: var(--brand-primary);
  transform: translateX(2px) scale(1.05);
}
html[dir="rtl"] .btn-nav-book:hover .btn-nav-book-icon {
  transform: translateX(-2px) scale(1.05);
}
.btn-nav-book:active {
  transform: scale(0.97);
}

/* Mobile Toggle — Playful Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  background: linear-gradient(135deg, #96c20a 0%, #6b8d06 100%);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(150, 194, 10, 0.35);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}
.mobile-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 60%);
  pointer-events: none;
}
.mobile-toggle:hover {
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(150, 194, 10, 0.5);
}
.mobile-toggle:active { transform: scale(0.95); }
.mobile-toggle .bun-top,
.mobile-toggle .patty,
.mobile-toggle .bun-bottom {
  width: 22px;
  height: 2.5px;
  background: #fff;
  border-radius: 999px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  z-index: 1;
}
/* Playful active state — bouncy X */
.mobile-toggle.active { transform: rotate(180deg); box-shadow: 0 6px 20px rgba(150, 194, 10, 0.5); }
.mobile-toggle.active .bun-top { transform: translateY(7.5px) rotate(45deg); width: 24px; }
.mobile-toggle.active .patty { opacity: 0; transform: scale(0) rotate(180deg); }
.mobile-toggle.active .bun-bottom { transform: translateY(-7.5px) rotate(-45deg); width: 24px; }

/* Nav emoji — hidden on desktop, shown on mobile */
.nav-emoji { display: none; }

/* Footer */
.site-footer {
  background: #f4f9ee;
  color: var(--text-body);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(50, 54, 99, 0.05);
}
.footer-wave {
  color: #fff;
  line-height: 0;
  margin-bottom: -1px;
  transform: rotate(180deg);
}
.footer-wave svg { display: block; width: 100%; height: 40px; }
/* Soft decorative blobs in footer */
.site-footer::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(150,194,9,0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.site-footer::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(252,108,147,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.3fr;
  gap: 2.5rem;
  padding-block: 3.5rem;
  position: relative;
  z-index: 1;
}
.footer-col-about .footer-text { max-width: 320px; }
.footer-about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  transition: gap 0.2s var(--ease);
}
.footer-about-link:hover { gap: 0.625rem; }
.footer-heading {
  color: var(--text-navy);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-heading::before {
  content: '';
  width: 20px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  border-radius: var(--radius-full);
}
.footer-text { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1rem; color: var(--text-body); }
.footer-list { display: grid; gap: 0.5rem; }
.footer-link { font-size: 0.875rem; color: var(--text-body); transition: color 0.2s, padding 0.2s; }
.footer-link:hover { color: var(--brand-primary); padding-inline-start: 0.375rem; }
.footer-contact-list { display: grid; gap: 0.75rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; color: var(--text-body); }
.footer-contact-list a { color: var(--text-navy); font-weight: 600; }
.footer-contact-list svg { color: var(--brand-primary); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(50,54,99,0.08);
  padding-block: 1.25rem;
  font-size: 0.8125rem;
  color: var(--text-body);
  position: relative;
  z-index: 1;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom-link { color: var(--text-body); transition: color 0.2s; }
.footer-bottom-link:hover { color: var(--brand-primary); }

/* Skip to content link (accessibility) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  background: var(--brand-primary);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--brand-yellow);
  outline-offset: 2px;
}

/* Scroll to top button */
.scroll-top-btn {
  position: fixed;
  bottom: 5.5rem;
  inset-inline-end: 1.5rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(150, 194, 10, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s var(--ease);
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scroll-top-btn:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(150, 194, 10, 0.5);
}
.scroll-top-btn:active { transform: translateY(0) scale(0.95); }

/* Playful Fluid Island Dock — floating CTA */
.floating-island-dock {
  position: fixed;
  bottom: 1.5rem;
  inset-inline-end: 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.125rem;
  padding: 0.375rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow:
    0 8px 28px rgba(50, 54, 99, 0.14),
    0 2px 8px rgba(50, 54, 99, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  animation: dock-rise 0.6s var(--ease) both 0.2s;
}
.floating-island-dock:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 36px rgba(50, 54, 99, 0.2),
    0 4px 12px rgba(50, 54, 99, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
@keyframes dock-rise {
  from { opacity: 0; transform: translateY(24px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Dock buttons */
.dock-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.dock-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: transform 0.35s var(--ease);
}
.dock-btn:hover { transform: scale(1.08); }
.dock-btn:hover .dock-icon-wrapper { transform: scale(1.05); }
.dock-btn:active { transform: scale(0.96); }

/* WhatsApp button — playful green */
.dock-btn-wa .dock-icon-wrapper {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}
.dock-btn-wa:hover .dock-icon-wrapper {
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.55);
}

/* Call button — brand primary */
.dock-btn-call .dock-icon-wrapper {
  background: linear-gradient(135deg, #96c20a 0%, #6b8d06 100%);
  box-shadow: 0 4px 12px rgba(150, 194, 10, 0.4);
}
.dock-btn-call:hover .dock-icon-wrapper {
  box-shadow: 0 6px 18px rgba(150, 194, 10, 0.55);
}

/* Divider between dock buttons */
.dock-divider {
  width: 1px;
  height: 24px;
  background: rgba(50, 54, 99, 0.14);
  flex-shrink: 0;
  margin: 0 0.125rem;
}

/* Tooltip label — appears on hover */
.dock-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  inset-inline-start: 50%;
  transform: translateX(-50%);
  background: var(--text-navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  box-shadow: 0 4px 12px rgba(50, 54, 99, 0.2);
}
.dock-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--text-navy);
}
.dock-btn:hover .dock-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

/* RTL — mirror dock to left side */
html[dir="rtl"] .floating-island-dock {
  inset-inline-end: 1.5rem;
  inset-inline-start: auto;
}
html[dir="rtl"] .dock-tooltip { transform: translateX(50%); }
html[dir="rtl"] .dock-btn:hover .dock-tooltip { transform: translateX(50%) translateY(-2px); }

/* Page header (inner pages) */
.page-header {
  background: var(--bg-cream);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.page-header h1 { margin-bottom: 0.5rem; }
.breadcrumb { font-size: 0.875rem; color: var(--text-body); }
.breadcrumb a { color: var(--brand-primary); }
.breadcrumb a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Hide top bar entirely on mobile */
  .top-bar { display: none; }

  /* Playful mobile nav overlay */
  .main-nav {
    position: fixed;
    top: 0;
    inset-inline: 0;
    height: 100vh;
    background: linear-gradient(160deg, #fdf5f2 0%, #e3f2fd 50%, #f4f9ee 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.5rem 3rem;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    overflow-y: auto;
    z-index: 99;
  }
  html[dir="rtl"] .main-nav { transform: translateX(-100%); }
  .main-nav.open { transform: translateX(0); }

  /* Show emoji on mobile nav links */
  .nav-emoji { display: inline; font-size: 1.25rem; margin-inline-end: 0.5rem; }

  /* Playful staggered link entrance */
  .main-nav.open .nav-link,
  .main-nav.open .nav-dropdown,
  .main-nav.open .btn-nav-book {
    animation: nav-link-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  }
  .main-nav.open .nav-link:nth-child(1) { animation-delay: 0.08s; }
  .main-nav.open .nav-link:nth-child(2) { animation-delay: 0.14s; }
  .main-nav.open .nav-dropdown { animation-delay: 0.20s; }
  .main-nav.open .nav-link:nth-child(4) { animation-delay: 0.26s; }
  .main-nav.open .nav-link:nth-child(5) { animation-delay: 0.32s; }
  .main-nav.open .nav-link:nth-child(6) { animation-delay: 0.38s; }
  .main-nav.open .btn-nav-book { animation-delay: 0.44s; }
  @keyframes nav-link-pop {
    from { opacity: 0; transform: translateY(30px) scale(0.8); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  .nav-link {
    font-size: 1.25rem;
    padding: 0.625rem 1.5rem;
    width: 100%;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 10px rgba(50, 54, 99, 0.06);
    transition: all 0.3s var(--ease);
  }
  .nav-link:hover {
    background: #fff;
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(50, 54, 99, 0.1);
  }
  .nav-link:hover .nav-emoji { animation: emoji-wiggle 0.5s ease; }
  @keyframes emoji-wiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-15deg) scale(1.2); }
    75% { transform: rotate(15deg) scale(1.2); }
  }
  .nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nav-dropdown .nav-link {
    justify-content: center;
    cursor: pointer;
  }
  .dropdown-chevron {
    transform: scale(1.2);
    transition: transform 0.35s var(--ease);
  }
  .nav-dropdown.open .dropdown-chevron {
    transform: scale(1.2) rotate(180deg);
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    min-width: unset;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    /* Collapsed by default on mobile */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), padding 0.3s var(--ease);
  }
  .nav-dropdown.open .dropdown-menu {
    max-height: 500px;
    padding: 0.5rem 0 0;
  }
  .dropdown-item {
    font-size: 1.0625rem;
    justify-content: center;
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
  }
  .dropdown-item-dot { display: none; }
  .mobile-toggle { display: flex; z-index: 100; }
  .btn-nav-book { width: 100%; justify-content: center; padding: 0.75rem 1.5rem; font-size: 1.0625rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-newsletter { flex-direction: column; }
}

@media (max-width: 480px) {
  .dock-btn { width: 44px; height: 44px; }
  .floating-island-dock { bottom: 1rem; inset-inline-end: 1rem; padding: 0.3125rem; }
  .dock-tooltip { display: none; }
  .faq-answer-wrap { padding-inline-start: 1.5rem; }
  .faq-q-icon { width: 28px; height: 28px; font-size: 0.8125rem; }
  .faq-question { gap: 0.625rem; padding: 1rem 1.25rem; font-size: 0.9375rem; }
}

/* ============================================
   Hero Section
   ============================================ */
/* ============================================
   HERO — Playful Kids Design
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(160deg, #fdf5f2 0%, #fff4f8 40%, #f0f9e8 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 0;
  overflow: hidden;
}

/* Background clouds */
.hero-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-cloud {
  position: absolute;
  opacity: 0.4;
  filter: blur(1px);
}
.cloud-2 { top: 20%; right: 8%; animation: drift 30s ease-in-out infinite reverse; }
.cloud-3 { top: 50%; left: 45%; animation: drift 20s ease-in-out infinite 2s; }
@keyframes drift {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(30px) translateY(-10px); }
}

/* Playful floating bubbles */
.hero-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.1) 60%, rgba(70, 201, 243, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: inset -2px -2px 6px rgba(0, 0, 0, 0.03), inset 2px 2px 6px rgba(255, 255, 255, 0.4);
  pointer-events: none;
  animation: float-bubble 15s ease-in-out infinite;
}
.bubble-1 {
  width: 50px;
  height: 50px;
  top: 15%;
  left: 20%;
  animation-duration: 14s;
  animation-delay: 0s;
}
.bubble-2 {
  width: 70px;
  height: 70px;
  top: 45%;
  left: 10%;
  animation-duration: 18s;
  animation-delay: 1.5s;
}
.bubble-3 {
  width: 40px;
  height: 40px;
  top: 65%;
  right: 15%;
  animation-duration: 12s;
  animation-delay: 3s;
}
.bubble-4 {
  width: 90px;
  height: 90px;
  top: 10%;
  right: 25%;
  animation-duration: 22s;
  animation-delay: 0.5s;
}
@keyframes float-bubble {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); }
  33% { transform: translateY(-30px) translateX(15px) scale(1.03); }
  66% { transform: translateY(-15px) translateX(-15px) scale(0.97); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Hero content */
.hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-secondary);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  background: rgba(252, 108, 147, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
}
.hero-subtitle-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-secondary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  color: var(--brand-dark);
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  line-height: 1.2;
  font-weight: 800;
}
.hero-highlight-word {
  display: inline-block;
  background: rgba(252, 108, 147, 0.12);
  color: var(--brand-secondary);
  padding: 0.125rem 0.875rem;
  border-radius: 20px 45px 15px 35px;
  border: 2px dashed rgba(252, 108, 147, 0.3);
  font-family: inherit;
  font-weight: 800;
  animation: playful-float 5s ease-in-out infinite;
}
@keyframes playful-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(1deg); }
}
.hero-title-highlight {
  display: inline-block;
  animation: bounce-emoji 2s ease-in-out infinite;
}
@keyframes bounce-emoji {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-body {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
  color: var(--text-body);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Phone link — card style */
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--brand-dark);
  background: #fff;
  padding: 0.625rem 1.25rem 0.625rem 0.625rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease-out);
}
.hero-phone:hover { transform: scale(1.05); }
.hero-phone-icon {
  width: 40px;
  height: 40px;
  background: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  animation: ring 2s ease-in-out infinite;
}
@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-12deg); }
  20%, 40% { transform: rotate(12deg); }
  50% { transform: rotate(0deg); }
}
.hero-phone-text { display: flex; flex-direction: column; line-height: 1.2; }
.hero-phone-text small { font-size: 0.7rem; color: var(--text-body); font-weight: 400; }

/* Trust badges */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; gap: 0.125rem; }
.trust-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1;
}
.trust-stars { color: var(--brand-yellow); font-size: 1.125rem; letter-spacing: 1px; line-height: 1; }
.trust-label { font-size: 0.75rem; color: var(--text-body); font-weight: 500; }
.trust-divider { width: 1px; height: 32px; background: rgba(50, 54, 99, 0.15); }

/* Hero image area */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blob shapes behind image */
.hero-blob {
  position: absolute;
  width: 480px;
  height: 480px;
  background: linear-gradient(135deg, var(--brand-primary), #b8e05a);
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  z-index: 0;
  animation: blob-morph 8s ease-in-out infinite;
}
.hero-blob-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--brand-secondary), #ff9eb5);
  top: -30px;
  right: -10px;
  animation: blob-morph 10s ease-in-out infinite reverse;
  opacity: 0.6;
}
@keyframes blob-morph {
  0%, 100% { border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%; transform: rotate(0deg); }
  50% { border-radius: 58% 42% 37% 63% / 56% 59% 41% 44%; transform: rotate(8deg); }
}

.hero-image {
  position: relative;
  z-index: 1;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(50, 54, 99, 0.2);
  border: 8px solid #fff;
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating decoration icons */
.hero-float {
  position: absolute;
  z-index: 3;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
  pointer-events: none;
}
.float-1 { top: -10px; left: -15px; animation: float-rotate 6s ease-in-out infinite; }
.float-2 { top: 20%; right: -20px; animation: float-rotate 7s ease-in-out infinite 0.5s; }
.float-3 { bottom: 15%; left: -25px; animation: float-rotate 5s ease-in-out infinite 1s; }
.float-4 { bottom: -10px; right: 10%; animation: float-rotate 8s ease-in-out infinite 1.5s; }
.float-5 { top: 45%; left: 10%; animation: float-rotate 6.5s ease-in-out infinite 2s; }

@keyframes float-rotate {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-12px) rotate(8deg); }
  50% { transform: translateY(-20px) rotate(-5deg); }
  75% { transform: translateY(-8px) rotate(5deg); }
}

/* Floating badges on image */
.hero-badge {
  position: absolute;
  z-index: 4;
  background: #fff;
  padding: 0.75rem 1.25rem 0.75rem 0.75rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(50, 54, 99, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: badge-float 4s ease-in-out infinite;
}
.hero-badge-top {
  top: 15%;
  right: -30px;
}
.hero-badge-bottom {
  bottom: 20%;
  left: -25px;
  animation-delay: 2s;
}
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.badge-emoji {
  font-size: 1.75rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f7e6, #e8f5e9);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-badge-bottom .badge-emoji { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.hero-badge strong { display: block; font-size: 0.875rem; color: var(--brand-dark); line-height: 1.2; }
.hero-badge small { display: block; font-size: 0.7rem; color: var(--text-body); }

/* Bottom wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  inset-inline: 0;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
}
.hero-wave svg { display: block; width: 100%; height: 60px; }

/* Responsive */
@media (max-width: 900px) {
  .hero { min-height: auto; padding-block: 5rem 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-content { order: 1; }
  .hero-image-wrap { order: 2; max-width: 400px; margin: 0 auto; }
  .hero-subtitle { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-body { margin-inline: auto; }
  .hero-blob { width: 360px; height: 360px; }
  .hero-wave { position: relative; bottom: auto; }
}
@media (max-width: 480px) {
  .hero-badge-top { right: -10px; }
  .hero-badge-bottom { left: -5px; }
  .hero-blob { width: 280px; height: 280px; }
  .hero-float { width: 45px !important; height: 45px !important; }
  .trust-divider { display: none; }
  .hero-trust { gap: 1rem; }
}

/* ============================================
   Features Grid (Why Choose Us)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  background: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-title { font-size: 1.125rem; margin-bottom: 0.75rem; }
.feature-text { font-size: 0.875rem; line-height: 1.6; }

/* ============================================
   About Doctor
   ============================================ */
.about-doctor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-content .subtitle { color: var(--brand-secondary); font-weight: 600; display: block; margin-bottom: 0.5rem; }
.about-bio { font-size: 1.125rem; line-height: 1.7; margin: 1.5rem 0 2rem; }

/* ============================================
   Cases Grid
   ============================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.case-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.case-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #eee;
}
.case-images img { width: 100%; height: 200px; object-fit: cover; }
.case-title { padding: 1rem 1.25rem; font-size: 1rem; text-align: center; }

/* ============================================
   Qualifications
   ============================================ */
.qual-list { max-width: 700px; margin: 0 auto; display: grid; gap: 1rem; }
.qual-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.9);
}
.qual-item svg { color: var(--brand-primary); flex-shrink: 0; }

/* ============================================
   Services Grid
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 2px solid #f0f0f0;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card:hover { border-color: var(--brand-primary); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon {
  width: 88px;
  height: 88px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 100%; height: 100%; }
.service-title { font-size: 1.0625rem; margin-bottom: 0.75rem; }
.service-short { font-size: 0.8125rem; line-height: 1.5; margin-bottom: 1rem; }
.service-link { color: var(--brand-primary); font-weight: 600; font-size: 0.875rem; }

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: var(--brand-yellow); font-size: 1.25rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-name { font-weight: 600; color: var(--brand-dark); font-size: 0.875rem; }

/* ============================================
   Blog Grid
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-img { width: 100%; height: 220px; object-fit: cover; }
.blog-body { padding: 1.5rem; }
.blog-date { font-size: 0.8125rem; color: var(--brand-primary); font-weight: 600; display: block; margin-bottom: 0.5rem; }
.blog-title { font-size: 1.0625rem; line-height: 1.4; }

/* ============================================
   Blog Post Detail
============================================ */
.blog-post-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.blog-post-article { max-width: 720px; }
.blog-post-hero { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.5rem; }
.blog-post-hero img { width: 100%; height: auto; display: block; }
.blog-post-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.blog-post-date { font-weight: 600; color: var(--brand-primary); }
.blog-post-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.blog-post-excerpt {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--brand-mint);
}
.blog-post-body { line-height: 1.8; font-size: 1.0625rem; color: var(--text-body); }
.blog-post-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  color: var(--text-dark);
}
.blog-post-body p { margin-bottom: 1.25rem; }
.blog-post-cta {
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--brand-mint), var(--brand-mint-light));
  border-radius: var(--radius-lg);
  text-align: center;
}
.blog-post-cta h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.blog-post-cta p { color: var(--text-muted); margin-bottom: 1.25rem; }
.blog-post-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.blog-post-sidebar { position: sticky; top: 100px; }
.blog-related-list { display: flex; flex-direction: column; gap: 1rem; }
.blog-related-item {
  display: flex;
  gap: 0.875rem;
  align-items: center;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s var(--ease);
}
.blog-related-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.blog-related-item img { border-radius: var(--radius-sm); flex-shrink: 0; object-fit: cover; }
.blog-related-date { font-size: 0.75rem; color: var(--brand-primary); font-weight: 600; }
.blog-related-item h4 { font-size: 0.9375rem; line-height: 1.35; margin-top: 0.25rem; }
@media (max-width: 900px) {
  .blog-post-container { grid-template-columns: 1fr; gap: 2rem; }
  .blog-post-sidebar { position: static; }
}
@media (max-width: 600px) {
  .blog-post-body { font-size: 1rem; }
  .blog-post-cta { padding: 1.5rem 1rem; }
  .blog-post-cta-buttons { flex-direction: column; }
}

/* ============================================
   CTA Section (supplemental)
   ============================================ */
.cta-section .cta-text { max-width: 600px; margin-inline: auto; }
.text-center { text-align: center; }

/* ============================================
   Responsive — Home sections
   ============================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-body { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-image { order: -1; max-width: 400px; margin: 0 auto; }
  .about-doctor { grid-template-columns: 1fr; }
  .about-image { max-width: 400px; margin: 0 auto; }
  .about-content { text-align: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-decorations { display: none; }
}

/* ============================================
   Inner Pages — Services List
   ============================================ */
.services-list { display: grid; gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.service-list-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #fff;
  border: 2px solid #f0f0f0;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all 0.3s var(--ease);
}
.service-list-card:hover { border-color: var(--brand-primary); transform: translateX(4px); box-shadow: var(--shadow-md); }
html[dir="rtl"] .service-list-card:hover { transform: translateX(-4px); }
.service-list-icon {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  background: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-list-body h3 { margin-bottom: 0.5rem; }
.service-list-body p { font-size: 0.875rem; margin-bottom: 0.75rem; }

/* ============================================
   Service Detail
   ============================================ */
.service-detail { max-width: 800px; margin: 0 auto; }
.service-detail-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.service-detail-icon {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  background: var(--bg-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.service-gallery-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.service-content p { margin-bottom: 1.25rem; line-height: 1.8; font-size: 1.0625rem; }
.service-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }

/* ============================================
   Qualifications (dark variant for inner page)
   ============================================ */
.qual-list-dark { max-width: 700px; margin: 0 auto; display: grid; gap: 1rem; }
.qual-item-dark {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.0625rem;
  color: var(--text-navy);
  padding: 1rem 1.5rem;
  background: var(--bg-cream);
  border-radius: var(--radius-sm);
  border-inline-start: 4px solid var(--brand-primary);
}
.qual-item-dark svg { color: var(--brand-primary); flex-shrink: 0; }

/* ============================================
   Certificates
   ============================================ */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.certificate-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.certificate-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.certificate-img { width: 100%; border-radius: var(--radius-sm); }

/* ============================================
   Cases Detail
   ============================================ */
/* ============================================
   CASES — Playful alternating layout
   ============================================ */
.cases-section {
  background: linear-gradient(160deg, #f4f9ee 0%, #fdf5f2 100%);
}
.cases-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.case-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.case-row-reverse .case-row-image { order: 2; }
.case-row-reverse .case-row-content { order: 1; }

/* Image side */
.case-row-image {
  position: relative;
}
.case-number-badge {
  position: absolute;
  top: -15px;
  inset-inline-start: -15px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand-primary), #b8e05a);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  z-index: 5;
  box-shadow: 0 4px 16px rgba(150,194,9,0.3);
}
.case-row .ba-slider {
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(50,54,99,0.12);
  border: 5px solid #fff;
}
.case-result-badge {
  position: absolute;
  bottom: -12px;
  inset-inline-end: 20px;
  background: #fff;
  padding: 0.5rem 1rem 0.5rem 0.625rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(50,54,99,0.12);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  z-index: 5;
  animation: badge-float 4s ease-in-out infinite;
}
.case-result-badge span { font-size: 1.125rem; }
.case-result-badge strong { font-size: 0.8125rem; color: var(--text-navy); }

/* Content side */
.case-row-content {
  padding: 1rem 0;
}
.case-row-tag {
  display: inline-block;
  background: linear-gradient(90deg, rgba(150,194,9,0.12), rgba(252,108,147,0.08));
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}
.case-row-content h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--text-navy);
  margin-bottom: 1rem;
}
.case-row-content p {
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}
.case-row-cta { display: inline-flex; }

/* Home page case cards */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.case-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(50,54,99,0.06);
  transition: all 0.3s var(--ease);
  position: relative;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(50,54,99,0.12);
}
.case-card-result-tag {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  background: #fff;
  padding: 0.375rem 0.875rem 0.375rem 0.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px rgba(50,54,99,0.1);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-navy);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.case-card .ba-slider {
  border-radius: 0;
  margin-bottom: 0;
  box-shadow: none;
}
.case-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.case-card-body .case-title {
  font-size: 1.0625rem;
  text-align: start;
  color: var(--text-navy);
}
.case-title {
  font-size: 1.15rem;
  text-align: center;
}

/* Page header for cases */
.page-header-cases {
  background: linear-gradient(160deg, #e8f5e9 0%, #fdf5f2 100%);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.page-header-emoji {
  font-size: 2.5rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  animation: bounce-emoji 2s ease-in-out infinite;
}
.page-header-subtext {
  font-size: 1.0625rem;
  color: var(--text-body);
  max-width: 500px;
  margin: 0.5rem auto 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .case-row { grid-template-columns: 1fr; gap: 2rem; }
  .case-row-reverse .case-row-image { order: 1; }
  .case-row-reverse .case-row-content { order: 2; }
  .case-row-content { text-align: center; }
  .case-row-tag { display: inline-block; }
  .case-row-cta { display: inline-flex; }
  .case-number-badge { width: 44px; height: 44px; font-size: 1rem; top: -10px; inset-inline-start: -10px; }
}

/* ============================================
   Blog Grid (full page)
   ============================================ */
.blog-grid-full { grid-template-columns: repeat(3, 1fr); }
.blog-grid-full .blog-card { display: flex; flex-direction: column; }
.blog-grid-full .blog-body { display: flex; flex-direction: column; flex: 1; }
.blog-grid-full .blog-body .service-link { margin-top: auto; }

/* ============================================
   Contact Page
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap .subtitle { color: var(--brand-secondary); font-weight: 600; display: block; margin-bottom: 0.5rem; }
.contact-intro-text { margin: 1rem 0 2rem; line-height: 1.7; }
.contact-form { display: grid; gap: 1.25rem; }
.form-row { display: grid; gap: 1rem; }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-field { display: flex; flex-direction: column; gap: 0.375rem; }
.form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}
.form-field .req { color: #e53935; }
.form-field input,
.form-field textarea,
.form-field select {
  padding: 0.875rem 1.25rem;
  border: 2px solid #eee;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  min-height: 48px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(150, 194, 10, 0.15);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2396c20a'><path d='M7 10l5 5 5-5z'/></svg>"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 20px; padding-right: 2.5rem; }
.alert { padding: 1rem 1.5rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; font-weight: 600; }
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.alert-error { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }

.contact-info {
  background: var(--bg-cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-info-list { display: grid; gap: 1.5rem; margin-bottom: 2rem; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-label { display: block; font-size: 0.8125rem; color: var(--text-body); margin-bottom: 0.25rem; }
.contact-info-list a { color: var(--brand-dark); font-weight: 600; }

/* ============================================
   Responsive — Inner pages
   ============================================ */
@media (max-width: 1024px) {
  .certificates-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid-full { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .service-list-card { flex-direction: column; text-align: center; }
  .contact-layout { grid-template-columns: 1fr; }
  .certificates-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid-full { grid-template-columns: 1fr; }
  .case-detail-images { grid-template-columns: 1fr; }
  .case-detail-img-wrap img { height: 250px; }
  .why-choose-us-layout { grid-template-columns: 1fr; }
  .why-choose-us-image { display: none; }
}

@media (max-width: 600px) {
  .form-row-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .certificates-grid { grid-template-columns: 1fr; }
  .service-detail-header { flex-direction: column; text-align: center; }
}

/* ===== Why Choose Us Layout (home) ===== */
.why-choose-us-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.why-choose-us-image {
  text-align: center;
}
.why-choose-us-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}
.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 2px dashed rgba(150, 194, 9, 0.2);
  box-shadow: 0 4px 16px rgba(50,54,99,0.03);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.feature-item:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--brand-primary);
  box-shadow: 0 10px 30px rgba(50,54,99,0.08);
}
.feature-item .feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(150, 194, 9, 0.08);
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(150, 194, 9, 0.15);
}
.feature-item .feature-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.feature-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  color: var(--text-navy);
}
.feature-text {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* Responsive adjustment for features-list on small tablets */
@media (max-width: 991px) {
  .features-list {
    grid-template-columns: 1fr;
  }
}

/* ===== Page Banner Header ===== */
.page-header-banner {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.page-header-content {
  position: relative;
  z-index: 1;
}
.page-header-banner h1 {
  color: var(--navy);
}

/* ===== Playful Animated Cartoon Canvas Hero Header ===== */
.page-header-cartoon {
  position: relative;
  background: linear-gradient(180deg, #e1f5fe 0%, #fff3e0 100%);
  min-height: clamp(340px, 40vw, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-block: 5rem 4rem;
}
.cartoon-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Cartoon Sun styling */
.cartoon-sun {
  position: absolute;
  top: 10%;
  right: 12%;
  width: 72px;
  height: 72px;
  background: radial-gradient(circle at 30% 30%, #fffde7 0%, #fdd835 50%, #f57f17 100%);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(253, 216, 53, 0.4);
  animation: sun-float 6s ease-in-out infinite;
}
.sun-face {
  position: relative;
  width: 100%;
  height: 100%;
}
.sun-eye {
  position: absolute;
  top: 35%;
  width: 5px;
  height: 5px;
  background: #3e2723;
  border-radius: 50%;
}
.sun-eye-left { left: 30%; }
.sun-eye-right { right: 30%; }
.sun-cheeks {
  position: absolute;
  top: 45%;
  inset-inline: 20%;
  display: flex;
  justify-content: space-between;
}
.sun-cheeks::before, .sun-cheeks::after {
  content: '';
  width: 8px;
  height: 4px;
  background: #ff8a80;
  border-radius: 50%;
  opacity: 0.7;
}
.sun-mouth {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 6px;
  border-bottom: 2px solid #3e2723;
  border-radius: 0 0 5px 5px;
}
@keyframes sun-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}

/* Drifting Puffy Clouds styling */
.cartoon-cloud {
  position: absolute;
  font-size: 3.5rem;
  line-height: 1;
  color: #fff;
  opacity: 0.55;
  filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.6));
  animation: drift-cloud linear infinite;
}
.cloud-speed-1 { animation-duration: 45s; }
.cloud-speed-2 { animation-duration: 60s; }
.cloud-speed-3 { animation-duration: 52s; }

@keyframes drift-cloud {
  0% { transform: translateX(-150px); }
  100% { transform: translateX(100vw); }
}

/* Floating Tooth Balloons styling */
.tooth-balloon {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  animation: balloon-float 7s ease-in-out infinite;
}
.balloon-1 {
  left: 10%;
  top: 30%;
  animation-delay: 0s;
}
.balloon-2 {
  right: 10%;
  top: 35%;
  animation-delay: 1.5s;
}
.balloon-tooth {
  font-size: 2.25rem;
  filter: drop-shadow(0 4px 12px rgba(50, 54, 99, 0.1));
  animation: float-rotate 6s ease-in-out infinite;
}
.balloon-string {
  width: 1.5px;
  height: 35px;
  background: rgba(50, 54, 99, 0.15);
  margin-top: -2px;
}
.balloon-basket {
  font-size: 1.25rem;
  margin-top: -6px;
}
@keyframes balloon-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(-3deg); }
}

/* Star Sparkles styling */
.cartoon-star {
  position: absolute;
  font-size: 1.25rem;
  opacity: 0;
  animation: star-twinkle 4s ease-in-out infinite;
}
.star-1 { top: 15%; left: 35%; animation-delay: 0s; }
.star-2 { top: 40%; left: 45%; animation-delay: 1s; }
.star-3 { top: 25%; right: 40%; animation-delay: 2s; }
.star-4 { top: 60%; right: 30%; animation-delay: 3s; }

@keyframes star-twinkle {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

/* Playful Floating Kids Stickers */
.cartoon-kid-sticker {
  position: absolute;
  z-index: 2;
  animation: kid-sticker-float 8s ease-in-out infinite;
}
.kid-sticker-1 {
  left: 6%;
  top: 15%;
  animation-delay: 0.5s;
}
.kid-sticker-2 {
  right: 6%;
  top: 45%;
  animation-delay: 2s;
}
.sticker-inner {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 5px solid #fff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(50, 54, 99, 0.15);
  background: #fff;
  transition: transform 0.3s var(--ease);
}
.sticker-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cartoon-kid-sticker:hover .sticker-inner {
  transform: scale(1.08) rotate(3deg);
}
.sticker-sparkle {
  position: absolute;
  top: -6px;
  right: -6px;
  font-size: 1.25rem;
  animation: star-twinkle 3s ease-in-out infinite 0.5s;
}
@keyframes kid-sticker-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

/* Centered Glass Board for page title */
.header-glass-board {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(150, 194, 9, 0.25);
  box-shadow: 0 15px 40px rgba(50, 54, 99, 0.05);
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 3rem);
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 5;
}
.header-board-logo {
  margin-bottom: 0.875rem;
  display: inline-block;
}
.header-board-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.page-header-cartoon h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text-navy);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.header-board-subtext {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.page-header-cartoon .breadcrumb {
  font-size: 0.8125rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}
.page-header-cartoon .breadcrumb a {
  color: var(--brand-primary);
  font-weight: 700;
}
.page-header-cartoon .breadcrumb a:hover {
  text-decoration: underline;
}

/* Cartoon Hillsides styling */
.cartoon-bottom-hill {
  position: absolute;
  bottom: -1px;
  inset-inline: 0;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
  .cartoon-sun { width: 56px; height: 56px; top: 8%; right: 8%; }
  .tooth-balloon, .cartoon-kid-sticker { display: none; } /* Hide floaters on tablet and mobile to keep clean focus */
  .header-glass-board { padding: 1.5rem; margin-inline: 1rem; }
}

/* ===== FAQ Section ===== */
/* ============================================
   FAQ — Playful redesign
   ============================================ */
.faq-section {
  background: linear-gradient(160deg, #e3f2fd 0%, #e8eaf6 100%);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: #fff;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 12px rgba(50,54,99,0.06);
}
.faq-item:hover {
  border-color: rgba(70,201,243,0.3);
  box-shadow: 0 4px 20px rgba(50,54,99,0.1);
}
.faq-item[open] {
  border-color: var(--brand-accent);
  box-shadow: 0 8px 30px rgba(70,201,243,0.15);
}
.faq-question {
  padding: 1.25rem 1.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-q-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--brand-accent), #29b6f6);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] .faq-q-icon {
  transform: scale(1.1) rotate(5deg);
}
.faq-q-text {
  flex: 1;
  line-height: 1.4;
}
.faq-q-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-accent);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] .faq-q-toggle {
  transform: rotate(180deg);
}
.faq-answer-wrap {
  padding: 0 1.5rem 1.25rem 4rem;
}
.faq-answer {
  color: var(--text-body);
  line-height: 1.7;
  font-size: 0.9375rem;
}

/* ===== Opening Hours ===== */
.contact-hours {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.contact-hours-title {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 500; color: var(--navy); }
.hours-time { color: var(--muted); }
.hours-closed .hours-time { color: #e53935; font-weight: 600; }

/* ===== Footer Hours + Social ===== */
.footer-hours {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(50,54,99,0.06);
  box-shadow: 0 2px 8px rgba(50,54,99,0.05);
}
.footer-hours-title {
  font-size: 0.95rem;
  color: var(--text-navy);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.footer-hours-title::before { content: '🕒'; font-size: 1rem; }
.footer-hours-text {
  font-size: 0.85rem;
  color: var(--text-body);
  margin: 0;
}
.footer-closed { color: var(--brand-secondary) !important; }

.footer-social {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.25rem;
}
.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: var(--text-navy);
  box-shadow: 0 2px 8px rgba(50,54,99,0.08);
  transition: all 0.3s var(--ease);
}
.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  color: #fff;
  background: var(--brand-primary);
}
.social-link[aria-label="Instagram"]:hover { background: #e1306c; }
.social-link[aria-label="Facebook"]:hover { background: #1877f2; }
.social-link[aria-label="TikTok"]:hover { background: #000; }
.social-link[aria-label="WhatsApp"]:hover { background: #25d366; }
.social-link svg { width: 18px; height: 18px; }

/* ===== Map Embed ===== */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-embed iframe {
  display: block;
  width: 100%;
}

/* ===== reCAPTCHA (Invisible) ===== */
.g-recaptcha {
  display: inline-block;
}
.grecaptcha-badge {
  z-index: 9999;
}

/* ===== Location Section (Contact Page) ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-white);
}

.location-info {
  padding: clamp(1.75rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--bg-white);
}

.location-info-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brand-primary), #b4d63a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-info-title {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1.2;
}

.location-info-address {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-top: -0.5rem;
}

.location-info-hours {
  border-top: 1px solid rgba(50, 54, 99, 0.08);
  padding-top: 1.25rem;
}

.location-info-hours h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
}

.location-info-hours ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.location-info-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  padding: 0.35rem 0;
}

.location-info-hours li .hours-day {
  color: var(--text-body);
  font-weight: 500;
}

.location-info-hours li .hours-time {
  color: var(--text-dark);
  font-weight: 600;
}

.location-info-hours li.is-closed .hours-time {
  color: var(--brand-secondary);
}

.location-directions-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: flex-start;
}

.location-map {
  position: relative;
  min-height: 400px;
  background: var(--bg-warm-grey);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

@media (max-width: 860px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  .location-map {
    min-height: 320px;
    order: -1;
  }
  .location-map iframe {
    min-height: 320px;
  }
}

/* RTL support for location section */
.lang-ar .location-info-hours li {
  flex-direction: row-reverse;
  text-align: right;
}
.lang-ar .location-directions-btn {
  align-self: flex-end;
}

/* ===== Privacy Policy / Legal Content ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}
.legal-updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  font-style: italic;
}
.legal-content h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}
.legal-content h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin: 1.5rem 0 0.5rem;
}
.legal-content p {
  margin-bottom: 1rem;
  color: var(--muted);
}
.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.legal-content ul li {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

/* ===== Contact Info Icons ===== */
.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
}
.contact-info-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* ============================================
   PLAYFUL KIDS-FRIENDLY ENHANCEMENTS
   ============================================ */

/* Banner Pattern — full width wave */
.banner-pattern {
  width: 100%;
  line-height: 0;
  margin-top: -1px;
}
.banner-pattern img {
  width: 100%;
  height: auto;
  display: block;
}

/* Playful button hover — bouncy */
.btn-primary:hover, .btn-secondary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 28px rgba(150, 194, 9, 0.35);
}
.btn-secondary:hover {
  box-shadow: 0 12px 28px rgba(252, 108, 147, 0.35);
}

/* Playful card hover effects */
.service-card, .feature-item, .testimonial-card, .blog-card, .case-card {
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.service-card:hover, .blog-card:hover, .case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover .service-icon {
  transform: rotate(-5deg) scale(1.1);
  transition: transform 0.3s var(--ease-out);
}
.service-icon {
  transition: transform 0.3s var(--ease-out);
}

/* Playful section backgrounds — alternating with solid subtle tints */
.section-cream { background: #fdf5f2; }
.section-light { background: #f4f9ee; }
.section-blue { background: #e3f2fd; }

/* Playful subtitle with emoji-like dot */
.section-heading .subtitle::before {
  content: '●';
  margin-right: 0.5rem;
  color: var(--brand-secondary);
}
html[dir="rtl"] .section-heading .subtitle::before {
  margin-right: 0;
  margin-left: 0.5rem;
}

/* Playful heading underline */
.section-heading h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  border-radius: var(--radius-full);
  margin: 0.75rem auto 0;
}

/* Section subtext */
.section-subtext {
  color: var(--text-body);
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Playful feature icons — circular with color */
.feature-item .feature-icon {
  background: linear-gradient(135deg, var(--bg-cream), #e8f5e9);
  border: 2px solid rgba(150, 194, 9, 0.15);
}

/* Playful testimonial cards — colorful top border */
.testimonial-card {
  border-top: 4px solid var(--brand-primary);
  position: relative;
}
.testimonial-card:nth-child(2) { border-top-color: var(--brand-secondary); }
.testimonial-card:nth-child(3) { border-top-color: var(--brand-accent); }
.testimonial-card:nth-child(4) { border-top-color: var(--brand-yellow); }
.testimonial-card:nth-child(5) { border-top-color: var(--brand-primary); }

.testimonial-stars {
  color: var(--brand-yellow);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

/* Compact CTA section */
.cta-section {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, #fff3e0 0%, #fce4ec 100%);
  box-shadow: 0 -16px 50px rgba(50,54,99,0.3);
}
.cta-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  box-shadow: 0 8px 30px rgba(50,54,99,0.08);
  border: 1px solid rgba(50,54,99,0.05);
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(150,194,9,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -30px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(252,108,147,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-card-emoji {
  font-size: 2.5rem;
  flex-shrink: 0;
  animation: bounce-emoji 2s ease-in-out infinite;
  z-index: 1;
}
.cta-card-content {
  flex: 1;
  z-index: 1;
}
.cta-card-content h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--text-navy);
  margin-bottom: 0.375rem;
}
.cta-card-content p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.5;
}
.cta-card-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-card {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
  .cta-card-buttons { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 480px) {
  .cta-card-buttons { flex-direction: column; width: 100%; }
  .cta-card-buttons .btn { width: 100%; justify-content: center; }
}

/* Playful qualifications — checkmark with color */
.qual-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.qual-item:last-child { border-bottom: none; }
.qual-item svg {
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(150,194,9,0.2);
  border-radius: 50%;
  padding: 4px;
}
.qual-item span { color: rgba(255,255,255,0.9); }

/* Playful about doctor section */
.about-doctor {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.about-content .subtitle {
  color: var(--brand-secondary);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.about-bio {
  margin: 1rem 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-body);
}

/* Playful case card images */
.case-card .ba-slider {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  margin-bottom: 0;
}

/* ============================================
   BEFORE / AFTER SLIDER
   ============================================ */
.ba-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  border-radius: var(--radius-md);
  background: #f0f0f0;
}
.ba-slider.ba-slider-lg {
  border-radius: var(--radius-lg);
}
.ba-img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba-after {
  position: relative;
}
.ba-before-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.ba-before-wrap .ba-before {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: ew-resize;
}
.ba-handle-line {
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
}
.ba-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  color: var(--brand-primary);
  cursor: ew-resize;
}
.ba-handle-circle svg {
  width: 24px;
  height: 24px;
}
.ba-label {
  position: absolute;
  top: 12px;
  padding: 4px 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  pointer-events: none;
  z-index: 5;
}
.ba-label-before { left: 12px; }
.ba-label-after { right: 12px; }

/* Responsive */
@media (max-width: 768px) {
  .about-doctor { grid-template-columns: 1fr; }
  .about-image { max-width: 400px; margin: 0 auto; }
  .ba-handle-circle { width: 36px; height: 36px; }
  .ba-label { font-size: 0.65rem; padding: 3px 8px; }
}

/* ============================================
   ABOUT DOCTOR — DETAILED PAGE
   ============================================ */

/* Doctor credentials line */
.doctor-credentials {
  color: var(--brand-secondary);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Experience badge on doctor image */
.about-image {
  position: relative;
}
.about-image-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}
.badge-experience {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}
.badge-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 0.25rem;
}

/* Quick facts row */
.doctor-facts {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}
.fact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.fact-icon {
  width: 44px;
  height: 44px;
  background: #f0f7e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  flex-shrink: 0;
}
.fact-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fact-value {
  display: block;
  font-weight: 700;
  color: var(--text-navy);
  font-size: 0.95rem;
}

/* Education Timeline */
.education-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}
.education-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 1px;
}
.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}
.timeline-dot {
  width: 24px;
  height: 24px;
  background: var(--brand-primary);
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  position: absolute;
  left: -2rem;
  box-shadow: 0 0 0 3px rgba(150, 194, 9, 0.2);
  z-index: 1;
}
.timeline-content {
  background: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--brand-primary);
  flex: 1;
}
.timeline-content p {
  color: var(--text-navy);
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

/* Achievements Grid */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.achievement-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-bottom: 4px solid var(--brand-yellow);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.achievement-card:nth-child(1) { border-bottom-color: var(--brand-primary); }
.achievement-card:nth-child(2) { border-bottom-color: var(--brand-secondary); }
.achievement-card:nth-child(3) { border-bottom-color: var(--brand-accent); }
.achievement-card:nth-child(4) { border-bottom-color: var(--brand-yellow); }
.achievement-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #f0f7e6, #e8f5e9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
}
.achievement-card:nth-child(2) .achievement-icon { background: linear-gradient(135deg, #fce4ec, #f8bbd0); color: var(--brand-secondary); }
.achievement-card:nth-child(3) .achievement-icon { background: linear-gradient(135deg, #e1f5fe, #b3e5fc); color: var(--brand-accent); }
.achievement-card:nth-child(4) .achievement-icon { background: linear-gradient(135deg, #fff8e1, #ffecb3); color: #f9a825; }
.achievement-card p {
  color: var(--text-navy);
  font-weight: 600;
  line-height: 1.5;
}

/* Treatments Grid */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.treatment-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  color: var(--text-navy);
  font-weight: 500;
  transition: transform 0.2s var(--ease-out);
}
.treatment-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.treatment-item svg {
  color: var(--brand-primary);
  flex-shrink: 0;
}

/* Memberships */
.memberships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}
.membership-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 2px solid rgba(150, 194, 9, 0.1);
  transition: transform 0.3s var(--ease-out);
}
.membership-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary);
}
.membership-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--brand-primary), #7da800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.membership-card h3 {
  font-size: 1.1rem;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
  .doctor-facts { gap: 1rem; }
  .fact-item { flex: 1 1 100%; }
  .about-image-badge { bottom: -10px; right: 10px; }
  .education-timeline { padding-left: 1.5rem; }
  .timeline-dot { left: -1.5rem; }
  .achievements-grid { grid-template-columns: 1fr; }
  .treatments-grid { grid-template-columns: 1fr; }
  .memberships-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICES PAGE — VCARDS
   ============================================ */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-vcard {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-vcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-accent, var(--brand-primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-vcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(150, 194, 9, 0.15);
}
.service-vcard:hover::before { transform: scaleX(1); }
.service-vcard:nth-child(3n+1) { --card-accent: var(--brand-primary); }
.service-vcard:nth-child(3n+2) { --card-accent: var(--brand-secondary); }
.service-vcard:nth-child(3n+3) { --card-accent: var(--brand-accent); }
.service-vcard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.service-vcard-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out);
}
.service-vcard-icon svg { width: 100%; height: 100%; }
.service-vcard:nth-child(3n+2) .service-vcard-icon { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.service-vcard:nth-child(3n+3) .service-vcard-icon { background: linear-gradient(135deg, #e1f5fe, #b3e5fc); }
.service-vcard:hover .service-vcard-icon { transform: rotate(-5deg) scale(1.1); }
.service-vcard-number {
  font-size: 2rem;
  font-weight: 800;
  color: rgba(50, 54, 99, 0.08);
  line-height: 1;
}
.service-vcard-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--brand-dark);
}
.service-vcard-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 1.25rem;
  flex: 1;
}
.service-vcard-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--card-accent, var(--brand-primary));
  font-weight: 600;
  font-size: 0.875rem;
  transition: gap 0.2s var(--ease);
}
.service-vcard:hover .service-vcard-link { gap: 0.625rem; }

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-hero {
  background: linear-gradient(160deg, #fdf5f2 0%, #f0f9e8 100%);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.service-hero-inner { position: relative; z-index: 1; }
.service-hero-content { max-width: 700px; }
.service-hero-content .breadcrumb {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-body);
}
.service-hero-content .breadcrumb a { color: var(--brand-primary); }
.service-hero-content .breadcrumb span { color: var(--text-navy); font-weight: 600; }
.service-hero-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}
.service-hero-icon svg { width: 100%; height: 100%; }
.service-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
.service-hero-short {
  font-size: 1.125rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 550px;
}
.service-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Service detail grid */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.service-main { display: flex; flex-direction: column; gap: 2rem; }
.service-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.service-gallery-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.service-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--brand-dark);
}
.service-content p {
  line-height: 1.8;
  margin-bottom: 1.25rem;
  color: var(--text-body);
}

/* Info cards (causes/prevention) */
.service-info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid;
}
.service-causes { border-left-color: var(--brand-secondary); }
.service-prevention { border-left-color: var(--brand-primary); }
.info-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.info-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon-causes { background: #fce4ec; color: var(--brand-secondary); }
.info-icon-prevention { background: #f0f7e6; color: var(--brand-primary); }
.info-card-header h3 { font-size: 1.25rem; color: var(--brand-dark); }
.service-info-card p { line-height: 1.7; color: var(--text-body); }

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.sidebar-heading {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  color: var(--brand-dark);
}
.sidebar-list { display: grid; gap: 0.875rem; }
.sidebar-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #f0f0f0;
}
.sidebar-list li:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-label { font-size: 0.875rem; color: var(--text-body); }
.sidebar-value { font-size: 0.875rem; font-weight: 600; color: var(--brand-dark); }
.sidebar-cta { text-align: center; background: linear-gradient(135deg, var(--brand-dark), #3f4480); color: #fff; }
.sidebar-cta h3 { color: #fff; margin-bottom: 0.5rem; }
.sidebar-cta p { color: rgba(255,255,255,0.8); font-size: 0.875rem; margin-bottom: 1.25rem; }
.sidebar-cta .btn { width: 100%; margin-bottom: 0.75rem; }
.sidebar-cta .btn:last-child { margin-bottom: 0; }
.btn-block { width: 100%; }

/* Service FAQ */
.service-faq-list { max-width: 800px; margin: 0 auto; }

/* ============================================
   CERTIFICATES — REDESIGN
   ============================================ */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.certificate-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #eee;
  transition: all 0.3s var(--ease-out);
  position: relative;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.certificate-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-primary);
}
.certificate-card::after {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: transform 0.3s var(--ease-out);
  z-index: 2;
}
.certificate-card:hover::after { transform: translate(-50%, -50%) scale(1); }
.certificate-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* Responsive */
@media (max-width: 900px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .service-sidebar > * { flex: 1 1 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-top-inner { justify-content: center; text-align: center; }
}
@media (max-width: 600px) {
  .services-cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .service-sidebar { flex-direction: column; }
  .certificates-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   MEET YOUR DOCTOR — REDESIGN
   ============================================ */
.meet-doctor {
  background: linear-gradient(160deg, #fff 0%, #fdf5f2 100%);
  position: relative;
  overflow: hidden;
}
.meet-doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}
.meet-doctor-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.meet-doctor-blob {
  position: absolute;
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, var(--brand-primary), #b8e05a);
  border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  animation: blob-morph 10s ease-in-out infinite;
  z-index: 0;
}
.meet-doctor-image-wrap .about-image {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(50, 54, 99, 0.2);
  border: 6px solid #fff;
}
.meet-doctor-image-wrap .about-image img {
  width: 100%;
  height: auto;
}
.meet-doctor-image-wrap .about-image-badge {
  z-index: 2;
}

/* Floating badges on doctor image */
.meet-doctor-float-badge {
  position: absolute;
  z-index: 3;
  background: #fff;
  padding: 0.75rem 1.25rem 0.75rem 0.75rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(50, 54, 99, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: badge-float 4s ease-in-out infinite;
}
.meet-doctor-float-badge span {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f7e6;
  border-radius: 50%;
  flex-shrink: 0;
}
.float-badge-2 span { background: #e1f5fe; }
.meet-doctor-float-badge strong { display: block; font-size: 0.8125rem; color: var(--brand-dark); line-height: 1.2; }
.meet-doctor-float-badge small { display: block; font-size: 0.7rem; color: var(--text-body); }
.float-badge-1 { top: 10%; right: -20px; }
.float-badge-2 { bottom: 15%; left: -20px; animation-delay: 2s; }

/* Doctor content */
.meet-doctor-content .subtitle {
  color: var(--brand-secondary);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.meet-doctor-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}
.doctor-credentials {
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.about-bio-lead {
  font-size: 1.125rem !important;
  line-height: 1.7 !important;
  color: var(--text-navy) !important;
  font-weight: 500;
}

/* Fact cards */
.doctor-facts-cards {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.fact-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  flex: 1;
  min-width: 160px;
}
.fact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fact-icon-green { background: #f0f7e6; color: var(--brand-primary); }
.fact-icon-pink { background: #fce4ec; color: var(--brand-secondary); }
.fact-icon-blue { background: #e1f5fe; color: var(--brand-accent); }
.fact-card-value {
  display: block;
  font-weight: 700;
  color: var(--brand-dark);
  font-size: 0.9rem;
  line-height: 1.2;
}
.fact-card-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-body);
}
.meet-doctor-cta { margin-top: 0.5rem; }

/* Responsive */
@media (max-width: 900px) {
  .meet-doctor-grid { grid-template-columns: 1fr; gap: 2rem; }
  .meet-doctor-image-wrap { max-width: 400px; margin: 0 auto; }
  .meet-doctor-content { text-align: center; }
  .meet-doctor-content .subtitle { display: inline-block; }
  .doctor-facts-cards { justify-content: center; }
  .meet-doctor-cta { display: inline-flex; }
}
@media (max-width: 480px) {
  .meet-doctor-blob { width: 300px; height: 300px; }
  .float-badge-1 { right: -5px; }
  .float-badge-2 { left: -5px; }
  .doctor-facts-cards { flex-direction: column; }
  .fact-card { width: 100%; }
}

/* ============================================
   WHY CHOOSE US — HOME (playful, matches hero)
   ============================================ */
.why-choose-home {
  background: #fdf5f2;
  position: relative;
  overflow: hidden;
}
.why-choose-home-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}
.why-choose-home-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose-blob {
  position: absolute;
  width: 580px;
  height: 580px;
  background: linear-gradient(135deg, var(--brand-secondary), #f8bbd0);
  border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  animation: blob-morph 10s ease-in-out infinite;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
}
.why-choose-home-image {
  position: relative;
  z-index: 1;
  border-radius: 268px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(50, 54, 99, 0.15);
  border: 6px solid #fff;
}
.why-choose-home-image img {
  width: 100%;
  height: auto;
  display: block;
}
.why-float-badge {
  position: absolute;
  z-index: 3;
  background: #fff;
  padding: 0.625rem 1rem 0.625rem 0.625rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(50, 54, 99, 0.15);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: badge-float 4s ease-in-out infinite;
}
.why-float-badge span {
  font-size: 1.25rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f7e6;
  border-radius: 50%;
  flex-shrink: 0;
}
.why-float-2 span { background: #fce4ec; }
.why-float-badge strong { font-size: 0.8125rem; color: var(--brand-dark); }
.why-float-1 { top: 15%; right: -15px; }
.why-float-2 { bottom: 20%; left: -15px; animation-delay: 2s; }

/* About bio short */
.about-bio-short {
  font-size: 1rem !important;
  line-height: 1.7 !important;
  color: var(--text-body) !important;
  margin-bottom: 1.5rem !important;
}
.doctor-credentials {
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* ============================================
   CERTIFICATION — AUTO MARQUEE SLIDER
   ============================================ */
.cert-marquee {
  overflow: hidden;
  position: relative;
  margin-top: 2rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.cert-marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: cert-scroll 30s linear infinite;
}
.cert-marquee:hover .cert-marquee-track {
  animation-play-state: paused;
}
.cert-marquee-item {
  flex-shrink: 0;
  width: 200px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem;
}
.cert-marquee-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  border-radius: var(--radius-sm);
}
@keyframes cert-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
html[dir="rtl"] .cert-marquee-track {
  animation-direction: reverse;
}

/* Responsive */
@media (max-width: 900px) {
  .why-choose-home-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-choose-home-image-wrap { max-width: 360px; margin: 0 auto; }
  .why-choose-blob { width: 420px; height: 420px; }
  .why-choose-home-content { text-align: center; }
  .why-choose-home-content .section-heading { text-align: center !important; }
  .features-list { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .why-choose-blob { width: 400px; height: 400px; }
  .why-float-1 { right: -5px; }
  .why-float-2 { left: -5px; }
  .cert-marquee-item { width: 160px; height: 220px; }
}

/* ===== Landing Page (Google Ads) ===== */
.lp-topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(150,194,10,0.15);
  padding: 0.5rem 0;
}
.lp-topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.lp-topbar-logo img { height: 40px; width: auto; }
.lp-topbar-actions { display: flex; align-items: center; gap: 1.25rem; }
.lp-topbar-rating { display: flex; align-items: center; gap: 0.4rem; }
.lp-stars { color: #f5a623; letter-spacing: 1px; font-size: 0.85rem; }
.lp-stars-lg { font-size: 1.5rem; letter-spacing: 3px; }
.lp-topbar-rating-text { font-size: 0.8rem; color: #666; font-weight: 600; }
.lp-topbar-call {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #96c20a; color: #fff;
  padding: 0.6rem 1.25rem; border-radius: 100px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.32,0.72,0,1);
  white-space: nowrap;
}
.lp-topbar-call:hover { background: #84b008; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(150,194,10,0.35); }

/* Hero */
.lp-hero {
  background: linear-gradient(135deg, #fdf5f2 0%, #f0f9e8 100%);
  padding: 2.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(150,194,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem; align-items: start;
  position: relative; z-index: 1;
}
.lp-hero-content { padding-top: 1rem; }
.lp-hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(150,194,10,0.12); color: #5a7a05;
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 1.25rem;
}
.lp-hero-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #96c20a; animation: lp-pulse 2s ease-in-out infinite;
}
@keyframes lp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.lp-hero-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.15;
  color: #2d3a1a; margin: 0 0 1rem;
}
.lp-highlight {
  background: linear-gradient(120deg, #96c20a 0%, #b8e234 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-hero-subtitle {
  font-size: 1.1rem; line-height: 1.6; color: #555;
  margin: 0 0 1.75rem; max-width: 520px;
}

/* Trust badges */
.lp-trust {
  display: flex; align-items: center; gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.lp-trust-item { display: flex; flex-direction: column; }
.lp-trust-number { font-family: 'Baloo 2', cursive; font-size: 1.75rem; font-weight: 800; color: #96c20a; }
.lp-trust-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; }
.lp-trust-label { font-size: 0.78rem; color: #777; font-weight: 600; margin-top: 2px; }
.lp-trust-divider { width: 1px; height: 36px; background: rgba(0,0,0,0.1); }

/* Benefits list */
.lp-benefits {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: grid; gap: 0.7rem;
}
.lp-benefits li {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 1rem; color: #333; font-weight: 500;
}
.lp-benefits svg { color: #96c20a; flex-shrink: 0; }

.lp-hero-cta-mobile { display: none; }

/* Form card */
.lp-form-wrap { position: relative; }
.lp-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid rgba(150,194,10,0.1);
}
.lp-form-header { margin-bottom: 1.5rem; text-align: center; }
.lp-form-header h2 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem; font-weight: 800; color: #2d3a1a;
  margin: 0 0 0.3rem;
}
.lp-form-header p { font-size: 0.9rem; color: #777; margin: 0; }

.lp-alert {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 1rem; border-radius: 12px; margin-bottom: 1.25rem;
  font-size: 0.9rem; font-weight: 600;
}
.lp-alert.alert-success { background: #e8f5d0; color: #4a7a05; border: 1px solid #b8e234; }
.lp-alert.alert-error { background: #fde8e8; color: #c0392b; border: 1px solid #f5b8b8; }

.lp-form { display: grid; gap: 0.9rem; }
.lp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.lp-form-field { display: flex; flex-direction: column; gap: 0.3rem; }
.lp-form-field label {
  font-size: 0.82rem; font-weight: 700; color: #444;
}
.lp-form-field .req { color: #c0392b; }
.lp-form-field input,
.lp-form-field select,
.lp-form-field textarea {
  padding: 0.7rem 0.9rem;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.32,0.72,0,1);
  background: #fafafa;
  color: #333;
}
.lp-form-field input:focus,
.lp-form-field select:focus,
.lp-form-field textarea:focus {
  outline: none; border-color: #96c20a;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(150,194,10,0.1);
}
.lp-form-field textarea { resize: vertical; min-height: 70px; }

.lp-form-submit {
  width: 100%; margin-top: 0.5rem;
  font-size: 1.1rem; font-weight: 800;
}
.lp-form-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 0.4rem; margin: 0.75rem 0 0;
  font-size: 0.78rem; color: #888;
}
.lp-form-trust svg { color: #96c20a; }

/* Services strip */
.lp-services {
  padding: 2.5rem 0;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.lp-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.lp-service-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem; text-align: center;
}
.lp-service-icon {
  width: 56px; height: 56px;
  background: rgba(150,194,10,0.1);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #96c20a;
}
.lp-service-icon svg { width: 28px; height: 28px; }
.lp-service-name {
  font-size: 0.78rem; font-weight: 600; color: #555;
  line-height: 1.3;
}

/* Testimonials */
.lp-testimonials {
  padding: 3.5rem 0;
  background: #fdf5f2;
}
.lp-section-heading { text-align: center; margin-bottom: 2.5rem; }
.lp-section-heading h2 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800; color: #2d3a1a;
  margin: 0.75rem 0 0;
}
.lp-testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.lp-testimonial-card {
  background: #fff; border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
}
.lp-testimonial-stars { color: #f5a623; font-size: 1rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.lp-testimonial-text {
  font-size: 0.92rem; line-height: 1.6; color: #444;
  margin: 0 0 1rem; font-style: italic;
}
.lp-testimonial-name { font-size: 0.85rem; font-weight: 700; color: #96c20a; margin: 0; }

/* Doctor */
.lp-doctor {
  padding: 3.5rem 0;
  background: #fff;
}
.lp-doctor-grid {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem; align-items: center;
}
.lp-doctor-image img {
  width: 100%; max-width: 360px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  display: block; margin: 0 auto;
}
.lp-doctor-name {
  display: block; font-family: 'Baloo 2', cursive;
  font-size: 1.6rem; font-weight: 800; color: #2d3a1a;
}
.lp-doctor-title {
  display: block; font-size: 0.95rem; color: #96c20a;
  font-weight: 700; margin: 0.25rem 0 1rem;
}
.lp-doctor-bio {
  font-size: 1rem; line-height: 1.65; color: #555;
  margin: 0 0 1.25rem;
}
.lp-doctor-creds { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.lp-cred-badge {
  background: rgba(150,194,10,0.1); color: #5a7a05;
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700;
}

/* Final CTA */
.lp-final-cta {
  padding: 3rem 0;
  background: linear-gradient(135deg, #96c20a 0%, #b8e234 100%);
}
.lp-final-cta-card { text-align: center; color: #fff; }
.lp-final-cta-emoji { font-size: 3rem; margin-bottom: 0.5rem; }
.lp-final-cta-card h2 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800; margin: 0 0 0.5rem;
}
.lp-final-cta-card p { font-size: 1.05rem; margin: 0 0 1.5rem; opacity: 0.95; }
.lp-final-cta-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.lp-final-cta-buttons .btn { background: #fff; color: #2d3a1a; }
.lp-final-cta-buttons .btn:hover { background: #2d3a1a; color: #fff; }
.lp-final-cta-buttons .btn-whatsapp { background: #25d366; color: #fff; }
.lp-final-cta-buttons .btn-whatsapp:hover { background: #1da851; color: #fff; }

/* Footer */
.lp-footer {
  background: #2d3a1a; color: #ccc;
  padding: 2rem 0;
}
.lp-footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.lp-footer-nap { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.lp-footer-name { font-weight: 700; color: #fff; }
.lp-footer-addr { font-size: 0.88rem; }
.lp-footer-phone { color: #96c20a; font-weight: 700; text-decoration: none; }
.lp-footer-phone:hover { text-decoration: underline; }
.lp-footer-copy { font-size: 0.8rem; color: #888; margin: 0; }

/* ===== Landing Page Responsive ===== */
@media (max-width: 968px) {
  .lp-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .lp-hero-content { padding-top: 0; }
  .lp-doctor-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .lp-doctor-creds { justify-content: center; }
  .lp-services-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .lp-topbar-rating { display: none; }
  .lp-topbar-call { padding: 0.5rem 1rem; font-size: 0.85rem; }
  .lp-hero { padding: 1.5rem 0 2rem; }
  .lp-trust { gap: 0.75rem; }
  .lp-trust-number { font-size: 1.4rem; }
  .lp-benefits li { font-size: 0.92rem; }
  .lp-form-card { padding: 1.5rem; }
  .lp-form-row { grid-template-columns: 1fr; }
  .lp-services-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-footer-inner { flex-direction: column; text-align: center; }
  .lp-footer-nap { flex-direction: column; gap: 0.4rem; }
}
@media (max-width: 480px) {
  .lp-topbar-logo img { height: 32px; }
  .lp-hero-title { font-size: 1.75rem; }
  .lp-hero-subtitle { font-size: 0.95rem; }
  .lp-trust { flex-wrap: wrap; gap: 0.5rem; }
  .lp-trust-divider { display: none; }
  .lp-form-card { padding: 1.25rem; border-radius: 18px; }
  .lp-final-cta-buttons { flex-direction: column; }
  .lp-final-cta-buttons .btn { width: 100%; }
  .lp-services-grid { grid-template-columns: 1fr; }
}

/* RTL adjustments for landing page */
.lang-ar .lp-hero-badge { letter-spacing: 0; }
.lang-ar .lp-benefits li { text-align: right; }
.lang-ar .lp-testimonial-text { text-align: right; }
.lang-ar .lp-footer-nap { text-align: right; }
