/* ================================================================
   HPCI SERVICES PAGE — PROFESSIONAL REDESIGN
================================================================ */
    :root {
        --hpci-green: #068131;
        --hpci-red: #D81112;
        --hpci-dark: #1a2332;
        --hpci-gray: #666;
        --hpci-light: #f4f7f4;
    }
 /* ══════════════════════════════════════════════════════════════════════
           1. CSS CUSTOM PROPERTIES
        ══════════════════════════════════════════════════════════════════════ */
    :root {
        --hpci-green: #2eae37;
        --hpci-dark-green: #1a3a1a;
        --hpci-green-light: #f0f9f0;
        --hpci-green-border: #e0ece0;
        --hpci-text: #333333;
        --hpci-text-muted: #666666;
        --hpci-text-dark: #1a1a1a;
        --hpci-white: #ffffff;
        --hpci-bg-light: #f8faf8;
        --hpci-radius: 12px;
        --hpci-radius-sm: 8px;
        --hpci-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
        --hpci-shadow-hover: 0 10px 36px rgba(0, 0, 0, 0.13);
        --hpci-transition: 0.22s ease;
        --hpci-font-body: 'Jost', sans-serif;
        /* FAQ specific */
        --hpci-red: #D71112;
        --hpci-faq-green: #098231;
        --hpci-dark: #111111;
        --hpci-gray: #555555;
        --hpci-bg: #f8f9f4;
        --font-body: 'Jost', sans-serif;
        --font-head: 'Rajdhani', sans-serif;
    }

    /* ══════════════════════════════════════════════════════════════════════
           2. BASE
        ══════════════════════════════════════════════════════════════════════ */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }
   /* ── Trust badges band ───────────────────────── */
    .hpci-trust-band {
        background: #f8fdf9;
        border-top: 2px solid #e8f5ec;
        border-bottom: 2px solid #e8f5ec;
        padding: 20px 0;
        font-family: 'Jost', sans-serif;
    }

    .hpci-trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        font-weight: 600;
        color: #222;
    }

    .hpci-trust-item span.dot {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #098231;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    /* ── Book CTA strip ──────────────────────────── */
    .hpci-book-strip {
        background: linear-gradient(135deg, #098231 0%, #065f24 100%);
        padding: 50px 0;
        text-align: center;
        font-family: 'Jost', sans-serif;
    }
@media (max-width: 768px) {
    .hpci-trust-band .row {
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 6px !important;
    }
    
    .hpci-trust-item {
        justify-content: center !important;
        text-align: center !important;
        font-size: 12px !important;
        flex-direction: column !important;
        gap: 4px !important;
    }

    .hpci-trust-item .dot {
        width: 24px !important;
        height: 24px !important;
    }

    .hpci-trust-item .dot svg {
        width: 13px !important;
        height: 13px !important;
    }
}
    .hpci-book-strip h2 {
        font-family: 'Rajdhani', sans-serif;
        font-size: clamp(24px, 4vw, 40px);
        font-weight: 700;
        color: #fff;
        margin: 0 0 10px;
    }

    .hpci-book-strip p {
        color: rgba(255, 255, 255, 0.85);
        font-size: 16px;
        margin: 0 0 24px;
    }

    .hpci-book-strip .hpci-btn-primary {
        font-size: 17px;
        padding: 15px 36px;
    }

    .hpci-book-strip .hpci-btn-wa {
        background: #25D366;
        color: #fff;
        box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
        font-family: 'Jost', sans-serif;
        font-size: 17px;
        font-weight: 700;
        padding: 15px 36px;
        border-radius: 6px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.2s;
    }

    .hpci-book-strip .hpci-btn-wa:hover {
        background: #1da851;
        color: #fff;
        transform: translateY(-2px);
    }
    
    .visually-hidden {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        padding: 0 !important;
        margin: -1px !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        white-space: nowrap !important;
        border: 0 !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
           3. SKIP LINK
        ══════════════════════════════════════════════════════════════════════ */
    .skip-to-main {
        position: absolute;
        left: -9999px;
        top: 8px;
        z-index: 9999;
        background: var(--hpci-green);
        color: var(--hpci-white);
        padding: 10px 22px;
        border-radius: 6px;
        font-weight: 700;
        font-size: 0.9rem;
        text-decoration: none;
    }

    .skip-to-main:focus {
        left: 8px;
    }

    /* ══════════════════════════════════════════════════════════════════════
           4. FOCUS RING
        ══════════════════════════════════════════════════════════════════════ */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    [tabindex]:focus-visible {
        outline: 3px solid var(--hpci-green) !important;
        outline-offset: 3px !important;
        border-radius: 4px !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
           5. PAGE HEADER (banner) — FIXED to match home page hero treatment
           ── Root cause of the original bug: .page-header__bg had ZERO
              positioning/sizing rules, only its ::after pseudo-element was
              styled. That collapsed the whole banner box to near-zero height
              and left only a stray gradient sliver visible. Fixed below by
              giving .page-header__bg full absolute coverage + background-size.
           ── SPACING PASS: min-height reduced (was 420px) so the banner
              doesn't push content down unnecessarily on desktop.
        ══════════════════════════════════════════════════════════════════════ */
    .page-header {
        position: relative;
        width: 100%;
        aspect-ratio: 1920 / 700;
        max-height: 700px;
        min-height: 140px;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .page-header__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        z-index: 1;
    }

    /* ── MOBILE BANNER FIX ──────────────────────────────────────────────────
   The banner image is very wide (1920:700). On narrow screens, cropping
   it with background-size:cover was cutting off the right-side
   "COMPLETE PEST CONTROL..." text. Below ~767px we switch to
   background-size:contain (full image visible, nothing cropped) and let
   the box height follow the image's natural aspect-ratio so there's no
   leftover blank strip above/below it.
────────────────────────────────────────────────────────────────────────── */
    @media (max-width: 767px) {
        .page-header {
            aspect-ratio: 1920 / 700;
            min-height: 0;
            height: auto;
        }

        .page-header__bg {
            background-size: contain;
            background-position: center center;
            background-color: #1a1a1a;
        }

        .page-header__inner h1 {
            max-width: 90%;
            font-size: clamp(1.1rem, 5vw, 1.6rem);
        }

        .thm-breadcrumb li,
        .thm-breadcrumb li a {
            font-size: 0.78rem;
        }
    }

    @media (max-width: 360px) {
        .page-header__inner h1 {
            font-size: 1rem;
        }
    }

    .page-header__bg::after {
        content: '';
        position: absolute;
        inset: 0;
        display: none;
        pointer-events: none;
        z-index: 2;
    }

    .page-header .container {
        position: relative;
        z-index: 3;
        width: 100%;
    }

    .page-header__inner h1 {
        color: var(--hpci-white);
        font-weight: 800;
        font-size: clamp(1.8rem, 4.5vw, 3rem);
        line-height: 1.25;
        margin-bottom: 10px;
        max-width: 700px;
    }

    .thm-breadcrumb {
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .thm-breadcrumb li,
    .thm-breadcrumb li a {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
    }

    .thm-breadcrumb li a:hover {
        color: var(--hpci-white);
    }

    /* ══════════════════════════════════════════════════════════════════════
           6. TRUST BAR — SPACING PASS: tighter vertical padding
        ══════════════════════════════════════════════════════════════════════ */
    .hpci-trust-bar {
        background-color: #f0f7f2;
        padding: 10px 0;
    }

    .hpci-trust-bar .container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hpci-trust-bar ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 18px;
        justify-content: center;
        align-items: center;
    }

    .hpci-trust-bar li {
        display: flex;
        align-items: center;
        gap: 9px;
        font-size: 14px;
        font-weight: 500;
        color: #1a1a1a;
        white-space: nowrap;
    }

    .hpci-trust-bar li i {
        color: var(--hpci-green);
        font-size: 0.95rem;
        flex-shrink: 0;
    }

    .hpci-trust-bar li a {
        color: #1a1a1a;
        text-decoration: none;
    }

    .hpci-trust-bar li a:hover {
        color: var(--hpci-green);
        text-decoration: underline;
    }

    .hpci-trust-bar .icon-wrap {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background-color: #1b5e20;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-weight: 700;
    }

    .hpci-trust-bar .icon-wrap svg {
        stroke: #ffffff;
    }

    /* ══════════════════════════════════════════════════════════════════════
           7. INTRO PARAGRAPH — SPACING PASS: tighter padding/margin
        ══════════════════════════════════════════════════════════════════════ */
    .hpci-page-intro {
        background: var(--hpci-white);
        border: 1px solid var(--hpci-green-border);
        border-left: 4px solid var(--hpci-green);
        border-radius: 0 var(--hpci-radius-sm) var(--hpci-radius-sm) 0;
        padding: 14px 20px;
        margin-bottom: 20px;
    }

    .hpci-page-intro p {
        margin: 0;
        font-size: 1rem;
        color: var(--hpci-text-muted);
        line-height: 1.7;
    }

    .hpci-page-intro p strong {
        color: var(--hpci-text-dark);
    }

    .hpci-page-intro p a {
        color: var(--hpci-green);
        font-weight: 700;
        text-decoration: none;
    }

    .hpci-page-intro p a:hover {
        text-decoration: underline;
    }

    /* ══════════════════════════════════════════════════════════════════════
           8. FILTER BAR — SPACING PASS: tighter padding/margin
        ══════════════════════════════════════════════════════════════════════ */
    .hpci-filter-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 8px;
        background: var(--hpci-bg-light);
        border: 1px solid var(--hpci-green-border);
        border-radius: var(--hpci-radius-sm);
        padding: 9px 14px;
        margin-bottom: 16px;
        font-size: 0.88rem;
    }

    .hpci-filter-bar p {
        margin: 0;
        color: var(--hpci-text-muted);
    }

    .hpci-filter-bar p strong {
        color: var(--hpci-text-dark);
    }

    .hpci-filter-bar a {
        color: #c0392b;
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 4px 10px;
        border: 1px solid #e8c8c5;
        border-radius: 50px;
        font-size: 0.82rem;
        transition: background var(--hpci-transition), color var(--hpci-transition);
    }

    .hpci-filter-bar a:hover {
        background: #c0392b;
        color: var(--hpci-white);
        border-color: #c0392b;
    }

    /* ══════════════════════════════════════════════════════════════════════
           9. SERVICE CARDS — SPACING PASS: tighter row gaps + card padding
        ══════════════════════════════════════════════════════════════════════ */
    .services-page ul.row>li {
        display: flex;
        margin-bottom: 18px;
    }

    .services-page ul.row>li:last-child {
        margin-bottom: 0;
    }

    .services-one__single {
        background: var(--hpci-white);
        border-radius: var(--hpci-radius);
        box-shadow: var(--hpci-shadow);
        overflow: hidden;
        transition: box-shadow var(--hpci-transition), transform var(--hpci-transition);
        will-change: transform;
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
        border: 1px solid transparent;
    }

    .services-one__single:hover {
        box-shadow: var(--hpci-shadow-hover);
        transform: translateY(-4px);
        border-color: var(--hpci-green-border);
    }

    .services-one__img-wrap {
        aspect-ratio: 16 / 9;
        overflow: hidden;
        background: #e8f0e8;
        position: relative;
        flex-shrink: 0;
    }

    .services-one__img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.45s ease;
    }

    .services-one__single:hover .services-one__img-wrap img {
        transform: scale(1.05);
    }

    .services-one__cat-badge {
        position: absolute;
        bottom: 10px;
        left: 10px;
        background: var(--hpci-green);
        color: var(--hpci-white);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        padding: 4px 10px;
        border-radius: 50px;
        line-height: 1.4;
        pointer-events: none;
    }

    .services-one__card-body {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: 16px 18px 18px;
    }

    .services-one__title {
        font-size: 1.08rem;
        font-weight: 700;
        line-height: 1.4;
        margin: 0 0 8px;
        color: var(--hpci-text-dark);
    }

    .services-one__title a {
        color: inherit;
        text-decoration: none;
        transition: color var(--hpci-transition);
    }

    .services-one__title a:hover {
        color: var(--hpci-green);
    }

    .services-one__short-desc {
        font-size: 0.88rem;
        color: var(--hpci-text-muted);
        line-height: 1.65;
        margin-bottom: 14px;
        flex: 1;
    }

    .services-one__btn-box {
        margin-top: auto;
    }

    .services-one__btn-box .thm-btn1 {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        min-height: 44px;
        padding: 10px 24px;
        border-radius: 50px;
        font-size: 0.88rem;
        font-weight: 700;
    }

    /* ══════════════════════════════════════════════════════════════════════
           10. EMPTY STATE — SPACING PASS: tighter padding
        ══════════════════════════════════════════════════════════════════════ */
    .hpci-empty {
        text-align: center;
        padding: 44px 24px;
        color: var(--hpci-text-muted);
    }

    .hpci-empty i {
        font-size: 2.8rem;
        display: block;
        margin-bottom: 14px;
        color: #c8d8c8;
    }

    .hpci-empty p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hpci-empty a {
        color: var(--hpci-green);
        font-weight: 600;
    }

    /* ══════════════════════════════════════════════════════════════════════
           11. PAGINATION — SPACING PASS: tighter top/bottom margin
        ══════════════════════════════════════════════════════════════════════ */
    .services-page__pagination {
        margin: 0 0 12px;
    }

    .pg-pagination {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        align-items: center;
    }

    .pg-pagination li a,
    .pg-pagination li span {
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--hpci-radius-sm);
        font-size: 0.9rem;
        font-weight: 600;
        transition: background var(--hpci-transition), color var(--hpci-transition);
    }

    .pg-pagination li a {
        color: var(--hpci-text);
        text-decoration: none;
        background: var(--hpci-bg-light);
        border: 1px solid var(--hpci-green-border);
    }

    .pg-pagination li a:hover {
        background: var(--hpci-green);
        color: var(--hpci-white);
        border-color: var(--hpci-green);
    }

    .pg-pagination li.active span {
        background: var(--hpci-green);
        color: var(--hpci-white);
        border: 1px solid var(--hpci-green);
    }

    .pg-pagination li.disabled span {
        opacity: 0.38;
        cursor: not-allowed;
        pointer-events: none;
        background: var(--hpci-bg-light);
        border: 1px solid var(--hpci-green-border);
    }

    /* ══════════════════════════════════════════════════════════════════════
           12. LAYOUT — SPACING PASS: section padding reduced (was implicit
               default 100px/100px Bootstrap theme padding on .services-page
               via the section element; pinned to explicit, tighter values)
        ══════════════════════════════════════════════════════════════════════ */
    .services-page {
        padding: 36px 0 0px;
    }

    .services-page .row {
        align-items: flex-start;
    }

    .services-page .sidebar {
        position: sticky;
        top: 96px;
    }

    @supports not (position: sticky) {
        .services-page .sidebar {
            position: relative;
            top: auto;
        }
    }

    /* ══════════════════════════════════════════════════════════════════════
           13. SIDEBAR SEARCH
        ══════════════════════════════════════════════════════════════════════ */
    .sidebar__search-form {
        display: flex;
        align-items: stretch;
        border: 2px solid var(--hpci-green-border);
        border-radius: var(--hpci-radius-sm);
        overflow: hidden;
        transition: border-color var(--hpci-transition);
    }

    .sidebar__search-form:focus-within {
        border-color: var(--hpci-green);
    }

    .sidebar__search-form input[type="search"] {
        flex: 1;
        border: none;
        outline: none;
        padding: 11px 14px;
        font-size: 0.9rem;
        background: var(--hpci-white);
        color: var(--hpci-text-dark);
        -webkit-appearance: none;
        appearance: none;
        min-width: 0;
    }

    .sidebar__search-form input[type="search"]::-webkit-search-cancel-button {
        display: none;
    }

    .sidebar__search-form button {
        background: var(--hpci-green);
        color: var(--hpci-white);
        border: none;
        padding: 0 18px;
        cursor: pointer;
        font-size: 0.95rem;
        transition: background var(--hpci-transition);
        min-width: 48px;
        min-height: 44px;
        flex-shrink: 0;
    }

    .sidebar__search-form button:hover {
        background: var(--hpci-dark-green);
    }

    /* ══════════════════════════════════════════════════════════════════════
           14. SIDEBAR CATEGORIES
        ══════════════════════════════════════════════════════════════════════ */
    .sidebar__category-list {
        margin: 0;
        padding: 0;
    }

    .sidebar__category-list li {
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--hpci-green-border);
        transition: background var(--hpci-transition);
    }

    .sidebar__category-list li:last-child {
        border-bottom: none;
    }

    .sidebar__category-list li a {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 9px 2px;
        font-size: 0.91rem;
        color: var(--hpci-text);
        text-decoration: none;
        transition: color var(--hpci-transition), padding-left var(--hpci-transition);
    }

    .sidebar__category-list li a:hover,
    .sidebar__category-list li.active a {
        color: var(--hpci-green);
        padding-left: 6px;
    }

    .sidebar__category-list li a .cat-count {
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--hpci-text-muted);
        background: var(--hpci-bg-light);
        border: 1px solid var(--hpci-green-border);
        padding: 2px 7px;
        border-radius: 50px;
        min-width: 28px;
        text-align: center;
        flex-shrink: 0;
    }

    .sidebar__category-list li.active a .cat-count {
        background: var(--hpci-green);
        color: var(--hpci-white);
        border-color: var(--hpci-green);
    }

    /* ══════════════════════════════════════════════════════════════════════
           15. SIDEBAR RECENT SERVICES
        ══════════════════════════════════════════════════════════════════════ */
    .sidebar__post-list {
        margin: 0;
        padding: 0;
    }

    .sidebar__post-list>li {
        display: flex;
        gap: 12px;
        padding: 9px 0;
        border-bottom: 1px solid var(--hpci-green-border);
        align-items: flex-start;
    }

    .sidebar__post-list>li:last-child {
        border-bottom: none;
    }

    .sidebar__post-image {
        flex-shrink: 0;
    }

    .sidebar__post-image img {
        width: 78px;
        height: 78px;
        object-fit: cover;
        border-radius: var(--hpci-radius-sm);
        display: block;
        border: 1px solid var(--hpci-green-border);
    }

    .sidebar__post-date {
        font-size: 0.76rem;
        color: var(--hpci-green);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        margin-bottom: 4px;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .sidebar__post-list h4 {
        font-size: 0.86rem;
        line-height: 1.45;
        margin: 0;
        color: var(--hpci-text-dark);
    }

    .sidebar__post-list h4 a {
        color: var(--hpci-text-dark) !important;
        text-decoration: none;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: color var(--hpci-transition);
    }

    .sidebar__post-list h4 a:hover {
        color: var(--hpci-green) !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
           16. SIDEBAR CTA BOX — SPACING PASS: tighter padding/margin
        ══════════════════════════════════════════════════════════════════════ */
    .sidebar__cta-box {
        background: linear-gradient(150deg, var(--hpci-dark-green) 0%, #2b6e30 100%);
        border-radius: var(--hpci-radius);
        padding: 20px 18px;
        color: var(--hpci-white);
        text-align: center;
        margin-bottom: 0;
        box-shadow: 0 6px 24px rgba(26, 58, 26, 0.22);
    }

    .sidebar__cta-box h3 {
        color: var(--hpci-white) !important;
        font-size: 1.05rem;
        font-weight: 800;
        margin-bottom: 6px;
        line-height: 1.4;
    }

    .sidebar__cta-box p {
        color: rgba(255, 255, 255, 0.88);
        font-size: 0.86rem;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .sidebar__cta-box .cta-btn-phone,
    .sidebar__cta-box .cta-btn-inquiry {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 50px;
        text-decoration: none !important;
        font-weight: 700;
        font-size: 0.88rem;
        width: 100%;
        padding: 12px 20px;
        min-height: 46px;
        transition: transform var(--hpci-transition), box-shadow var(--hpci-transition),
            background var(--hpci-transition), border-color var(--hpci-transition);
    }

    .sidebar__cta-box .cta-btn-phone {
        background: var(--hpci-white);
        color: var(--hpci-dark-green) !important;
        margin-bottom: 10px;
        border: 2px solid transparent;
    }

    .sidebar__cta-box .cta-btn-phone:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
    }

    .sidebar__cta-box .cta-btn-inquiry {
        background: transparent;
        color: var(--hpci-white) !important;
        border: 2px solid rgba(255, 255, 255, 0.55);
    }

    .sidebar__cta-box .cta-btn-inquiry:hover {
        background: rgba(255, 255, 255, 0.14);
        border-color: var(--hpci-white);
    }

    /* ══════════════════════════════════════════════════════════════════════
           16b. SIDEBAR WIDGET SPACING — uniform, tighter gap between
                stacked sidebar widgets (search / categories / recent / CTA)
           NOTE: margin-top:0 on .sidebar__title kills the default browser
           top-margin on <h3>, which was "collapsing through" the empty
           .sidebar__single wrapper and adding extra invisible gap above
           every widget — this was the real source of the big blank space.
        ══════════════════════════════════════════════════════════════════════ */
    .sidebar__single {
        margin-bottom: 8px !important;
    }

    .sidebar__title {
        margin-top: 0 !important;
        margin-bottom: 8px !important;
    }

    /* ══════════════════════════════════════════════════════════════════════
           17. CTA STRIP — SPACING PASS: tighter vertical padding/margins
        ══════════════════════════════════════════════════════════════════════ */
    .hpci-cta-strip {
        background: linear-gradient(135deg, var(--hpci-dark-green) 0%, var(--hpci-green) 100%);
        color: var(--hpci-white);
        padding: 40px 0;
        text-align: center;
    }

    .hpci-cta-strip h2 {
        color: var(--hpci-white) !important;
        font-weight: 800;
        font-size: clamp(1.3rem, 3vw, 1.9rem);
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .hpci-cta-strip p {
        color: rgba(255, 255, 255, 0.88);
        font-size: clamp(0.88rem, 2vw, 1rem);
        margin-bottom: 20px;
    }

    .hpci-cta-strip .cta-group {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hpci-cta-strip .btn-call,
    .hpci-cta-strip .btn-book {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 14px 32px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        min-height: 50px;
        transition: transform var(--hpci-transition), box-shadow var(--hpci-transition), background var(--hpci-transition);
    }

    .hpci-cta-strip .btn-call {
        background: var(--hpci-white);
        color: var(--hpci-dark-green) !important;
    }

    .hpci-cta-strip .btn-call:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    }

    .hpci-cta-strip .btn-book {
        background: transparent;
        color: var(--hpci-white) !important;
        border: 2px solid rgba(255, 255, 255, 0.65);
    }

    .hpci-cta-strip .btn-book:hover {
        background: rgba(255, 255, 255, 0.14);
        border-color: var(--hpci-white);
    }

    /* ══════════════════════════════════════════════════════════════════════
           18. FAQ SECTION — HPCI Custom Style (matches site theme exactly)
               Font: Jost (body) + Rajdhani (headings)
               Colors: #D71112 (red), #098231 (green), #111 (dark)
               SPACING PASS: section padding, title margins, image min-height,
               accordion item gaps and answer padding all tightened.
        ══════════════════════════════════════════════════════════════════════ */
    .hpci-faq-section {
        padding: 0px 0 56px;
        background: var(--hpci-bg);
        font-family: var(--font-body);
    }

    .hpci-faq-container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .hpci-faq-row {
        display: flex;
        align-items: flex-start;
        gap: 44px;
        flex-wrap: wrap;
    }

    /* ── Left Column ── */
    .hpci-faq-left {
        flex: 1;
        min-width: 280px;
    }

    .hpci-faq-tagline-wrap {
        margin-bottom: 12px;
    }

    .hpci-faq-tagline {
        display: inline-block;
        background: var(--hpci-red);
        color: var(--hpci-white);
        font-size: 13px;
        font-weight: 700;
        padding: 7px 22px;
        border-radius: 30px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-family: var(--font-body);
    }

    .hpci-faq-main-title {
        font-size: 42px;
        font-weight: 700;
        color: var(--hpci-dark);
        line-height: 1.1;
        margin: 0 0 10px;
        font-family: var(--font-head);
    }

    .hpci-faq-title-green {
        color: var(--hpci-faq-green);
    }

    .hpci-faq-title-bar {
        width: 55px;
        height: 4px;
        background: var(--hpci-red);
        border-radius: 2px;
        margin-bottom: 16px;
    }

    .hpci-faq-desc {
        color: var(--hpci-gray);
        font-size: 17px;
        line-height: 1.7;
        margin: 0 0 20px;
        font-family: var(--font-body);
        text-align: justify;
    }

    .hpci-faq-img-wrap {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
    }

    .hpci-faq-img {
        width: 100%;
        display: block;
        border-radius: 16px;
        min-height: 260px;
        object-fit: cover;
    }

    .hpci-faq-img-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(9, 130, 49, 0.95));
        padding: 36px 22px 20px;
        border-radius: 0 0 16px 16px;
    }

    .hpci-faq-call-box {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .hpci-faq-call-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--hpci-red);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .hpci-faq-call-text p {
        color: rgba(255, 255, 255, 0.75);
        font-size: 14px;
        margin: 0 0 2px;
        font-family: var(--font-body);
        text-align: left;
    }

    .hpci-faq-call-text a {
        color: var(--hpci-white);
        font-size: 22px;
        font-weight: 700;
        font-family: var(--font-head);
        text-decoration: none;
        letter-spacing: 1px;
        display: block;
        transition: color 0.3s ease;
    }

    .hpci-faq-call-text a:hover {
        color: #ffe0a0;
    }

    /* ── Right Column — Accordion ── */
    .hpci-faq-right {
        flex: 1.3;
        min-width: 280px;
        padding-top: 6px;
    }

    .hpci-faq-item {
        border-radius: var(--hpci-radius);
        margin-bottom: 10px;
        overflow: hidden;
        box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
        transition: box-shadow 0.3s ease;
    }

    .hpci-faq-item:hover {
        box-shadow: 0 4px 22px rgba(0, 0, 0, 0.11);
    }

    .hpci-faq-item:last-child {
        margin-bottom: 0;
    }

    .hpci-faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 20px;
        cursor: pointer;
        background: var(--hpci-white);
        transition: background 0.3s ease;
        user-select: none;
        -webkit-user-select: none;
    }

    .hpci-faq-question:hover {
        background: #f4faf5;
    }

    .hpci-faq-item.active .hpci-faq-question {
        background: var(--hpci-faq-green);
    }

    .hpci-faq-item.active .hpci-faq-question h3 {
        color: var(--hpci-white);
    }

    .hpci-faq-item.active .hpci-faq-question .hpci-faq-icon {
        background: rgba(255, 255, 255, 0.25);
        color: var(--hpci-white);
    }

    .hpci-faq-question h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 700;
        color: var(--hpci-dark);
        font-family: var(--font-head);
        line-height: 1.3;
        transition: color 0.3s ease;
    }

    .hpci-faq-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        border-radius: 50%;
        background: #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 12px;
        font-size: 20px;
        font-weight: 700;
        color: var(--hpci-faq-green);
        line-height: 1;
        transition: background 0.3s ease, color 0.3s ease;
    }

    .hpci-faq-answer {
        background: var(--hpci-white);
        overflow: hidden;
    }

    .hpci-faq-answer p {
        margin: 0;
        color: #444;
        font-size: 15px;
        line-height: 1.75;
        font-family: var(--font-body);
        padding: 16px 20px;
        text-align: justify;
    }

    /* ══════════════════════════════════════════════════════════════════════
           18b. FAQ TOP SPACING — temporarily neutral (0). Negative margin on
                this section was overlapping/clipping content above it because
                the real source of the blank gap is outside this file (likely
                in style.css / services.css, or a column-height mismatch in
                the row above). See chat for how to find the exact source so
                this can be fixed without any risk of cutting text again.
        ══════════════════════════════════════════════════════════════════════ */
    .hpci-faq-section {
        margin-top: 0;
    }

    /* ══════════════════════════════════════════════════════════════════════
           19. FONT DISPLAY
        ══════════════════════════════════════════════════════════════════════ */
    @font-face {
        font-display: swap;
    }

    /* ══════════════════════════════════════════════════════════════════════
           20. RESPONSIVE — SPACING PASS: all breakpoint min-heights and
               section paddings reduced proportionally for a denser layout
        ══════════════════════════════════════════════════════════════════════ */
    @media (max-width: 991px) {
        .services-page {
            padding: 28px 0 0px;
        }

        .services-page .sidebar {
            position: relative;
            top: auto;
            margin-top: 4px;
        }

        .hpci-cta-strip {
            padding: 32px 0;
        }

        .hpci-faq-section {
            padding: 0px 0 30px;
        }

        .hpci-faq-row {
            gap: 30px;
        }

        .hpci-faq-main-title {
            font-size: 34px;
        }
    }

    @media (max-width: 767px) {
        .hpci-trust-bar ul {
            flex-wrap: nowrap;
            justify-content: flex-start;
        }

        .services-page {
            padding: 22px 0 0px;
        }

        .services-page ul.row>li {
            margin-bottom: 14px;
        }

        .hpci-page-intro {
            padding: 12px 16px;
            margin-bottom: 16px;
        }

        .hpci-filter-bar {
            margin-bottom: 14px;
        }

        .sidebar__single {
            margin-bottom: 6px !important;
        }

        .sidebar__title {
            margin-top: 0 !important;
            margin-bottom: 6px !important;
        }

        .hpci-cta-strip {
            padding: 28px 0;
        }

        .hpci-faq-section {
            padding: 0px 0 40px;
        }

        .hpci-faq-container {
            padding: 0 20px;
        }

        .hpci-faq-row {
            flex-direction: column;
            gap: 26px;
        }

        .hpci-faq-left,
        .hpci-faq-right {
            flex: none;
            width: 100%;
            min-width: unset;
        }

        .hpci-faq-main-title {
            font-size: 30px;
            margin-bottom: 6px;
        }

        .hpci-faq-main-title br {
            display: none;
        }

        .hpci-faq-desc {
            margin-bottom: 14px;
        }

        .hpci-faq-question {
            padding: 14px 16px;
        }

        .hpci-faq-question h3 {
            font-size: 16px;
        }

        .hpci-faq-answer p {
            padding: 14px 16px;
        }

        .hpci-faq-right {
            padding-top: 0;
        }
    }

    @media (max-width: 575px) {
        .hpci-trust-bar {
            padding: 8px 0;
        }

        .hpci-trust-bar ul {
            flex-wrap: wrap;
            justify-content: center;
            gap: 6px 12px;
        }

        .hpci-trust-bar li {
            font-size: 0.79rem;
        }

        .hpci-page-intro p {
            font-size: 0.92rem;
        }

        .services-page ul.row>li {
            margin-bottom: 12px;
        }

        .sidebar__single {
            margin-bottom: 4px !important;
        }

        .sidebar__cta-box {
            padding: 18px 14px;
        }

        .hpci-cta-strip {
            padding: 24px 0;
        }

        .hpci-cta-strip .cta-group {
            flex-direction: column;
            align-items: center;
        }

        .hpci-cta-strip .btn-call,
        .hpci-cta-strip .btn-book {
            width: 100%;
            max-width: 320px;
            justify-content: center;
            padding: 14px 20px;
        }

        .hpci-faq-img {
            min-height: 200px;
        }

        .hpci-faq-img-overlay {
            padding: 28px 18px 16px;
        }

        .hpci-faq-question h3 {
            font-size: 15px;
        }
    }

    @media (max-width: 480px) {
        .hpci-faq-main-title {
            font-size: 26px;
        }

        .hpci-faq-call-text a {
            font-size: 19px;
        }
    }

    @media (max-width: 360px) {

        .sidebar__cta-box .cta-btn-phone,
        .sidebar__cta-box .cta-btn-inquiry {
            font-size: 0.82rem;
            padding: 10px 14px;
        }

        .hpci-trust-bar li {
            font-size: 0.75rem;
        }
    }

    /* ══════════════════════════════════════════════════════════════════════
           21. PRINT
        ══════════════════════════════════════════════════════════════════════ */
    @media print {

        .hpci-cta-strip,
        .hpci-trust-bar,
        .sidebar__cta-box,
        .skip-to-main,
        .services-page__pagination {
            display: none !important;
        }

        .services-page .row {
            display: block !important;
        }

        .col-xl-4,
        .col-xl-8 {
            width: 100% !important;
            float: none !important;
        }

        .services-one__single {
            box-shadow: none;
            break-inside: avoid;
        }
    }

    .services-page p:not([class*="hpci-cta"]):not([class*="sidebar__cta"]) {
        color: #111111 !important;
    }

    @media (max-width: 480px) {
        .hpci-trust-bar {
            background: transparent !important;
            border: none !important;
            padding: 8px 14px !important;
        }

        .hpci-trust-bar .container {
            overflow-x: visible !important;
        }

        .hpci-trust-bar ul {
            flex-direction: column !important;
            align-items: flex-start !important;
            flex-wrap: nowrap !important;
            gap: 0 !important;
            justify-content: flex-start !important;
            padding: 4px 16px !important;
            background-color: #e8f5ee !important;
            border-radius: 16px !important;
        }

        .hpci-trust-bar li {
            width: 100% !important;
            padding: 10px 0 !important;
            border-bottom: 1px solid rgba(26, 110, 60, 0.15) !important;
            white-space: normal !important;
            font-size: 14px !important;
            font-weight: 600 !important;
            color: #000000 !important;
            background: transparent !important;
            border-radius: 0 !important;
            box-shadow: none !important;
            margin: 0 !important;
            gap: 12px !important;
        }

        .hpci-trust-bar li:last-child {
            border-bottom: none !important;
            padding-bottom: 8px !important;
        }

        .hpci-trust-bar .icon-wrap {
            width: 40px !important;
            height: 40px !important;
            min-width: 40px !important;
            background: #1b5e20 !important;
            border-radius: 50% !important;
            flex-shrink: 0 !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
        }

        .hpci-trust-bar .icon-wrap svg {
            width: 18px !important;
            height: 18px !important;
            stroke: #fff !important;
        }

        .hpci-trust-bar li a {
            color: #1b5e20 !important;
        }
    }
    .page-header {
        padding-top: 130px !important;
        padding-bottom: 130px !important;
    }

    /* ── PAGE BG ── */
    .services-page {
        padding: 70px 0 80px !important;
        background: #f4f7f4;
    }

    /* ══════════════════════════
   SERVICE CARD
══════════════════════════ */
    .services-one__single {
        background: #ffffff !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06) !important;
        border: 1px solid #e8efe8 !important;
        margin-bottom: 28px !important;
        padding: 0 !important;
        min-height: unset !important;
        transition: transform 0.3s, box-shadow 0.3s !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .services-one__single:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 12px 40px rgba(6, 129, 49, 0.12) !important;
        border-color: #068131 !important;
    }

    /* Image */
    .services-one__img-wrap {
        position: relative;
        width: 100%;
        height: 220px;
        overflow: hidden;
        border-radius: 0;
        margin-bottom: 0 !important;
        flex-shrink: 0;
    }

    .services-one__img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        display: block;
    }

    .services-one__single:hover .services-one__img-wrap img {
        transform: scale(1.06);
    }

    /* Category badge ON image */
    .services-one__cat-badge {
        position: absolute;
        bottom: 14px;
        left: 14px;
        z-index: 2;
        background: #068131 !important;
        color: #fff !important;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 5px 14px;
        border-radius: 30px;
        pointer-events: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    }

    /* Card body */
    .services-one__card-body {
        padding: 24px 24px 26px !important;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    /* Icon — REMOVE the floating icon completely, show inline small */
    .services-one__icon {
        display: none !important;
    }

    /* Title */
    .services-one__title {
        font-size: 18px !important;
        font-weight: 700 !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
        font-family: var(--onpoint-font-two) !important;
        color: #1a2332 !important;
    }

    .services-one__title a {
        color: #1a2332 !important;
        text-decoration: none !important;
        transition: color 0.3s !important;
    }

    .services-one__title a:hover {
        color: #068131 !important;
    }

    /* Divider below title */
    .services-one__title::after {
        content: '';
        display: block;
        width: 40px;
        height: 3px;
        background: #D81112;
        border-radius: 2px;
        margin-top: 10px;
    }

    /* Short desc */
    .services-one__short-desc {
        font-size: 14px !important;
        color: #777 !important;
        line-height: 1.75 !important;
        margin-bottom: 20px !important;
        flex: 1;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    /* Read More button */
    .services-one__btn-box {
        margin-top: auto !important;
    }

    /* ── FILTER BAR ── */
    .hpci-filter-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
        background: #fff;
        border-left: 4px solid #068131;
        border-radius: 10px;
        padding: 14px 20px;
        margin-bottom: 28px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    }

    .hpci-filter-bar p {
        margin: 0;
        font-size: 14px;
        color: #333;
    }

    .hpci-filter-bar p strong {
        color: #068131;
    }

    .hpci-filter-bar a {
        font-size: 13px;
        font-weight: 700;
        color: #D81112;
        text-decoration: none;
        background: #fff0f0;
        padding: 5px 14px;
        border-radius: 20px;
        border: 1px solid rgba(217, 17, 18, 0.2);
        transition: all 0.3s;
    }

    .hpci-filter-bar a:hover {
        background: #D81112;
        color: #fff;
    }

    /* ── PAGINATION ── */
    .services-page__pagination {
        margin-top: 10px;
        padding-top: 20px;
        border-top: 1px solid #e0e8e0;
    }

    .pg-pagination {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .pg-pagination li a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        font-size: 14px;
        font-weight: 600;
        color: #333;
        background: #fff;
        border: 1px solid #dde8dd;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s;
    }

    .pg-pagination li a:hover,
    .pg-pagination li.active a {
        background: #068131 !important;
        color: #fff !important;
        border-color: #068131 !important;
    }

    .pg-pagination li.disabled a {
        opacity: 0.4;
        pointer-events: none;
    }

    .pg-pagination li a i {
        font-size: 11px;
        color: #068131;
    }

    .pg-pagination li a:hover i,
    .pg-pagination li.active a i {
        color: #fff;
    }

    /* ══════════════════════════
   SIDEBAR
══════════════════════════ */
    .sidebar {
        display: flex;
        flex-direction: column;
        gap: 0 !important;
    }

    .sidebar__single {
        background: #ffffff !important;
        border-radius: 12px !important;
        padding: 26px 22px !important;
        margin-bottom: 22px !important;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05) !important;
        border: 1px solid #e8efe8 !important;
    }

    .sidebar__title {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #1a2332 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 16px !important;
        padding-bottom: 12px !important;
        border-bottom: 2px solid #D81112 !important;
        font-family: var(--onpoint-font-two) !important;
    }

    /* Search */
    .sidebar__search-form {
        display: flex;
        border: 1.5px solid #dde8dd;
        border-radius: 8px;
        overflow: hidden;
        transition: border-color 0.3s;
    }

    .sidebar__search-form:focus-within {
        border-color: #068131;
    }

    .sidebar__search-form input {
        flex: 1;
        border: none !important;
        outline: none !important;
        padding: 11px 14px !important;
        font-size: 14px !important;
        background: transparent !important;
        color: #333 !important;
    }

    .sidebar__search-form button {
        background: #068131 !important;
        color: #fff !important;
        border: none !important;
        padding: 0 16px !important;
        cursor: pointer !important;
        transition: background 0.3s !important;
        font-size: 14px !important;
    }

    .sidebar__search-form button:hover {
        background: #D81112 !important;
    }

    /* Categories */
    .sidebar__category-list {
        padding: 0 !important;
        margin: 0 !important;
    }

    .sidebar__category-list li {
        border-bottom: 1px solid #f0f5f0 !important;
        padding: 0 !important;
    }

    .sidebar__category-list li:last-child {
        border-bottom: none !important;
    }

   /* ── FINAL FIX — active category bg WHITE FORCE ── */
.sidebar__category-list li,
.sidebar__category-list li.active,
.sidebar__category-list li:hover {
    background: transparent !important;
    background-color: transparent !important;
}

.sidebar__category-list li a,
.sidebar__category-list li.active a,
.sidebar__category-list li.active > a {
    background: transparent !important;
    background-color: transparent !important;
}

/* Active text → GREEN only, no bg ── */
.sidebar__category-list li.active a {
    color: #068131 !important;
    font-weight: 700 !important;
}

/* Active badge → GREEN ── */
.sidebar__category-list li.active a span {
    background: #068131 !important;
    color: #fff !important;
}
    .sidebar__category-list li a:hover span,
    .sidebar__category-list li.active a span {
        background: #068131;
        color: #fff !important;
    }

    .sidebar__category-list li .icon {
        display: none !important;
    }

    /* Active category — highlight row */
    .sidebar__category-list li.active {
        background: #f0f9f3 !important;
        border-radius: 6px !important;
        margin: 2px 0 !important;
    }

    /* Recent services */
    .sidebar__post-list {
        padding: 0 !important;
        margin: 0 !important;
    }

    .sidebar__post-list li {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid #f0f5f0 !important;
    }

    .sidebar__post-list li:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }

    .sidebar__post-image {
        width: 64px !important;
        height: 56px !important;
        min-width: 64px !important;
        border-radius: 8px !important;
        overflow: hidden !important;
    }

    .sidebar__post-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .sidebar__post-content h3 {
        font-size: 13px !important;
        font-weight: 600 !important;
        line-height: 1.5 !important;
        margin: 0 !important;
    }

    .sidebar__post-content h3 a {
        color: #333 !important;
        text-decoration: none !important;
        transition: color 0.3s !important;
    }

    .sidebar__post-content h3 a:hover {
        color: #068131 !important;
    }

    .sidebar__post-date {
        font-size: 11px !important;
        color: #D81112 !important;
        margin-bottom: 4px !important;
        font-weight: 600 !important;
    }

    /* Get in touch */
    .services-details__get-touch-title,
    .services-details__get-touch-sub-title,
    .services-details__get-touch-number a {
        color: #fff !important;
        text-decoration: none !important;
    }

.hpci-banner-img{
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: cover;
    object-position: top;
    display: block;
}

@media (max-width: 767px){
    .hpci-banner-img{
        width: 100%;
        height: 280px;
        max-height: none;
        object-fit: cover;
        object-position: top;
        margin-top: 70px;
    }
}
    /* ── CTA ── */
    .cta-one__title,
    .cta-one__contact-box .content h3 a,
    .cta-one__contact-box .content p {
        color: #fff !important;
    }

    .cta-one__contact-box .content h3 a:hover {
        color: #fff !important;
        text-decoration: none !important;
    }

    /* ── Scroll to top ── */
    .scroll-to-top {
        background: #068131 !important;
    }

    .scroll-to-top:hover {
        background: #D81112 !important;
    }

    /* ── Empty state ── */
    .hpci-empty {
        text-align: center;
        padding: 60px 20px;
        background: #fff;
        border: 2px dashed #c8dfc8;
        border-radius: 12px;
    }

    .hpci-empty i {
        font-size: 48px;
        color: #c8dfc8;
        display: block;
        margin-bottom: 16px;
    }

    .hpci-empty p {
        font-size: 15px;
        color: #888;
        margin: 0;
        line-height: 1.7;
    }

    /* ── Mobile ── */
    @media (max-width: 768px) {
        .services-page {
            padding: 40px 0 50px !important;
        }

        .sidebar__single {
            padding: 20px 16px !important;
        }

        .services-one__img-wrap {
            height: 180px;
        }
    }

    /* Mobile */
@media (max-width: 480px) {
    .hpci-trust-bar {
        padding: 10px 0;
    }

    .hpci-trust-bar ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        padding: 14px 16px;
        background-color: #e8f5ee;
        border-radius: 14px;
        margin: 0 14px;
    }

    .hpci-trust-bar li {
        font-size: 14px;
        font-weight: 500;
        gap: 12px;
        width: 100%;
        padding: 7px 0;
        white-space: normal;
        border-bottom: 1px solid rgba(26, 110, 60, 0.1);
    }

    .hpci-trust-bar li:last-child {
        border-bottom: none;
    }

    .hpci-trust-bar .icon-wrap {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }

    .hpci-trust-bar .icon-wrap svg {
        width: 18px;
        height: 18px;
    }
}