/* ── SERVICE DETAIL EXTRAS ── */
    .service-hero {
      background: linear-gradient(135deg, var(--maroon-dk) 0%, var(--maroon) 100%);
      padding: 64px 0; position: relative; overflow: hidden;
    }
    .service-hero::before {
      content: ''; position: absolute; top: -60px; right: -60px;
      width: 300px; height: 300px; border-radius: 50%;
      background: rgba(232,101,26,0.12);
    }
    .service-hero-inner {
      display: flex; align-items: center; gap: 40px;
      position: relative; z-index: 1;
    }
    .service-hero-icon {
      width: 90px; height: 90px; border-radius: 20px;
      background: rgba(232,101,26,0.18); border: 2px solid rgba(232,101,26,0.35);
      display: flex; align-items: center; justify-content: center;
      font-size: 44px; flex-shrink: 0;
    }
    .service-hero-text h1 {
      font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,44px);
      color: #fff; font-weight: 700; margin-bottom: 8px;
    }
    .service-hero-text p { color: rgba(255,255,255,0.65); font-size: 15px; max-width: 560px; line-height: 1.7; }
    .service-hero-meta {
      display: flex; gap: 16px; flex-wrap: wrap; margin-top: 18px;
    }
    .service-meta-pill {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18);
      color: rgba(255,255,255,0.85); font-size: 12.5px; font-weight: 500;
      padding: 6px 14px; border-radius: 20px;
    }

    /* Content layout */
    .service-layout {
      display: grid; grid-template-columns: 1fr 320px; gap: 40px;
      align-items: start;
    }
    .service-main {}
    .service-sidebar {}

    /* Prose */
    .prose h2 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--maroon); margin: 32px 0 12px; }
    .prose h2:first-child { margin-top: 0; }
    .prose p { font-size: 15px; color: var(--gray-dk); line-height: 1.85; margin-bottom: 14px; }
    .prose ul { margin: 12px 0 18px 0; display: flex; flex-direction: column; gap: 8px; }
    .prose ul li { font-size: 14.5px; color: var(--gray-dk); display: flex; align-items: flex-start; gap: 10px; line-height: 1.6; }
    .prose ul li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

    /* Highlight box */
    .highlight-box {
      background: var(--orange-lt); border: 1.5px solid rgba(232,101,26,0.2);
      border-left: 4px solid var(--orange); border-radius: 10px;
      padding: 20px 22px; margin: 24px 0;
    }
    .highlight-box p { color: var(--gray-dk); font-size: 14.5px; margin: 0; }

    /* Procedure steps */
    .steps { display: flex; flex-direction: column; gap: 16px; margin: 20px 0; }
    .step {
      display: flex; gap: 16px; align-items: flex-start;
      background: var(--white); border: 1.5px solid var(--border);
      border-radius: 12px; padding: 18px 20px; transition: var(--transition);
    }
    .step:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }
    .step-num {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--orange); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 700; flex-shrink: 0;
    }
    .step-text h4 { font-size: 14.5px; font-weight: 600; color: var(--black); margin-bottom: 4px; }
    .step-text p { font-size: 13px; color: var(--gray-md); margin: 0; line-height: 1.6; }

    /* Conditions grid */
    .conditions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 12px; margin: 20px 0; }
    .condition-tag {
      background: var(--white); border: 1.5px solid var(--border);
      border-radius: 8px; padding: 12px 16px;
      font-size: 13px; color: var(--gray-dk); font-weight: 500;
      display: flex; align-items: center; gap: 8px; transition: var(--transition);
    }
    .condition-tag:hover { border-color: var(--orange); color: var(--maroon); background: var(--orange-lt); }
    .condition-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

    /* FAQ */
    .faq { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
    .faq-item { border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden; }
    .faq-q {
      width: 100%; text-align: left; padding: 16px 20px;
      font-size: 14px; font-weight: 600; color: var(--black);
      background: var(--white); display: flex; justify-content: space-between;
      align-items: center; transition: var(--transition); cursor: pointer;
    }
    .faq-q:hover { color: var(--maroon); background: var(--orange-lt); }
    .faq-q.open { color: var(--maroon); background: var(--orange-lt); }
    .faq-chevron { font-size: 12px; transition: transform 0.3s; }
    .faq-q.open .faq-chevron { transform: rotate(180deg); }
    .faq-a { display: none; padding: 0 20px 16px; font-size: 13.5px; color: var(--gray-md); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 14px; background: #fdfbf9; }
    .faq-a.open { display: block; }

    /* SIDEBAR */
    .sidebar-card {
      background: var(--white); border: 1.5px solid var(--border);
      border-radius: 14px; padding: 24px; margin-bottom: 20px;
      box-shadow: var(--shadow-sm);
    }
    .sidebar-card-title {
      font-family: 'Playfair Display', serif; font-size: 16px;
      font-weight: 700; color: var(--maroon); margin-bottom: 16px;
      padding-bottom: 12px; border-bottom: 1.5px solid var(--border);
    }
    .sidebar-doctor {
      display: flex; gap: 12px; align-items: flex-start;
      padding: 12px 0; border-bottom: 1px solid var(--border);
    }
    .sidebar-doctor:last-child { border-bottom: none; padding-bottom: 0; }
    .sidebar-doc-avatar {
      width: 46px; height: 46px; border-radius: 10px;
      background: var(--orange-lt); display: flex; align-items: center;
      justify-content: center; font-size: 22px; flex-shrink: 0;
      border: 1px solid rgba(232,101,26,0.15);
    }
    .sidebar-doc-name { font-size: 13.5px; font-weight: 600; color: var(--black); }
    .sidebar-doc-spec { font-size: 11.5px; color: var(--gray-md); margin-top: 2px; }
    .sidebar-service-link {
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 0; border-bottom: 1px solid var(--border);
      font-size: 13.5px; color: var(--gray-dk); transition: var(--transition);
    }
    .sidebar-service-link:last-child { border-bottom: none; }
    .sidebar-service-link:hover { color: var(--orange); padding-left: 4px; }
    .sidebar-service-link span { font-size: 11px; color: var(--gray-md); }

    .appt-card {
      background: linear-gradient(135deg, var(--maroon-dk), var(--maroon));
      border-radius: 14px; padding: 24px; color: #fff;
      margin-bottom: 20px; position: relative; overflow: hidden;
    }
    .appt-card::before { content:''; position:absolute; top:-30px; right:-30px; width:120px; height:120px; border-radius:50%; background:rgba(232,101,26,0.15); }
    .appt-card h4 { font-family:'Playfair Display',serif; font-size:18px; font-weight:700; margin-bottom:8px; position:relative; }
    .appt-card p { font-size:13px; color:rgba(255,255,255,0.65); line-height:1.7; margin-bottom:18px; position:relative; }
    .appt-card .btn { width:100%; justify-content:center; position:relative; }

    @media(max-width:900px){
      .service-layout{ grid-template-columns:1fr; }
      .service-sidebar{ order:-1; }
    }
    @media(max-width:600px){
      .service-hero-inner{ flex-direction:column; gap:20px; }
    }
    
    
/*------------------------------------------------------*/    
/*----- Doctor Page -----*/

/* Profile Hero */
    .doctor-hero {
      background: var(--gray-lt);
      border-bottom: 1px solid var(--border);
      padding: 56px 0;
    }
    .doctor-hero-inner {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 48px;
      align-items: start;
    }

    /* Avatar card */
    .doctor-avatar-card {
      background: var(--white);
      border-radius: 18px;
      border: 1.5px solid var(--border);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      text-align: center;
    }
    .doctor-avatar-img {
      height: 260px;
      background: linear-gradient(160deg, var(--orange-lt) 0%, var(--maroon-lt) 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 90px;
      position: relative; overflow:hidden;
    }
    .doctor-avail-badge {
      position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
      background: #16a34a; color: #fff; font-size: 11px; font-weight: 700;
      padding: 4px 14px; border-radius: 20px; white-space: nowrap;
      display: flex; align-items: center; gap: 6px;
    }
    .avail-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: blink 1.5s infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
    .doctor-avatar-body { padding: 20px; }
    .doctor-avatar-body h2 {
      font-family: 'Playfair Display', serif; font-size: 18px;
      font-weight: 700; color: var(--maroon); line-height: 1.3; margin-bottom: 4px;
    }
    .doctor-avatar-body .spec { font-size: 13px; color: var(--gray-md); margin-bottom: 14px; }
    .doctor-social { display: flex; gap: 8px; justify-content: center; margin-bottom: 16px; }
    .doctor-social a {
      width: 34px; height: 34px; border-radius: 8px; background: var(--gray-lt);
      display: flex; align-items: center; justify-content: center; font-size: 14px;
      transition: var(--transition); border: 1px solid var(--border);
    }
    .doctor-social a:hover { background: var(--orange); border-color: var(--orange); }

    /* Doctor info right */
    .doctor-info-header { margin-bottom: 8px; }
    .doctor-info-header .breadcrumb { margin-bottom: 14px; justify-content: flex-start; }
    .doctor-info-header h1 {
      font-family: 'Playfair Display', serif; font-size: clamp(26px,4vw,40px);
      font-weight: 700; color: var(--black); line-height: 1.15; margin-bottom: 6px;
    }
    .doctor-designation {
      font-size: 15px; color: var(--orange); font-weight: 600; margin-bottom: 14px;
    }
    .doctor-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
    .doctor-tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--maroon-lt); color: var(--maroon);
      border: 1px solid rgba(107,26,26,0.15); font-size: 12px; font-weight: 600;
      padding: 5px 14px; border-radius: 20px;
    }
    .doctor-bio {
      font-size: 15px; color: var(--gray-dk); line-height: 1.85;
      max-width: 600px; margin-bottom: 28px;
    }

    /* Stats row */
    .doctor-stats {
      display: flex; gap: 0; background: var(--white);
      border: 1.5px solid var(--border); border-radius: 12px;
      overflow: hidden; margin-bottom: 28px;
    }
    .doctor-stat {
      flex: 1; text-align: center; padding: 18px 12px;
      border-right: 1px solid var(--border); transition: background 0.2s;
    }
    .doctor-stat:last-child { border-right: none; }
    .doctor-stat:hover { background: var(--orange-lt); }
    .ds-num {
      font-family: 'Playfair Display', serif; font-size: 26px;
      font-weight: 700; color: var(--orange); line-height: 1;
    }
    .ds-label { font-size: 11px; color: var(--gray-md); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 4px; }

    /* Action buttons */
    .doctor-actions { display: flex; gap: 12px; flex-wrap: wrap; }

    /* ── TABS ── */
    .detail-tabs {
      display: flex; gap: 0; border-bottom: 2px solid var(--border);
      margin-bottom: 36px; overflow-x: auto;
    }
    .detail-tab {
      padding: 13px 22px; font-size: 14px; font-weight: 600;
      color: var(--gray-md); border-bottom: 3px solid transparent;
      margin-bottom: -2px; cursor: pointer; white-space: nowrap;
      transition: var(--transition); background: none; border-top: none; border-left: none; border-right: none;
    }
    .detail-tab:hover { color: var(--orange); }
    .detail-tab.active { color: var(--maroon); border-bottom-color: var(--orange); }
    .tab-panel { display: none; }
    .tab-panel.active { display: block; }

    /* Prose inside tabs */
    .prose h3 { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; color: var(--maroon); margin: 28px 0 10px; }
    .prose h3:first-child { margin-top: 0; }
    .prose p { font-size: 14.5px; color: var(--gray-dk); line-height: 1.85; margin-bottom: 12px; }
    .prose ul { display: flex; flex-direction: column; gap: 8px; margin: 10px 0 18px; }
    .prose ul li { font-size: 14px; color: var(--gray-dk); display: flex; gap: 10px; line-height: 1.6; }
    .prose ul li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

    /* Education timeline */
    .timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
    .timeline::before {
      content: ''; position: absolute; left: 18px; top: 8px; bottom: 8px;
      width: 2px; background: linear-gradient(to bottom, var(--orange), var(--maroon));
      border-radius: 2px;
    }
    .timeline-item { display: flex; gap: 20px; padding-bottom: 28px; position: relative; }
    .timeline-item:last-child { padding-bottom: 0; }
    .t-dot {
      width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
      background: var(--orange); border: 3px solid var(--white);
      box-shadow: 0 0 0 2px var(--orange); z-index: 1;
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; color: #fff;
    }
    .t-dot.maroon { background: var(--maroon); box-shadow: 0 0 0 2px var(--maroon); }
    .t-content { flex: 1; padding-top: 6px; }
    .t-year { font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 3px; }
    .t-title { font-size: 14.5px; font-weight: 700; color: var(--black); margin-bottom: 2px; }
    .t-place { font-size: 13px; color: var(--gray-md); }

    /* Awards */
    .award-list { display: flex; flex-direction: column; gap: 14px; }
    .award-item {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 16px 18px; background: var(--white);
      border: 1.5px solid var(--border); border-radius: 10px;
      transition: var(--transition);
    }
    .award-item:hover { border-color: var(--orange); background: var(--orange-lt); }
    .award-icon { font-size: 26px; flex-shrink: 0; }
    .award-title { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 2px; }
    .award-year  { font-size: 12px; color: var(--gray-md); }

    /* Schedule table */
    .schedule-table { width: 100%; border-collapse: collapse; border-radius: 10px; overflow: hidden; border: 1.5px solid var(--border); }
    .schedule-table th {
      background: var(--maroon); color: #fff; font-size: 12.5px;
      font-weight: 600; padding: 12px 16px; text-align: left; letter-spacing: 0.5px;
    }
    .schedule-table td { padding: 12px 16px; font-size: 13.5px; border-bottom: 1px solid var(--border); }
    .schedule-table tr:last-child td { border-bottom: none; }
    .schedule-table tr:nth-child(even) td { background: var(--gray-lt); }
    .slot-badge {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 11.5px; font-weight: 600; padding: 3px 10px; border-radius: 12px;
    }
    .slot-open  { background: #dcfce7; color: #16a34a; }
    .slot-full  { background: #fee2e2; color: #dc2626; }
    .slot-off   { background: var(--gray-lt); color: var(--gray-md); }

    /* Reviews */
    .reviews-grid { display: flex; flex-direction: column; gap: 16px; }
    .review-card {
      background: var(--white); border: 1.5px solid var(--border);
      border-radius: 12px; padding: 20px 22px;
    }
    .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
    .review-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--orange-lt); display: flex; align-items: center;
      justify-content: center; font-size: 18px; flex-shrink: 0;
      border: 1.5px solid rgba(232,101,26,0.15);
    }
    .review-name { font-size: 14px; font-weight: 600; color: var(--black); }
    .review-stars { color: var(--orange); font-size: 13px; margin-top: 2px; }
    .review-date { font-size: 11.5px; color: var(--gray-md); margin-left: auto; }
    .review-text { font-size: 13.5px; color: var(--gray-dk); line-height: 1.75; }

    /* Layout */
    .detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 36px; align-items: start; }

    /* Sidebar */
    .sidebar-info-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; }
    .sidebar-info-row:last-child { border-bottom: none; }
    .sidebar-info-row .label { color: var(--gray-md); }
    .sidebar-info-row .value { font-weight: 600; color: var(--black); }

    @media(max-width:900px){
      .doctor-hero-inner { grid-template-columns: 1fr; }
      .doctor-avatar-card { max-width: 280px; margin: 0 auto; }
      .detail-layout { grid-template-columns: 1fr; }
    }