/* ════════════════════════════════════════════
   BH Social Proof – bhsp-style.css v1.1
════════════════════════════════════════════ */

.bhsp-wrap {
    --bhsp-primary: #0d2b5e;
    --bhsp-accent:  #2ecc71;
    --bhsp-bg:      #ffffff;
    --bhsp-bg-alt:  #f8faff;
    --bhsp-text:    #1a1a2e;
    --bhsp-muted:   #667788;
    --bhsp-border:  #e2e8f0;
    --bhsp-radius:  12px;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    box-sizing: border-box;
    color: var(--bhsp-text);
    width: 100%;
    overflow-x: hidden;
}
.bhsp-wrap *, .bhsp-wrap *::before, .bhsp-wrap *::after { box-sizing: inherit; }

.bhsp-section  { padding: 48px 0; }
.bhsp-section:nth-child(even) { background: var(--bhsp-bg-alt); }
.bhsp-inner    { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.bhsp-section-title {
    font-size: clamp(20px, 2.5vw, 28px); font-weight: 800;
    color: var(--bhsp-primary); margin: 0 0 24px;
    position: relative; padding-bottom: 10px;
}
.bhsp-section-title::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 44px; height: 3px; background: var(--bhsp-accent); border-radius: 2px;
}

/* ═══════════════════════════════════════════
   MOBILE ACCORDION LINKS  (hidden on desktop)
═══════════════════════════════════════════ */
.bhsp-mobile-links { display: none; }

@media (max-width: 767px) {

    /* Full-bleed the whole wrap on mobile */
    .bhsp-wrap {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        overflow-x: hidden !important;
    }

    /* Hide desktop-only sections on mobile (testimonials stays visible) */
    .bhsp-media-section,
    .bhsp-blogs-section { display: none; }

    /* Testimonials: single column, hide location card */
    .bhsp-testimonials-section .bhsp-inner { display: block !important; padding: 0 16px; }
    .bhsp-location-col  { display: none; }
    .bhsp-arrow         { width: 30px; height: 30px; font-size: 18px; }
    .bhsp-quote         { font-size: 14px; }
    .bhsp-testimonials-section { padding: 28px 0; }

    /* Show mobile accordion */
    .bhsp-mobile-links {
        display: flex; flex-direction: column;
        background: var(--bhsp-bg);
        border-top: 1px solid var(--bhsp-border);
    }

    /* Each row item (button or link) */
    .bhsp-ml-item {
        display: flex; align-items: center; gap: 14px;
        padding: 16px 20px;
        text-decoration: none;
        color: var(--bhsp-text);
        border-bottom: 1px solid var(--bhsp-border);
        background: var(--bhsp-bg);
        width: 100%;
        cursor: pointer;
        border-left: none; border-right: none; border-top: none;
        text-align: left;
        font-size: 15px;
        font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        transition: background .15s;
    }
    .bhsp-ml-item:hover { background: var(--bhsp-bg-alt); }

    /* Icon bubble */
    .bhsp-ml-icon {
        width: 38px; height: 38px; border-radius: 10px;
        background: rgba(46,204,113,.12);
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
    }
    .bhsp-ml-icon svg { width: 18px; height: 18px; stroke: var(--bhsp-accent); }

    .bhsp-ml-label { flex: 1; font-weight: 600; font-size: 15px; color: var(--bhsp-text); font-family: inherit; letter-spacing: -.1px; }

    /* Arrow / chevron */
    .bhsp-ml-arrow { color: var(--bhsp-muted); font-size: 22px; font-weight: 300; line-height: 1; transition: transform .25s; }
    .bhsp-ml-chevron { display: inline-block; }
    .bhsp-ml-trigger[aria-expanded="true"] .bhsp-ml-chevron { transform: rotate(90deg); }

    /* Accordion wrapper */
    .bhsp-ml-accordion { border-bottom: 1px solid var(--bhsp-border); }
    .bhsp-ml-accordion .bhsp-ml-item { border-bottom: none; }

    /* Collapsible panel */
    .bhsp-ml-panel {
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
        background: var(--bhsp-bg-alt);
    }
    .bhsp-ml-panel.open { max-height: 700px; }
    .bhsp-ml-panel-inner { padding: 16px 20px 20px; }

    /* Media logos grid inside accordion */
    .bhsp-ml-logos-grid {
        display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    }
    .bhsp-ml-logo-item {
        display: flex; align-items: center; justify-content: center;
        padding: 12px 8px; border: 1.5px solid var(--bhsp-border);
        border-radius: 8px; background: var(--bhsp-bg);
        text-decoration: none; min-height: 52px;
    }
    .bhsp-ml-logo-item img { max-height: 30px; max-width: 100%; object-fit: contain; }
    .bhsp-ml-logo-item span { font-weight: 700; font-size: 13px; color: var(--bhsp-primary); text-align: center; }

    /* Vertical list blog rows inside accordion */
    .bhsp-mobile-blogs-scroll {
        display: flex; flex-direction: column; gap: 0;
    }

    .bhsp-mb-card {
        display: flex; flex-direction: row; align-items: center;
        gap: 10px; padding: 9px 4px;
        text-decoration: none; color: var(--bhsp-text);
        border-bottom: 1px solid var(--bhsp-border);
    }
    .bhsp-mb-card:last-child { border-bottom: none; }
    .bhsp-mb-card:hover .bhsp-mb-body h4 { color: var(--bhsp-accent); }

    .bhsp-mb-img {
        position: relative; flex-shrink: 0;
        width: 52px; height: 52px;
        border-radius: 7px; overflow: hidden;
    }
    .bhsp-mb-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .bhsp-mb-img .bhsp-blog-cat { display: none; }

    .bhsp-mb-body { flex: 1; min-width: 0; }
    .bhsp-mb-body h4 {
        margin: 0 0 4px; font-size: 13px; font-weight: 600;
        line-height: 1.35; color: var(--bhsp-primary);
        white-space: normal; word-break: break-word;
        font-weight: 400;
    }
    .bhsp-mb-body span { font-size: 11px; color: var(--bhsp-muted); }

    .bhsp-ml-viewall {
        display: block; margin-top: 14px;
        text-align: center; font-weight: 700; font-size: 13px;
        color: var(--bhsp-primary); text-decoration: none;
        border: 1.5px solid var(--bhsp-accent); border-radius: 8px;
        padding: 10px; transition: background .18s;
    }
    .bhsp-ml-viewall:hover { background: var(--bhsp-accent); color: #fff; }

    /* Contact inside accordion */
    .bhsp-ml-contact { display: flex; flex-direction: column; gap: 12px; }
    .bhsp-ml-loc-name { font-size: 14px; font-weight: 700; color: var(--bhsp-primary); }
    .bhsp-ml-contact-row {
        display: flex; align-items: center; gap: 10px;
        font-size: 13.5px; color: var(--bhsp-text);
        text-decoration: none;
    }
    .bhsp-ml-contact-row:hover { color: var(--bhsp-accent); }
    .bhsp-loc-icon { width: 20px; height: 20px; flex-shrink: 0; }
    .bhsp-loc-icon svg { width: 16px; height: 16px; stroke: var(--bhsp-accent); fill: none; stroke-width: 2; }

    .bhsp-direction-btn--mobile {
        display: inline-flex; align-items: center; gap: 8px;
        background: var(--bhsp-primary); color: #fff;
        padding: 11px 18px; border-radius: 8px;
        font-weight: 700; font-size: 13px; text-decoration: none;
        margin-top: 4px; width: 100%; justify-content: center;
    }
    .bhsp-direction-btn--mobile svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2; }
}

/* ═══════════════════════════════════════════
   DESKTOP: TESTIMONIALS + LOCATION
═══════════════════════════════════════════ */
.bhsp-testimonials-section .bhsp-inner {
    display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start;
}

.bhsp-slider-wrap { display: flex; align-items: center; gap: 8px; position: relative; min-height: 180px; }
.bhsp-slider      { flex: 1; overflow: hidden; }
.bhsp-slide       { display: none; animation: bhsp-fadein .3s ease; }
.bhsp-slide.active{ display: block; }

@keyframes bhsp-fadein { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:none} }

.bhsp-arrow {
    background: none; border: 1.5px solid var(--bhsp-border);
    width: 36px; height: 36px; border-radius: 50%;
    cursor: pointer; font-size: 20px; color: var(--bhsp-primary);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: all .18s; line-height: 1;
}
.bhsp-arrow:hover { background: var(--bhsp-primary); color: #fff; border-color: var(--bhsp-primary); }

.bhsp-stars  { margin-bottom: 10px; }
.bhsp-star   { color: #f5a623; font-size: 20px; }
.bhsp-quote  { font-size: clamp(13px,1.5vw,15px); line-height: 1.7; color: #334; font-style: italic; margin: 0 0 14px; border: none; padding: 0; }
.bhsp-patient{ display: flex; flex-direction: column; gap: 3px; }
.bhsp-patient strong { color: var(--bhsp-primary); font-size: 14px; }
.bhsp-patient span   { color: var(--bhsp-muted);   font-size: 12px; }

.bhsp-dots { display: flex; gap: 7px; margin-top: 16px; }
.bhsp-dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--bhsp-border); cursor: pointer; transition: all .2s; }
.bhsp-dot.active { background: var(--bhsp-primary); width: 22px; border-radius: 4px; }

/* Location card */
.bhsp-location-card {
    background: var(--bhsp-primary); color: #fff;
    border-radius: var(--bhsp-radius); padding: 28px 24px;
    box-shadow: 0 8px 32px rgba(13,43,94,.2);
}
.bhsp-location-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.bhsp-location-icon svg { width: 22px; height: 22px; stroke: var(--bhsp-accent); }
.bhsp-location-name { font-size: 16px; font-weight: 700; margin: 0 0 16px; line-height: 1.3; }
.bhsp-location-details { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 12px; }
.bhsp-location-details li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; }
.bhsp-loc-icon { width: 20px; height: 20px; flex-shrink: 0; opacity: .8; }
.bhsp-loc-icon svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }
.bhsp-location-details a { color: rgba(255,255,255,.9); text-decoration: none; }
.bhsp-location-details a:hover { color: var(--bhsp-accent); text-decoration: underline; }

.bhsp-direction-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bhsp-accent); color: #fff;
    padding: 11px 20px; border-radius: 8px;
    font-weight: 700; font-size: 14px; text-decoration: none;
    transition: filter .18s, transform .18s;
}
.bhsp-direction-btn svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; flex-shrink: 0; }
.bhsp-direction-btn:hover { filter: brightness(1.1); transform: translateY(-1px); color: #fff; }

/* ═══════════════════════════════════════════
   DESKTOP: MEDIA LOGOS
═══════════════════════════════════════════ */
.bhsp-media-logos { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.bhsp-media-logo  {
    flex: 1; min-width: 120px; max-width: 180px;
    display: flex; align-items: center; justify-content: center;
    padding: 16px 20px; background: var(--bhsp-bg);
    border: 1.5px solid var(--bhsp-border); border-radius: 10px;
    text-decoration: none; transition: box-shadow .2s, border-color .2s, transform .18s;
    min-height: 64px;
}
.bhsp-media-logo:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); border-color: var(--bhsp-accent); transform: translateY(-2px); }
.bhsp-media-logo img  { max-height: 36px; max-width: 130px; object-fit: contain; filter: grayscale(1); transition: filter .2s; }
.bhsp-media-logo:hover img { filter: grayscale(0); }
.bhsp-media-text { font-weight: 700; font-size: 14px; color: var(--bhsp-primary); letter-spacing: -.3px; }

/* ═══════════════════════════════════════════
   DESKTOP: BLOGS
═══════════════════════════════════════════ */
.bhsp-blogs-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.bhsp-blogs-header .bhsp-section-title { margin-bottom: 0; }
.bhsp-view-all { font-weight: 700; font-size: 13px; color: var(--bhsp-primary); text-decoration: none; display: flex; align-items: center; gap: 4px; border-bottom: 2px solid var(--bhsp-accent); padding-bottom: 2px; transition: color .18s; }
.bhsp-view-all:hover { color: var(--bhsp-accent); }

.bhsp-blogs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.bhsp-blog-card  { background: var(--bhsp-bg); border-radius: var(--bhsp-radius); border: 1.5px solid var(--bhsp-border); overflow: hidden; transition: box-shadow .2s, transform .2s; }
.bhsp-blog-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-3px); }

.bhsp-blog-img  { position: relative; overflow: hidden; }
.bhsp-blog-img img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .4s; }
.bhsp-blog-card:hover .bhsp-blog-img img { transform: scale(1.04); }
.bhsp-blog-cat  { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 4px; font-size: 10px; font-weight: 700; color: #fff; letter-spacing: .5px; text-transform: uppercase; }

.bhsp-blog-body   { padding: 16px 18px 18px; }
.bhsp-blog-title  { margin: 0 0 14px; font-size: 15px; font-weight: 700; line-height: 1.45; }
.bhsp-blog-title a{ color: var(--bhsp-primary); text-decoration: none; }
.bhsp-blog-title a:hover { color: var(--bhsp-accent); }
.bhsp-blog-footer { display: flex; justify-content: space-between; align-items: center; }
.bhsp-blog-date   { font-size: 12px; color: var(--bhsp-muted); }
.bhsp-read-more   { font-size: 12px; font-weight: 700; color: var(--bhsp-primary); text-decoration: none; }
.bhsp-read-more:hover { color: var(--bhsp-accent); }

/* ═══════════════════════════════════════════
   TABLET
═══════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1024px) {
    .bhsp-testimonials-section .bhsp-inner { grid-template-columns: 1fr 260px; }
    .bhsp-blogs-grid { grid-template-columns: repeat(2,1fr); }
    .bhsp-mobile-links { display: none !important; }
}
