/* Doctor profile — Passion Clinic palette: burgundy #51112b, cream #ffecda, gold #c89b5e */
.dr-page {
  --dr-burgundy: #51112b;
  --dr-cream: #ffecda;
  --dr-gold: #c89b5e;
  --dr-gold-light: #e8d4b4;
  --dr-burgundy-deep: #3a0c1f;
  --dr-text: #2a1a14;
  --dr-text-muted: rgba(42, 26, 20, 0.72);
  --dr-sans: var(--font-en, "Megante", sans-serif);
  --dr-radius-lg: 2.5rem;
  font-family: var(--dr-sans);
  background: var(--dr-cream);
  color: var(--dr-text);
  position: relative;
  overflow-x: clip;
}

.dr-page * {
  box-sizing: border-box;
}

html[lang="ar"] .dr-page {
  --dr-sans: var(--font-ar, "Neo Sans Arabic", sans-serif);
}

html[lang="en"] .dr-page {
  --dr-sans: var(--font-en, "Megante", sans-serif);
}

/* ── Progress (gold → burgundy) ── */
#dr-prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  z-index: 20050;
  pointer-events: none;
  background: linear-gradient(90deg, #e8c892 0%, var(--dr-gold) 35%, var(--dr-burgundy) 100%);
  box-shadow: 0 2px 8px rgba(81, 17, 43, 0.25);
}

/* ── Custom cursor (desktop hover) ── */
#dr-cur,
#dr-cur-dot {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  #dr-cur,
  #dr-cur-dot {
    display: block;
    position: fixed;
    pointer-events: none;
    z-index: 11990;
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  #dr-cur {
    width: 36px;
    height: 36px;
    margin: -18px 0 0 -18px;
    border: 1px solid rgba(200, 155, 94, 0.55);
    border-radius: 50%;
    mix-blend-mode: multiply;
  }
  #dr-cur.big {
    width: 52px;
    height: 52px;
    margin: -26px 0 0 -26px;
    border-color: rgba(81, 17, 43, 0.35);
  }
  #dr-cur.click {
    transform: scale(0.88);
  }
  #dr-cur-dot {
    width: 6px;
    height: 6px;
    margin: -3px 0 0 -3px;
    border-radius: 50%;
    background: var(--dr-burgundy);
  }
}

#dr-ptc {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

/* ── Hero ── */
.dr-hero {
  position: relative;
  z-index: 1;
  background: radial-gradient(120% 80% at 10% 0%, rgba(200, 155, 94, 0.18) 0%, transparent 45%),
    radial-gradient(90% 60% at 90% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 42%), var(--dr-burgundy);
  color: #fff;
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(3rem, 7vw, 5rem);
  border-radius: 0 0 var(--dr-radius-lg) var(--dr-radius-lg);
  box-shadow: 0 24px 60px rgba(81, 17, 43, 0.28);
}

.dr-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  border-radius: inherit;
  mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
  pointer-events: none;
}

.dr-hero-orb1,
.dr-hero-orb2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.35;
}
.dr-hero-orb1 {
  width: 280px;
  height: 280px;
  background: var(--dr-gold);
  top: -80px;
  right: -40px;
}
.dr-hero-orb2 {
  width: 220px;
  height: 220px;
  background: #fff;
  bottom: -60px;
  left: -30px;
  opacity: 0.12;
}

.dr-deco-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 236, 218, 0.35);
  animation: dr-float var(--dur, 5s) ease-in-out infinite;
  animation-delay: var(--del, 0s);
  pointer-events: none;
}
@keyframes dr-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.dr-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.dr-hero-brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(255, 236, 218, 0.18);
}

.dr-hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 236, 218, 0.97);
  border-radius: 0.85rem;
  border: 1px solid rgba(200, 155, 94, 0.45);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dr-hero-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}
.dr-hero-logo img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}
.dr-hero-logo--fallback {
  min-width: 120px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dr-burgundy);
}
.dr-hero-logo--fallback::after {
  content: "PASSION";
}

.dr-hero-crumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 236, 218, 0.88);
}
.dr-hero-crumb a {
  color: rgba(255, 236, 218, 0.88);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.dr-hero-crumb a:hover {
  color: #fff;
  border-bottom-color: var(--dr-gold);
}
.dr-hero-crumb [aria-current="page"] {
  color: var(--dr-gold-light);
  font-weight: 600;
}
.dr-crumb-sep {
  opacity: 0.55;
  user-select: none;
}

.dr-hero-main-row {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 38%);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.dr-hero-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Arabic / RTL: align hero copy, stats, CTAs, and job title to the right */
[dir="rtl"] .dr-hero-info,
.dr-hero-info.dr-hero-info--rtl {
  align-items: flex-end;
  text-align: right;
  direction: rtl;
}

[dir="rtl"] .dr-hero-stats,
.dr-hero-info.dr-hero-info--rtl .dr-hero-stats {
  justify-content: flex-end;
  width: 100%;
}

[dir="rtl"] .dr-hero-ctas,
.dr-hero-info.dr-hero-info--rtl .dr-hero-ctas {
  justify-content: flex-end;
  width: 100%;
}

[dir="rtl"] .dr-hero-desig,
.dr-hero-info.dr-hero-info--rtl .dr-hero-desig {
  justify-content: flex-end;
  width: 100%;
}

[dir="rtl"] .dr-hero-about,
.dr-hero-info.dr-hero-info--rtl .dr-hero-about {
  text-align: right;
  margin-inline: 0;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
}

[dir="rtl"] .dr-eyebrow,
.dr-hero-info.dr-hero-info--rtl .dr-eyebrow {
  display: flex;
  direction: rtl;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: right;
  box-sizing: border-box;
}

.dr-hero-info.dr-hero-info--rtl .dr-hero-desig--ar-subline {
  margin-top: 0.2rem;
}

.dr-hero-info.dr-hero-info--rtl .dr-eyebrow {
  text-transform: none;
  letter-spacing: 0.05em;
}

.dr-hero-info.dr-hero-info--rtl .dr-hero-desig {
  flex-wrap: wrap;
  text-align: right;
  align-self: stretch;
}

/* Arabic: name flush right (same edge as eyebrow / bio) */
[dir="rtl"] .dr-hero .dr-hero-name,
.dr-hero-info.dr-hero-info--rtl .dr-hero-name {
  width: 100%;
  text-align: right;
  align-self: flex-end;
}

@media (max-width: 991px) {
  .dr-hero-brand-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .dr-hero-crumb ol {
    justify-content: center;
  }
  .dr-hero-main-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  [dir="rtl"] .dr-hero-main-row {
    text-align: right;
  }
  .dr-hero-info {
    order: 2;
    align-items: center;
  }
  .dr-hero-img-col {
    order: 1;
  }
  .dr-hero-stats {
    justify-content: center;
  }
  .dr-hero-ctas {
    justify-content: center;
  }
  .dr-hero-about {
    margin-inline: auto;
  }

  [dir="rtl"] .dr-hero-info.dr-hero-info--rtl,
  [dir="rtl"] .dr-hero-info {
    direction: rtl;
    align-items: flex-end;
    text-align: right;
  }

  [dir="rtl"] .dr-hero-stats {
    justify-content: flex-end;
  }

  [dir="rtl"] .dr-hero-ctas {
    justify-content: flex-end;
  }

  [dir="rtl"] .dr-hero-desig {
    justify-content: flex-end;
  }

  [dir="rtl"] .dr-hero-about {
    text-align: right;
    margin-inline: 0;
    align-self: stretch;
    width: 100%;
    max-width: 100%;
  }

  [dir="rtl"] .dr-eyebrow {
    display: flex;
    direction: rtl;
    align-self: stretch;
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    text-align: right;
  }

  [dir="rtl"] .dr-hero .dr-hero-name,
  [dir="rtl"] .dr-hero-info.dr-hero-info--rtl .dr-hero-name {
    text-align: right;
  }
}

.dr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dr-gold-light);
  margin-bottom: 1rem;
}

/* Beat global h1 color from custom.css */
.dr-hero h1.dr-hero-name,
.dr-hero .dr-hero-name {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: var(--dr-cream);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(81, 17, 43, 0.35);
}
.dr-hero-name em {
  font-style: normal;
  font-weight: 500;
  color: rgba(255, 236, 218, 0.92);
}

.dr-hero-desig {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.75rem;
}
@media (max-width: 991px) {
  .dr-hero-desig {
    justify-content: center;
  }
}
.dr-hero-desig i {
  color: var(--dr-gold);
}

.dr-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin-bottom: 1.1rem;
}

.dr-hstat {
  min-width: 4.5rem;
  padding: 0.38rem 0.55rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(200, 155, 94, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.dr-hstat-val {
  font-size: 1.28rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.dr-hstat-key {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 236, 218, 0.65);
  margin-top: 0.12rem;
}

.dr-hero-about {
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.75rem;
}

.dr-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Buttons + gold shimmer hover ── */
.dr-btn-gold,
.dr-btn-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s ease,
    color 0.25s ease;
}

.dr-btn-gold {
  color: var(--dr-burgundy-deep);
  background: linear-gradient(120deg, #dfc18f 0%, var(--dr-gold) 40%, #dfc18f 80%);
  background-size: 220% auto;
  box-shadow: 0 8px 28px rgba(81, 17, 43, 0.28);
}
.dr-btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 40%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 60%,
    transparent 100%
  );
  background-size: 220% 100%;
  background-position: -180% 0;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.dr-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(81, 17, 43, 0.35);
  animation: dr-gold-shimmer-bg 2.2s ease infinite;
}
.dr-btn-gold:hover::after {
  opacity: 1;
  animation: dr-gold-shimmer-sweep 1.1s ease infinite;
}
@keyframes dr-gold-shimmer-bg {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes dr-gold-shimmer-sweep {
  0% {
    background-position: -180% 0;
  }
  100% {
    background-position: 180% 0;
  }
}

.dr-btn-ghost {
  color: #fff;
  background: rgba(255, 236, 218, 0.08);
  border: 1px solid rgba(200, 155, 94, 0.45);
}
.dr-btn-ghost:hover {
  background: rgba(255, 236, 218, 0.16);
  border-color: var(--dr-gold-light);
  color: #fff;
}

/* ── Hero image ── */
.dr-hero-img-col {
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 1.25rem;
}

.dr-img-frame {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 1.75rem;
  background: linear-gradient(145deg, rgba(255, 236, 218, 0.22), rgba(200, 155, 94, 0.12));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.dr-img-frame::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 1.35rem;
  border: 1px solid rgba(200, 155, 94, 0.45);
  pointer-events: none;
}
.dr-img-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top center;
  border-radius: 1.2rem;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.3));
}

.dr-exp-badge {
  position: absolute;
  bottom: 0.5rem;
  left: auto;
  right: -1rem;
  z-index: 5;
  min-width: 4.75rem;
  background: linear-gradient(145deg, var(--dr-gold), #a67c3d);
  color: var(--dr-burgundy-deep);
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  border: 2px solid rgba(255, 236, 218, 0.65);
}
.dr-exp-num {
  font-size: 1.75rem;
  line-height: 1;
}
.dr-exp-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .dr-exp-badge {
    bottom: 0.25rem;
    right: 4%;
    left: auto;
  }
  [dir="rtl"] .dr-exp-badge {
    right: auto;
    left: 4%;
  }
}

.dr-v-socials {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
@media (max-width: 991px) {
  .dr-v-socials {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 1rem;
  }
}

.dr-v-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(200, 155, 94, 0.35);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.dr-v-social-link:hover {
  background: var(--dr-gold);
  color: var(--dr-burgundy);
  transform: scale(1.06);
}

/* ── Sections (cream) ── */
.dr-sec {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.dr-sec--about .dr-about-body {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(200, 155, 94, 0.22);
  box-shadow: 0 12px 40px rgba(81, 17, 43, 0.05);
}

.dr-sec--about .dr-srr {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(81, 17, 43, 0.08);
  box-shadow: 0 12px 40px rgba(81, 17, 43, 0.06);
}

.dr-sec-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.dr-sec-head {
  margin-bottom: 2.5rem;
}

.dr-sec-over {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dr-gold);
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.dr-sec-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--dr-burgundy);
  font-weight: 700;
  margin: 0;
  line-height: 1.15;
}
.dr-sec-title em {
  font-style: normal;
  color: var(--dr-gold);
}

.dr-sec-rule {
  width: 56px;
  height: 3px;
  margin-top: 1.25rem;
  background: linear-gradient(90deg, var(--dr-gold), var(--dr-burgundy));
  border-radius: 2px;
}

/* ── Scroll reveal ── */
.dr-sr,
.dr-sl,
.dr-srr,
.dr-ss,
.dr-sec-rule {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.75s cubic-bezier(0.23, 1, 0.32, 1);
}
.dr-sl {
  transform: translateX(-32px);
}
.dr-srr {
  transform: translateX(32px);
}
.dr-ss {
  transform: translateY(36px) scale(0.98);
}
.dr-sr.in,
.dr-sl.in,
.dr-srr.in,
.dr-ss.in,
.dr-sec-rule.in {
  opacity: 1;
  transform: none;
}

/* ── About grid ── */
.dr-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
@media (max-width: 991px) {
  .dr-about-grid {
    grid-template-columns: 1fr;
  }
}

.dr-about-body h4,
.dr-personal-list h4 {
  font-size: 1.15rem;
  color: var(--dr-burgundy);
  margin: 0 0 1rem;
  font-weight: 700;
}

.dr-about-body p {
  color: var(--dr-text-muted);
  line-height: 1.8;
  margin: 0 0 1rem;
}

.dr-about-body .section-title ul,
.dr-about-body .section-title ol {
  margin: 0 0 1rem;
  padding-inline-start: 1.25rem;
  color: var(--dr-text-muted);
  line-height: 1.75;
}

.dr-about-body .section-title li {
  margin-bottom: 0.35rem;
}

.dr-personal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dr-personal-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(81, 17, 43, 0.1);
  color: var(--dr-text);
  font-size: 1.02rem;
  line-height: 1.55;
}
.dr-personal-item i {
  color: var(--dr-gold);
  margin-top: 0.2rem;
}

/* ── Card top gold accent line ── */
.dr-slot-card,
.dr-svc-card,
.dr-ba-pair,
.dr-soc-pill {
  position: relative;
}
.dr-slot-card::before,
.dr-svc-card::before,
.dr-ba-pair::before,
.dr-soc-pill::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 155, 94, 0.25) 15%,
    var(--dr-gold) 45%,
    var(--dr-burgundy) 70%,
    rgba(200, 155, 94, 0.35) 88%,
    transparent
  );
  pointer-events: none;
  z-index: 2;
}

/* ── Schedule ── */
.dr-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.dr-slot-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.35rem 1.25rem 1.25rem;
  box-shadow: 0 8px 32px rgba(81, 17, 43, 0.06);
  border: 1px solid rgba(81, 17, 43, 0.08);
  overflow: hidden;
  padding-top: 1.5rem;
}

.dr-slot-day {
  font-weight: 700;
  color: var(--dr-burgundy);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.dr-slot-times {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dr-slot-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--dr-cream);
  color: var(--dr-text);
  border: 1px solid rgba(200, 155, 94, 0.35);
}

.dr-book-strip {
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  border-radius: 1.25rem;
  background: var(--dr-burgundy);
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.dr-book-strip p {
  margin: 0;
  max-width: 36rem;
  line-height: 1.6;
}

/* ── Services grid ── */
.dr-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991px) {
  .dr-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .dr-services-grid {
    grid-template-columns: 1fr;
  }
}

.dr-svc-card {
  display: block;
  text-decoration: none;
  border-radius: 1.1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(81, 17, 43, 0.08);
  box-shadow: 0 10px 36px rgba(81, 17, 43, 0.07);
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
  padding-top: 3px;
}
.dr-svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(81, 17, 43, 0.12);
}

.dr-svc-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dr-svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.dr-svc-card:hover .dr-svc-img img {
  transform: scale(1.05);
}

.dr-svc-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.dr-svc-cat {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dr-gold);
  margin-bottom: 0.35rem;
}

.dr-svc-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dr-burgundy);
  line-height: 1.35;
}

.dr-svc-arrow {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dr-gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── YouTube ── */
.dr-yt-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 991px) {
  .dr-yt-grid {
    grid-template-columns: 1fr;
  }
}

.dr-yt-frame {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(200, 155, 94, 0.45);
  box-shadow: 0 12px 40px rgba(81, 17, 43, 0.1);
}
.dr-yt-frame iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  display: block;
}

.dr-yt-desc {
  color: var(--dr-text-muted);
  line-height: 1.75;
  margin: 0 0 1.25rem;
}

.dr-yt-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--dr-burgundy);
  font-weight: 600;
  text-decoration: none;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(81, 17, 43, 0.2);
  background: #fff;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.dr-yt-link:hover {
  background: var(--dr-cream);
  border-color: var(--dr-gold);
}

/* ── Before / after ── */
.dr-ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991px) {
  .dr-ba-grid {
    grid-template-columns: 1fr;
  }
}

.dr-ba-pair {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(81, 17, 43, 0.12);
  background: #fff;
  box-shadow: 0 10px 36px rgba(81, 17, 43, 0.06);
  padding-top: 3px;
}

.dr-ba-labels {
  display: flex;
}
.dr-ba-lbl {
  flex: 1;
  text-align: center;
  padding: 0.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.dr-ba-lbl.before {
  background: rgba(81, 17, 43, 0.08);
  color: var(--dr-text-muted);
}
.dr-ba-lbl.after {
  background: var(--dr-burgundy);
  color: var(--dr-gold-light);
}

.dr-ba-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.dr-ba-imgs img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.dr-ba-imgs img:first-child {
  border-inline-end: 1px solid rgba(200, 155, 94, 0.35);
}

/* ── Social pills ── */
.dr-social-showcase {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.dr-soc-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  background: #fff;
  border: 1px solid rgba(81, 17, 43, 0.1);
  color: var(--dr-burgundy);
  box-shadow: 0 6px 24px rgba(81, 17, 43, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.25s ease;
}
.dr-soc-pill:hover {
  border-color: var(--dr-gold);
  box-shadow: 0 10px 32px rgba(81, 17, 43, 0.1);
}
.dr-soc-pill i {
  color: var(--dr-gold);
}

/* ── Final CTA ── */
.dr-cta-strip {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
  background: linear-gradient(180deg, #fff6ea 0%, var(--dr-cream) 100%);
  border-top: 1px solid rgba(200, 155, 94, 0.25);
}

.dr-cta-glyph {
  color: var(--dr-gold);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.dr-cta-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--dr-burgundy);
  font-weight: 700;
  margin: 0 0 1rem;
}
.dr-cta-title em {
  font-style: normal;
  color: var(--dr-gold);
}

.dr-cta-sub {
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  color: var(--dr-text-muted);
  line-height: 1.75;
}

/* ── RTL tweaks ── */
[dir="rtl"] .dr-hero-inner {
  direction: rtl;
}
[dir="rtl"] .dr-hero-stats,
[dir="rtl"] .dr-hero-ctas,
[dir="rtl"] .dr-hero-desig {
  flex-direction: row-reverse;
}
[dir="rtl"] .dr-exp-badge {
  right: auto;
  left: -1rem;
}
[dir="rtl"] .dr-v-socials {
  right: auto;
  left: -8px;
}
[dir="rtl"] .dr-ba-imgs img:first-child {
  border-inline-end: none;
  border-inline-start: 1px solid rgba(200, 155, 94, 0.35);
}
[dir="rtl"] .dr-personal-item {
  flex-direction: row-reverse;
  text-align: right;
}
[dir="rtl"] .dr-book-strip {
  flex-direction: row-reverse;
}
[dir="rtl"] .dr-sec-rule {
  margin-right: 0;
  margin-left: auto;
}
[dir="rtl"] .dr-sec-head[style*="text-align:center"] .dr-sec-rule {
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════ VIP profile: visible header + polish ═══════════ */
body.page-doctor-vip {
  font-family: var(--dr-sans);
  padding-top: 4px;
}

body.page-doctor-vip header.main-header {
  position: relative;
  z-index: 13020;
}

body.page-doctor-vip .main-header .header-sticky,
body.page-doctor-vip .main-header .bg-section {
  background: #ffecda !important;
  border-bottom: 1px solid rgba(200, 155, 94, 0.38);
  box-shadow: 0 12px 40px rgba(81, 17, 43, 0.07);
}

body.page-doctor-vip header.main-header .header-sticky.active {
  background: rgba(255, 236, 218, 0.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 155, 94, 0.45);
}

body.page-doctor-vip .main-menu ul li a {
  color: #51112b !important;
}

body.page-doctor-vip .main-menu ul li a:hover,
body.page-doctor-vip .main-menu ul li a:focus {
  color: #c89b5e !important;
}

body.page-doctor-vip .navbar-toggle {
  border-color: rgba(81, 17, 43, 0.35);
}

body.page-doctor-vip .navbar-toggle span {
  background: #51112b !important;
}

body.page-doctor-vip .header-contact-btn .nav-link,
body.page-doctor-vip .header-contact-btn .dropdown-toggle {
  color: #51112b !important;
}

/* Contact CTA — burgundy + white (matches clinic palette; EN + AR) */
body.page-doctor-vip .main-header .header-login-btn {
  color: #fff !important;
  border: 1px solid rgba(81, 17, 43, 0.95) !important;
  background: linear-gradient(180deg, #621a32 0%, #51112b 55%, #3a0c1f 100%) !important;
  box-shadow: 0 8px 26px rgba(58, 12, 31, 0.35) !important;
}

body.page-doctor-vip .main-header .header-login-btn:hover {
  background: linear-gradient(180deg, #752040 0%, #621a32 100%) !important;
  color: #fff !important;
  border-color: #51112b !important;
  box-shadow: 0 12px 32px rgba(58, 12, 31, 0.42) !important;
}

body.page-doctor-vip .main-header .navbar-brand img[src*="clinic-site-logo"] {
  max-height: 150px !important;
  width: auto !important;
  max-width: min(320px, 42vw) !important;
}

body.page-doctor-vip .main-header .navbar-brand img {
  filter: none;
}

.dr-sec--services {
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

/* VIP: treatments grid — 3 per row (max 6 = 2 rows) */
.dr-services-grid--vip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.85rem);
  align-items: stretch;
}

@media (max-width: 1100px) {
  .dr-services-grid--vip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .dr-services-grid--vip {
    grid-template-columns: 1fr;
  }
}

.dr-svc-card--vip {
  border-radius: 1.2rem;
  box-shadow: 0 16px 48px rgba(81, 17, 43, 0.1);
}

.dr-svc-card--vip::before {
  height: 5px;
  opacity: 1;
  background: linear-gradient(
    90deg,
    rgba(200, 155, 94, 0.15) 0%,
    var(--dr-gold) 35%,
    var(--dr-burgundy) 65%,
    var(--dr-gold) 100%
  );
}

/* VIP: before / after — 3 pairs */
.dr-ba-grid--vip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.85rem);
}

@media (max-width: 991px) {
  .dr-ba-grid--vip {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }
}

.dr-ba-pair--vip {
  border-radius: 1.2rem;
  box-shadow: 0 20px 56px rgba(81, 17, 43, 0.12);
  border: 1px solid rgba(200, 155, 94, 0.35);
}

.dr-ba-pair--vip::before {
  height: 5px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--dr-gold) 40%,
    var(--dr-burgundy) 55%,
    var(--dr-gold) 75%,
    transparent
  );
}

.dr-ba-pair--vip .dr-ba-imgs img {
  height: min(320px, 42vw);
}

/* VIP: social cards with brand marks */
.dr-social-vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.35rem;
  max-width: 980px;
  margin: 0 auto;
}

.dr-soc-vip {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 1.85rem 1.35rem 1.65rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(81, 17, 43, 0.1);
  box-shadow: 0 14px 44px rgba(81, 17, 43, 0.08);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}

.dr-soc-vip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--dr-gold), var(--dr-burgundy), var(--dr-gold));
  z-index: 1;
}

.dr-soc-vip:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 155, 94, 0.55);
  box-shadow: 0 22px 56px rgba(81, 17, 43, 0.14);
}

.dr-soc-vip__mark {
  position: relative;
  z-index: 2;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  background: linear-gradient(145deg, #fff8ee, #ffecda);
  border: 1px solid rgba(200, 155, 94, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.dr-soc-vip__mark img {
  display: block;
  width: 36px;
  height: 36px;
}

.dr-soc-vip__label {
  position: relative;
  z-index: 2;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--dr-burgundy);
  letter-spacing: 0.02em;
}

.dr-soc-vip__hint {
  position: relative;
  z-index: 2;
  margin-top: 0.35rem;
  font-size: 0.86rem;
  color: var(--dr-text-muted);
  line-height: 1.45;
}

/* About readability */
.dr-sec--about .dr-about-body .section-title p,
.dr-sec--about .dr-about-body p {
  font-size: 1.05rem;
  line-height: 1.82;
  color: var(--dr-text);
}

.dr-sec--about .dr-about-body .section-title li {
  font-size: 1.02rem;
  line-height: 1.65;
}

.dr-sec--video {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    rgba(255, 250, 245, 0.98) 0%,
    rgba(255, 236, 218, 0.42) 38%,
    rgba(81, 17, 43, 0.07) 72%,
    rgba(255, 236, 218, 0.35) 100%
  );
}

.dr-sec--video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(81, 17, 43, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(81, 17, 43, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 35%, #000 20%, transparent 70%);
  opacity: 0.85;
}

.dr-sec--video .dr-sec-inner {
  position: relative;
  z-index: 1;
}

.dr-sec--social {
  background: rgba(255, 255, 255, 0.28);
}

.dr-sec--ba {
  border-block: 1px solid rgba(200, 155, 94, 0.22);
}

.dr-empty-state {
  text-align: center;
  padding: 2.75rem 1.75rem;
  border-radius: 1.35rem;
  border: 1px dashed rgba(200, 155, 94, 0.55);
  background: rgba(255, 255, 255, 0.78);
  color: var(--dr-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.dr-empty-state i {
  display: block;
  font-size: 2.25rem;
  color: var(--dr-gold);
  margin-bottom: 1rem;
}

.dr-empty-state--compact {
  max-width: 100%;
}

.dr-btn-gold--inline {
  margin-top: 1.25rem;
}

.dr-slot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(81, 17, 43, 0.11);
}

[dir="rtl"] .dr-hero-brand-row {
  flex-direction: row-reverse;
}

[dir="rtl"] .dr-hero-crumb ol {
  flex-direction: row-reverse;
}

/* ── Profile VIP: 6 highlight cards (delara-inspired, clinic palette) ── */
.dr-vip-six-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 991px) {
  .dr-vip-six-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .dr-vip-six-grid {
    grid-template-columns: 1fr;
  }
}

.dr-vip-metric {
  position: relative;
  border-radius: 1.25rem;
  padding: 1.35rem 1.25rem 1.4rem;
  background: linear-gradient(155deg, #fff 0%, rgba(255, 248, 240, 0.96) 100%);
  border: 1px solid rgba(200, 155, 94, 0.35);
  box-shadow: 0 14px 42px rgba(81, 17, 43, 0.08);
  overflow: hidden;
  min-height: 8.5rem;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s ease;
}
.dr-vip-metric::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, var(--dr-burgundy), var(--dr-gold), var(--dr-burgundy));
  opacity: 0.85;
}
.dr-vip-metric:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(81, 17, 43, 0.12);
}
.dr-vip-metric__icon {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(81, 17, 43, 0.06);
  color: var(--dr-gold);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}
.dr-vip-metric__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dr-burgundy);
  margin: 0 0 0.45rem;
  line-height: 1.3;
}
.dr-vip-metric__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--dr-text-muted);
}

/* Two columns under metrics */
.dr-profile-vip-columns {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.75rem, 3vw, 2.75rem);
  align-items: start;
}
@media (max-width: 991px) {
  .dr-profile-vip-columns {
    grid-template-columns: 1fr;
  }
}

.dr-vip-panel {
  border-radius: 1.35rem;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  background: #fff;
  border: 1px solid rgba(81, 17, 43, 0.08);
  box-shadow: 0 16px 48px rgba(81, 17, 43, 0.07);
}
.dr-vip-panel__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--dr-burgundy);
  margin: 0 0 1.1rem;
}
.dr-vip-panel__head i {
  color: var(--dr-gold);
}

.dr-spec-vip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.dr-spec-vip-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--dr-burgundy-deep) 0%, #4a1024 55%, #3a0c1f 100%);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(200, 155, 94, 0.28);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  font-size: 0.98rem;
  line-height: 1.55;
}
.dr-spec-vip-item i {
  color: var(--dr-gold);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* YouTube VIP row: text start, video end (LTR); mirrors in RTL */
.dr-yt-vip-shell {
  border-radius: 1.5rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 236, 218, 0.55) 100%);
  border: 1px solid rgba(200, 155, 94, 0.4);
  box-shadow: 0 18px 56px rgba(81, 17, 43, 0.1);
}
.dr-yt-vip-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: clamp(0.65rem, 1.8vw, 1.15rem);
  align-items: stretch;
}
@media (max-width: 991px) {
  .dr-yt-vip-row {
    grid-template-columns: 1fr;
  }
}

[dir="rtl"] .dr-yt-vip-row {
  direction: rtl;
}

.dr-yt-vip-text {
  border-radius: 1.25rem;
  padding: 1.35rem 1.4rem;
  background: #fff;
  border: 1px solid rgba(81, 17, 43, 0.08);
  box-shadow: 0 10px 36px rgba(81, 17, 43, 0.06);
}
.dr-yt-vip-text .dr-yt-desc {
  margin-bottom: 1rem;
}
.dr-yt-vip-video {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(200, 155, 94, 0.45);
  box-shadow: 0 14px 44px rgba(81, 17, 43, 0.12);
  background: #000;
  min-height: 12rem;
}
.dr-yt-vip-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  display: block;
}

/* YouTube section — premium layout */
.dr-yt-vip-shell--pro {
  position: relative;
  padding: clamp(0.65rem, 1.4vw, 1rem);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 252, 248, 0.88) 100%);
  border: 1px solid rgba(200, 155, 94, 0.38);
  box-shadow: 0 18px 48px rgba(81, 17, 43, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
}
.dr-yt-vip-shell--pro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, var(--dr-gold) 35%, var(--dr-burgundy) 50%, var(--dr-gold) 65%, transparent);
  opacity: 0.9;
  pointer-events: none;
}

.dr-yt-vip-shell--pro::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: radial-gradient(circle at 1px 1px, rgba(81, 17, 43, 0.09) 1px, transparent 0);
  background-size: 18px 18px;
}

.dr-yt-vip-shell--pro > .dr-yt-vip-row {
  position: relative;
  z-index: 1;
}
.dr-yt-vip-text--pro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(0.85rem, 1.5vw, 1.2rem);
  background: linear-gradient(180deg, #fff 0%, #fdfbf8 100%);
  border: 1px solid rgba(81, 17, 43, 0.07);
  box-shadow: 0 10px 36px rgba(81, 17, 43, 0.06);
}
.dr-yt-vip-text--pro .dr-yt-desc {
  margin-bottom: 1rem;
}
.dr-yt-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dr-burgundy);
  background: rgba(200, 155, 94, 0.22);
  border: 1px solid rgba(200, 155, 94, 0.45);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.dr-yt-side-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  color: var(--dr-burgundy);
  line-height: 1.25;
}
.dr-yt-lead {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dr-text);
  line-height: 1.55;
}
.dr-yt-bullets {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.dr-yt-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--dr-text-muted);
  line-height: 1.45;
}
.dr-yt-bullets i {
  color: var(--dr-gold);
  margin-top: 0.2rem;
  font-size: 0.75rem;
}
.dr-yt-link--pro {
  margin-top: 0.25rem;
  background: linear-gradient(120deg, #dfc18f 0%, var(--dr-gold) 45%, #dfc18f 90%) !important;
  border: 1px solid rgba(81, 17, 43, 0.12) !important;
  color: var(--dr-burgundy-deep) !important;
  font-weight: 700 !important;
  padding: 0.75rem 1.35rem !important;
}
.dr-yt-link--pro:hover {
  border-color: var(--dr-burgundy) !important;
  color: var(--dr-burgundy-deep) !important;
}
.dr-yt-vip-video--pro {
  position: relative;
  border-radius: 1.35rem;
  border: 1px solid rgba(200, 155, 94, 0.5);
  box-shadow: 0 20px 56px rgba(58, 12, 31, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  background: #0a0a0a;
  overflow: hidden;
}
.dr-yt-frame-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.12) 0%, transparent 42%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.dr-yt-vip-video--pro iframe {
  position: relative;
  z-index: 0;
}

/* RTL column: cross-start = physical right — use flex-start so badge, list, and CTA hug the right edge */
[dir="rtl"] .dr-yt-bullets {
  align-self: stretch;
  width: 100%;
}
[dir="rtl"] .dr-yt-bullets li {
  flex-direction: row;
  justify-content: flex-start;
  text-align: right;
}
[dir="rtl"] .dr-yt-side-title,
[dir="rtl"] .dr-yt-lead {
  text-align: right;
  width: 100%;
}
[dir="rtl"] .dr-yt-vip-text--pro {
  align-items: flex-start;
  text-align: right;
}

[dir="rtl"] .dr-yt-vip-text--pro .dr-yt-desc {
  text-align: right;
  width: 100%;
}

[dir="rtl"] .dr-yt-link--pro {
  align-self: flex-start;
}
[dir="rtl"] .dr-yt-badge {
  align-self: flex-start;
}

.dr-social-vip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.1rem;
  max-width: 920px;
  margin: 0 auto;
}
.dr-soc-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dr-soc-brand:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  color: #fff;
}
.dr-soc-brand img,
.dr-soc-brand .fab {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
  flex-shrink: 0;
}
.dr-soc-brand--ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.dr-soc-brand--fb {
  background: #1877f2;
}
.dr-soc-brand--x {
  background: #000;
}
.dr-soc-brand--yt {
  background: #ff0000;
}
.dr-soc-brand--tt {
  background: #000;
}
.dr-soc-brand--wa {
  background: #25d366;
}

.dr-hero-brand-row.dr-hero-brand-row--crumb {
  justify-content: flex-end;
  border-bottom-color: rgba(255, 236, 218, 0.14);
}
@media (max-width: 991px) {
  .dr-hero-brand-row.dr-hero-brand-row--crumb {
    justify-content: center;
  }
}

/* ── Profile: premium About card (no 6-tile row) ── */
.dr-profile-vip-columns--premium {
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}

.dr-about-premium {
  position: relative;
  border-radius: 1.45rem;
  padding: 0;
  background: linear-gradient(145deg, #fff 0%, #fff9f2 45%, #fff 100%);
  border: 1px solid rgba(200, 155, 94, 0.45);
  box-shadow: 0 24px 70px rgba(81, 17, 43, 0.11), 0 0 0 1px rgba(255, 255, 255, 0.75) inset,
    0 1px 0 rgba(200, 155, 94, 0.35) inset;
  overflow: hidden;
}

.dr-about-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 155, 94, 0.35) 18%,
    var(--dr-gold) 38%,
    var(--dr-burgundy) 50%,
    var(--dr-gold) 62%,
    rgba(200, 155, 94, 0.35) 82%,
    transparent 100%
  );
  opacity: 0.95;
}
.dr-about-premium__glow {
  display: none;
}
.dr-about-premium__inner {
  position: relative;
  z-index: 1;
  border-radius: 1.38rem;
  background: linear-gradient(178deg, #fffefc 0%, #fff 32%, #faf7f2 100%);
  padding: clamp(1.65rem, 3.2vw, 2.55rem);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), inset 0 0 80px rgba(200, 155, 94, 0.04);
}
.dr-about-premium__kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.84rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dr-gold);
  font-weight: 700;
  margin-bottom: 1.1rem;
  text-align: center;
}
.dr-about-premium__kicker > span:not(.dr-about-premium__kline) {
  text-align: center;
}
.dr-about-premium__kline {
  flex: 1;
  max-width: 4rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 155, 94, 0.65), transparent);
}
.dr-about-premium__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: var(--dr-burgundy);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  line-height: 1.25;
  justify-content: flex-start;
  text-align: left;
}
[dir="rtl"] .dr-about-premium__title,
.dr-about-premium--rtl .dr-about-premium__title {
  flex-direction: row-reverse;
  justify-content: flex-end;
  text-align: right;
  width: 100%;
  padding-bottom: 0.9rem;
  margin-bottom: 1.35rem;
  border-bottom: 1px solid rgba(200, 155, 94, 0.3);
  gap: 0.75rem;
}
.dr-about-premium__title i {
  color: var(--dr-gold);
  font-size: 1.15rem;
}
.dr-about-premium__scroll {
  max-height: min(52vh, 28rem);
  overflow-y: auto;
  padding-inline-end: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 155, 94, 0.55) transparent;
}
.dr-about-premium__body {
  font-size: 1.04rem;
  line-height: 1.85;
  color: var(--dr-text);
  text-align: start;
}
.dr-about-premium__body p {
  margin-bottom: 1rem;
}
.dr-about-premium__body--compact {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--dr-text-muted);
}
.dr-about-premium__divider {
  height: 1px;
  margin: 1.5rem 0 1.1rem;
  background: linear-gradient(90deg, transparent, rgba(81, 17, 43, 0.12), transparent);
}
.dr-about-premium__subhead {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dr-burgundy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
[dir="rtl"] .dr-about-premium__subhead {
  flex-direction: row-reverse;
  justify-content: flex-end;
  width: 100%;
  text-align: right;
  padding: 0.4rem 0 0.55rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px dashed rgba(200, 155, 94, 0.42);
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}
.dr-about-premium__subhead i {
  color: var(--dr-gold);
}

/* Arabic / RTL: VIP about card — inner flow + lists flush right */
.dr-about-premium--rtl .dr-about-premium__inner,
html[dir="rtl"] .dr-about-premium .dr-about-premium__inner {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .dr-about-premium__kicker,
.dr-about-premium--rtl .dr-about-premium__kicker {
  direction: rtl;
  text-transform: none;
  letter-spacing: 0.1em;
  justify-content: center;
}

html[dir="rtl"] .dr-about-premium__kline,
.dr-about-premium--rtl .dr-about-premium__kline {
  max-width: 5.5rem;
}

html[dir="rtl"] .dr-about-premium__scroll,
.dr-about-premium--rtl .dr-about-premium__scroll {
  padding-inline-end: 0;
  padding-inline-start: 0.55rem;
  scrollbar-color: rgba(200, 155, 94, 0.5) rgba(81, 17, 43, 0.06);
}

html[dir="rtl"] .dr-about-premium__body,
html[dir="rtl"] .dr-about-premium__body p,
html[dir="rtl"] .dr-about-premium__body li,
html[dir="rtl"] .dr-about-premium__body span,
.dr-about-premium--rtl .dr-about-premium__body,
.dr-about-premium--rtl .dr-about-premium__body p,
.dr-about-premium--rtl .dr-about-premium__body li,
.dr-about-premium--rtl .dr-about-premium__body span {
  text-align: right;
  direction: rtl;
}

html[dir="rtl"] .dr-about-premium__body ul,
html[dir="rtl"] .dr-about-premium__body ol,
.dr-about-premium--rtl .dr-about-premium__body ul,
.dr-about-premium--rtl .dr-about-premium__body ol {
  margin: 0.35rem 0 1.1rem;
  padding-inline-start: 0;
  padding-inline-end: 1.35rem;
  list-style-position: outside;
}

html[dir="rtl"] .dr-about-premium__divider,
.dr-about-premium--rtl .dr-about-premium__divider {
  margin: 1.65rem 0 1.25rem;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 155, 94, 0.55) 22%,
    rgba(81, 17, 43, 0.14) 50%,
    rgba(200, 155, 94, 0.55) 78%,
    transparent
  );
}

html[dir="rtl"] .dr-about-premium__body--compact,
.dr-about-premium--rtl .dr-about-premium__body--compact {
  text-align: right;
  line-height: 1.82;
}

html[dir="rtl"] .dr-about-premium__body--compact li,
.dr-about-premium--rtl .dr-about-premium__body--compact li {
  margin-bottom: 0.4rem;
}

html[dir="rtl"] .dr-about-premium .section-title,
.dr-about-premium--rtl .section-title {
  text-align: right;
}

.dr-spec-premium {
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
  border: 1px solid rgba(200, 155, 94, 0.35);
  box-shadow: 0 22px 60px rgba(81, 17, 43, 0.1);
}

/* ── Before / After: luxury pair cards ── */
.dr-ba-pair--lux {
  position: relative;
  border-radius: 1.35rem;
  border: none;
  background: linear-gradient(145deg, #fff 0%, #faf6f2 100%);
  box-shadow: 0 22px 64px rgba(58, 12, 31, 0.14), 0 0 0 1px rgba(200, 155, 94, 0.22);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}
.dr-ba-pair--lux:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(58, 12, 31, 0.18), 0 0 0 1px rgba(200, 155, 94, 0.35);
}
.dr-ba-pair--lux::before {
  height: 4px;
  opacity: 1;
}
.dr-ba-pair--lux .dr-ba-labels {
  position: relative;
  z-index: 2;
}
.dr-ba-pair--lux .dr-ba-lbl {
  padding: 0.85rem 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
}
.dr-ba-pair--lux .dr-ba-lbl.before {
  background: linear-gradient(180deg, #f3ebe4 0%, #e8dfd6 100%);
  color: var(--dr-burgundy);
  font-weight: 800;
}
.dr-ba-pair--lux .dr-ba-lbl.after {
  background: linear-gradient(135deg, var(--dr-burgundy-deep) 0%, var(--dr-burgundy) 55%, #3a0c1f 100%);
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
.dr-ba-pair--lux .dr-ba-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.55);
}
.dr-ba-pair--lux .dr-ba-imgs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(58, 12, 31, 0.12);
  display: block;
}
.dr-ba-pair--lux .dr-ba-imgs img:first-child {
  border-inline-end: none;
}
@media (max-width: 991px) {
  .dr-ba-pair--lux .dr-ba-imgs img {
    max-height: 180px;
  }
}
