
/* ===== PAGE BANNER (reuse from gallery) ===== */
.page-banner {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--primary-dark) 100%);
  padding: 140px 0 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  animation: heroGlow 8s infinite ease-in-out alternate;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  animation: heroGlow 10s infinite ease-in-out alternate-reverse;
}

.page-banner h1 {
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.page-banner p {
  font-size: 17px;
  opacity: 0.8;
  max-width: 550px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.breadcrumb-custom li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb-custom li a:hover {
  color: var(--accent-light);
}

.breadcrumb-custom li.active {
  color: var(--accent-light);
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb-custom li.active::before {
  content: '›';
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  margin-right: 0;
}


  /* ===== CHANNELING PAGE STYLES ===== */

  /* Search Area */
  .doc-search-area {
    background: var(--glass-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 100;
    overflow: visible !important;
  }

  .doc-search-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .doc-search-area h5 {
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
  }

  .doc-search-area h5 i { color: var(--primary); }

  .search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: end;
    z-index: 100;
  }

  .search-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .input-wrap {
    position: relative;
  }

  .input-wrap .field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 15px;
    pointer-events: none;
    z-index: 2;
  }

  .s-input {
    width: 100%;
    padding: 13px 18px 13px 44px;
    border: 2px solid rgba(13, 148, 136, 0.12);
    border-radius: 14px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--navy-dark);
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
  }

  .s-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.08);
  }

  .s-input::placeholder { color: #94a3b8; font-weight: 400; }

  .search-btn {
    padding: 13px 28px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    height: 48px;
  }

  .search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.3);
  }

  .search-summary {
    margin-top: 14px;
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .search-summary strong { color: var(--primary); }

  /* ===== CUSTOM SELECT ===== */
  .cs-wrap {
    position: relative;
    z-index: 200;
  }

  .cs-wrap .field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 15px;
    pointer-events: none;
    z-index: 2;
  }

  .cs-trigger {
    width: 100%;
    padding: 13px 42px 13px 44px;
    border: 2px solid rgba(13, 148, 136, 0.12);
    border-radius: 14px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--navy-dark);
    background: #fff;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    transition: all 0.3s ease;
    position: relative;
  }

  .cs-trigger:hover { border-color: rgba(13, 148, 136, 0.3); }

  .cs-trigger.focused {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.08);
  }

  .cs-trigger .cs-icon-badge {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(6, 182, 212, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--primary);
    flex-shrink: 0;
  }

  .cs-trigger .cs-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .cs-trigger .cs-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 12px;
    transition: transform 0.3s ease;
  }

  .cs-wrap.open .cs-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: var(--primary);
  }

  /* Dropdown */
  .cs-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
    z-index: 9000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 340px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .cs-wrap.open .cs-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  /* Dropdown Search */
  .cs-search {
    padding: 12px 12px 8px;
    position: relative;
    flex-shrink: 0;
    border-bottom: 1px solid #f1f5f9;
  }

  .cs-search input {
    width: 100%;
    padding: 10px 14px 10px 36px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: var(--navy-dark);
    outline: none;
    transition: all 0.3s ease;
    background: #f8fafc;
  }

  .cs-search input:focus {
    border-color: var(--primary);
    background: #fff;
  }

  .cs-search input::placeholder { color: #cbd5e1; }

  .cs-search .cs-search-icon {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 12px;
    pointer-events: none;
    margin-top: -2px;
  }

  /* Options List */
  .cs-options {
    overflow-y: auto;
    padding: 6px;
    flex: 1;
    scrollbar-width: thin;
  }

  .cs-options::-webkit-scrollbar { width: 5px; }
  .cs-options::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary), var(--accent));
    border-radius: 10px;
  }

  .cs-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    margin-bottom: 2px;
    position: relative;
  }

  .cs-opt:hover {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.06), rgba(6, 182, 212, 0.06));
    color: var(--primary-dark);
    padding-left: 18px;
  }

  .cs-opt.selected {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
  }

  .cs-opt.selected:hover { padding-left: 14px; opacity: 0.95; }

  .cs-opt .cs-opt-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(6, 182, 212, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.2s ease;
  }

  .cs-opt.selected .cs-opt-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
  }

  .cs-opt .cs-opt-label { flex: 1; }

  .cs-opt .cs-opt-count {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    background: rgba(148, 163, 184, 0.1);
    padding: 2px 8px;
    border-radius: 50px;
    flex-shrink: 0;
  }

  .cs-opt.selected .cs-opt-count {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
  }

  .cs-opt .cs-opt-check {
    font-size: 12px;
    color: #fff;
    display: none;
    flex-shrink: 0;
  }

  .cs-opt.selected .cs-opt-check { display: block; }

  .cs-no-match {
    text-align: center;
    padding: 24px 16px;
    color: #94a3b8;
    font-size: 13px;
    display: none;
  }

  .cs-no-match i {
    display: block;
    font-size: 28px;
    margin-bottom: 8px;
    opacity: 0.25;
  }

  .cs-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 4px 10px;
  }

  /* ===== SPEC PILLS ===== */
  .spec-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0;
    z-index: 1;
  }

   #docGrid {
    z-index: 1;
  }


  .spec-pill {
    background: var(--glass-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow: var(--shadow-soft);
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  .spec-pill:hover,
  .spec-pill.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-color: transparent;
    transform: translateY(-1px);
  }

  .spec-pill .pill-ct {
    background: rgba(255, 255, 255, 0.2);
    padding: 1px 7px;
    border-radius: 50px;
    font-size: 10px;
  }

  .spec-pill.active .pill-ct { background: rgba(255, 255, 255, 0.3); }

  /* ===== DOCTOR CARD ===== */
  .doc-tt-card {
    background: var(--glass-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .doc-tt-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 3;
  }

  .doc-tt-card:hover::before { transform: scaleX(1); }

  .doc-tt-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(13, 148, 136, 0.3);
  }

  .doc-tt-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 24px 18px;
    border-bottom: 1px solid #f1f5f9;
  }

  .doc-tt-avatar {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #ccfbf1, #e0f2fe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.1);
    transition: transform 0.4s ease;
  }

  .doc-tt-card:hover .doc-tt-avatar { transform: scale(1.05); }

  .doc-tt-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .doc-tt-info { flex: 1; min-width: 0; }

  .doc-tt-info h5 {
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 4px;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .doc-tt-spec {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(6, 182, 212, 0.08));
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
  }

  .doc-tt-spec i { font-size: 10px; }

  .doc-tt-qual {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Schedule */
  .doc-tt-schedule {
    padding: 18px 24px 24px;
    flex: 1;
  }

  .tt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .tt-day {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 12px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
  }

  .tt-day:hover { background: rgba(13, 148, 136, 0.03); }

  .tt-day.today {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.06), rgba(6, 182, 212, 0.06));
    border-color: rgba(13, 148, 136, 0.15);
  }

  .tt-day.today .day-name { color: var(--primary); }

  .tt-day .day-name {
    font-weight: 700;
    color: var(--navy-dark);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 40px;
  }

  .day-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .day-dot.on {
    background: #22c55e;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
  }

  .day-dot.off { background: #e2e8f0; }

  .tt-day .day-time {
    font-weight: 600;
    font-size: 11px;
    white-space: nowrap;
  }

  .day-time.on {
    color: var(--primary-dark);
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(6, 182, 212, 0.08));
    padding: 3px 8px;
    border-radius: 6px;
  }

  .day-time.off {
    color: #cbd5e1;
    font-weight: 500;
    font-style: italic;
  }

  .tt-day.full-row { grid-column: 1 / -1; }

  /* Footer */
  .doc-tt-footer {
    padding: 14px 24px 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    gap: 8px;
    margin-top: auto;
  }

  .tt-btn {
    flex: 1;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
  }

  .tt-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
  }

  .tt-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.3);
  }

  .tt-btn-outline {
    background: transparent;
    border: 2px solid rgba(13, 148, 136, 0.15);
    color: var(--primary);
  }

  .tt-btn-outline:hover {
    background: rgba(13, 148, 136, 0.06);
    border-color: var(--primary);
    color: var(--primary);
  }

  /* Info strip */
  .channel-info-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 30px;
  }

  .ci-item {
    background: var(--glass-card);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-sm);
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
  }

  .ci-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }

  .ci-icon {
    width: 46px; height: 46px; border-radius: 14px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(6, 182, 212, 0.1));
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--primary);
    margin: 0 auto 10px; transition: all 0.3s ease;
  }

  .ci-item:hover .ci-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff; transform: scale(1.1);
  }

  .ci-item h6 { font-weight: 700; color: var(--navy-dark); font-size: 13px; margin-bottom: 3px; }
  .ci-item p { color: #94a3b8; font-size: 11px; margin: 0; }

  /* No results */
  .no-doc-results {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
    display: none;
  }

  .no-doc-results i { font-size: 60px; margin-bottom: 16px; display: block; opacity: 0.2; }
  .no-doc-results h5 { font-weight: 700; color: #64748b; margin-bottom: 6px; }

  /* Booking info */
  .booking-info-card {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.05), rgba(6, 182, 212, 0.05));
    border: 1px solid rgba(13, 148, 136, 0.12);
    border-radius: var(--radius);
    padding: 24px;
  }

  .booking-info-card h5 {
    font-weight: 700; color: var(--navy-dark); font-size: 15px;
    margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
  }

  .booking-info-card h5 i { color: var(--primary); }

  .bi-step {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid rgba(13, 148, 136, 0.06);
  }

  .bi-step:last-child { border: none; }

  .bi-num {
    width: 28px; height: 28px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 12px; flex-shrink: 0;
  }

  .bi-step p { color: #475569; font-size: 13px; margin: 0; line-height: 1.5; }
  .bi-step p strong { color: var(--navy-dark); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 991px) {
    .search-grid { grid-template-columns: 1fr 1fr; }
    .search-btn { grid-column: 1 / -1; justify-content: center; }
  }

  @media (max-width: 767px) {
    .search-grid { grid-template-columns: 1fr; }
    .doc-search-area { padding: 20px; }
    .channel-info-strip { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .ci-item { padding: 16px 10px; }
    .ci-item h6 { font-size: 12px; }
    .doc-tt-header { padding: 18px 18px 14px; gap: 12px; }
    .doc-tt-avatar { width: 58px; height: 58px; border-radius: 14px; font-size: 22px; }
    .doc-tt-info h5 { font-size: 14px; }
    .doc-tt-schedule { padding: 14px 18px 18px; }
    .tt-grid { grid-template-columns: 1fr; gap: 4px; }
    .tt-day { padding: 8px 10px; }
    .doc-tt-footer { padding: 12px 18px 16px; }

    .spec-pills {
      overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px;
      -webkit-overflow-scrolling: touch; scrollbar-width: none;
    }
    .spec-pills::-webkit-scrollbar { display: none; }
    .spec-pill { white-space: nowrap; flex-shrink: 0; }

    .cs-dropdown { max-height: 280px; }
  }

  @media (max-width: 400px) {
    .doc-tt-header { flex-direction: column; text-align: center; }
    .doc-tt-info h5 { white-space: normal; }
  } 





