/* ────────────────────────────────────────────────
   LUCIDA DENTAL CENTER · shared design system
   Sampled from the wordmark; same tokens used in every page.
   Drop into Tailwind config as theme.extend.colors / fontFamily / etc.
   ──────────────────────────────────────────────── */

:root {
  --lucida-teal: #0AABCB;
  --lucida-teal-deep: #0789A4;
  --lucida-green: #8DC63F;
  --lucida-green-deep: #6FA52B;
  --ink: #0E1F2C;
  --ink-soft: #3D5160;
  --mist: #F4F8FA;
  --bone: #FBFAF6;
  --line: #E3ECF0;
  --grad: linear-gradient(135deg, #0AABCB 0%, #8DC63F 100%);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: 'Fraunces', 'IBM Plex Sans Arabic', Georgia, serif;
  --sans: 'Inter', 'IBM Plex Sans Arabic', system-ui, sans-serif;
  --ar: 'IBM Plex Sans Arabic', 'Inter', sans-serif;
  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}
[data-theme="dark"] {
  --bone: #0E1F2C; --mist: #162A38; --ink: #F4F8FA; --ink-soft: #B7C5CE; --line: #1F3545;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans); background: var(--bone); color: var(--ink);
  line-height: 1.65; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; font-feature-settings: 'tnum' 1;
}
[lang="ar"] body { font-family: var(--ar); }
.tnum, time, .num { font-variant-numeric: tabular-nums; }
[dir="rtl"] .tnum,
[dir="rtl"] time,
[dir="rtl"] .num,
[dir="rtl"] .time-tile,
[dir="rtl"] .specialty,
[dir="rtl"] a[href^="tel:"],
[dir="rtl"] a[href^="mailto:"] {
  direction: ltr;
  unicode-bidi: isolate;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--lucida-teal); color: white; }
:focus-visible { outline: 2px solid var(--lucida-teal); outline-offset: 3px; border-radius: 6px; }

.skip { position: absolute; left: -9999px; top: 12px; background: var(--ink); color: var(--bone); padding: 10px 16px; border-radius: 8px; z-index: 999; }
.skip:focus { left: 12px; }

/* scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--grad); z-index: 100; transition: width 80ms linear; }

/* ────── HEADER ────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 22px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 32px;
  transition: backdrop-filter 300ms var(--ease), background 300ms var(--ease), padding 300ms var(--ease), border-color 300ms var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled, .header.solid {
  background: color-mix(in srgb, var(--bone) 85%, transparent);
  backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
  padding: 14px var(--gutter); border-bottom-color: var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark { width: 44px; height: 44px; flex: 0 0 auto; object-fit: contain; }
[data-theme="dark"] .brand-mark { filter: brightness(1.1); }
@keyframes draw { to { stroke-dashoffset: 0; } }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .en { font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); }
.brand-text .ar { font-family: var(--ar); font-size: 18px; font-weight: 500; color: var(--ink-soft); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 36px; flex: 1 1 auto; justify-content: center; }
.nav a { font-size: 14px; font-weight: 500; color: var(--ink-soft); position: relative; padding: 8px 0; transition: color 200ms var(--ease); }
.nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 1px; background: var(--lucida-teal); transform: scaleX(0); transform-origin: right; transition: transform 360ms var(--ease); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
[dir="rtl"] .nav a::after { transform-origin: left; }
[dir="rtl"] .nav a:hover::after { transform-origin: right; }

.header-right { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.lang-switch { display: flex; align-items: center; font-size: 13px; font-weight: 500; color: var(--ink-soft); padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; transition: border-color 200ms var(--ease), color 200ms var(--ease); }
.lang-switch:hover { border-color: var(--lucida-teal); color: var(--ink); }
.lang-switch .active { color: var(--ink); font-weight: 600; }
.lang-switch .sep { margin: 0 8px; opacity: 0.4; }
.theme-toggle { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: border-color 200ms var(--ease); }
.theme-toggle:hover { border-color: var(--lucida-teal); }
.theme-toggle svg { width: 18px; height: 18px; transition: transform 500ms var(--ease); }

.cta-pill {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; background: var(--lucida-green); color: white; border-radius: 999px;
  font-size: 14px; font-weight: 600; overflow: hidden;
  transition: background 240ms var(--ease), transform 200ms var(--ease), box-shadow 300ms var(--ease);
  box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 8px 20px -8px rgba(141, 198, 63, 0.5);
}
.cta-pill::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent 50%); pointer-events: none; }
.cta-pill:hover { background: var(--lucida-green-deep); box-shadow: 0 12px 30px -10px rgba(141, 198, 63, 0.7); }
.cta-pill .arrow { transition: transform 300ms var(--ease); }
.cta-pill:hover .arrow { transform: translateX(4px); }
[dir="rtl"] .cta-pill .arrow { transform: scaleX(-1); }
[dir="rtl"] .cta-pill:hover .arrow { transform: translateX(-4px) scaleX(-1); }

.cta-ghost { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border: 1.5px solid var(--lucida-teal); color: var(--lucida-teal); border-radius: 999px; font-size: 14px; font-weight: 600; transition: background 240ms var(--ease), color 240ms var(--ease); }
.cta-ghost:hover { background: var(--lucida-teal); color: white; }

.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); place-items: center; }
.menu-toggle svg { width: 20px; height: 20px; }
.mobile-menu { position: fixed; inset: 0; background: var(--bone); z-index: 60; padding: 100px var(--gutter) 40px; transform: translateY(-100%); transition: transform 500ms var(--ease); display: flex; flex-direction: column; gap: 8px; }
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: 32px; font-weight: 400; padding: 14px 0; border-bottom: 1px solid var(--line); opacity: 0; transform: translateY(8px); transition: opacity 400ms var(--ease), transform 400ms var(--ease); }
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 80ms; }
.mobile-menu.open a:nth-child(2) { transition-delay: 140ms; }
.mobile-menu.open a:nth-child(3) { transition-delay: 200ms; }
.mobile-menu.open a:nth-child(4) { transition-delay: 260ms; }
.mobile-menu.open a:nth-child(5) { transition-delay: 320ms; }
.mobile-menu.open a:nth-child(6) { transition-delay: 380ms; }
.mobile-menu.open a:nth-child(7) { transition-delay: 440ms; }

@media (max-width: 960px) {
  .nav { display: none; }
  .menu-toggle { display: grid; }
  .lang-switch, .theme-toggle { display: none; }
}
@media (max-width: 540px) { .cta-pill.hide-sm { display: none; } }

/* ────── PAGE HEADER (inner pages) ────── */
.page-hero {
  padding: 180px var(--gutter) 80px;
  max-width: var(--maxw); margin: 0 auto;
  position: relative;
}
.crumbs { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--ink-soft); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; margin-bottom: 32px; }
.crumbs a { transition: color 200ms var(--ease); }
.crumbs a:hover { color: var(--lucida-teal-deep); }
.crumbs span.sep { opacity: 0.4; }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(48px, 7vw, 80px); font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  line-height: 1.05; letter-spacing: -0.025em; margin-bottom: 24px; max-width: 18ch;
}
[dir="rtl"] .page-hero h1 { font-family: var(--ar); font-weight: 500; line-height: 1.15; }
.page-hero h1 em { font-style: italic; color: var(--lucida-teal-deep); }
.page-hero .lead { font-size: 20px; color: var(--ink-soft); max-width: 56ch; line-height: 1.55; }

/* ────── COMMON SECTIONS ────── */
section { padding: 100px var(--gutter); max-width: var(--maxw); margin: 0 auto; position: relative; }
.section-head { margin-bottom: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.section-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lucida-teal-deep); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--lucida-teal-deep); }
[dir="rtl"] .section-eyebrow::before { order: 2; }
.section-title { font-family: var(--serif); font-size: clamp(36px, 5vw, 56px); font-weight: 400; font-variation-settings: 'opsz' 144, 'SOFT' 100; line-height: 1.05; letter-spacing: -0.02em; }
[dir="rtl"] .section-title { font-family: var(--ar); font-weight: 500; line-height: 1.15; }
.section-title em { font-style: italic; color: var(--lucida-teal-deep); }
.section-lead { font-size: 17px; color: var(--ink-soft); max-width: 44ch; }
@media (max-width: 760px) { .section-head { grid-template-columns: 1fr; gap: 24px; } section { padding: 60px var(--gutter); } }

/* reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal-stagger.in > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 400ms; }
.reveal-stagger.in > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 480ms; }
.reveal-stagger.in > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 560ms; }
.reveal-stagger.in > *:nth-child(9) { opacity: 1; transform: translateY(0); transition-delay: 640ms; }
.reveal-stagger.in > *:nth-child(10) { opacity: 1; transform: translateY(0); transition-delay: 720ms; }

/* ────── FOOTER ────── */
.footer { background: var(--ink); color: var(--bone); padding: 80px var(--gutter) 32px; margin-top: 80px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(244, 248, 250, 0.1); }
.footer-wordmark { font-family: var(--serif); font-size: clamp(40px, 6vw, 72px); font-weight: 400; font-variation-settings: 'opsz' 144, 'SOFT' 100; letter-spacing: -0.03em; line-height: 1; }
.footer-wordmark em { font-style: italic; color: var(--lucida-green); }
.newsletter h4 { font-family: var(--serif); font-size: 20px; font-weight: 500; margin-bottom: 8px; font-variation-settings: 'opsz' 96, 'SOFT' 100; }
.newsletter p { font-size: 14px; color: rgba(244, 248, 250, 0.6); margin-bottom: 20px; }
.newsletter-form { display: flex; gap: 8px; max-width: 400px; }
.newsletter input { flex: 1; padding: 14px 18px; background: rgba(244, 248, 250, 0.05); border: 1px solid rgba(244, 248, 250, 0.15); border-radius: 999px; color: var(--bone); font-size: 14px; font-family: inherit; outline: none; transition: border-color 240ms var(--ease); }
.newsletter input::placeholder { color: rgba(244, 248, 250, 0.4); }
.newsletter input:focus { border-color: var(--lucida-teal); }
.newsletter button { padding: 14px 24px; background: var(--lucida-green); color: white; border-radius: 999px; font-size: 14px; font-weight: 600; transition: background 240ms var(--ease); }
.newsletter button:hover { background: var(--lucida-green-deep); }
.footer-mid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; padding: 60px 0; border-bottom: 1px solid rgba(244, 248, 250, 0.1); }
.footer-col h5 { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lucida-teal); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: rgba(244, 248, 250, 0.7); transition: color 200ms var(--ease); }
.footer-col a:hover { color: var(--lucida-teal); }
.footer-about p { font-size: 14px; color: rgba(244, 248, 250, 0.6); margin-bottom: 20px; max-width: 32ch; }
.qchp-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; background: rgba(244, 248, 250, 0.04); border: 1px solid rgba(244, 248, 250, 0.1); border-radius: 12px; font-size: 12px; font-weight: 500; }
.qchp-badge .stamp { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--lucida-green); display: grid; place-items: center; color: var(--lucida-green); font-weight: 600; font-size: 11px; }
.qchp-badge .info { display: flex; flex-direction: column; line-height: 1.3; }
.qchp-badge .info span:last-child { color: rgba(244, 248, 250, 0.5); font-size: 11px; }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 12px; color: rgba(244, 248, 250, 0.4); }
.footer-bottom .links { display: flex; gap: 20px; }
.footer-bottom a:hover { color: var(--bone); }
.made-with-care { display: inline-flex; align-items: center; gap: 6px; }
.made-with-care .heart { display: inline-block; opacity: 0; transform: scale(0.5); transition: opacity 300ms var(--ease), transform 300ms var(--ease); color: var(--lucida-green); }
.made-with-care:hover .heart { opacity: 1; transform: scale(1); animation: pulse-heart 1s var(--ease) 200ms; }
@keyframes pulse-heart { 0%,100% { transform: scale(1); } 50% { transform: scale(1.3); } }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr; } .footer-mid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-mid { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* WhatsApp float */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.5); z-index: 40; transition: transform 300ms var(--ease), box-shadow 300ms var(--ease); }
[dir="rtl"] .whatsapp-float { right: auto; left: 28px; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; color: white; }
.whatsapp-float::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #25D366; opacity: 0.4; animation: pulse-ring 2s infinite; }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.5); opacity: 0; } }

/* form fields */
.field { position: relative; margin-bottom: 20px; }
.field input, .field select, .field textarea { width: 100%; padding: 22px 16px 10px; font-size: 15px; font-family: inherit; color: var(--ink); background: transparent; border: none; border-bottom: 1px solid var(--line); outline: none; transition: border-color 240ms var(--ease); }
.field textarea { min-height: 80px; resize: vertical; padding-top: 22px; }
.field label { position: absolute; left: 16px; top: 22px; font-size: 14px; color: var(--ink-soft); pointer-events: none; transition: transform 240ms var(--ease), color 240ms var(--ease); transform-origin: left center; }
[dir="rtl"] .field label { left: auto; right: 16px; transform-origin: right center; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--lucida-teal); }
.field input:focus + label, .field select:focus + label, .field textarea:focus + label,
.field input:not(:placeholder-shown) + label, .field textarea:not(:placeholder-shown) + label,
.field.filled label { transform: translateY(-18px) scale(0.85); color: var(--lucida-teal); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ────────────────────────────────────────────────
   RTL ADJUSTMENTS · applied when <html dir="rtl">
   ──────────────────────────────────────────────── */

[dir="rtl"] body { text-align: right; }

/* Headings/quotes use Arabic font, slightly tighter line-height feels cleaner */
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3,
[dir="rtl"] h4, [dir="rtl"] h5, [dir="rtl"] h6,
[dir="rtl"] blockquote, [dir="rtl"] .pull-quote,
[dir="rtl"] .lead, [dir="rtl"] .eyebrow {
  font-family: var(--ar);
  font-weight: 500;
  line-height: 1.4;
}

/* Skip link / progress bar live on the visual start edge */
[dir="rtl"] .skip { left: auto; right: -9999px; }
[dir="rtl"] .skip:focus { right: 12px; left: auto; }
[dir="rtl"] .scroll-progress { left: auto; right: 0; }

/* Header — flip flex order so logo is on the right (visual start) */
[dir="rtl"] .header-inner,
[dir="rtl"] .header > .container { flex-direction: row-reverse; }
[dir="rtl"] .header-right { flex-direction: row-reverse; }
[dir="rtl"] .nav { flex-direction: row-reverse; }

/* Brand / wordmark stays in natural language order */
[dir="rtl"] .brand,
[dir="rtl"] .brand-text { text-align: right; }

/* Nav underline animation should grow from the right in RTL */
[dir="rtl"] .nav a::after { transform-origin: left; }
[dir="rtl"] .nav a:hover::after { transform-origin: right; }

/* Mobile menu */
[dir="rtl"] .mobile-menu { text-align: right; }
[dir="rtl"] .mobile-menu a { text-align: right; }

/* Footer — reverse column order is unnatural; keep order, just align text */
[dir="rtl"] footer .container,
[dir="rtl"] .footer-grid,
[dir="rtl"] .footer-cols { text-align: right; }
[dir="rtl"] .footer ul,
[dir="rtl"] footer ul { padding-right: 0; }
[dir="rtl"] .newsletter-form,
[dir="rtl"] .newsletter form { flex-direction: row-reverse; }

/* CTAs / buttons — flip the trailing arrow */
[dir="rtl"] .cta-pill .arrow,
[dir="rtl"] .btn .arrow,
[dir="rtl"] .magnetic .arrow,
[dir="rtl"] .btn-arrow,
[dir="rtl"] a .arrow,
[dir="rtl"] button .arrow { transform: scaleX(-1); }

/* Cards, grids, list items — align text to the right */
[dir="rtl"] .card,
[dir="rtl"] .service-card,
[dir="rtl"] .doctor-card,
[dir="rtl"] .insight-card,
[dir="rtl"] .resource-card,
[dir="rtl"] .pillar,
[dir="rtl"] .feature,
[dir="rtl"] .step,
[dir="rtl"] .faq-item,
[dir="rtl"] .info-block,
[dir="rtl"] .stat,
[dir="rtl"] .testimonial { text-align: right; }

/* Breadcrumbs */
[dir="rtl"] .breadcrumbs,
[dir="rtl"] .breadcrumb { flex-direction: row-reverse; justify-content: flex-end; }

/* Bulleted/numbered lists indent on the right side in RTL */
[dir="rtl"] ul, [dir="rtl"] ol { padding-right: 1.2em; padding-left: 0; }
[dir="rtl"] li { text-align: right; }

/* Form layout */
[dir="rtl"] form,
[dir="rtl"] .form-grid,
[dir="rtl"] .field,
[dir="rtl"] .field input,
[dir="rtl"] .field select,
[dir="rtl"] .field textarea { text-align: right; }
[dir="rtl"] .field input,
[dir="rtl"] .field select,
[dir="rtl"] .field textarea { direction: rtl; }

/* Checkboxes / radios — gap reversal */
[dir="rtl"] .checkbox,
[dir="rtl"] .radio { flex-direction: row-reverse; }

/* Hero sections — keep flex-row reversed so visual emphasis sits on the right */
[dir="rtl"] .hero-grid,
[dir="rtl"] .hero-split,
[dir="rtl"] .two-col,
[dir="rtl"] .split { direction: rtl; }
[dir="rtl"] .hero-grid > *,
[dir="rtl"] .hero-split > *,
[dir="rtl"] .two-col > *,
[dir="rtl"] .split > * { direction: rtl; }

/* Section eyebrows / labels often have a leading dot/dash */
[dir="rtl"] .eyebrow::before { margin-right: 0; margin-left: 8px; }
[dir="rtl"] .eyebrow::after { margin-left: 0; margin-right: 8px; }

/* Service detail / sticky side panels */
[dir="rtl"] .sticky-aside,
[dir="rtl"] .price-card,
[dir="rtl"] .toc { text-align: right; }

/* Tables (insurance, pricing) */
[dir="rtl"] table { text-align: right; }
[dir="rtl"] th, [dir="rtl"] td { text-align: right; }

/* Tour / gallery captions */
[dir="rtl"] figcaption,
[dir="rtl"] .caption { text-align: right; }

/* Margin-end utility — flip common left/right margin patterns */
[dir="rtl"] .ml-auto { margin-left: 0; margin-right: auto; }
[dir="rtl"] .mr-auto { margin-right: 0; margin-left: auto; }

/* Decorative arrows in section links */
[dir="rtl"] .read-more::after,
[dir="rtl"] .link-arrow::after { content: " ←"; }
[dir="rtl"] .read-more,
[dir="rtl"] .link-arrow { direction: rtl; }

/* Doctor/team specialty pills row */
[dir="rtl"] .specialties,
[dir="rtl"] .pill-row { justify-content: flex-end; }

/* Contact info blocks (address, phone, hours) */
[dir="rtl"] .contact-info,
[dir="rtl"] .contact-block,
[dir="rtl"] .info-row { text-align: right; }
[dir="rtl"] .contact-info .icon,
[dir="rtl"] .info-row .icon { margin-right: 0; margin-left: 12px; }

/* Quote marks orientation */
[dir="rtl"] blockquote::before { content: "»"; }
[dir="rtl"] blockquote::after { content: "«"; }

/* Number counters keep LTR digits */
[dir="rtl"] [data-count],
[dir="rtl"] .stat-number,
[dir="rtl"] .price { direction: ltr; unicode-bidi: isolate; display: inline-block; }
