    /* ══════════════════════════════
       SIDEBAR CTA CARD
    ══════════════════════════════ */

    .blog-cta-card {
        position: sticky;
        top: 100px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow:
            0 4px 6px rgba(0,0,0,.04),
            0 20px 50px rgba(13,110,253,.13),
            0 0 0 1px rgba(13,110,253,.08);
        background: #fff;
    }

    /* ── Header banner ── */
    .cta-header {
        position: relative;
        background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
        padding: 28px 24px 36px;
        overflow: hidden;
        color: #fff;
    }

    .cta-header-glow {
        position: absolute;
        top: -40px;
        right: -40px;
        width: 160px;
        height: 160px;
        background: rgba(255,255,255,.12);
        border-radius: 50%;
        pointer-events: none;
    }

    .cta-header-glow::after {
        content: "";
        position: absolute;
        bottom: -60px;
        left: -60px;
        width: 120px;
        height: 120px;
        background: rgba(255,255,255,.07);
        border-radius: 50%;
    }

    .cta-icon-wrap {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        background: rgba(255,255,255,.18);
        backdrop-filter: blur(6px);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 14px;
        color: #fff;
        position: relative;
        z-index: 1;
    }

    .cta-badge-pill {
        display: inline-flex;
        align-items: center;
        padding: 3px 10px;
        border-radius: 999px;
        background: rgba(255,255,255,.22);
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }

    .cta-heading {
        font-size: 22px;
        font-weight: 700;
        line-height: 1.3;
        color: #fff;
        margin-bottom: 8px;
        position: relative;
        z-index: 1;
    }

    .cta-subheading {
        font-size: 13px;
        color: rgba(255,255,255,.82);
        margin-bottom: 0;
        line-height: 1.55;
        position: relative;
        z-index: 1;
    }

    /* ── Body ── */
    .cta-body {
        padding: 24px;
        background: #fff;
    }

    /* ── Stats strip ── */
    .cta-stats {
        display: flex;
        align-items: stretch;
        background: linear-gradient(135deg, #f0f5ff, #f5f0ff);
        border-radius: 12px;
        margin-bottom: 22px;
        border: 1px solid rgba(13,110,253,.08);
        overflow: hidden;
    }

    .cta-stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
        padding: 12px 6px;
        gap: 3px;
    }

    .stat-num {
        font-size: 17px;
        font-weight: 800;
        color: #0d6efd;
        line-height: 1;
        white-space: nowrap;
    }

    .stat-label {
        font-size: 9.5px;
        color: #6c757d;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .04em;
        white-space: nowrap;
        text-align: center;
    }

    .cta-stat-divider {
        width: 1px;
        background: rgba(13,110,253,.15);
        align-self: stretch;
        margin: 8px 0;
    }

    /* ── Services list ── */
    .blog-cta-points {
        padding-left: 0;
        list-style: none;
        margin-bottom: 22px;
        color: #3d4466;
        font-size: 13.5px;
    }

    .blog-cta-points li {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 500;
    }

    .cta-check {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: linear-gradient(135deg, #0d6efd, #6610f2);
        color: #fff;
        flex-shrink: 0;
    }

    /* ── CTA Button ── */
    .cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 14px 20px;
        border: none;
        border-radius: 12px;
        background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition: transform .2s ease, box-shadow .2s ease;
        box-shadow: 0 6px 22px rgba(13,110,253,.35);
        letter-spacing: .01em;
    }

    .cta-btn::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255,255,255,.18), transparent);
        opacity: 0;
        transition: opacity .25s;
    }

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(13,110,253,.42);
    }

    .cta-btn:hover::before {
        opacity: 1;
    }

    .cta-btn:active {
        transform: translateY(0);
    }

    .cta-btn svg {
        transition: transform .25s ease;
    }

    .cta-btn:hover svg {
        transform: translateX(4px);
    }

    /* ── Note ── */
    .cta-note {
        text-align: center;
        font-size: 11.5px;
        color: #9ca3af;
        margin-top: 10px;
        margin-bottom: 0;
        letter-spacing: .02em;
    }

    @media (max-width: 991px) {
        .blog-cta-card {
            position: relative;
            top: auto;
        }
    }

    /* ══════════════════════════════
       ENQUIRY POPUP
    ══════════════════════════════ */

    .popup-overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,.72);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        padding: 15px;
        backdrop-filter: blur(3px);
    }

    .popup-container {
        background: #fff;
        width: 880px;
        max-width: 96%;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        animation: popupFade 0.35s cubic-bezier(.34,1.56,.64,1);
        box-shadow: 0 25px 60px rgba(0,0,0,.25), 0 0 0 1px rgba(0,0,0,.06);
        display: flex;
        flex-direction: column;
    }

    .popup-close {
        position: absolute;
        top: 12px; right: 12px;
        background: #fff;
        color: #374151;
        border: 1.5px solid #e5e7eb;
        border-radius: 50%;
        width: 34px; height: 34px;
        font-size: 20px;
        cursor: pointer;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        transition: background .2s, border-color .2s, color .2s;
        box-shadow: 0 1px 6px rgba(0,0,0,.12);
        line-height: 1;
    }

    .popup-close:hover {
        background: #fee2e2;
        border-color: #fca5a5;
        color: #dc2626;
    }

    .popup-content {
        display: flex;
        flex-wrap: wrap;
    }

    /* ── Left info panel ── */
    .popup-info {
        flex: 1 1 38%;
        background: linear-gradient(145deg, #0a1628 0%, #0d6efd 65%, #6610f2 100%);
        color: #fff;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .popup-info-inner {
        position: relative;
        z-index: 1;
        padding: 40px 28px;
    }

    .popup-deco-circle-1 {
        position: absolute;
        top: -70px; right: -70px;
        width: 220px; height: 220px;
        border-radius: 50%;
        background: rgba(255,255,255,.07);
        pointer-events: none;
    }

    .popup-deco-circle-2 {
        position: absolute;
        bottom: -80px; left: -50px;
        width: 200px; height: 200px;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
        pointer-events: none;
    }

    .popup-brand-icon {
        width: 48px; height: 48px;
        border-radius: 12px;
        background: rgba(255,255,255,.15);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 14px;
        color: #fff;
    }

    .popup-info-tag {
        display: inline-flex;
        padding: 3px 12px;
        border-radius: 999px;
        background: rgba(255,255,255,.18);
        border: 1px solid rgba(255,255,255,.25);
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .07em;
        text-transform: uppercase;
        margin-bottom: 14px;
    }

    .popup-info-heading {
        font-size: 22px;
        font-weight: 800;
        line-height: 1.3;
        margin-bottom: 10px;
        color: #fff;
    }

    .popup-info-desc {
        font-size: 13px;
        color: rgba(255,255,255,.76);
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .popup-trust-stats {
        display: flex;
        align-items: center;
        background: rgba(255,255,255,.1);
        border: 1px solid rgba(255,255,255,.15);
        border-radius: 12px;
        padding: 12px 14px;
        margin-bottom: 22px;
    }

    .popup-tstat {
        flex: 1;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .popup-tstat strong {
        font-size: 18px;
        font-weight: 800;
        color: #fff;
        line-height: 1;
    }

    .popup-tstat span {
        font-size: 9.5px;
        color: rgba(255,255,255,.7);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .04em;
        white-space: nowrap;
    }

    .popup-tstat-div {
        width: 1px;
        height: 30px;
        background: rgba(255,255,255,.2);
        margin: 0 4px;
        align-self: center;
    }

    .popup-services-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .popup-services-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13.5px;
        color: rgba(255,255,255,.88);
        margin-bottom: 10px;
        font-weight: 500;
    }

    .popup-svc-icon {
        width: 20px; height: 20px;
        border-radius: 50%;
        background: rgba(255,255,255,.18);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #fff;
    }

    /* ── Right form panel ── */
    .popup-form-area {
        flex: 1 1 62%;
        padding: 36px 30px;
        display: flex;
        flex-direction: column;
    }

    .popup-form-heading {
        font-size: 20px;
        font-weight: 800;
        color: #1a1a2e;
        margin-bottom: 4px;
    }

    .popup-form-sub {
        font-size: 13px;
        color: #6c757d;
        margin-bottom: 18px;
    }

    .success-msg {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
        padding: 12px 15px;
        border-radius: 8px;
        margin-bottom: 15px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 10px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        border: 1.5px solid #e5e7eb;
        border-radius: 10px;
        font-size: 14px;
        transition: border-color .25s, box-shadow .25s;
        background: #fafafa;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #0d6efd;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(13,110,253,.1);
    }

    .error {
        color: #dc3545;
        font-size: 12.5px;
        margin-top: 3px;
    }

    .submit-btn {
        padding: 14px;
        background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
        color: #fff;
        font-weight: 700;
        font-size: 15px;
        border: none;
        border-radius: 30px;
        cursor: pointer;
        transition: transform .2s ease, box-shadow .2s ease;
        margin-top: 6px;
        width: 100%;
        box-shadow: 0 6px 20px rgba(13,110,253,.3);
        letter-spacing: .01em;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(13,110,253,.42);
    }

    .submit-btn:active { transform: translateY(0); }

    @keyframes popupFade {
        from { transform: scale(0.88); opacity: 0; }
        to   { transform: scale(1);    opacity: 1; }
    }

    @media (max-width: 768px) {
        .popup-overlay {
            align-items: flex-start;
            overflow-y: auto;
            padding-top: 12px;
            padding-bottom: 12px;
        }

        .popup-container {
            max-height: calc(100vh - 24px);
            overflow-y: auto;
            border-radius: 16px;
        }

        .popup-close {
            position: sticky;
            top: 12px; left: auto;
            margin-left: auto;
            display: flex;
            z-index: 20;
            background: #fff;
            color: #374151;
            border-color: #e5e7eb;
        }

        .popup-content { flex-direction: column; }

        .popup-info,
        .popup-form-area { flex: 1 1 100%; }

        .popup-info-inner { padding: 30px 24px; }
        .popup-form-area  { padding: 28px 24px; }
    }
