/* Featured Doctors / Doctor Discovery Section - V14.1 Card Upgrade (based on V13) */
.vr-featured-doctors{
  padding:104px 0 108px;
  background:
    radial-gradient(circle at 10% 10%,rgba(123,77,255,.08),transparent 34%),
    radial-gradient(circle at 88% 6%,rgba(46,214,255,.10),transparent 35%),
    linear-gradient(180deg,#fff 0%,#F8FAFC 100%);
  overflow:hidden;
}
.vr-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:32px;
  margin-bottom:32px;
}
.vr-section-head--doctors{align-items:flex-start}
.vr-section-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--primary);
  background:rgba(123,77,255,.08);
  border:1px solid rgba(123,77,255,.13);
  border-radius:999px;
  padding:8px 12px;
  font-size:13px;
  font-weight:500;
  margin-bottom:14px;
}
.vr-section-head h2{
  margin:0;
  font-size:clamp(32px,3.2vw,50px);
  line-height:1.06;
  letter-spacing:-.05em;
  color:#0B1220;
}
.vr-section-head p{
  margin:14px 0 0;
  max-width:640px;
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
  font-weight:400;
}
.vr-doctor-proof{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  min-width:250px;
}
.vr-doctor-proof span{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 14px;
  border:1px solid rgba(229,231,235,.82);
  background:rgba(255,255,255,.78);
  box-shadow:0 12px 34px rgba(17,24,39,.05);
  border-radius:18px;
  color:#667085;
  font-size:13px;
  font-weight:400;
}
.vr-doctor-proof strong{
  color:#111827;
  font-weight:700;
}
.vr-doctor-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:26px;
}
.vr-section-head__action{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--primary);
  background:#fff;
  border:1px solid rgba(123,77,255,.13);
  font-weight:600;
  white-space:nowrap;
  padding:12px 16px;
  border-radius:15px;
  box-shadow:0 10px 28px rgba(17,24,39,.05);
  transition:background .22s ease,transform .22s ease,border-color .22s ease;
}
.vr-section-head__action:hover{
  background:rgba(123,77,255,.08);
  border-color:rgba(123,77,255,.26);
  transform:translateY(-2px);
}
.vr-doctor-tabs{
  display:flex;
  gap:10px;
  align-items:center;
  overflow:auto;
  scrollbar-width:none;
  padding:2px 2px 3px;
  margin-bottom:34px;
}
.vr-doctor-tabs::-webkit-scrollbar{display:none}
.vr-tab{
  border:1px solid rgba(229,231,235,.92);
  background:rgba(255,255,255,.86);
  color:#374151;
  border-radius:999px;
  padding:12px 17px;
  font-size:14px;
  font-weight:500;
  white-space:nowrap;
  transition:background .22s ease,color .22s ease,border-color .22s ease,transform .22s ease,box-shadow .22s ease;
}
.vr-tab:hover{
  border-color:rgba(123,77,255,.34);
  color:var(--primary);
  transform:translateY(-1px);
}
.vr-tab.is-active{
  background:var(--primary);
  color:#fff;
  border-color:var(--primary);
  box-shadow:0 14px 30px rgba(123,77,255,.20);
}
.vr-doctor-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  align-items:stretch;
}
.vr-doctor-card{
  display:flex;
  flex-direction:column;
  background:rgba(255,255,255,.98);
  border:1px solid rgba(229,231,235,.95);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 12px 34px rgba(17,24,39,.065);
  transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease;
  min-width:0;
  position:relative;
}
.vr-doctor-card:hover{
  transform:translateY(-7px);
  border-color:rgba(123,77,255,.46);
  box-shadow:0 26px 64px rgba(17,24,39,.13);
}
.vr-doctor-card__media{
  position:relative;
  aspect-ratio:4/3.65;
  overflow:hidden;
  background:#EEF2FF;
}
.vr-doctor-card__media:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(8,7,28,0) 46%,rgba(8,7,28,.34) 100%);
  pointer-events:none;
}
.vr-doctor-card__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}
.vr-doctor-card:hover .vr-doctor-card__media img{transform:scale(1.045)}
.vr-verified-badge,
.vr-featured-badge{
  position:absolute;
  top:14px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:7px;
  border-radius:999px;
  padding:8px 10px;
  font-size:12px;
  font-weight:600;
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}
.vr-verified-badge{
  left:14px;
  color:#fff;
  background:rgba(123,77,255,.93);
  box-shadow:0 10px 26px rgba(123,77,255,.20);
}
.vr-featured-badge{
  right:14px;
  color:#075E4A;
  background:rgba(255,255,255,.90);
  border:1px solid rgba(255,255,255,.72);
}
.vr-featured-badge i{color:var(--accent)}
.vr-card-overlay-link{
  position:absolute;
  z-index:3;
  left:14px;
  right:14px;
  bottom:14px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:14px;
  background:rgba(255,255,255,.92);
  color:#111827;
  font-size:13px;
  font-weight:600;
  transform:translateY(10px);
  opacity:0;
  transition:opacity .25s ease,transform .25s ease,background .25s ease;
}
.vr-doctor-card:hover .vr-card-overlay-link{
  opacity:1;
  transform:translateY(0);
}
.vr-card-overlay-link:hover{background:#fff;color:var(--primary)}
.vr-doctor-card__body{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:14px;
  flex:1;
}
.vr-doctor-card__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
}
.vr-doctor-card h3{
  margin:0 0 6px;
  font-size:19px;
  line-height:1.18;
  letter-spacing:-.027em;
  color:#111827;
  font-weight:700;
}
.vr-doctor-card__specialty{
  margin:0;
  color:var(--muted);
  font-size:13.5px;
  font-weight:400;
  line-height:1.45;
}
.vr-rating{
  display:inline-flex;
  align-items:center;
  gap:5px;
  color:#111827;
  font-size:13px;
  font-weight:600;
  white-space:nowrap;
  background:#FFF8E1;
  border:1px solid rgba(245,179,1,.18);
  border-radius:999px;
  padding:6px 8px;
}
.vr-rating i{color:#F5B301}
.vr-doctor-card__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px 12px;
  color:#4B5563;
  font-size:13px;
  line-height:1.35;
}
.vr-doctor-card__meta span{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.vr-doctor-card__meta i{color:var(--primary);font-size:12px}
.vr-language-row{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
.vr-language-row span{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:7px 10px;
  background:rgba(46,214,255,.08);
  border:1px solid rgba(46,214,255,.18);
  color:#0F5D73;
  font-size:12px;
  line-height:1;
  font-weight:500;
}
.vr-chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
.vr-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:7px 10px;
  background:#F8FAFC;
  border:1px solid rgba(229,231,235,.9);
  color:#374151;
  font-size:12px;
  line-height:1;
  font-weight:400;
}
.vr-card-stats{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9px;
}
.vr-card-stat{
  border:1px solid rgba(229,231,235,.92);
  border-radius:16px;
  padding:11px;
  background:linear-gradient(180deg,#fff,#F9FAFB);
}
.vr-card-stat strong{
  display:block;
  color:#111827;
  font-size:13.5px;
  font-weight:700;
  margin-bottom:3px;
}
.vr-card-stat span{
  display:block;
  color:var(--muted);
  font-size:12px;
  font-weight:400;
}
.vr-doctor-card__footer{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding-top:4px;
}
.vr-starting-price span{
  display:block;
  color:var(--muted);
  font-size:12px;
  font-weight:400;
  margin-bottom:3px;
}
.vr-starting-price strong{
  display:block;
  color:#111827;
  font-size:18px;
  font-weight:700;
}
.vr-doctor-card__cta{
  min-height:44px;
  padding:0 16px;
  border-radius:14px;
  font-size:13px;
}
.vr-featured-note{
  margin-top:30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  padding:22px 24px;
  border-radius:28px;
  border:1px solid rgba(123,77,255,.13);
  background:
    linear-gradient(135deg,rgba(123,77,255,.08),rgba(46,214,255,.07)),
    rgba(255,255,255,.88);
  color:#374151;
  box-shadow:0 18px 44px rgba(17,24,39,.06);
}
.vr-featured-note__label{
  display:inline-flex;
  color:var(--primary);
  font-size:13px;
  font-weight:600;
  margin-bottom:6px;
}
.vr-featured-note p{margin:0;color:#4B5563;line-height:1.6;font-weight:400}
.vr-featured-note strong{color:#111827;font-weight:700}
.vr-featured-note a{color:var(--primary);font-weight:600;white-space:nowrap}
.vr-doctor-card.is-hidden{display:none}

@media (max-width:1320px){
  .vr-doctor-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
}
@media (max-width:1180px){
  .vr-featured-doctors{padding:84px 0 88px}
  .vr-section-head{display:block}
  .vr-section-head__action{margin-top:20px}
  .vr-doctor-toolbar{align-items:flex-start;flex-direction:column}
  .vr-doctor-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:760px){
  .vr-featured-doctors{padding:64px 0 72px}
  .vr-section-head{display:block;margin-bottom:24px}
  .vr-section-head__action{margin-top:16px;padding-left:14px}
  .vr-doctor-toolbar{gap:14px;margin-bottom:18px}
  .vr-doctor-tabs{margin-left:-2px;margin-right:-2px;padding-bottom:8px;max-width:100%;margin-bottom:24px}
  .vr-doctor-grid{display:flex;gap:16px;overflow-x:auto;scroll-snap-type:x mandatory;padding:4px 4px 18px;margin-inline:-4px;scrollbar-width:none}
  .vr-doctor-grid::-webkit-scrollbar{display:none}
  .vr-doctor-card{min-width:82%;scroll-snap-align:start}
  .vr-card-overlay-link{opacity:1;transform:none;background:rgba(255,255,255,.92)}
  .vr-featured-note{display:block;padding:20px}
  .vr-featured-note a{display:inline-flex;margin-top:14px}
}
@media (max-width:430px){
  .vr-doctor-card{min-width:88%}
  .vr-doctor-card__footer{align-items:flex-start;flex-direction:column}
  .vr-doctor-card__cta{width:100%}
}
