.ss-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 9;
}

.ss-modal-content {
    background: #fff;
    max-width: 500px;
    width: 90%;
    margin: 8% auto;
    padding: 50px 35px;
    position: relative;
    border-radius: 6px;
    z-index: 9999;
}

.ss-modal-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
}

.ss-enquiry-btn {
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
}

.ss-enquiry-context {
    margin-bottom: 20px;
}

.ss-enquiry-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.ss-enquiry-box {
    background: #e9ecef;
    padding: 12px 14px;
    border-radius: 4px;
    font-size: 14px;
    color: #555;
    pointer-events: none; /* read-only feel */
}

.ss-modal-logo img{
    max-width: 47%;
    margin: 0 auto 30px;
}

/* ---------------- MODAL BASE ---------------- */
.ss-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

/* Show modal */
.ss-modal.is-open {
    display: flex;
}

/* ---------------- BACKDROP ---------------- */
.ss-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* ---------------- CONTENT ---------------- */
.ss-modal-content {
    position: relative;
    z-index: 2;
    background: #fff;
    max-width: 520px;
    width: calc(100% - 32px);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    animation: ssModalIn .25s ease-out;
}

/* Close button */
.ss-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: 0;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
}

/* Logo */
.ss-modal-logo {
    text-align: center;
    margin-bottom: 20px;
}

/* ---------------- ANIMATION ---------------- */
@keyframes ssModalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ---------------- SCROLL LOCK ---------------- */
html.ss-modal-open,
body.ss-modal-open {
    overflow: hidden !important;
    /* height: 100vh; */
    touch-action: none;
}