    /* ── Brand Tokens ── */
    
    
    .doctors-page-layout {
      display: flex;
      align-items: flex-start;
      gap: 32px;
      padding: 48px 0 72px;
    }

    /* ── Sticky Sidebar ── */
    .filters-sidebar {
      flex: 0 0 240px;
      width: 240px;
      position: sticky;
      top: 88px; /* clears fixed header */
      /* Stops sticking when footer is reached — handled via JS */
      align-self: flex-start;
    }

    .filter-heading {
      font-size: 11px;
      font-weight: 700;
      color: var(--gray-400);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 14px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--gray-200);
    }

    .filter-tabs {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .filter-tab {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 6px;
      background: var(--gray-100);
      border: 1.5px solid transparent;
      color: var(--gray-600);
      padding: 10px 16px;
      border-radius: var(--radius-btn);
      font-family: 'Cairo', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all var(--transition);
      text-align: left;
      width: 100%;
    }

    .filter-tab:hover {
      background: rgba(54,211,235,0.08);
      border-color: var(--teal);
      color: var(--purple);
    }

    .filter-tab.active {
      background: var(--purple);
      border-color: var(--purple);
      color: var(--white);
    }

    .filter-tab .tab-count {
      background: rgba(255,255,255,0.25);
      border-radius: 100px;
      padding: 1px 8px;
      font-size: 11px;
      font-weight: 700;
      flex-shrink: 0;
    }
    .filter-tab:not(.active) .tab-count {
      background: var(--gray-200);
      color: var(--gray-600);
    }

    /* ── Doctors content area ── */
    .doctors-content {
      flex: 1;
      min-width: 0;
      width: 100%;
    }

    /* ══════════════ DOCTORS GRID ══════════════ */
    .doctors-section { padding: 0; }

    .doctors-grid {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    /* ── Doctor Card — horizontal layout (all cards like Ismail) ── */
    .doctor-card {
      background: var(--white);
      border-radius: var(--radius-card);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--gray-200);
      display: flex;
      flex-direction: row;  /* horizontal for all */
      transition: transform var(--transition), box-shadow var(--transition);
      position: relative;
    }

    .doctor-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-card-hover);
    }

    /* Teal diagonal accent top-right */
    .doctor-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 80px;
      height: 80px;
      background: var(--teal);
      clip-path: polygon(100% 0, 0 0, 100% 100%);
      opacity: 0.15;
      transition: opacity var(--transition);
      z-index: 1;
    }
    .doctor-card:hover::before { opacity: 0.28; }
    html[dir="rtl"] .doctor-card::before {
      right: auto;
      left: 0;
      clip-path: polygon(0 0, 100% 0, 0 100%);
    }

    /* Photo area — fixed width, full height */
    .card-photo-wrap {
      position: relative;
      width: 220px;
      min-width: 220px;
      flex-shrink: 0;
      overflow: hidden;
      background: var(--gray-100);
    }

    .card-photo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    }

    .doctor-card:hover .card-photo-wrap img { transform: scale(1.04); }

    /* Specialty badge over image */
    .card-specialty-badge {
      position: absolute;
      bottom: 12px;
      left: 14px;
      background: var(--purple);
      color: var(--white);
      font-size: 11px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 100px;
      letter-spacing: 0.03em;
      z-index: 2;
      max-width: calc(100% - 28px);
    }

    /* Photo gradient overlay */
    .card-photo-wrap::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 70px;
      background: linear-gradient(to top, rgba(27,37,64,0.45), transparent);
    }

    /* Card body */
    .doctors-section .card-body {
      padding: 24px 26px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .doctors-section .card-name {
      font-size: 18px;
      font-weight: 800;
      color: var(--purple);
      line-height: 1.25;
      margin-bottom: 6px;
      text-decoration: none;
      display: block;
    }
    .doctors-section .card-name:hover { color: var(--teal-deeper); }

    .doctors-section .card-title {
      font-size: 13px;
      color: var(--gray-600);
      font-weight: 500;
      margin-bottom: 16px;
      line-height: 1.5;
    }

    /* Divider */
    .doctors-section .card-divider {
      height: 1px;
      background: var(--gray-100);
      margin-bottom: 16px;
    }

    /* CTA row */
    .doctors-section .card-actions {
      display: flex;
      gap: 10px;
      margin-top: auto;
    }

    .btn-profile {
      flex: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 9px 14px;
      border: 1.5px solid var(--purple);
      border-radius: var(--radius-btn);
      color: var(--purple);
      font-family: 'Cairo', sans-serif;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      background: transparent;
      transition: all var(--transition);
    }
    .btn-profile:hover {
      background: var(--purple);
      color: var(--white);
    }
    .btn-profile svg { flex-shrink: 0; }

    .btn-book {
      flex: 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 9px 14px;
      background: var(--teal);
      border: 1.5px solid var(--teal);
      border-radius: var(--radius-btn);
      color: var(--white);
      font-family: 'Cairo', sans-serif;
      font-size: 13px;
      font-weight: 700;
      text-decoration: none;
      transition: all var(--transition);
    }
    .btn-book:hover {
      background: var(--teal-dark);
      border-color: var(--teal-dark);
    }

    /* ── Featured card (Chairman) — wider photo + badge ── */
    .doctor-card.featured {
      border-color: var(--teal);
      border-width: 2px;
    }

    .doctor-card.featured .card-photo-wrap {
      width: 260px;
      min-width: 260px;
    }

    .doctor-card.featured .card-body { padding: 28px 30px; }

    .featured-crown {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(54,211,235,0.1);
      border: 1px solid var(--teal);
      color: var(--teal-deeper);
      font-size: 11px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 100px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .doctor-card.featured .card-name { font-size: 22px; margin-bottom: 6px; }
    .doctor-card.featured .card-title { font-size: 14px; margin-bottom: 12px; }

    .featured-bio {
      font-size: 13px;
      color: var(--gray-600);
      line-height: 1.65;
      margin-bottom: 20px;
      flex: 1;
    }

    /* ══════════════ ONLINE CONSULTATION BANNER ══════════════ */
    .consult-banner {
      background: linear-gradient(135deg, var(--purple) 0%, #5B3A99 50%, var(--teal-deeper) 100%);
      position: relative;
      overflow: hidden;
      padding: 64px 0;
    }

    .consult-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('/stream?image=/uploads/img/light-network.webp');
      background-size: cover;
      opacity: 0.15;
    }

    .consult-inner {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 48px;
    }

    .consult-content { flex: 1; }

    .consult-eyebrow {
      display: inline-block;
      background: rgba(54,211,235,0.2);
      border: 1px solid rgba(54,211,235,0.35);
      color: var(--teal);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 16px;
    }

    .consult-title {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.3;
      margin-bottom: 14px;
    }

    .consult-body {
      font-size: 15px;
      color: rgba(255,255,255,0.75);
      line-height: 1.65;
      margin-bottom: 28px;
    }

    .consult-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--teal);
      color: var(--purple);
      font-family: 'Cairo', sans-serif;
      font-weight: 800;
      font-size: 15px;
      padding: 12px 28px;
      border-radius: var(--radius-btn);
      text-decoration: none;
      transition: background var(--transition), transform var(--transition);
    }
    .consult-cta:hover { background: var(--teal-dark); transform: translateY(-2px); }

    .consult-image {
      flex: 0 0 380px;
      max-width: 380px;
    }
    .consult-image img { width: 100%; border-radius: 16px; }

    /* ══════════════ RESPONSIVE ══════════════ */
    @media (max-width: 900px) {
      /* Stack sidebar above grid on tablet/mobile */
      .doctors-page-layout {
        flex-direction: column;
        gap: 24px;
        padding: 32px 0 56px;
      }
      .filters-sidebar {
        position: static;
        width: 100%;
        flex: none;
      }
      .filter-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
      }
      .filter-tab {
        width: auto;
        flex: none;
        border-radius: 100px;
        padding: 8px 16px;
      }
      /* Horizontal cards collapse on mobile */
      .doctor-card,
      .doctor-card.featured {
        flex-direction: column;
      }
      .card-photo-wrap,
      .doctor-card.featured .card-photo-wrap {
        width: 100%;
        min-width: unset;
        height: 220px;
      }
      .consult-inner { flex-direction: column; }
      .consult-image { max-width: 100%; flex-basis: auto; }
      .services-grid { grid-template-columns: 1fr; }
      .doctor-card {margin: 10px 20px;}
    }

    @media (max-width: 600px) {
      .filter-tab { font-size: 13px; padding: 7px 14px; }
      .hero-stats { display: none; }
      .card-body { padding: 18px 20px; }
    }

    /* ══════════════ HIDDEN COUNT utility ══════════════ */
    .doctor-card[data-hidden="true"] { display: none; }

    /* ══════════════ WhatsApp float ══════════════ */
    .wapp-side-icon {
      bottom: 80px; right: 16px;
      width: 52px; height: 52px;
      z-index: 9998;
    }