  :root {
    --pv-red: #e61d4f;
    --pv-red-2: #c2133f;
    --pv-red-soft: #fde7ee;
    --pv-ink: #0e1a2b;
    --pv-slate: #1b2738;
    --pv-slate-2: #16202f;
    --pv-muted: #6b7280;
    --pv-line: #e7eaf0;
    --pv-bg: #ffffff;
    --pv-soft: #f6f8fb;
    --pv-radius: 14px;
    --pv-shadow: 0 10px 30px -12px rgba(13, 24, 40, .18);
    --pv-trans: all .3s ease-in-out;
    --pv: #e61d4f;
    --pv-dark: #c2133f;
    --ink: #111c24;
    --navy: #1f2e3d;
    --ink-2: #1c2a35;
    --surface: #fcfdfe;
    --line: #e7ebf0;
    --muted: #6b7886;
  }

  * {
    box-sizing: border-box
  }

  /* Note: Removed overflow-x: hidden here as it breaks position: sticky */
  html,
  body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', system-ui, sans-serif;
    color: var(--navy);
    background: var(--surface);
    scroll-behavior: smooth
  }

  body {
    color: var(--pv-ink);
    background: var(--pv-bg);
    -webkit-font-smoothing: antialiased;
  }

  a {
    text-decoration: none;
    color: inherit;
    transition: var(--pv-trans)
  }

  a:hover {
    color: var(--pv-red)
  }

  img {
    max-width: 100%;
    display: block
  }

  .container {
    max-width: 1200px
  }

  /* ===== Buttons ===== */
  .pv-btn {
    background: var(--pv);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: .55rem 1.4rem;
    font-weight: 600;
    transition: all .25s ease-in-out;
    white-space: nowrap
  }

  .pv-btn:hover {
    background: var(--pv-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px -8px rgba(230, 29, 79, .6)
  }

  /* ===== PAGE: Doctor Directory ===== */
  .pv-page {
    padding: 22px 0 60px;
    background: var(--pv-soft);
    min-height: 60vh
  }

  .pv-crumbs {
    font-size: 13px;
    color: var(--pv-muted);
    margin-bottom: 14px
  }

  .pv-crumbs a {
    color: var(--pv-red);
    font-weight: 600
  }

  .pv-crumbs .sep {
    margin: 0 6px;
    color: #c2c8d0
  }

  /* Desktop filter bar */
  .pv-filter-bar {
    background: var(--pv-red-soft);
    border: 1px solid #f6cdda;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 18px;
  }

  .pv-filter-bar .pv-fselect {
    flex: 1 1 160px;
    position: relative;
    background: #fff;
    border: 1px solid var(--pv-line);
    border-radius: 10px;
    padding: 8px 36px 8px 12px;
    font-size: 13px;
    cursor: pointer;
    transition: var(--pv-trans);
  }

  .pv-filter-bar .pv-fselect:hover {
    border-color: var(--pv-red)
  }

  .pv-filter-bar .pv-fselect small {
    display: block;
    color: var(--pv-muted);
    font-size: 11px;
    line-height: 1
  }

  .pv-filter-bar .pv-fselect strong {
    font-weight: 600;
    font-size: 13px;
    color: var(--pv-ink)
  }

  .pv-filter-bar .pv-fselect i.fa-chevron-down {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pv-muted);
    font-size: 12px
  }

  .pv-fselect-wrapper {
    position: relative;
    flex: 1;
  }

  /* ===== NIROG STREET DESKTOP INLINE CHIPS SYSTEM ===== */
  .pv-fselect-content {
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 90%;
    overflow: hidden;
    white-space: nowrap;
  }

  .pv-fselect-content strong {
    font-weight: 500;
    color: var(--ink);
  }

  .pv-inline-chip {
    background: #eef5ff;
    color: #2b6cb0;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #cbd5e0;
  }

  .pv-inline-chip span.sep-pipe {
    color: #a0aec0;
    font-weight: 300;
  }

  .pv-inline-chip b.chip-cross {
    cursor: pointer;
    color: #718096;
    font-size: 11px;
    transition: color 0.2s;
  }

  .pv-inline-chip b.chip-cross:hover {
    color: #e53e3e;
  }

  /* Reset text link visual state rules */
  .pv-desktop-reset-btn {
    background: none;
    border: 0;
    color: #0096ff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
    padding: 0 10px;
  }

  .pv-desktop-reset-btn:hover {
    text-decoration: underline;
  }

  /* Reset button visibility management override */
  .pv-desktop-reset-btn:not(.d-none) {
    display: inline-block !important;
  }

  .pv-desktop-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--pv-shadow);
    padding: 10px;
    display: none;
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
  }

  .pv-desktop-dropdown.show {
    display: block;
    width: 150px !important;
  }

  .pv-desktop-dropdown label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 4px;
    font-size: 13px;
    color: var(--ink);
    cursor: pointer;
    width: 100%;
  }

  .pv-desktop-dropdown label:hover {
    background: var(--pv-soft);
    border-radius: 6px;
  }

  .pv-desktop-dropdown input {
    accent-color: var(--pv);
  }

  /* Red Theme: Active selection highlights */
  .pv-desktop-dropdown label.selected-active {
    background-color: #f0f7ff !important;
    color: #e53e3e !important;
    font-weight: 600 !important;
  }

  #pvDesktopReset {
    color: #e53e3e !important;
  }

  #pvDesktopReset:hover {
    color: #c53030 !important;
    text-decoration: underline !important;
  }

  .pv-sort-btn {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--pv-line);
    color: var(--pv-red);
    display: grid;
    place-items: center;
    transition: var(--pv-trans);
    flex-shrink: 0;
  }

  .pv-sort-btn:hover {
    border-color: var(--pv-red);
    background: var(--pv-red);
    /*color: #fff !important;*/
  }

  /* Mobile dual-button filter bar */
  .pv-mob-filter {
    display: none;
    gap: 10px;
    margin-bottom: 14px
  }

  .pv-mob-filter button {
    flex: 1;
    height: 46px;
    border-radius: 999px;
    border: 1.5px solid var(--pv-red);
    background: #fff;
    color: var(--pv-red);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--pv-trans);
  }

  .pv-mob-filter button:hover {
    background: var(--pv-red);
    color: #fff
  }

  /* --- MOBILE BOTTOM SHEET STYLING --- */
  .pv-mob-sort-sheet {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
    transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important;
    z-index: 1060;
    padding: 20px 16px;
  }

  .pv-mob-sort-sheet.open {
    bottom: 0 !important;
  }

  .pv-sort-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 12px;
  }

  .pv-sort-sheet-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
  }

  .pv-sheet-close-btn {
    background: none;
    border: none;
    font-size: 26px;
    color: #a0aec0;
    cursor: pointer;
  }

  .pv-sort-sheet-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .pv-mob-sort-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid #edf2f7;
    font-size: 14.5px;
    font-weight: 500;
    color: #4a5568;
  }

  .pv-mob-sort-option input[type="radio"] {
    accent-color: #e53e3e;
  }

  .pv-mob-sort-option.selected-active {
    background-color: #fff5f5 !important;
    color: #e53e3e !important;
    border-color: #fabfbf !important;
    font-weight: 600;
  }

  /* Results header */
  .pv-result-head {
    background: #fff;
    border: 1px solid var(--pv-line);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 16px;
  }

  .pv-result-head h1 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--pv-ink)
  }

  .pv-result-head p {
    margin: 0;
    color: var(--pv-muted);
    font-size: 14px;
    line-height: 1.55
  }

  .pv-result-head p .more {
    color: var(--pv-red);
    font-weight: 600;
    cursor: pointer
  }

  /* Doctor card */
  .pv-doc {
    background: #fff;
    border: 1px solid var(--pv-line);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    transition: var(--pv-trans);
  }

  .pv-doc:hover {
    box-shadow: var(--pv-shadow);
    border-color: transparent;
    transform: translateY(-2px)
  }

  .pv-doc-grid {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 20px;
    align-items: flex-start
  }

  .pv-doc-media {
    text-align: center
  }

  .pv-doc-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 10px;
    position: relative;
    background: linear-gradient(135deg, #1b2738, #2a3a52);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 54px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: var(--pv-shadow);
  }

  .pv-doc-avatar .vidcam {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--pv-red);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 14px;
    border: 2px solid #fff;
  }

  .pv-doc-views {
    font-size: 12px;
    color: var(--pv-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px
  }

  .pv-doc-views i {
    color: var(--pv-red)
  }

  .pv-doc-verified {
    font-size: 12px;
    color: #1c7c47;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px
  }

  .pv-doc-verified .badge-tick {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #1c7c47;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 9px;
  }

  .pv-doc-body h3 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    color: var(--pv-ink)
  }

  .pv-doc-rating {
    font-size: 13px;
    color: var(--pv-muted);
    margin-bottom: 8px
  }

  .pv-doc-rating .star {
    color: #f5a623
  }

  .pv-doc-rating strong {
    color: var(--pv-ink);
    margin-right: 4px
  }

  .pv-doc-rating a {
    color: var(--pv-red);
    font-weight: 500
  }

  .pv-doc-specs {
    color: var(--pv-red);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px
  }

  .pv-doc-meta {
    font-size: 13px;
    color: #3a4a5e;
    margin-bottom: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    align-items: center
  }

  .pv-doc-meta .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c2c8d0;
    display: inline-block
  }

  .pv-doc-lang {
    font-size: 13px;
    color: #3a4a5e;
    margin-bottom: 6px
  }

  .pv-doc-loc {
    font-size: 13px;
    color: #3a4a5e;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px
  }

  .pv-doc-loc i {
    color: var(--pv-red)
  }

  .pv-doc-fee {
    font-size: 13px;
    color: #3a4a5e;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    align-items: center;
    margin-bottom: 8px
  }

  .pv-doc-fee .label {
    color: var(--pv-ink);
    font-weight: 600;
    margin-right: 4px
  }

  .pv-doc-fee .chip i {
    color: var(--pv-red);
    margin-right: 4px
  }

  .pv-doc-tag {
    font-size: 13px;
    color: #3a4a5e;
    margin-bottom: 10px
  }

  .pv-doc-tag strong {
    color: var(--pv-ink);
    font-weight: 600
  }

  .pv-doc-next {
    font-size: 13px;
    color: #1c7c47;
    font-weight: 600;
    margin-bottom: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    align-items: center
  }

  .pv-doc-next i {
    color: var(--pv-red);
    margin-right: 4px
  }

  .pv-doc-next span {
    color: #3a4a5e;
    font-weight: 500
  }

  .pv-doc-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .pv-btn-out,
  .pv-btn-fill {
    flex: 1;
    min-width: 180px;
    height: 48px !important;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--pv-trans);
    cursor: pointer;
  }

  .pv-btn-out {
    background: #fff;
    border: 1.5px solid var(--pv-red);
    color: var(--pv-red);
  }

  .pv-btn-out:hover {
    background: var(--pv-red);
    color:#fff;
  }

  .pv-btn-fill {
    background: var(--pv-red);
    border: 1.5px solid var(--pv-red);
    color: #fff;
  }

  .pv-btn-fill:hover {
    background: #fff;
    border-color: var(--pv-red);
    color:var(--pv-red);
  }

  /* Sidebar (sticky) */
  .pv-sidebar {
    position: sticky;
    top: 140px
  }

  .pv-lead {
    background: #fff;
    border: 1.5px solid var(--pv-red);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--pv-shadow);
  }

  .pv-lead h4 {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 6px;
    color: var(--pv-ink)
  }

  .pv-lead p.sub {
    font-size: 13px;
    color: var(--pv-muted);
    text-align: center;
    margin: 0 0 18px;
    line-height: 1.5
  }

  .pv-lead .form-control,
  .pv-lead textarea {
    border: 1px solid var(--pv-line);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    margin-bottom: 12px;
    width: 100%;
    background: #fff;
    transition: var(--pv-trans);
    font-family: inherit;
  }

  .pv-lead .form-control:focus,
  .pv-lead textarea:focus {
    outline: none;
    border-color: var(--pv-red);
    box-shadow: 0 0 0 3px rgba(230, 29, 79, .1)
  }

  .pv-lead .form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #3a4a5e;
    margin-bottom: 10px
  }

  .pv-lead .form-check input {
    accent-color: var(--pv-red);
    width: 16px;
    height: 16px;
    margin: 0
  }

  .pv-lead .terms {
    font-size: 12px;
    color: var(--pv-muted);
    text-align: center;
    margin: 6px 0 14px
  }

  .pv-lead .terms a {
    color: var(--pv-red);
    font-weight: 600
  }

  .pv-lead .pv-btn-book {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 0;
    background: var(--pv-red);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    transition: var(--pv-trans);
  }

  .pv-lead .pv-btn-book:hover {
    background: var(--pv-red-2)
  }

  .pv-lead .note {
    font-size: 12px;
    color: var(--pv-muted);
    text-align: center;
    margin: 12px 0 0
  }

  .pv-lead .note strong {
    color: var(--pv-ink)
  }

  /* ===== Mobile Filter Drawer ===== */
  .pv-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(13, 24, 40, .5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--pv-trans);
  }

  .pv-drawer-backdrop.open {
    opacity: 1;
    visibility: visible
  }

  .pv-drawer {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 1051;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform .3s ease-in-out;
  }

  .pv-drawer.open {
    transform: translateY(0)
  }

  .pv-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid var(--pv-line);
    background: var(--pv-soft);
  }

  .pv-drawer-head .ttl {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    font-weight: 700
  }

  .pv-drawer-head .ttl button {
    background: transparent;
    border: 0;
    font-size: 18px;
    color: var(--pv-ink)
  }

  .pv-drawer-head .az {
    color: var(--pv-red);
    font-weight: 600;
    background: transparent;
    border: 0;
    font-size: 14px
  }

  .pv-drawer-body {
    flex: 1;
    display: flex;
    overflow: hidden
  }

  .pv-drawer-tabs {
    width: 38%;
    background: var(--pv-soft);
    border-right: 1px solid var(--pv-line);
    overflow-y: auto;
  }

  .pv-drawer-tabs button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 16px 18px;
    background: transparent;
    border: 0;
    font-size: 15px;
    color: var(--pv-ink);
    border-left: 3px solid transparent;
    transition: var(--pv-trans);
  }

  .pv-drawer-tabs button.active {
    color: var(--pv-red);
    background: #fff;
    border-left-color: var(--pv-red);
    font-weight: 600
  }

  .pv-drawer-panel {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column
  }

  .pv-drawer-search {
    padding: 14px 16px;
    border-bottom: 1px solid var(--pv-line);
    position: relative
  }

  .pv-drawer-search input {
    width: 100%;
    height: 42px;
    border-radius: 8px;
    border: 1px solid var(--pv-line);
    padding: 0 40px 0 14px;
    font-size: 14px;
    background: var(--pv-soft);
  }

  .pv-drawer-search i {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--pv-muted)
  }

  .pv-drawer-options {
    padding: 8px 16px;
    flex: 1;
    overflow-y: auto
  }

  .pv-drawer-options label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 4px;
    font-size: 14px;
    color: #3a4a5e;
    cursor: pointer;
  }

  .pv-drawer-options label input {
    accent-color: var(--pv-red);
    width: 18px;
    height: 18px
  }

  .pv-drawer-foot {
    display: flex;
    gap: 10px;
    padding: 14px;
    border-top: 1px solid var(--pv-line);
    background: #fff;
  }

  .pv-drawer-foot button {
    flex: 1;
    height: 48px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--pv-trans);
  }

  .pv-drawer-foot .clear {
    background: #fff;
    border: 1.5px solid var(--pv-red);
    color: var(--pv-red)
  }

  .pv-drawer-foot .clear:hover {
    background: var(--pv-red-soft)
  }

  .pv-drawer-foot .apply {
    background: var(--pv-red);
    border: 1.5px solid var(--pv-red);
    color: #fff
  }

  .pv-drawer-foot .apply:hover {
    background: var(--pv-red-2)
  }

  /* ===== FOOTER (shared) ===== */
  .pv-footer {
    background: var(--navy);
    padding: 3.5rem 0 0;
    color: #cfd3d8;
    margin-top: 2.5rem
  }

  .f-logo {
    height: 60px;
    width: auto
  }

  .pv-foot-list {
    list-style: none !important;
    list-style-type: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
  }

  .f-brand p {
    color: #cfd3d8;
    font-size: .92rem;
    margin: 0 0 .4rem
  }

  .f-brand p i {
    color: var(--pv)
  }

  .pv-footer h6 {
    font-weight: 700;
    margin-bottom: 1.1rem;
    font-size: 1rem;
    color: #fff;
    letter-spacing: .2px
  }

  .pv-footer a:not(.socials a) {
    display: block;
    color: #9aa1ab;
    font-size: .9rem;
    padding: .3rem 0;
    transition: color .2s;
    text-decoration: none
  }

  .pv-footer a:not(.socials a):hover {
    color: var(--pv)
  }

  @media (min-width: 992px) {
    .pv-foot-col {
      border-top: none !important;
    }

    .pv-foot-acc-header {
      display: none !important;
    }

    .pv-foot-col h6 {
      display: block !important;
    }

    .pv-foot-list {
      max-height: none !important;
      overflow: visible !important;
    }

    .f-right {
      min-width: 240px !important;
      padding-left: 15px !important;
    }

    .store-badges {
      display: flex !important;
      gap: .5rem;
    }

    .store-badge {
      display: inline-flex !important;
      align-items: center;
      gap: .5rem;
      background: #1a1d22;
      border: 1px solid #2a2e35;
      color: #fff !important;
      padding: .5rem .8rem;
      border-radius: 8px;
      transition: all .25s;
      width: 100%;
      max-width: 180px;
    }

    .store-badge:hover {
      background: #22262d;
      transform: translateY(-2px);
    }

    .store-badge i {
      font-size: 1.4rem;
      color: #fff;
    }

    .store-badge span {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .store-badge small {
      font-size: .55rem;
      opacity: .75;
      text-transform: uppercase;
    }

    .store-badge strong {
      font-size: .85rem;
      font-weight: 600;
    }

    .socials {
      display: flex !important;
      gap: .65rem;
    }

    .socials a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #1a1d22;
      border: 1px solid #2a2e35;
      display: inline-grid !important;
      place-items: center;
      color: #fff;
      transition: all .25s;
    }

    .socials a:hover {
      background: var(--pv);
      border-color: var(--pv);
      transform: translateY(-2px);
    }
  }

  .f-bottom {
    border-top: 1px solid #1d2128;
    padding: 1.1rem 0;
    margin-top: 2rem;
    text-align: center;
    font-size: .82rem;
    color: #7a808a;
    letter-spacing: .3px
  }

  @media (max-width: 991px) {
    .pv-foot-col {
      width: 100% !important;
      max-width: 100% !important;
      flex: 0 0 100% !important;
      border-top: none !important;
      border-bottom: 1px solid #1e2633 !important;
    }

    .pv-foot-col:first-child,
    .f-brand {
      border-bottom: none !important;
    }

    .pv-foot-col h6 {
      display: none !important;
    }

    .pv-foot-acc-header {
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      width: 100% !important;
      background: transparent;
      border: 0;
      color: #fff;
      font-weight: 600;
      font-size: 15px;
      padding: 18px 4px !important;
    }

    .pv-foot-list {
      max-height: 0 !important;
      overflow: hidden !important;
      transition: max-height .35s ease-in-out !important;
    }

    .pv-foot-list.open {
      max-height: 500px !important;
      padding-bottom: 14px !important;
    }

    .store-badges {
      display: flex !important;
      flex-direction: row !important;
      gap: .5rem;
      justify-content: flex-start !important;
      margin-top: 12px !important;
    }

    .store-badge {
      display: inline-flex !important;
      align-items: center !important;
      gap: .4rem !important;
      background: #1a1d22 !important;
      border: 1px solid #2a2e35 !important;
      color: #fff !important;
      padding: .4rem .6rem !important;
      border-radius: 8px !important;
      flex: initial !important;
      width: auto !important;
      max-width: 135px !important;
      text-decoration: none !important;
    }

    .store-badge i {
      font-size: 1.2rem !important;
      color: #fff !important;
    }

    .store-badge span {
      display: flex !important;
      flex-direction: column !important;
      line-height: 1.1 !important;
      text-align: left !important;
    }

    .store-badge small {
      font-size: .52rem !important;
      opacity: .75 !important;
      text-transform: uppercase !important;
      letter-spacing: 0.3px !important;
      color: #fff !important;
      margin-bottom: 1px !important;
    }

    .store-badge strong {
      font-size: .75rem !important;
      font-weight: 600 !important;
      color: #fff !important;
    }

    .socials {
      display: flex !important;
      flex-direction: row !important;
      gap: .65rem;
      margin-top: 12px !important;
    }

    .socials a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #1a1d22;
      border: 1px solid #2a2e35;
      display: inline-grid !important;
      place-items: center;
      color: #fff;
    }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 991.98px) {
    .pv-search {
      display: none
    }

    .pv-actions .label {
      display: none
    }

    .pv-sidebar {
      position: static;
      margin-top: 18px
    }
  }

  @media (max-width: 767.98px) {
    .pv-burger {
      display: inline-grid;
      place-items: center
    }

    .pv-nav {
      display: none
    }

    .pv-nav.open {
      display: block
    }

    .pv-topbar .right .hide-sm {
      display: none
    }

    .pv-actions .pv-cta .label {
      display: none
    }

    .pv-filter-bar {
      display: none
    }

    .pv-mob-filter {
      display: flex
    }

    .pv-doc {
      padding: 16px
    }

    .pv-doc-grid {
      grid-template-columns: 1fr;
      gap: 14px
    }

    .pv-doc-media {
      display: flex;
      align-items: center;
      gap: 14px;
      text-align: left
    }

    .pv-doc-avatar {
      width: 96px;
      height: 96px;
      font-size: 38px;
      margin: 0;
      flex-shrink: 0
    }

    .pv-doc-media .meta {
      display: flex;
      flex-direction: column;
      gap: 4px
    }

    .pv-doc-views,
    .pv-doc-verified {
      justify-content: flex-start
    }

    .pv-doc-actions {
      flex-direction: column
    }

    .pv-btn-out,
    .pv-btn-fill {
      width: 100%
    }

    .pv-footer {
      padding: 40px 0 0
    }

    .pv-foot-acc-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      background: transparent;
      border: 0;
      color: #fff;
      font-weight: 600;
      font-size: 15px;
      padding: 14px 0;
      border-bottom: 1px solid #2a3a52;
    }

    .pv-foot-acc-header.open i {
      transform: rotate(45deg)
    }

    .pv-foot-acc-header i {
      transition: var(--pv-trans);
      color: var(--pv-red)
    }

    .pv-foot-col h6 {
      display: none
    }

    .pv-foot-list {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease;
      gap: 0 !important
    }

    .pv-foot-list.open {
      max-height: 400px;
      padding: 10px 0 !important
    }

    .pv-foot-list li {
      padding: 8px 0
    }

    .pv-footer .experience,
    .pv-footer .socials-wrap {
      padding: 0 4px
    }
  }

  @media (min-width: 992px) {
    .pv-filter-bar {
      flex-wrap: wrap !important;
      overflow-x: visible !important;
      padding: 10px !important;
    }

    .pv-fselect-wrapper {
      flex: 1 1 auto !important;
      min-width: unset !important;
    }

    .pv-filter-bar .pv-fselect {
      padding: 6px 20px 6px 10px !important;
      font-size: 12px !important;
    }
  }

  @media (min-width: 992px) {
    .pv-filter-bar {
      display: flex !important;
      align-items: center !important;
      flex-wrap: nowrap !important;
      gap: 12px !important;
    }

    .pv-fselect-wrapper[data-filter="sort"] {
      margin-left: 70px !important;
      position: relative !important;
      flex-shrink: 0 !important;
    }

    .pv-sort-btn {
      display: inline-flex !important;
      align-items: center !important;
      gap: 6px !important;
      width: max-content !important;
      min-width: 50px !important;
      white-space: nowrap !important;
      background: #ffffff !important;
      border: 1px solid var(--line) !important;
      border-radius: 10px !important;
      padding: 8px 14px !important;
    }

    .pv-fselect-wrapper[data-filter="sort"] .pv-desktop-dropdown {
      left: auto !important;
      right: 0 !important;
      min-width: 150px !important;
      box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15) !important;
      z-index: 1050 !important;
    }
  }

  /* =========================================================
   FAQ COMPONENT STRUCTURE 
   ========================================================= */
  .pv-faq-section {
    padding: 50px 20px;
    background-color: #f7f9fc;
    width: 100%;
  }

  .pv-faq-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .pv-faq-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 35px;
    text-align: center;
  }

  .pv-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .pv-faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .pv-faq-item.active {
    border-color: #e53e3e;
  }

  .pv-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
  }

  .pv-faq-trigger:hover {
    color: #e53e3e;
  }

  .pv-faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #4a5568;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .pv-faq-item.active .pv-faq-icon {
    transform: rotate(-180deg);
    color: #e53e3e;
  }

  .pv-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .pv-faq-inner {
    padding: 0 24px 18px 24px;
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
  }

  /* =========================================================
   PURSHVEDA APP DOWNLOAD SECTION 
   ========================================================= */
  .pv-app-download-section {
    padding: 40px 20px !important;
    background-color: #fcfdfe;
    width: 100%;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
  }

  .pv-app-grid-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
  }

  .pv-app-visuals {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .pv-phone-wrapper {
    width: 270px;
    height: 420px;
    background: #ffffff;
    border: 4px solid var(--pv);
    border-radius: 28px;
    padding: 10px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  }

  .pv-mockup-screen {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: relative;
    background: #f7fafc;
    display: flex;
    flex-direction: column;
  }

  .pv-img-doctor-main {
    width: 100%;
    height: calc(100% - 42px);
    object-fit: cover;
    border-radius: 0 0 16px 16px;
  }

  .pv-patient-pip {
    position: absolute;
    top: 45px;
    right: -65px;
    width: 125px;
    height: 135px;
    border-radius: 14px;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    z-index: 10;
    background: #cbd5e0;
  }

  .pv-patient-pip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .pv-mockup-header {
    background: #ffffff;
    padding: 6px 12px;
    border-bottom: 1px solid #edf2f7;
    display: flex;
    flex-direction: column;
    border-radius: 16px 16px 0 0;
  }

  .pv-brand-logo-txt {
    color: #e53e3e;
    font-weight: 700;
    font-size: 14px;
  }

  .pv-brand-tagline {
    font-size: 8.5px;
    color: #718096;
    font-weight: 500;
  }

  .pv-call-actions-bar {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
  }

  .pv-btn-decline-call {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--pv);
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(229, 62, 62, 0.3);
  }

  .pv-app-main-heading {
    font-size: 30px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
  }

  .pv-app-description {
    font-size: 14.5px;
    line-height: 1.6;
    color: #5a6578;
    margin-bottom: 25px;
    max-width: 500px;
  }

  .pv-sms-sender-block {
    margin-bottom: 25px;
    max-width: 440px;
  }

  .pv-sms-input-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
  }

  .pv-sms-form-layout {
    display: flex;
    align-items: center;
  }

  .pv-phone-input-group {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #cbd5e0;
    border-radius: 8px 0 0 8px;
    height: 46px;
    flex-grow: 1;
    padding: 0 14px;
    border-right: 0;
  }

  .pv-country-code {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    padding-right: 10px;
    border-right: 1px solid #e2e8f0;
    margin-right: 10px;
  }

  .pv-phone-field {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14.5px;
    color: #2d3748;
  }

  .pv-btn-send-sms {
    height: 46px;
    padding: 0 24px;
    background: var(--pv);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    white-space: nowrap;
  }

  .pv-btn-send-sms:hover {
    background: var(--pv-dark)
  }

  .pv-store-badges-row {
    display: flex;
    align-items: center;
  }

  .pv-store-badge-link img {
    height: 40px;
    display: block;
  }

  @media (max-width: 991px) {
    .pv-app-grid-container {
      grid-template-columns: 1fr;
      gap: 35px;
      text-align: center;
    }

    .pv-app-visuals {
      order: 2;
    }

    .pv-app-description,
    .pv-sms-sender-block,
    .pv-store-badges-row {
      margin-left: auto;
      margin-right: auto;
    }

    .pv-store-badges-row {
      justify-content: center;
    }

    .pv-app-visuals {
      order: 1 !important;
      margin-bottom: 15px;
    }

    .pv-app-content-panel {
      order: 2 !important;
    }
  }

  @media (max-width: 480px) {
    .pv-app-main-heading {
      font-size: 24px;
    }

    .pv-sms-form-layout {
      flex-direction: column;
      gap: 12px;
    }

    .pv-phone-input-group {
      border-radius: 8px !important;
      border-right: 1px solid !important;
    }

    .pv-btn-send-sms {
      border-radius: 8px !important;
      width: 100%;
    }

    .pv-patient-pip {
      right: -55px;
    }
  }

  /* =========================================================
   PROMO DOUBLE SECTIONS STYLES 
   ========================================================= */
  .pv-promo-section {
    padding: 60px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .pv-instant-appt {
    background-color: #ffffff;
  }

  .pv-skip-waiting {
    background-color: #f0f2f7;
  }

  .pv-promo-container {
    max-width: 1140px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
  }

  .pv-promo-content {
    display: flex;
    flex-direction: column;
  }

  .pv-promo-title {
    font-size: 32px;
    font-weight: 500;
    color: #232b38;
    line-height: 1.25;
    margin-bottom: 20px;
  }

  .pv-promo-title strong {
    display: block;
    font-weight: 700;
    color: #111111;
  }

  .pv-promo-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .pv-promo-bullets li {
    font-size: 15px;
    font-weight: 500;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .pv-promo-bullets li i {
    color: var(--pv);
    font-size: 14px;
  }

  .pv-promo-btn-red {
    background: var(--pv);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 6px;
    width: max-content;
    text-decoration: none !important;
    transition: background-color 0.2s;
    box-shadow: 0 4px 10px rgba(229, 62, 62, 0.2);
  }

  .pv-promo-btn-red:hover {
    background: #c53030;
  }

  .pv-action-btn-line {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 25px;
  }

  .pv-live-indicator {
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--pv);
    border-radius: 50%;
    display: inline-block;
    animation: pvDotPulse 1.5s infinite;
  }

  .pv-promo-review {
    margin-top: 30px;
    border-top: 1px solid #e2e8f0;
    padding-top: 18px;
    max-width: 440px;
  }

  .pv-stars-row {
    color: var(--pv);
    font-size: 12px;
    margin-bottom: 8px;
    display: flex;
    gap: 2px;
  }

  .pv-review-text {
    font-size: 13px;
    line-height: 1.5;
    color: #718096;
    font-style: italic;
    margin-bottom: 8px;
  }

  .pv-review-author {
    font-size: 12px;
    font-weight: 600;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .pv-promo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .pv-promo-img {
    width: 280px;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }

  @keyframes pvDotPulse {
    0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }
    70% {
      transform: scale(1);
      box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
    100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
  }

  @media (max-width: 991px) {
    .pv-promo-section {
      padding: 40px 16px;
    }
    .pv-promo-container {
      grid-template-columns: 1fr !important;
      gap: 35px;
      text-align: center;
    }
    .pv-promo-content {
      align-items: center;
    }
    .pv-promo-title {
      font-size: 26px;
    }
    .pv-promo-bullets {
      align-items: center;
    }
    .pv-action-btn-line {
      flex-direction: column;
      gap: 10px;
    }
    .pv-instant-appt .pv-promo-content {
      order: 1;
    }
    .pv-instant-appt .pv-promo-visual {
      order: 2;
    }
    .pv-skip-waiting .pv-promo-content {
      order: 1;
    }
    .pv-skip-waiting .pv-promo-visual {
      order: 2;
    }
  }

  @media (max-width: 991px) {
    .pv-promo-section {
      padding: 35px 16px !important;
    }
    .pv-promo-container {
      display: flex !important;
      flex-direction: column !important;
      gap: 24px !important;
      text-align: center;
      padding: 20px 16px !important;
      background: #ffffff !important;
      border: 1px solid #e2e8f0 !important;
      border-radius: 16px !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
    }
    .pv-skip-waiting .pv-promo-container {
      background: #f8fafc !important;
    }
    .pv-promo-visual {
      order: 1 !important;
      margin-bottom: 10px !important;
    }
    .pv-promo-content {
      order: 2 !important;
      align-items: center !important;
      width: 100% !important;
    }
    .pv-promo-title {
      font-size: 24px !important;
      line-height: 1.3 !important;
      margin-bottom: 16px !important;
    }
    .pv-promo-bullets {
      align-items: center !important;
      margin-bottom: 20px !important;
      gap: 8px !important;
    }
    .pv-promo-bullets li {
      font-size: 14.5px !important;
    }
    .pv-action-btn-line {
      flex-direction: column !important;
      gap: 12px !important;
      width: 100% !important;
      align-items: center !important;
    }
    .pv-promo-btn-red {
      width: 100% !important;
      max-width: 280px !important;
      text-align: center !important;
    }
    .pv-promo-review {
      margin-top: 20px !important;
      padding-top: 14px !important;
      width: 100% !important;
      max-width: 380px !important;
    }
  }

  /* =========================================================
   HERO BANNER
   ========================================================= */
  .pv-hero-banner {
    width: 100%;
    height: 48vh;
    background: linear-gradient(135deg, #1b2738 0%, #2a3a52 40%, #e61d4f 100%);
    position: relative;
    overflow: hidden;
  }

  .pv-hero-banner::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 29, 79, .25) 0%, transparent 70%);
    border-radius: 50%;
  }

  .pv-hero-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 70%);
    border-radius: 50%;
  }

  .pv-hero-overlay {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
  }

  .pv-hero-title {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }

  .pv-hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, .82);
    max-width: 620px;
    margin: 0 auto 28px;
    line-height: 1.6;
    font-weight: 400;
  }

  .pv-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--pv-red);
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    transition: all .3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  }

  .pv-hero-cta:hover {
    background: var(--pv-red);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(230, 29, 79, .4);
  }

  .pv-hero-cta i {
    animation: bounceArrow 1.5s infinite;
  }

  @keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
  }

  @media (max-width: 767px) {
    .pv-hero-banner {
      height: 55vh;
    }
  }

  /* =========================================================
   3-COL DOCTOR GRID CARD ADAPTATIONS
   ========================================================= */
  #pvDocGrid .pv-doc {
    margin-bottom: 0;
  }

  #pvDocGrid .pv-doc-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #pvDocGrid .pv-doc-media {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
  }

  #pvDocGrid .pv-doc-avatar {
    width: 80px;
    height: 80px;
    font-size: 32px;
    margin: 0;
    flex-shrink: 0;
  }

  #pvDocGrid .pv-doc-avatar .vidcam {
    width: 26px;
    height: 26px;
    font-size: 11px;
    bottom: 2px;
    right: 2px;
  }

  #pvDocGrid .pv-doc-views,
  #pvDocGrid .pv-doc-verified {
    justify-content: flex-start;
  }

  #pvDocGrid .pv-doc-body h3 {
    font-size: 15px;
  }

  #pvDocGrid .pv-doc-specs {
    font-size: 12px;
  }

  #pvDocGrid .pv-doc-meta,
  #pvDocGrid .pv-doc-lang,
  #pvDocGrid .pv-doc-loc,
  #pvDocGrid .pv-doc-fee,
  #pvDocGrid .pv-doc-tag,
  #pvDocGrid .pv-doc-next {
    font-size: 12px;
  }

  #pvDocGrid .pv-doc-actions {
    flex-direction: column;
  }

  #pvDocGrid .pv-btn-out,
  #pvDocGrid .pv-btn-fill {
    width: 100%;
    min-width: unset;
    height: 60px !important;
    font-size: 15px;
  }

  @media (max-width: 991px) {
    #pvDocGrid .pv-btn-out,
    #pvDocGrid .pv-btn-fill {
      height: 52px !important;
      font-size: 14px;
    }
  }

  /* =========================================================
   PAGINATION COMPONENT
   ========================================================= */
  .pv-pagination {
    text-align: center;
    margin: 36px 0 28px;
  }

  .pv-pagination ul {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .pv-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--pv-line);
    background: #fff;
    color: var(--pv-ink);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
  }

  .pv-page-link:hover {
    border-color: var(--pv-red);
    color: var(--pv-red);
    background: var(--pv-red-soft);
    transform: translateY(-1px);
  }

  .pv-page-link.active {
    background: var(--pv-red);
    color: #fff;
    border-color: var(--pv-red);
    box-shadow: 0 6px 18px -6px rgba(230, 29, 79, .45);
  }

  .pv-page-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--pv-muted);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
  }

  .pv-page-prev,
  .pv-page-next {
    color: var(--pv-red);
  }

  @media (max-width: 576px) {
    .pv-page-link {
      width: 36px;
      height: 36px;
      font-size: 13px;
      border-radius: 8px;
    }
    .pv-page-dots {
      width: 30px;
      height: 36px;
    }
  }

  /* =========================================================================
   💡 GLOBAL GRID & CARD STYLING (DESKTOP & GENERIC)
  ========================================================================= */
  #pvDocGrid {
    align-items: stretch !important;
  }

  #pvDocGrid > .col,
  #pvDocGrid > .pv-doctor-card-col,
  #pvDocGrid > .pv-assistance-cta-col {
    display: flex !important;
  }

  #pvDocGrid .pv-doc,
  #pvDocGrid .pv-assistance-cta {
    width: 100% !important;
    height: 100% !important;
    min-height: 500px !important;
    border-radius: 16px;
    box-sizing: border-box;
  }

  #pvDocGrid .pv-doc {
    display: flex !important;
    flex-direction: column;
  }

  #pvDocGrid .pv-doc-grid {
    height: 100%;
  }

  #pvDocGrid .pv-doc-body {
    display: flex;
    flex-direction: column;
  }

  #pvDocGrid .pv-doc-actions {
    margin-top: auto;
  }

  /* =========================================================================
   ASSISTANCE FORM CONTAINER STYLING
  ========================================================================= */
  .pv-assistance-cta {
    padding: 30px 34px 18px !important;
    background: #e61d4f;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    color: #ffffff;
  }

  #pvDocGrid .pv-assistance-cta h4 {
    margin: 0 0 10px !important;
    font-size: 19px !important;
    line-height: 1.15;
    text-align: center;
    color: #ffffff !important;
    font-weight: 600;
  }

  #pvDocGrid .pv-assistance-cta .sub {
    margin: 0 0 18px !important;
    font-size: 12px !important;
    line-height: 1.38;
    text-align: center;
    color: rgba(255, 255, 255, 0.9) !important;  
  }

  #pvDocGrid .pv-assistance-cta form {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  #pvDocGrid .pv-assistance-cta input {
    height: 40px !important;
    margin-bottom: 12px !important;
    border-radius: 6px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 10px 12px !important;
    background: #ffffff !important;
    color: #333333 !important;
  }

  #pvDocGrid .pv-assistance-cta textarea {
    height: 72px !important;
    min-height: 72px !important;
    margin-bottom: 12px !important;
    border-radius: 8px !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    padding: 12px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #222222 !important;
    font-size: 13px !important;
    resize: none !important;
    transition: all 0.3s ease !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06) !important;
  }

  #pvDocGrid .pv-assistance-cta textarea:focus {
    border-color: #ffffff !important;
    background: #ffffff !important;
    outline: none !important;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4), inset 0 2px 4px rgba(0, 0, 0, 0.04) !important;
  }

  #pvDocGrid .pv-assistance-cta .form-check {
    margin-bottom: 8px !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }

  #pvDocGrid .pv-assistance-cta .terms {
    margin-bottom: 12px !important;
    text-align: center;
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.8) !important;
  }

  #pvDocGrid .pv-assistance-cta .terms a {
    color: #ffffff !important;
    text-decoration: underline !important;
    font-weight: 500;
  }

  #pvDocGrid .pv-assistance-cta .pv-btn-book {
    background: #ffffff !important;
    color: #e61d4f !important;
    border: none !important;
    font-weight: bold !important;
    padding: 10px !important;
    border-radius: 6px !important;
    cursor: pointer;
    transition: background 0.2s;
  }

  #pvDocGrid .pv-assistance-cta .pv-btn-book:hover {
    background: #f8f9fa !important;
  }

  #pvDocGrid .pv-assistance-cta .note {
    margin: 10px 0 0 !important;
    text-align: center;
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }

  #pvDocGrid .min{
      color:#ffffff;
  }

  /* =========================================================================
   🔥 FIXED GLOBAL BOOK NOW BUTTON (DESKTOP FULL WIDTH & CAPSULE SHAPE)
  ========================================================================= */
  #pvDocGrid .pv-assistance-cta .pv-btn-book,
  .pv-assistance-cta .pv-btn-book {
    background: #ffffff !important;
    color: #e12454 !important;
    border: 1px solid #e12454 !important;
    width: 100% !important;
    max-width: 100% !important; 
    height: 48px !important; 
    line-height: 46px !important;
    padding: 0 25px !important;
    border-radius: 50px !important; 
    margin: 20px auto 12px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-align: center !important;
    transition: all 0.2s ease-in-out;
    display: block !important;
    box-shadow: 0 4px 12px rgba(225, 36, 84, 0.15);
  }

  #pvDocGrid .pv-assistance-cta .pv-btn-book:hover,
  .pv-assistance-cta .pv-btn-book:hover {
    background: #ffe0e7 !important;
    border-color: #c11b43 !important;
    transform: translateY(-1px);
  }

  #pvDocGrid .pv-assistance-cta .form-check,
  .pv-assistance-cta .form-check {
    display: flex !important;
    align-items: flex-start !important; 
    justify-content: flex-start !important; 
    gap: 10px !important;  
    text-align: left !important;
    font-size: 14px !important;
    color: #ffffff !important;
    margin-top: 5px !important;
    margin-bottom: 12px !important;
    cursor: pointer;
    width: 100% !important;
  }

  #pvDocGrid .pv-assistance-cta .form-check input,
  .pv-assistance-cta .form-check input {
    margin: 3px 0 0 0 !important;
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
  }

  #pvDocGrid .pv-assistance-cta .terms,
  .pv-assistance-cta .terms {
    text-align: center !important;
    font-size: 14px !important;
    margin-bottom: 15px !important;
    width: 100% !important;
  }

  /* =========================================================================
   🖥️ RESPONSIVE TABLET & LAPTOP VIEW (MAX-WIDTH: 991px)
  ========================================================================= */
  @media (max-width: 991px) {
    #pvDocGrid {
      flex-direction: column !important;
    }
    #pvDocGrid > .pv-doctor-card-col,
    #pvDocGrid > .pv-assistance-cta-col {
      width: 100% !important;
      max-width: 100% !important;
      flex: 1 1 auto !important;
      margin-bottom: 20px;
    }
    #pvDocGrid .pv-doc,
    #pvDocGrid .pv-assistance-cta {
      min-height: auto !important; 
      height: auto !important;
      padding: 25px 20px !important;
    }
  }

  /* =========================================================================
   📱 RESPONSIVE MOBILE VIEW (MAX-WIDTH: 767px)
  ========================================================================= */
  @media (max-width: 767px) {
    #pvDocGrid .pv-assistance-cta .pv-btn-book,
    .pv-assistance-cta .pv-btn-book {
      width: 100% !important;
      max-width: 100% !important;
      height: 48px !important;
      line-height: 46px !important;
      border-radius: 50px !important;
      margin: 20px auto 12px !important;
    }

    #pvDocGrid .pv-assistance-cta .form-check,
    .pv-assistance-cta .form-check {
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      text-align: center !important;
      gap: 8px !important;
      font-size: 13.5px !important;
      margin-bottom: 10px !important;
    }

    #pvDocGrid .pv-assistance-cta .form-check input,
    .pv-assistance-cta .form-check input {
      margin: 0 !important;
      width: 16px !important;
      height: 16px !important;
    }
  }

  .whatsapp-float {
      position: fixed !important;
      bottom: 20px !important;
      right: 20px !important;
      width: 54px !important;
      height: 54px !important;
      border-radius: 50% !important;
      background: #25d366 !important;
      color: #fff !important;
      display: grid !important;
      place-items: center !important;
      font-size: 1.6rem !important;
      box-shadow: 0 6px 20px rgba(37, 211, 102, .5) !important;
      z-index: 99999 !important; 
      transition: transform .2s ease-in-out !important;
  }

  .whatsapp-float:hover {
      transform: scale(1.08) !important;
      color: #fff !important;
  }

