.popup {
    background-color: #3b4d5fe3 !important;
    width: 750px;
    padding: 20px !important;
    position: fixed !important;
    transform: translate(-50%, -50%) !important;
    left: 50% !important;
    top: 50% !important;
    border-radius: 8px !important;
    font-family: "Poppins", sans-serif !important;
    text-align: center !important;
    border: none !important;
    overflow-y: hidden !important;
    z-index: 9;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Overlay */
.popup .blocker {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

/* Close Button */
.popup #close {
    position: absolute;
    right: 15px;
    top: 10px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

/* Headings */
.popup .popup-heading {
    color: #ffffff;
    font-size: 28px;
    margin-top: 30px;
}

.popup .popup-subheading {
    color: #dcdcdc;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Form */
.popup .inquiry-form {
    width: 80%;
    margin: 0 auto;
}

.popup .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.popup .form-group label {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 14px;
}

.popup .form-group input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 14px;
}

.popup .form-group input::placeholder {
    color: #999;
}

/* Submit Button */
.popup .submit-btn {
    margin-top: 20px;
    padding: 14px 30px;
    background: #f4c430;
    color: #000;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup .submit-btn:hover {
    background: #ffda55;
    transform: translateY(-2px);
}

/* Base improvement */
.popup {
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto !important;
}

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
    .popup {
        width: 85%;
        padding: 18px !important;
    }

    .popup .popup-heading {
        font-size: 24px;
    }

    .popup .popup-subheading {
        font-size: 15px;
    }

    .popup .inquiry-form {
        width: 90%;
    }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
    .popup {
        width: 95%;
        padding: 16px !important;
        border-radius: 6px !important;
    }

    .popup #close {
        font-size: 24px;
        right: 10px;
        top: 8px;
    }

    .popup .popup-heading {
        font-size: 20px;
        margin-top: 20px;
    }

    .popup .popup-subheading {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .popup .form-group label {
        font-size: 13px;
    }

    .popup .form-group input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .popup .submit-btn {
        width: 100%;
        padding: 12px;
        font-size: 15px;
    }
}

/* Small phones (≤ 400px) */
@media (max-width: 400px) {
    .popup .popup-heading {
        font-size: 18px;
    }

    .popup .popup-subheading {
        font-size: 13px;
    }
}