/* ═══════════════════════════════════════════════════
   style.css — استایل مشترک کلینیک آوای محمدی
   استفاده در: index.html | services.html | about.html | contact.html
   ═══════════════════════════════════════════════════ */

/* ── متغیرها ── */
:root {
  --navy: #071E3D;
  --blue: #0A4D8C;
  --blue-mid: #1565C0;
  --azure: #1E88E5;
  --sky: #64B5F6;
  --gold: #C8973A;
  --gold-light: #F0C040;
  --white: #fff;
  --off-white: #F0F6FF;
  --gray: #E8EEF8;
  --text: #0D1F3C;
  --muted: #546E8A;
  --r: 20px;
  --r-xl: 32px;
  --shadow: 0 8px 40px rgba(7,30,61,.13);
  --shadow-lg: 0 20px 60px rgba(7,30,61,.22);
  --tr: .45s cubic-bezier(.25,.8,.25,1);
}

/* ── ریست پایه ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Vazirmatn', Tahoma, sans-serif;
  background: var(--white);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── کرسر سفارشی ── */
#cur {
  position: fixed; width: 14px; height: 14px;
  background: var(--azure); border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transition: transform .15s ease, background .3s;
  mix-blend-mode: multiply;
}
#cur-r {
  position: fixed; width: 38px; height: 38px;
  border: 2px solid rgba(30,136,229,.4); border-radius: 50%;
  pointer-events: none; z-index: 99998;
  transition: all .25s ease;
}

/* ── اسکرول‌بار ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #EEF3FB; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--azure), var(--blue));
  border-radius: 10px;
}

/* ══════════════════════════
   هدر
══════════════════════════ */
header {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  padding: 0 5%;
  background: rgba(7,30,61,.9);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(100,181,246,.18);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
  transition: all .4s ease;
}
.h-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; height: 72px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-ic {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--azure), var(--blue));
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 20px; color: #fff;
  box-shadow: 0 4px 16px rgba(30,136,229,.4);
}
.logo-tx strong { display: block; font-size: 15px; font-weight: 800; color: #fff; }
.logo-tx span   { font-size: 11px; color: var(--sky); font-weight: 400; }

nav { display: flex; align-items: center; gap: 4px; }
nav a {
  color: rgba(255,255,255,.82); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 10px;
  transition: all .3s ease; position: relative;
}
nav a::after {
  content: ''; position: absolute;
  bottom: 4px; right: 14px; left: 14px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s ease;
}
nav a:hover               { color: #fff; background: rgba(100,181,246,.14); }
nav a:hover::after        { transform: scaleX(1); }
nav a.active              { color: #fff; background: rgba(30,136,229,.2); }
nav a.active::after       { transform: scaleX(1); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important; font-weight: 700; font-size: 13px;
  padding: 9px 18px; border-radius: 50px;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  transition: all .35s ease;
}
.btn-wa::after     { display: none !important; }
.btn-wa:hover      { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.6) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: all .3s ease;
}

/* ══════════════════════════
   منوی موبایل
══════════════════════════ */
.mob-menu {
  position: fixed; top: 72px; right: 0; left: 0;
  background: rgba(7,30,61,.97); backdrop-filter: blur(20px);
  padding: 20px 5%; display: none; flex-direction: column;
  gap: 6px; z-index: 999;
  border-bottom: 1px solid rgba(100,181,246,.15);
}
.mob-menu.open  { display: flex; }
.mob-menu a {
  color: rgba(255,255,255,.8); font-size: 15px; font-weight: 600;
  padding: 12px 16px; border-radius: 10px; transition: all .3s ease;
}
.mob-menu a:hover { background: rgba(100,181,246,.14); color: #fff; }

/* ══════════════════════════
   واتساپ شناور
══════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 5000;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  transition: all .35s ease;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 10px 36px rgba(37,211,102,.7); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.5); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,.8), 0 0 0 12px rgba(37,211,102,.12); }
}

/* ══════════════════════════
   هیرو صفحه‌های داخلی
══════════════════════════ */
.page-hero {
  padding: 140px 5% 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #0B3A6E 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(100,181,246,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,181,246,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.ph-in {
  max-width: 1280px; margin: 0 auto;
  position: relative; z-index: 1; text-align: center;
}
.ph-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(100,181,246,.15); border: 1px solid rgba(100,181,246,.3);
  color: var(--sky); font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 20px;
}
.ph-in h1 {
  font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900;
  color: #fff; line-height: 1.4; margin-bottom: 18px;
}
.ph-in h1 span {
  background: linear-gradient(90deg, var(--sky), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ph-in p {
  font-size: 16px; line-height: 2; color: rgba(255,255,255,.75);
  max-width: 640px; margin: 0 auto;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 28px; font-size: 13px; color: rgba(255,255,255,.5);
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .3s; }
.breadcrumb a:hover { color: var(--sky); }
.breadcrumb i { font-size: 10px; }

/* ══════════════════════════
   عناوین مشترک
══════════════════════════ */
.sec-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(30,136,229,.1); color: var(--azure);
  font-size: 13px; font-weight: 700; padding: 7px 16px;
  border-radius: 50px; border: 1px solid rgba(30,136,229,.2);
  margin-bottom: 14px;
}
.sec-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 900;
  color: var(--navy); line-height: 1.45; letter-spacing: -.02em;
  margin-bottom: 14px;
}
.sec-title span {
  background: linear-gradient(90deg, var(--azure), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec-desc { font-size: 15px; line-height: 2; color: var(--muted); max-width: 580px; }
.sec-line {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--azure), var(--gold));
  border-radius: 4px; margin-top: 14px;
}

/* ══════════════════════════
   دکمه‌های مشترک
══════════════════════════ */
.btn-primary {
  background: linear-gradient(135deg, var(--azure), var(--blue-mid));
  color: #fff; font-weight: 700; font-size: 15px;
  padding: 15px 34px; border-radius: 50px; border: none; cursor: pointer;
  box-shadow: 0 6px 26px rgba(30,136,229,.4);
  transition: all var(--tr);
  font-family: 'Vazirmatn', sans-serif;
  display: inline-flex; align-items: center; gap: 8px;
  position: relative; overflow: hidden;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(30,136,229,.55); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--azure);
  font-weight: 700; font-size: 15px; padding: 13px 32px;
  border-radius: 50px; border: 2px solid var(--azure);
  cursor: pointer; font-family: 'Vazirmatn', sans-serif;
  transition: all .35s ease;
}
.btn-outline:hover { background: var(--azure); color: #fff; box-shadow: 0 8px 28px rgba(30,136,229,.35); }

/* ══════════════════════════
   CTA بخش
══════════════════════════ */
.cta-sec {
  padding: 90px 5%;
  background: linear-gradient(135deg, var(--azure), var(--blue), var(--navy));
  position: relative; overflow: hidden;
}
.cta-sec::before {
  content: ''; position: absolute;
  top: -50%; right: -10%; width: 600px; height: 600px;
  border: 1px solid rgba(255,255,255,.07); border-radius: 50%;
}
.cta-in { max-width: 860px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-in h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: #fff; margin-bottom: 16px; }
.cta-in p  { font-size: 16px; color: rgba(255,255,255,.8); line-height: 2; margin-bottom: 36px; }
.cta-btns  { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }

.btn-cta-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; font-weight: 800; font-size: 16px;
  padding: 16px 38px; border-radius: 50px; border: none; cursor: pointer;
  font-family: 'Vazirmatn', sans-serif;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 28px rgba(37,211,102,.45); transition: all var(--tr);
}
.btn-cta-wa:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(37,211,102,.65); }

.btn-cta-call,
.btn-cta-outline {
  background: rgba(255,255,255,.12); color: #fff;
  font-weight: 700; font-size: 15px;
  padding: 16px 32px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,.4); cursor: pointer;
  font-family: 'Vazirmatn', sans-serif;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .35s ease;
}
.btn-cta-call:hover,
.btn-cta-outline:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.7); }

/* ══════════════════════════
   فوتر
══════════════════════════ */
footer {
  background: linear-gradient(180deg, var(--navy), #040E1E);
  padding: 70px 5% 0; position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(100,181,246,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.ft-in {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px; position: relative; z-index: 1;
}
.ft-brand p { font-size: 14px; line-height: 2; color: rgba(255,255,255,.5); margin-top: 16px; }
.ft-social   { display: flex; gap: 10px; margin-top: 18px; }
.ft-soc-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 15px;
  transition: all .3s ease; cursor: pointer;
}
.ft-soc-btn:hover     { background: var(--azure); border-color: var(--azure); color: #fff; transform: translateY(-3px); }
.ft-soc-btn.wa:hover  { background: #25D366; border-color: #25D366; }

.ft-col h4 {
  font-size: 14px; font-weight: 800; color: #fff;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,.08);
}
.ft-col ul { display: flex; flex-direction: column; gap: 9px; }
.ft-col ul li a {
  font-size: 13px; color: rgba(255,255,255,.5);
  transition: color .3s ease; display: flex; align-items: center; gap: 6px;
}
.ft-col ul li a:hover { color: var(--sky); }
.ft-col ul li a i { font-size: 10px; }

.ft-ct      { display: flex; flex-direction: column; gap: 12px; }
.ft-ct-item { display: flex; align-items: flex-start; gap: 10px; }
.ft-ct-item i    { color: var(--azure); margin-top: 3px; flex-shrink: 0; font-size: 14px; }
.ft-ct-item span { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; }

.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0; margin-top: 50px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
}
.ft-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
.ft-bottom a { color: rgba(255,255,255,.45); font-size: 12px; transition: color .3s; }
.ft-bottom a:hover { color: var(--gold); }

/* ══════════════════════════
   انیمیشن‌های مشترک
══════════════════════════ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

.reveal   { opacity: 0; transform: translateY(36px);  transition: opacity .7s ease, transform .7s ease; }
.reveal-l { opacity: 0; transform: translateX(-36px); transition: opacity .7s ease, transform .7s ease; }
.reveal-r { opacity: 0; transform: translateX(36px);  transition: opacity .7s ease, transform .7s ease; }
.reveal.visible,
.reveal-l.visible,
.reveal-r.visible { opacity: 1; transform: translate(0); }

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ══════════════════════════
   آمار مشترک
══════════════════════════ */
.stats,
.stats-sec {
  padding: 70px 5%; background: #fff;
  border-top: 1px solid var(--gray); border-bottom: 1px solid var(--gray);
}
.stats-in {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-box {
  text-align: center; padding: 36px 20px;
  border-left: 1px solid var(--gray); transition: background .3s;
}
.stat-box:last-child { border-left: none; }
.stat-box:hover { background: var(--off-white); }
.stat-box .snum {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  background: linear-gradient(135deg, var(--azure), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block; line-height: 1; margin-bottom: 10px;
}
.stat-box .slbl { font-size: 14px; color: var(--muted); font-weight: 600; }

/* ══════════════════════════
   ریسپانسیو مشترک
══════════════════════════ */
@media (max-width: 1024px) {
  .ft-in { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  nav              { display: none; }
  .hamburger       { display: flex; }
  .stats-in        { grid-template-columns: repeat(2,1fr); }
  .stat-box        { border-left: none; border-bottom: 1px solid var(--gray); }
  .ft-in           { grid-template-columns: 1fr; gap: 28px; }
  .ft-bottom       { flex-direction: column; gap: 10px; text-align: center; }
  .wa-float        { bottom: 20px; left: 20px; width: 52px; height: 52px; font-size: 22px; }
}
/* ============================================================
   DOCTORS PAGE — EXCLUSIVE STYLES  |  doctors-styles.css
   این فایل را به انتهای style.css اصلی پروژه اضافه کنید
   ============================================================ */

/* ── Page Hero ── */
.page-hero {
  min-height: 62vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 55%, #0B3A6E 100%);
  display: flex;
  align-items: center;
  padding: 130px 5% 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 5% 95%, rgba(30,136,229,.18) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 95% 5%,  rgba(200,151,58,.12) 0%, transparent 55%);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(100,181,246,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,181,246,.045) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.page-hero-lines span {
  position: absolute;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(200,151,58,.18), transparent);
  height: 1px;
  width: 60%;
  transform: rotate(-25deg);
}
.page-hero-lines span:nth-child(1) { top: 20%; right: -10%; width: 70%; }
.page-hero-lines span:nth-child(2) { top: 55%; right: 10%;  width: 50%; opacity: .6; }
.page-hero-lines span:nth-child(3) { top: 80%; right: -5%;  width: 40%; opacity: .35; }

.page-hero-in {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  animation: fadeDown .7s ease both;
}
.page-hero-breadcrumb a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .25s;
}
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb i      { font-size: 9px; color: rgba(255,255,255,.3); }
.page-hero-breadcrumb span   { color: var(--gold); font-weight: 600; }

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,151,58,.15);
  border: 1px solid rgba(200,151,58,.35);
  color: #e8b96a;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  animation: fadeDown .8s ease .1s both;
}
.page-hero-tag i { color: var(--gold); }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
  letter-spacing: -.02em;
  animation: fadeDown .8s ease .2s both;
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #64B5F6, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-desc {
  font-size: 16px;
  line-height: 2;
  color: rgba(255,255,255,.7);
  max-width: 580px;
  animation: fadeDown .8s ease .32s both;
}
.page-hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeDown .8s ease .46s both;
  flex-wrap: wrap;
}
.ph-stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  background: linear-gradient(90deg, #fff, #64B5F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}
.ph-stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}
.page-hero-divider {
  height: 5px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--azure) 50%, transparent 100%);
}

/* ── Doctors Section ── */
.doctors-sec {
  padding: 100px 5% 110px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.doctors-sec::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -120px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(30,136,229,.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.doctors-sec::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(200,151,58,.05), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.doctors-in {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.doctors-head {
  text-align: center;
  margin-bottom: 68px;
}
.doctors-head .sec-label { margin: 0 auto 18px; }

/* ── گرید کارت‌ها ── */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ── کارت پزشک ── */
.dr-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(7,30,61,.07);
  border: 1px solid rgba(30,136,229,.08);
  transition: transform .4s cubic-bezier(.23,1,.32,1),
              box-shadow .4s ease,
              border-color .4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: default;
}
.dr-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 64px rgba(7,30,61,.14);
  border-color: rgba(200,151,58,.35);
}

/* نوار رنگی بالای کارت */
.dr-card-top-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--azure));
  transition: background .4s ease;
}
.dr-card:hover .dr-card-top-bar {
  background: linear-gradient(90deg, var(--gold), var(--azure));
}

/* بخش عکس */
.dr-photo-wrap {
  position: relative;
  padding: 28px 28px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dr-photo-ring {
  width: 114px;
  height: 114px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--azure));
  padding: 3px;
  transition: transform .4s ease, box-shadow .4s ease;
  position: relative;
  flex-shrink: 0;
}
.dr-card:hover .dr-photo-ring {
  transform: scale(1.06);
  box-shadow: 0 0 0 8px rgba(200,151,58,.15);
}
.dr-photo-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--off-white);
  display: block;
  border: 3px solid #fff;
}
.dr-photo-placeholder {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: rgba(255,255,255,.7);
  border: 3px solid #fff;
}

/* بج تخصص */
.dr-spec-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--navy), var(--blue));
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  white-space: nowrap;
  border: 2px solid #fff;
  box-shadow: 0 4px 14px rgba(7,30,61,.2);
  transition: background .4s ease;
  max-width: 160px;
  text-align: center;
  line-height: 1.4;
}
.dr-card:hover .dr-spec-badge {
  background: linear-gradient(90deg, var(--gold), #b07e28);
}

/* بدنه متنی */
.dr-card-body {
  padding: 28px 22px 22px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dr-name {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 7px;
  line-height: 1.55;
}
.dr-specialty {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--azure);
  margin-bottom: 14px;
  line-height: 1.6;
}

/* بیوگرافی */
.dr-bio-wrap {
  background: var(--off-white);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(30,136,229,.08);
  transition: border-color .3s ease;
  flex: 1;
}
.dr-card:hover .dr-bio-wrap {
  border-color: rgba(200,151,58,.2);
}
.dr-bio-label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.dr-bio-label i { font-size: 9px; }
.dr-bio {
  font-size: 12.5px;
  line-height: 1.95;
  color: #5a6a80;
  min-height: 58px;
}
.dr-bio.placeholder {
  color: #b0bec5;
  font-style: italic;
}

/* فوتر کارت */
.dr-card-footer {
  border-top: 1px solid rgba(30,136,229,.08);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .3s ease;
}
.dr-card:hover .dr-card-footer {
  background: rgba(200,151,58,.03);
}
.dr-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: all .3s ease;
  font-family: 'Vazirmatn', sans-serif;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.dr-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  color: #fff;
}
.dr-wa-btn i { font-size: 13px; }

/* ── CTA بخش انتها ── */
.dr-cta {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}
.dr-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.dr-cta-in {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.dr-cta-in .sec-label {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  color: #64B5F6;
  margin: 0 auto 22px;
}
.dr-cta-in h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}
.dr-cta-in p {
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,.68);
  margin-bottom: 32px;
}
.dr-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── ریسپانسیو ── */
@media (max-width: 1200px) {
  .doctors-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .doctors-grid     { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .page-hero-stats  { gap: 24px; }
}
@media (max-width: 520px) {
  .doctors-grid { grid-template-columns: 1fr; }
  .page-hero    { padding: 110px 5% 60px; }
}
