/* ================================================
   DOCTORS.CSS — Doctors listing page
   ================================================ */

/* PAGE HERO */
.doc-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 40px 20px 36px;
  position: relative;
  overflow: hidden;
}

.doc-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,168,107,.15) 0%, transparent 65%);
  pointer-events: none;
}

.doc-hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(0,137,123,.1) 0%, transparent 65%);
  pointer-events: none;
}

.doc-hero h1 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.doc-hero h1 em { font-style: italic; color: var(--gl); }

.doc-hero p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* SEARCH */
.doc-search {
  padding: 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.doc-search .search-input-wrap {
  max-width: 640px;
}

/* FILTERS */
.doc-filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 20px 4px;
  scrollbar-width: none;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.doc-filters::-webkit-scrollbar { display: none; }

.filter-chip {
  white-space: nowrap;
  padding: 7px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font: 500 13px var(--font-sans);
  color: var(--gray);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  flex-shrink: 0;
}

.filter-chip.on,
.filter-chip:hover {
  border-color: var(--g);
  color: var(--g);
  background: var(--gbg);
}

/* LIST */
.doc-list {
  padding: 20px;
}

.doc-count {
  font: 500 13px var(--font-sans);
  color: var(--grayL);
  margin-bottom: 16px;
}

.doc-count span { color: var(--g); font-weight: 600; }

.doc-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.doc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  gap: 14px;
  transition: all var(--transition);
}

.doc-card:hover {
  border-color: rgba(0,168,107,.4);
  box-shadow: 0 4px 20px rgba(0,168,107,.09);
  transform: translateY(-2px);
}

.doc-avatar {
  width: 64px; height: 64px;
  background: var(--gbg);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--g);
}

.doc-avatar svg { width: 30px; height: 30px; }

.doc-info { flex: 1; min-width: 0; }

.doc-name {
  font: 600 15px var(--font-sans);
  margin-bottom: 2px;
}

.doc-spec {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 8px;
}

.doc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}

.doc-soon { opacity: .5; cursor: default; }
.doc-soon:hover { transform: none; box-shadow: none; border-color: var(--border); }

.soon-label {
  display: inline-block;
  background: var(--gbg);
  color: var(--g);
  font: 500 12px var(--font-sans);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px dashed rgba(0,168,107,.4);
}

/* NO RESULTS */
.no-results {
  text-align: center;
  padding: 48px 20px;
  display: none;
}

.no-results-icon {
  width: 56px; height: 56px;
  background: var(--gbg);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--g);
}

.no-results-icon svg {
  width: 26px; height: 26px;
  stroke: currentColor; fill: none; stroke-width: 1.5;
}

.no-results h4 { font-size: 16px; margin-bottom: 6px; }
.no-results p { font-size: 13px; color: var(--grayL); }

/* JOIN CTA */
.join-cta {
  margin: 24px 20px;
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.join-cta h3 {
  font-size: 19px;
  color: var(--white);
  margin-bottom: 7px;
}

.join-cta p {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
  line-height: 1.6;
}

@media (min-width: 860px) {
  .doc-hero { padding: 56px 52px 48px; }
  .doc-hero h1 { font-size: 42px; }
  .doc-search { padding: 24px 52px; }
  .doc-filters { padding: 12px 52px 8px; flex-wrap: wrap; overflow: visible; }
  .doc-list { padding: 28px 52px; }
  .doc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .join-cta { margin: 24px 52px; }
}
