/* ============================================================
   DR. SALEH DERMATOLOGY — HOME PAGE STYLES
   Primary: #0ABFA3 | Dark: #063D38 | Light BG: #F4FDFB
============================================================ */

:root {
  --ds-primary:     #0ABFA3;
  --ds-primary-dk:  #089080;
  --ds-dark:        #063D38;
  --ds-bg:          #F4FDFB;
  --ds-white:       #FFFFFF;
  --ds-text:        #2D3748;
  --ds-muted:       #718096;
  --ds-border:      #E2E8F0;
  --ds-card-bg:     #FFFFFF;
  --ds-card-radius: 16px;
  --ds-shadow:      0 2px 16px rgba(10,191,163,.10);
  --ds-shadow-md:   0 8px 32px rgba(10,191,163,.15);
  --ds-gap:         24px;
  --ds-section-py:  80px;
  --ds-font-ar:     'Noto Sans Arabic', 'Segoe UI', Tahoma, sans-serif;
  --ds-font-en:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Base reset inside .ds-home ── */
.ds-home *, .ds-home *::before, .ds-home *::after { box-sizing: border-box; margin: 0; padding: 0; }
.ds-home { font-family: var(--ds-font-en); color: var(--ds-text); background: var(--ds-bg); }
.ds-home.ds-rtl { font-family: var(--ds-font-ar); direction: rtl; text-align: right; }
.ds-home img { max-width: 100%; height: auto; display: block; }
.ds-home a { text-decoration: none; }

/* ── Container — sections are full-bleed; all horizontal spacing lives here ── */
.ds-container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding-left: 80px;
  padding-right: 80px;
  box-sizing: border-box;
}
@media (max-width: 1024px) { .ds-container { padding-left: 48px; padding-right: 48px; } }
@media (max-width: 768px)  { .ds-container { padding-left: 28px; padding-right: 28px; } }
@media (max-width: 480px)  { .ds-container { padding-left: 18px; padding-right: 18px; } }

/* ── Section padding ── */
.ds-hero, .ds-stats, .ds-about, .ds-services, .ds-videos, .ds-tips, .ds-results, .ds-articles, .ds-testimonials {
  padding: var(--ds-section-py) 0;
}

/* ── Label pill ── */
.ds-label {
  display: inline-block;
  background: rgba(10,191,163,.12);
  color: var(--ds-primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* ── Section head ── */
.ds-section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.ds-section-head h2 { font-size: 2rem; font-weight: 800; color: var(--ds-dark); margin-bottom: 12px; line-height: 1.25; }
.ds-section-head p  { color: var(--ds-muted); line-height: 1.7; }

/* ── Buttons ── */
.ds-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px; font-size: .95rem; font-weight: 600;
  transition: all .2s ease; cursor: pointer; border: 2px solid transparent;
}
.ds-btn--primary       { background: var(--ds-primary); color: #fff; }
.ds-btn--primary:hover { background: var(--ds-primary-dk); transform: translateY(-2px); box-shadow: var(--ds-shadow-md); }
.ds-btn--outline       { background: transparent; border-color: var(--ds-primary); color: var(--ds-primary); }
.ds-btn--outline:hover { background: var(--ds-primary); color: #fff; }
.ds-btn--outline-white { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.ds-btn--outline-white:hover { background: rgba(255,255,255,.15); }

/* ── Link arrow ── */
.ds-link { color: var(--ds-primary); font-weight: 600; font-size: .9rem; transition: gap .2s; }
.ds-link:hover { text-decoration: underline; }

/* ── Tag pill ── */
.ds-tag {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  background: rgba(10,191,163,.1); color: var(--ds-primary);
  font-size: .75rem; font-weight: 600;
}

/* ── Empty state ── */
.ds-empty { color: var(--ds-muted); font-style: italic; text-align: center; padding: 40px 0; }

/* ── Section footer ── */
.ds-section-footer { text-align: center; margin-top: 40px; }

/* ==========================================================
   HERO
========================================================== */
.ds-hero {
  background: linear-gradient(135deg, var(--ds-dark) 0%, #0b6b5e 50%, var(--ds-primary) 100%);
  color: #fff; padding: 100px 0 80px; overflow: hidden; position: relative;
}
.ds-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.ds-hero .ds-container { position: relative; display: flex; align-items: center; gap: 60px; }
.ds-hero__content { flex: 1; }
.ds-hero__badge   { margin-bottom: 20px; background: rgba(255,255,255,.15); color: #fff; }
.ds-hero__title   { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 18px; color: #fff; }
.ds-hero__sub     { font-size: 1.05rem; line-height: 1.75; opacity: .85; margin-bottom: 32px; max-width: 480px; }
.ds-hero__ctas    { display: flex; gap: 14px; flex-wrap: wrap; }
.ds-hero__visual  { flex: 0 0 320px; display: flex; align-items: center; justify-content: center; }
.ds-hero__img     { border-radius: 24px; box-shadow: var(--ds-shadow-md); max-height: 420px; object-fit: cover; }
.ds-hero__img-ph  { width: 280px; height: 340px; display: flex; align-items: center; justify-content: center; }
.ds-hero__img-ph svg { width: 100%; opacity: .9; }

/* ==========================================================
   STATS BAR
========================================================== */
.ds-stats { padding: 40px 0; background: var(--ds-white); box-shadow: var(--ds-shadow); }
.ds-stats__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; text-align: center; }
.ds-stat { padding: 20px; }
.ds-stat--divider { border-left: 1px solid var(--ds-border); border-right: 1px solid var(--ds-border); }
.ds-rtl .ds-stat--divider { border-left: 1px solid var(--ds-border); border-right: 1px solid var(--ds-border); }
.ds-stat__num { display: block; font-size: 2.2rem; font-weight: 800; color: var(--ds-primary); }
.ds-stat__lbl { display: block; font-size: .85rem; color: var(--ds-muted); margin-top: 4px; }

/* ==========================================================
   ABOUT
========================================================== */
.ds-about { background: var(--ds-bg); }
.ds-about__wrap { display: flex; align-items: center; gap: 64px; }
.ds-about__img-col { flex: 0 0 420px; }
.ds-about__img     { border-radius: 24px; width: 100%; object-fit: cover; box-shadow: var(--ds-shadow-md); }
.ds-about__img-ph  { border-radius: 24px; overflow: hidden; }
.ds-about__img-ph svg { width: 100%; display: block; }
.ds-about__content { flex: 1; }
.ds-about__content h2   { font-size: 2rem; font-weight: 800; color: var(--ds-dark); margin-bottom: 16px; }
.ds-about__content p    { color: var(--ds-muted); line-height: 1.75; margin-bottom: 28px; }
.ds-about__mini-stats   { display: flex; gap: 32px; margin-bottom: 28px; }
.ds-mini-stat strong    { display: block; font-size: 1.6rem; font-weight: 800; color: var(--ds-primary); }
.ds-mini-stat span      { font-size: .8rem; color: var(--ds-muted); }

/* ==========================================================
   SERVICES
========================================================== */
.ds-services { background: var(--ds-white); }
.ds-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ds-gap);
}
.ds-svc-card {
  background: var(--ds-card-bg); border: 1px solid var(--ds-border);
  border-radius: var(--ds-card-radius); padding: 28px 24px;
  transition: all .25s ease; cursor: default;
}
.ds-svc-card:hover { box-shadow: var(--ds-shadow-md); transform: translateY(-4px); border-color: var(--ds-primary); }
.ds-svc-card__icon {
  width: 56px; height: 56px; background: rgba(10,191,163,.1);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--ds-primary);
}
.ds-svc-card__icon svg { width: 26px; height: 26px; }
.ds-svc-card__sub  { font-size: .78rem; font-weight: 700; color: var(--ds-primary); text-transform: uppercase; letter-spacing: .05em; }
.ds-svc-card__body h3 { font-size: 1.1rem; font-weight: 700; color: var(--ds-dark); margin: 6px 0 8px; }
.ds-svc-card__body p  { font-size: .9rem; color: var(--ds-muted); line-height: 1.65; margin-bottom: 14px; }

/* ==========================================================
   VIDEOS
========================================================== */
.ds-videos { background: var(--ds-bg); }
.ds-videos__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--ds-gap); }
.ds-video-card h3 { font-size: 1rem; font-weight: 700; color: var(--ds-dark); margin: 14px 0 8px; }
.ds-video-card__thumb { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 16/10; background: #dff4ef; }
.ds-video-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ds-video-card__ph { width: 100%; height: 100%; background: linear-gradient(135deg, #b2e8df, #7dd9cd); }
.ds-video-card__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(6,61,56,.35); transition: background .2s;
}
.ds-video-card__play:hover { background: rgba(6,61,56,.55); }
.ds-video-card__play svg  { width: 44px; height: 44px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }
.ds-video-card__dur {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,.65); color: #fff; font-size: .75rem;
  padding: 2px 8px; border-radius: 6px;
}

/* ==========================================================
   TIPS & REELS
========================================================== */
.ds-tips { background: var(--ds-white); }
.ds-tips__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--ds-gap); }
.ds-tip-card h3 { font-size: .95rem; font-weight: 700; color: var(--ds-dark); margin-top: 12px; }
.ds-tip-card__thumb { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 9/14; background: #dff4ef; }
.ds-tip-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.ds-tip-card__ph { width: 100%; height: 100%; background: linear-gradient(135deg, #0ABFA3, #063D38); }
.ds-tip-card__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(6,61,56,.35); transition: background .2s;
}
.ds-tip-card__play:hover { background: rgba(6,61,56,.55); }
.ds-tip-card__play svg { width: 44px; height: 44px; }
.ds-tip-card__dur {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,.65); color: #fff; font-size: .75rem;
  padding: 2px 8px; border-radius: 6px;
}

/* ==========================================================
   RESULTS
========================================================== */
.ds-results { background: var(--ds-bg); }
.ds-tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.ds-tab {
  padding: 8px 20px; border-radius: 50px; border: 2px solid var(--ds-border);
  background: var(--ds-white); color: var(--ds-muted); font-size: .88rem; font-weight: 600;
  cursor: pointer; transition: all .2s;
}
.ds-tab.active, .ds-tab:hover { background: var(--ds-primary); border-color: var(--ds-primary); color: #fff; }
.ds-results__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--ds-gap); }
.ds-result-card {
  background: var(--ds-white); border-radius: var(--ds-card-radius);
  overflow: hidden; border: 1px solid var(--ds-border); transition: all .25s;
}
.ds-result-card:hover { box-shadow: var(--ds-shadow-md); }
.ds-result-card.hidden { display: none; }
.ds-result-card__imgs { display: flex; }
.ds-result-card__side { flex: 1; position: relative; aspect-ratio: 1; }
.ds-result-card__side img { width: 100%; height: 100%; object-fit: cover; }
.ds-result-card__side span {
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(0,0,0,.55); color: #fff; font-size: .72rem;
  padding: 2px 8px; border-radius: 5px;
}
.ds-result-card__foot { padding: 16px; }
.ds-result-card__foot h4 { font-size: .95rem; font-weight: 700; color: var(--ds-dark); margin-bottom: 8px; }
.ds-result-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* Before/After drag-comparison slider */
.ds-result-slider {
  position: relative; aspect-ratio: 1; overflow: hidden;
  cursor: col-resize; user-select: none; -webkit-user-select: none;
  background: #e2e8f0;
}
.ds-result-slider__img {
  position: absolute; inset: 0;
}
.ds-result-slider__img img {
  width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none;
}
.ds-result-slider__before {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}
.ds-result-slider__handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 3px; pointer-events: none;
  transition: left 0s;
}
.ds-result-slider__line {
  position: absolute; inset: 0;
  background: #fff; box-shadow: 0 0 8px rgba(0,0,0,.35);
  display: flex; align-items: center; justify-content: center;
}
.ds-result-slider__circle {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--ds-primary);
}
.ds-result-slider__range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: col-resize; margin: 0;
  -webkit-appearance: none; appearance: none;
}
.ds-result-slider__lbl {
  position: absolute; bottom: 10px;
  background: rgba(0,0,0,.55); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 5px; pointer-events: none;
}
.ds-result-slider__lbl--b { left: 10px; }
.ds-result-slider__lbl--a { right: 10px; }

/* ==========================================================
   ARTICLES
========================================================== */
.ds-articles { background: var(--ds-white); }
.ds-articles__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--ds-gap); }
.ds-article-card { background: var(--ds-card-bg); border-radius: var(--ds-card-radius); overflow: hidden; border: 1px solid var(--ds-border); transition: all .25s; }
.ds-article-card:hover { box-shadow: var(--ds-shadow-md); transform: translateY(-3px); }
.ds-article-card__thumb { aspect-ratio: 16/9; overflow: hidden; }
.ds-article-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ds-article-card:hover .ds-article-card__thumb img { transform: scale(1.04); }
.ds-article-card__ph { width: 100%; height: 100%; background: linear-gradient(135deg, #b2e8df, #7dd9cd); }
.ds-article-card__body { padding: 20px; }
.ds-article-card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.ds-article-card__meta time { font-size: .78rem; color: var(--ds-muted); }
.ds-article-card__body h3 { font-size: 1rem; font-weight: 700; color: var(--ds-dark); margin-bottom: 8px; line-height: 1.4; }
.ds-article-card__body h3 a { color: inherit; }
.ds-article-card__body h3 a:hover { color: var(--ds-primary); }
.ds-article-card__body p  { font-size: .88rem; color: var(--ds-muted); line-height: 1.65; margin-bottom: 12px; }

/* ==========================================================
   TESTIMONIALS
========================================================== */
.ds-testimonials { background: var(--ds-dark); color: #fff; }
.ds-testimonials .ds-section-head h2 { color: #fff; }
.ds-testimonials .ds-section-head p  { color: rgba(255,255,255,.7); }
.ds-testimonials .ds-label { background: rgba(255,255,255,.15); color: #fff; }
.ds-testimonials__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--ds-gap); }
.ds-testi-card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--ds-card-radius); padding: 28px; transition: all .25s;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.ds-testi-card:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.ds-testi-card__stars { color: #FFC107; font-size: 1.1rem; margin-bottom: 14px; }
.ds-testi-card blockquote { font-size: .95rem; line-height: 1.75; color: rgba(255,255,255,.85); margin-bottom: 20px; font-style: italic; }
.ds-testi-card blockquote p { margin: 0; }
.ds-testi-card__author { display: flex; align-items: center; gap: 14px; }
.ds-testi-card__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.ds-testi-card__avatar--ph {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6);
}
.ds-testi-card__avatar--ph svg { width: 22px; }
.ds-testi-card__author strong { display: block; font-weight: 700; }
.ds-testi-card__author span   { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ==========================================================
   RESPONSIVE
========================================================== */
@media (max-width: 1024px) {
  .ds-services__grid, .ds-videos__grid, .ds-tips__grid, .ds-articles__grid { grid-template-columns: repeat(2,1fr); }
  .ds-results__grid { grid-template-columns: repeat(2,1fr); }
  .ds-about__wrap { grid-template-columns: 1fr; }
  .ds-about__img-col { max-width: 420px; margin: 0 auto; }
  .ds-hero .ds-container { grid-template-columns: 1fr; text-align: center; }
  .ds-hero__visual { display: none; }
  .ds-hero__ctas { justify-content: center; }
  .ds-hero__sub { max-width: 100%; margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
  :root { --ds-section-py: 52px; }
  .ds-services__grid, .ds-videos__grid, .ds-articles__grid, .ds-results__grid, .ds-testimonials__grid { grid-template-columns: 1fr; }
  .ds-tips__grid { grid-template-columns: repeat(2,1fr); }
  .ds-stats__grid { grid-template-columns: 1fr; gap: 0; }
  .ds-stat--divider { border: 0; border-top: 1px solid var(--ds-border); border-bottom: 1px solid var(--ds-border); }
  .ds-about__mini-stats { flex-direction: column; gap: 14px; }
  .ds-hero__title { font-size: 1.8rem; }
  .ds-section-head h2 { font-size: 1.55rem; }
}

/* RTL tweaks */
.ds-rtl .ds-stat--divider { border-left: 1px solid var(--ds-border); border-right: 1px solid var(--ds-border); }
.ds-rtl .ds-video-card__dur,
.ds-rtl .ds-tip-card__dur,
.ds-rtl .ds-result-card__side span { left: auto; right: 8px; }

/* ==========================================================
   INNER PAGES — SHARED BASE
========================================================== */
.ds-inner *, .ds-inner *::before, .ds-inner *::after { box-sizing: border-box; padding: 0; }
.ds-inner { font-family: var(--ds-font-en); color: var(--ds-text); background: var(--ds-bg); }
.ds-inner.ds-rtl { font-family: var(--ds-font-ar); direction: rtl; text-align: right; }
.ds-inner img { max-width: 100%; height: auto; display: block; }
.ds-inner a { text-decoration: none; }
.ds-inner section { padding: var(--ds-section-py) 0; }

/* Page header banner — dark teal (services, blog, contact, etc.) */
.ds-page-header {
  background: linear-gradient(135deg, var(--ds-dark) 0%, #0b6b5e 55%, var(--ds-primary) 100%);
  color: #fff; padding: 72px 0 60px; text-align: center; position: relative; overflow: hidden;
}
.ds-page-header::before {
  content: ''; position: absolute; inset: 0; opacity: .4;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.ds-page-header .ds-container { position: relative; }
.ds-page-header__title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.ds-page-header__bar { width: 64px; height: 4px; background: rgba(255,255,255,.5); border-radius: 2px; margin: 0 auto; }
.ds-page-header__sub { margin-top: 16px; font-size: 1.05rem; opacity: .82; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* Light variant — about page (gradient teal-50 → white) */
.ds-page-header--light {
  background: linear-gradient(to bottom, #f0fdfa, #fff);
  color: var(--ds-dark); padding: 64px 0 52px;
}
.ds-page-header--light::before { display: none; }
.ds-page-header__title--light {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
  color: var(--ds-dark); margin-bottom: 16px; line-height: 1.2;
}
.ds-page-header__bar--light {
  width: 96px; height: 4px; background: var(--ds-primary); border-radius: 2px; margin: 0 auto;
}

/* ==========================================================
   ABOUT PAGE
========================================================== */

/* Doctor Profile */
.ds-about-pg { background: #fff; }
.ds-about-pg__wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.ds-about-pg__img-col { display: flex; justify-content: center; }
.ds-about-pg__img {
  width: 100%; max-width: 420px; border-radius: 20px;
  object-fit: cover; box-shadow: var(--ds-shadow-md);
}
.ds-about-pg__img-ph {
  width: 100%; max-width: 420px; aspect-ratio: 3/4;
  border-radius: 20px; background: #f0fdfa;
  display: flex; align-items: center; justify-content: center;
}
.ds-about-pg__img-ph svg { width: 96px; height: 96px; color: #5eead4; }
.ds-about-pg__content h2 { font-size: 2rem; font-weight: 800; color: var(--ds-dark); margin-bottom: 8px; }
.ds-about-pg__role { color: var(--ds-primary); font-weight: 600; font-size: 1.05rem; margin-bottom: 24px; display: block; }
.ds-about-pg__bio { color: var(--ds-muted); line-height: 1.8; }
.ds-about-pg__bio p { margin-bottom: 16px; }

/* Stats — teal-50/50 bg, 4 columns */
.ds-about-pg-stats { background: rgba(240,253,250,.6); padding: 64px 0; }
.ds-about-pg-stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); text-align: center;
}
.ds-about-pg-stat {
  padding: 28px 16px;
  border-inline-end: 1px solid var(--ds-border);
}
.ds-about-pg-stat:last-child { border-inline-end: 0; }
.ds-about-pg-stat strong { display: block; font-size: 2.6rem; font-weight: 800; color: var(--ds-primary); }
.ds-about-pg-stat span { font-size: .85rem; color: var(--ds-muted); margin-top: 6px; display: block; }

/* Qualifications — white cards, no icons */
.ds-quals { background: #fff; }
.ds-quals .ds-section-head { margin-bottom: 40px; }
.ds-quals .ds-section-head h2 { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800; color: var(--ds-dark); }
.ds-quals__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; max-width: 760px; margin: 0 auto;
}
.ds-qual-card {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 14px; padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06); transition: box-shadow .2s;
}
.ds-qual-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.10); }
.ds-qual-card__icon { display: none; }
.ds-qual-card h3 { font-size: 1rem; font-weight: 700; color: var(--ds-dark); margin-bottom: 8px; }
.ds-qual-card p  { font-size: .88rem; color: var(--ds-muted); line-height: 1.65; }

/* ==========================================================
   SERVICES FULL PAGE
========================================================== */
.ds-services-pg { background: var(--ds-white); padding: 80px 0; }
.ds-svc-pg__head { text-align: center; margin-bottom: 52px; }
.ds-svc-pg__badge {
  display: inline-block;
  background: rgba(10,191,163,.15);
  color: var(--ds-primary);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.ds-svc-pg__title { font-size: 2rem; font-weight: 800; color: var(--ds-dark); margin: 0 0 14px; line-height: 1.25; }
.ds-svc-pg__sub { font-size: 1.05rem; color: var(--ds-muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.ds-svc-pg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 0;
}
.ds-svc-pg-card {
  display: flex; flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .25s, transform .25s;
}
.ds-svc-pg-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.13); transform: translateY(-4px); }
.ds-svc-pg-card__thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f0fdfa;
  position: relative;
}
.ds-svc-pg-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.ds-svc-pg-card:hover .ds-svc-pg-card__img { transform: scale(1.05); }
.ds-svc-pg-card__ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.ds-svc-pg-card__ph svg { width: 48px; height: 48px; color: var(--ds-primary); opacity: .25; }
.ds-svc-pg-card__body {
  padding: 24px;
  flex: 1;
  display: flex; flex-direction: column;
}
.ds-svc-pg-card__body h3 { font-size: 1.05rem; font-weight: 700; color: var(--ds-dark); margin: 0 0 8px; transition: color .2s; }
.ds-svc-pg-card:hover .ds-svc-pg-card__body h3 { color: var(--ds-primary); }
.ds-svc-pg-card__body p  { flex: 1; font-size: .88rem; color: var(--ds-muted); line-height: 1.65; margin: 0 0 16px; }
.ds-svc-pg-card__more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .88rem; font-weight: 600; color: var(--ds-primary);
  margin-top: auto;
}
.ds-svc-pg-card__arrow { width: 16px; height: 16px; flex-shrink: 0; }
.ds-rtl .ds-svc-pg-card__arrow { transform: scaleX(-1); }

/* ==========================================================
   BLOG FULL PAGE
========================================================== */
.ds-blog-pg { background: var(--ds-white); }
.ds-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 52px; flex-wrap: wrap; }
.ds-pagination ul { display: flex; gap: 8px; list-style: none; margin: 0; padding: 0; }
.ds-pagination a, .ds-pagination span, .ds-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; border-radius: 50%; padding: 0 6px;
  border: 2px solid var(--ds-border); color: var(--ds-muted); font-size: .9rem; font-weight: 600;
  transition: all .2s;
}
.ds-pagination a:hover, .ds-pagination .current { background: var(--ds-primary); border-color: var(--ds-primary); color: #fff; }

/* ==========================================================
   VIDEOS FULL PAGE
========================================================== */
.ds-videos-pg { background: var(--ds-white); padding: 64px 0; }

/* Video card wrapper: white card with border + shadow (full videos page) */
.ds-videos-pg .ds-video-card-wrap {
  background: #fff; border-radius: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,.07); border: 1px solid #e2e8f0;
  overflow: hidden; transition: box-shadow .25s;
}
.ds-videos-pg .ds-video-card-wrap:hover { box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.ds-videos-pg .ds-video-card-wrap .ds-video-card h3,
.ds-videos-pg .ds-video-card-wrap .ds-video-card p { padding: 0 16px 4px; }

.ds-video-card__thumb iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* ==========================================================
   REELS / TIPS FULL PAGE
========================================================== */
.ds-reels-pg { background: var(--ds-white); padding: 64px 0; }

/* New grid (overrides old ds-tips__grid usage) */
.ds-reels-pg__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Reel page cards — portrait ratio, white card */
.ds-reel-pg-card {
  display: block; text-decoration: none;
  border-radius: 14px; background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.ds-reel-pg-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.12); transform: translateY(-3px); }

.ds-reel-pg-card__thumb {
  position: relative; aspect-ratio: 9/16;
  background: #f1f5f9; overflow: hidden;
}
.ds-reel-pg-card__thumb iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.ds-reel-pg-card__thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ds-reel-pg-card__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.25);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s;
}
.ds-reel-pg-card:hover .ds-reel-pg-card__overlay { opacity: 1; }
.ds-reel-pg-card__play {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center;
  color: var(--ds-primary);
}
.ds-reel-pg-card__play svg { width: 24px; height: 24px; }
.ds-reel-pg-card__ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #dff4ef, #b2e8df);
}
.ds-reel-pg-card__body { padding: 12px 14px 14px; }
.ds-reel-pg-card__body h3 {
  font-size: .9rem; font-weight: 700;
  color: var(--ds-dark); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Legacy tip-card iframe (keep for any leftover usage) */
.ds-tip-card__thumb iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* ==========================================================
   CONTACT PAGE
========================================================== */
.ds-contact-pg { background: var(--ds-white); }
.ds-contact-pg__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.ds-contact-info-list { display: flex; flex-direction: column; gap: 28px; }
.ds-contact-item { display: flex; gap: 18px; align-items: flex-start; }
.ds-contact-item__icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: rgba(10,191,163,.1); color: var(--ds-primary);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
}
.ds-contact-item__icon svg { width: 22px; height: 22px; }
.ds-contact-item__body h4 { font-weight: 700; color: var(--ds-dark); margin-bottom: 6px; font-size: 1rem; }
.ds-contact-item__body p, .ds-contact-item__body a { color: var(--ds-muted); font-size: .9rem; line-height: 1.65; display: block; }
.ds-contact-item__body a:hover { color: var(--ds-primary); }

/* Social row — square icon-only buttons */
.ds-social-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.ds-social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 10px;
  background: #f1f5f9; color: var(--ds-muted);
  border: 0; transition: background .2s, color .2s;
}
.ds-social-btn:hover { background: var(--ds-primary); color: #fff; }
.ds-social-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.ds-social-btn span { display: none; }

/* Working hours card (below map on contact page) */
.ds-hours-card { background: #f8fafc; border-radius: 16px; padding: 24px; margin-top: 24px; }
.ds-hours-card h4 { font-weight: 700; color: var(--ds-dark); margin-bottom: 14px; font-size: 1rem; }
.ds-hours-card-row {
  display: flex; justify-content: space-between; font-size: .875rem; color: var(--ds-muted);
  padding: 8px 0; border-bottom: 1px solid var(--ds-border);
}
.ds-hours-card-row:last-child { border-bottom: 0; }
.ds-hours-card-row span:last-child { font-weight: 600; color: var(--ds-dark); }

/* Map */
.ds-map-wrap { border-radius: 20px; overflow: hidden; box-shadow: var(--ds-shadow); }
.ds-map-wrap iframe { width: 100%; height: 400px; border: 0; display: block; }
.ds-map-ph {
  height: 400px; background: linear-gradient(135deg, #dff4ef, #b2e8df);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px;
}
.ds-map-ph svg { width: 48px; opacity: .5; }
.ds-map-ph p { font-size: .9rem; color: var(--ds-muted); text-align: center; max-width: 240px; line-height: 1.55; }

/* ==========================================================
   APPOINTMENT PAGE
========================================================== */
.ds-appt-pg { background: var(--ds-bg); }
.ds-appt-pg__wrap { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.ds-appt-info-list { display: flex; flex-direction: column; gap: 22px; }
.ds-appt-item { display: flex; gap: 16px; align-items: flex-start; }
.ds-appt-item__icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(10,191,163,.1); color: var(--ds-primary);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.ds-appt-item__icon svg { width: 20px; }
.ds-appt-item__body h4 { font-weight: 700; color: var(--ds-dark); margin-bottom: 4px; }
.ds-appt-item__body p, .ds-appt-item__body a { color: var(--ds-muted); font-size: .88rem; line-height: 1.6; display: block; }

/* Form card */
.ds-form-card {
  background: var(--ds-white); border-radius: 20px; padding: 40px;
  box-shadow: var(--ds-shadow-md); border: 1px solid var(--ds-border);
}
.ds-form-title { font-size: 1.4rem; font-weight: 800; color: var(--ds-dark); margin-bottom: 26px; }
.ds-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ds-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.ds-form-group label { font-size: .85rem; font-weight: 600; color: var(--ds-dark); }
.ds-form-group input,
.ds-form-group select,
.ds-form-group textarea {
  padding: 12px 14px; border: 2px solid var(--ds-border); border-radius: 10px;
  font-size: .9rem; font-family: inherit; color: var(--ds-text); background: var(--ds-bg);
  transition: border-color .2s; -webkit-appearance: none; -moz-appearance: none; appearance: none;
  min-height: 44px;
}
.ds-form-group input:focus,
.ds-form-group select:focus,
.ds-form-group textarea:focus { outline: none; border-color: var(--ds-primary); background: #fff; }
.ds-form-group textarea { resize: vertical; min-height: 110px; }
.ds-form-submit { width: 100%; margin-top: 4px; justify-content: center; font-size: 1rem; padding: 14px; }
.ds-appt-success {
  background: rgba(10,191,163,.1); border: 2px solid var(--ds-primary);
  border-radius: 12px; padding: 20px 24px; color: var(--ds-dark);
  font-weight: 600; margin-bottom: 24px; text-align: center;
}
.ds-appt-error {
  background: rgba(239,68,68,.08); border: 2px solid #ef4444;
  border-radius: 12px; padding: 20px 24px; color: #b91c1c;
  font-weight: 600; margin-bottom: 24px; text-align: center;
}

/* ==========================================================
   PRIVACY PAGE
========================================================== */
.ds-privacy-pg { background: var(--ds-white); }
.ds-privacy-pg__prose { max-width: 800px; margin: 0 auto; font-size: 1rem; line-height: 1.85; color: var(--ds-text); }
.ds-privacy-pg__prose h2 { font-size: 1.4rem; font-weight: 700; color: var(--ds-dark); margin: 36px 0 12px; }
.ds-privacy-pg__prose h3 { font-size: 1.1rem; font-weight: 700; color: var(--ds-dark); margin: 24px 0 10px; }
.ds-privacy-pg__prose p { margin-bottom: 16px; color: var(--ds-muted); }
.ds-privacy-pg__prose ul, .ds-privacy-pg__prose ol { margin: 12px 0 16px 28px; color: var(--ds-muted); }
.ds-rtl .ds-privacy-pg__prose ul, .ds-rtl .ds-privacy-pg__prose ol { margin: 12px 28px 16px 0; }
.ds-privacy-pg__prose li { margin-bottom: 6px; }
.ds-privacy-pg__prose a { color: var(--ds-primary); }

/* ==========================================================
   HOME PAGE V2 — REDESIGN OVERRIDES  (matching Laravel)
========================================================== */

/* ── Hero ── */
.ds-hero {
  background: linear-gradient(to bottom right, #0f766e, #0d9488, #115e59);
  padding: 0; position: relative; overflow: hidden;
}
.ds-hero::before { display: none; }
.ds-hero__dots {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; opacity: .08;
}
.ds-hero .ds-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 68px); /* 68px = fixed navbar height */
  padding-top: 48px;
  padding-bottom: 48px;
}
.ds-hero__content { flex: unset; }
.ds-hero__title { font-size: clamp(2.2rem, 4vw, 3.6rem); color: #fff; }

/* Visual column */
.ds-hero__visual {
  flex: unset; position: relative;
  display: flex; align-items: center; justify-content: center;
}

/* Image wrapper — aspect 3/4, rounded, teal-500/30 bg */
.ds-hero__img-wrap {
  position: relative; width: 100%; max-width: 380px;
  aspect-ratio: 3 / 4; border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.ds-hero__img {
  width: 100%; height: 100%; object-fit: cover; object-position: top; display: block;
}

/* Placeholder — same shape, teal-500/30 fill */
.ds-hero__img-ph {
  background: rgba(13,148,136,.30);
  display: flex; align-items: center; justify-content: center;
}
.ds-hero__ph-icon {
  width: 30%; height: auto; color: rgba(255,255,255,.45);
}

/* Decorative circles */
.ds-hero__decor-top {
  position: absolute; top: -16px; inset-inline-end: -16px;
  width: 96px; height: 96px; border-radius: 50%;
  background: rgba(13,148,136,.20); pointer-events: none;
}
.ds-hero__decor-bot {
  position: absolute; bottom: -16px; inset-inline-start: -16px;
  width: 128px; height: 128px; border-radius: 50%;
  background: rgba(13,148,136,.10); pointer-events: none;
}

/* Hero primary button: white bg / teal text */
.ds-btn--hero-primary { background: #fff; color: #0f766e; border-color: #fff; }
.ds-btn--hero-primary:hover { background: #f0fdfa; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

/* Stats bar INSIDE hero (replaces separate .ds-stats section) */
.ds-stats { display: none; }
.ds-hero__stats-bar {
  background: rgba(17,94,89,.50);
  border-top: 1px solid rgba(255,255,255,.18);
}
.ds-hero__stats-inner {
  width: 100%; padding: 0 32px;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) { .ds-hero__stats-inner { padding: 0 20px; } }
.ds-hero__stat-item {
  padding: 24px 20px; text-align: center;
  border-inline-end: 1px solid rgba(255,255,255,.15); color: #fff;
}
.ds-hero__stat-item:last-child { border-inline-end: 0; }
.ds-hero__stat-num { display: block; font-size: 1.9rem; font-weight: 800; }
.ds-hero__stat-lbl { display: block; font-size: .8rem; opacity: .75; margin-top: 2px; }

/* ── About ── */
.ds-about { background: #fff; padding: 80px 0; }
.ds-about__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* Image column — centered, fixed max-width so accent aligns to frame */
.ds-about__img-col {
  display: flex; justify-content: center; align-items: flex-start;
}
.ds-about__img-wrap {
  position: relative; width: 100%; max-width: 300px;
  padding-bottom: 16px; padding-inline-end: 16px;
}
.ds-about__img-frame {
  position: relative; z-index: 1;
  aspect-ratio: 4 / 5; border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 48px rgba(0,0,0,.10); width: 100%;
}
.ds-about__img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.ds-about__img-ph {
  background: #f0fdfa;
  display: flex; align-items: center; justify-content: center;
}
.ds-about__ph-icon { width: 28%; height: auto; color: #5eead4; }
.ds-about__img-accent {
  position: absolute; bottom: 0; inset-inline-end: 0;
  width: 100%; height: calc(100% - 16px); border-radius: 16px;
  background: #ccfbf1; z-index: 0;
}

/* Content column */
.ds-about__label {
  display: inline-block; background: #f0fdfa;
  color: #0f766e; font-size: .85rem; font-weight: 700;
  padding: 5px 16px; border-radius: 100px; margin-bottom: 16px;
}
.ds-about__content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--ds-dark); margin-bottom: 20px; line-height: 1.25; }
.ds-about__content p  { font-size: 1.05rem; color: var(--ds-muted); line-height: 1.75; margin-bottom: 16px; }
.ds-about__p2 { margin-bottom: 32px !important; }

/* Stats */
.ds-about__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 32px; text-align: center; }
.ds-about__stat strong { display: block; font-size: 1.9rem; font-weight: 800; color: var(--ds-primary); }
.ds-about__stat span   { display: block; font-size: .82rem; color: var(--ds-muted); margin-top: 4px; }

/* CTA */
.ds-about__cta { border-radius: 50px !important; gap: 8px; }
.ds-about__cta-arrow { width: 16px; height: 16px; flex-shrink: 0; }
.ds-rtl .ds-about__cta-arrow { transform: rotate(180deg); }

/* ── Services: teal-50 bg + image-top cards ── */
.ds-services { background: #f0fdfa; }
.ds-svc-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.ds-svc-card__icon { display: none; }
.ds-svc-card__thumb { aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(135deg, #b2e8df, #7dd9cd); }
.ds-svc-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.ds-svc-card:hover .ds-svc-card__thumb img { transform: scale(1.05); }
.ds-svc-card__thumb-ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
}
.ds-svc-card__thumb-ph svg { width: 48px; opacity: .25; color: var(--ds-primary); }
.ds-svc-card__body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.ds-svc-card__body h3 { font-size: 1.05rem; font-weight: 700; color: var(--ds-dark); margin: 0 0 8px; }
.ds-svc-card__body p  { flex: 1; font-size: .88rem; color: var(--ds-muted); line-height: 1.65; margin-bottom: 14px; }

/* ── Videos: hover-reveal play circle ── */
.ds-videos { background: var(--ds-white); }
.ds-video-card__play { background: transparent; }
.ds-play-circle {
  width: 56px; height: 56px; background: rgba(255,255,255,.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.8); transition: opacity .25s, transform .25s;
}
.ds-play-circle svg { width: 24px; height: 24px; color: var(--ds-dark); margin-left: 3px; }
.ds-video-card__thumb:hover .ds-video-card__play { background: rgba(6,61,56,.3); }
.ds-video-card__thumb:hover .ds-play-circle { opacity: 1; transform: scale(1); }

/* ── Reels: slate-50 bg + horizontal scroll strip ── */
.ds-tips { background: #f8fafc; }
.ds-home-reels__scroll {
  overflow-x: auto; padding-bottom: 16px; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--ds-primary) transparent;
}
.ds-home-reels__scroll::-webkit-scrollbar { height: 4px; }
.ds-home-reels__scroll::-webkit-scrollbar-thumb { background: var(--ds-primary); border-radius: 2px; }
.ds-home-reels__flex { display: flex; gap: 16px; min-width: max-content; }
.ds-reel-card {
  flex-shrink: 0; width: 176px; border-radius: 16px;
  overflow: hidden; display: block; text-decoration: none; cursor: pointer;
}
.ds-reel-card__thumb { height: 320px; position: relative; overflow: hidden; background: linear-gradient(135deg, #0ABFA3, #063D38); }
.ds-reel-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.ds-reel-card:hover .ds-reel-card__thumb img { transform: scale(1.05); }
.ds-reel-card__thumb-ph { width: 100%; height: 100%; }
.ds-reel-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
  padding: 16px 12px;
}
.ds-reel-card__play {
  width: 44px; height: 44px; background: rgba(255,255,255,.85); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px; opacity: 0; transition: opacity .2s;
}
.ds-reel-card:hover .ds-reel-card__play { opacity: 1; }
.ds-reel-card__play svg { width: 20px; height: 20px; color: var(--ds-dark); margin-left: 3px; }
.ds-reel-card__title {
  font-size: .75rem; font-weight: 600; color: #fff;
  text-align: center; line-height: 1.4; width: 100%;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ── Articles: slate-50 bg + author avatar row ── */
.ds-articles { background: #f8fafc; }
/* Hide old meta row only inside the home template; keep it on blog page */
.ds-home .ds-article-card__meta { display: none; }
.ds-article-card__author { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ds-article-card__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ds-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem; flex-shrink: 0;
}
.ds-article-card__author-info { display: flex; flex-direction: column; }
.ds-article-card__author-name { font-size: .82rem; font-weight: 700; color: var(--ds-dark); line-height: 1.3; }
.ds-article-card__author-date { font-size: .75rem; color: var(--ds-muted); }
.ds-article-read-more { display: flex; justify-content: flex-end; }
.ds-rtl .ds-article-read-more { justify-content: flex-start; }

/* ── Testimonials: teal-600 bg + 3-col + quote icon ── */
.ds-testimonials { background: #0d9488; }
.ds-testimonials__grid { grid-template-columns: repeat(3, 1fr); }
.ds-testi-card__quote { color: rgba(255,255,255,.3); margin-bottom: 12px; }
.ds-testi-card__quote svg { width: 32px; height: 32px; }

/* ── Home appointment section ── */
.ds-home-appt { background: #f0fdfa; padding: var(--ds-section-py) 0; }
.ds-home-appt__inner {
  max-width: 780px; margin: 0 auto;
  background: var(--ds-white); border-radius: 24px; padding: 48px 56px;
  box-shadow: var(--ds-shadow-md); border: 1px solid var(--ds-border);
}
.ds-home-appt .ds-section-head { margin-bottom: 36px; }
.ds-home-appt__status {
  border-radius: 12px; padding: 16px 20px; text-align: center; font-weight: 600; margin-bottom: 24px;
}
.ds-home-appt__status--ok { background: rgba(10,191,163,.1); border: 2px solid var(--ds-primary); color: var(--ds-dark); }
.ds-home-appt__status--err { background: rgba(239,68,68,.08); border: 2px solid #ef4444; color: #b91c1c; }
.ds-home-appt__form .ds-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ds-home-appt__form .ds-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.ds-home-appt__form label { font-size: .85rem; font-weight: 600; color: var(--ds-dark); }
.ds-home-appt__form input,
.ds-home-appt__form select,
.ds-home-appt__form textarea {
  padding: 12px 14px; border: 2px solid var(--ds-border); border-radius: 10px;
  font-size: .9rem; font-family: inherit; color: var(--ds-text); background: var(--ds-bg);
  transition: border-color .2s; -webkit-appearance: none; appearance: none;
}
.ds-home-appt__form input:focus,
.ds-home-appt__form select:focus,
.ds-home-appt__form textarea:focus { outline: none; border-color: var(--ds-primary); background: #fff; }
.ds-home-appt__form textarea { resize: vertical; min-height: 100px; }
.ds-home-appt__submit { width: 100%; justify-content: center; font-size: 1rem; padding: 14px; margin-top: 4px; }

/* ── Responsive overrides ── */
@media (max-width: 1024px) {
  .ds-hero .ds-container { grid-template-columns: 1fr; text-align: center; padding-bottom: 0; }
  .ds-hero__visual { display: none; }
  .ds-hero__ctas { justify-content: center; }
  .ds-about__img-col { padding-right: 10px; }
  .ds-rtl .ds-about__img-col { padding-left: 10px; }
  .ds-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .ds-home-appt__inner { padding: 36px 32px; }
}
@media (max-width: 640px) {
  .ds-hero__stats-inner { grid-template-columns: 1fr; }
  .ds-hero__stat-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .ds-hero__stat-item:last-child { border-bottom: 0; }
  .ds-testimonials__grid { grid-template-columns: 1fr; }
  .ds-home-appt__inner { padding: 24px 20px; }
  .ds-home-appt__form .ds-form-row { grid-template-columns: 1fr; }
}

/* ==========================================================
   INNER PAGE RESPONSIVE
========================================================== */
@media (max-width: 1024px) {
  .ds-about-pg__wrap { grid-template-columns: 1fr; }
  .ds-about-pg__img-col { width: 100%; max-width: 380px; margin: 0 auto; }
  .ds-about-pg-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .ds-about-pg-stat:nth-child(2) { border-inline-end: 0; }
  .ds-about-pg-stat:nth-child(1),
  .ds-about-pg-stat:nth-child(2) { border-bottom: 1px solid var(--ds-border); }
  .ds-quals__grid { grid-template-columns: 1fr; max-width: 480px; }
  .ds-contact-pg__wrap { grid-template-columns: 1fr; gap: 40px; }
  .ds-appt-pg__wrap { grid-template-columns: 1fr; gap: 32px; }
  .ds-reels-pg__grid { grid-template-columns: repeat(3, 1fr); }
  .ds-svc-pg__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 640px) {
  .ds-reels-pg__grid { grid-template-columns: repeat(2, 1fr); }
  .ds-about-pg-stats__grid { grid-template-columns: 1fr; }
  .ds-about-pg-stat { border-inline-end: 0; border-bottom: 1px solid var(--ds-border); }
  .ds-about-pg-stat:last-child { border-bottom: 0; }
  .ds-form-row { grid-template-columns: 1fr; }
  .ds-form-card { padding: 24px 20px; }
  .ds-svc-pg__grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ==========================================================
   LANGUAGE SWITCHER (floating pill — all DS pages)
========================================================== */
.ds-lang-switcher {
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 99999;
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 3px;
  box-shadow: 0 2px 14px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.06);
}
.ds-lang-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--ds-muted);
  text-decoration: none;
  transition: all .2s;
}
.ds-lang-btn:hover { color: var(--ds-primary); }
.ds-lang-btn--active {
  background: var(--ds-primary);
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(10,191,163,.35);
}

/* RTL pages: anchor to the left instead */
html[dir="rtl"] .ds-lang-switcher { right: auto; left: 20px; }

@media (max-width: 640px) {
  .ds-lang-switcher { top: 10px; right: 12px; }
  html[dir="rtl"] .ds-lang-switcher { right: auto; left: 12px; }
  .ds-lang-btn { padding: 5px 14px; font-size: .72rem; }
}

/* ==========================================================
   CUSTOM NAVBAR
========================================================== */

/* ── Suppress Astra header ── */
body.ds-page .site-header,
body.ds-page .ast-above-header-wrap,
body.ds-page .ast-below-header-wrap,
body.ds-page .ast-mobile-header-wrap { display: none !important; }
body.ds-page { padding-top: 0 !important; }


/* Hide Astra sidebar — it floats left and eats the left-side space */
body.ds-page #secondary,
body.ds-page .widget-area,
body.ds-page .ast-sidebar-wrap { display: none !important; }

/* Strip every Astra wrapper so .ds-container owns all horizontal spacing */
body.ds-page .ast-container,
body.ds-page .ast-container-fluid {
  display: block !important;   /* Astra sets display:flex here for #primary+#secondary layout — we don't use that */
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body.ds-page #content.site-content {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  overflow-x: hidden;
}
body.ds-page #primary,
body.ds-page .content-area,
body.ds-page #main.site-main {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

/* ── Push DS content below the fixed navbar (68px) ── */
body.ds-page .ds-home  { padding-top: 68px; }
body.ds-page .ds-inner { padding-top: 68px; }

/* ── Nav shell ── */
.ds-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 68px; z-index: 9998;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ds-border);
  box-shadow: 0 1px 16px rgba(0,0,0,.06);
  transition: box-shadow .2s;
}
.ds-nav.ds-nav--scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.10); }

/* ── Inner container ── */
.ds-nav__inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 0 80px;
  height: 100%; display: flex; align-items: center; gap: 0;
}

/* ── Logo ── */
.ds-nav__logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0; margin-inline-end: 32px;
}
.ds-nav__logo-img  { height: 40px; width: auto; display: block; }
.ds-nav__logo-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--ds-primary); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; font-weight: 800;
}
.ds-nav__logo-name { font-size: .95rem; font-weight: 800; color: var(--ds-dark); }

/* ── Menu wrapper ── */
.ds-nav__menu {
  display: flex; align-items: center; flex: 1;
  gap: 0;
}

/* ── Nav links list ── */
.ds-nav__links {
  display: flex; align-items: center; justify-content: center; gap: 2px;
  list-style: none; margin: 0; padding: 0; flex: 1;
}
.ds-nav__link {
  display: inline-block; padding: 7px 12px;
  font-size: .86rem; font-weight: 600;
  color: var(--ds-muted); text-decoration: none;
  border-radius: 8px; white-space: nowrap;
  transition: color .18s, background .18s;
}
.ds-nav__link:hover      { color: var(--ds-primary); background: rgba(10,191,163,.07); }
.ds-nav__link--active    { color: var(--ds-primary); background: rgba(10,191,163,.10); }

/* ── Right-side actions ── */
.ds-nav__actions {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
  margin-inline-start: 16px;
}

/* ── Language switcher — single bordered button showing the other language ── */
.ds-nav__lang { display: flex; }
.ds-nav__lang-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 38px; padding: 6px 16px;
  border: 1px solid var(--ds-border); border-radius: 8px;
  font-size: .84rem; font-weight: 600;
  color: var(--ds-text); text-decoration: none; background: transparent;
  white-space: nowrap;
  transition: border-color .18s, color .18s;
}
.ds-nav__lang-btn:hover { border-color: var(--ds-primary); color: var(--ds-primary); }

/* ── Nav CTA button ── */
.ds-nav__cta { padding: 9px 20px !important; font-size: .84rem !important; white-space: nowrap; }

/* ── Hamburger toggle (mobile only) ── */
.ds-nav__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 8px;
  background: none; border: none; cursor: pointer; border-radius: 8px;
  margin-inline-start: auto;
  transition: background .2s;
}
.ds-nav__toggle:hover { background: var(--ds-bg); }
.ds-nav__bar {
  display: block; width: 22px; height: 2px;
  background: var(--ds-dark); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
  transform-origin: center;
}
/* Open state — bars become X */
.ds-nav--open .ds-nav__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ds-nav--open .ds-nav__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ds-nav--open .ds-nav__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RTL adjustments ── */
/* ── Responsive breakpoint ── */
@media (max-width: 900px) {
  .ds-nav__toggle { display: flex; }

  .ds-nav__menu {
    /* Hidden by default on mobile — shown when .ds-nav--open */
    display: none;
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,.99); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ds-border);
    padding: 12px 20px 20px;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
  }
  .ds-nav--open .ds-nav__menu { display: flex; }

  .ds-nav__links { flex-direction: column; gap: 2px; align-items: stretch; width: 100%; }
  .ds-nav__link  { padding: 11px 14px; border-radius: 10px; font-size: .9rem; }

  .ds-nav__actions {
    flex-direction: column; align-items: stretch; gap: 10px;
    padding-top: 14px; margin-top: 8px; margin-inline-start: 0;
    border-top: 1px solid var(--ds-border);
  }
  .ds-nav__lang  { justify-content: flex-start; }
  .ds-nav__cta   { justify-content: center !important; text-align: center; width: 100%; }
}

@media (max-width: 1024px) {
  .ds-nav__inner { padding: 0 48px; }
}
@media (max-width: 640px) {
  .ds-nav__logo-name { display: none; }
  .ds-nav__inner     { padding: 0 20px; }
}

/* =========================================================
   CUSTOM FOOTER
========================================================= */

/* Suppress Astra's footer on DS pages */
body.ds-page .site-footer,
body.ds-page #colophon,
body.ds-page .ast-small-footer,
body.ds-page .ast-footer-layout-1,
body.ds-page .footer-widget-area { display: none !important; }

/* ── Footer shell ── */
.ds-footer {
  background: #0f172a;
  color: #cbd5e1;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ds-footer.ds-rtl { font-family: var(--ds-font-ar); direction: rtl; text-align: right; }

/* ── Main body ── */
.ds-footer__body { padding: 64px 0; }

/* ── 4-column grid ── */
.ds-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}

/* ── About column — brand row ── */
.ds-footer__brand {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.ds-footer__brand-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: #0d9488; color: #fff;
  font-size: 1.1rem; font-weight: 800; flex-shrink: 0;
}
.ds-footer__brand-name { font-size: 1rem; font-weight: 700; color: #fff; }
.ds-footer__tagline    { font-size: .875rem; line-height: 1.7; color: #94a3b8; }

/* ── Social icons ── */
.ds-footer__social { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.ds-footer__social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; min-width: 40px;
  background: #1e293b; color: #94a3b8;
  border-radius: 10px; text-decoration: none;
  transition: background .18s, color .18s;
}
.ds-footer__social-btn svg { width: 18px; height: 18px; }
.ds-footer__social-btn:hover { background: #0d9488; color: #fff; }

/* ── Column headings ── */
.ds-footer__heading {
  font-size: .75rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: #fff; margin-bottom: 20px;
}

/* ── Generic link list ── */
.ds-footer__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.ds-footer__link {
  font-size: .875rem; color: #94a3b8; text-decoration: none;
  transition: color .15s;
}
.ds-footer__link:hover { color: #2dd4bf; }

/* ── Contact list ── */
.ds-footer__contact-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.ds-footer__contact-item { display: flex; align-items: flex-start; gap: 12px; }
.ds-footer__contact-icon {
  width: 18px; height: 18px; flex-shrink: 0; color: #2dd4bf; margin-top: 2px;
}
.ds-footer__contact-item span { font-size: .875rem; color: #94a3b8; }

/* ── Working hours ── */
.ds-footer__hours { margin-top: 24px; }
.ds-footer__hours-title { font-size: .8rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ds-footer__hours p { font-size: .875rem; color: #94a3b8; line-height: 1.7; }

/* ── Copyright bar ── */
.ds-footer__bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 24px 0; }
.ds-footer__copy   { text-align: center; font-size: .875rem; color: #64748b; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ds-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .ds-footer__col--about { grid-column: span 2; }
}
@media (max-width: 640px) {
  .ds-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .ds-footer__col--about { grid-column: span 1; }
  .ds-footer__body { padding: 48px 0; }
}
