/* Overlay */
.enquiry-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
  /*  display: none;*/
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Popup Box */
.enquiry-popup {
    background: #fff;
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    padding: 28px 24px 30px;
    position: relative;
    text-align: center;
    animation: popupFade 0.4s ease;
}

/* Close */
.popup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
}

/* Title */
.enquiry-popup h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

    .enquiry-popup h3 span {
        color: #c62828;
    }

.enquiry-popup p {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
}

/* Inputs */
.enquiry-popup input {
    width: 100%;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

    .enquiry-popup input:focus {
        border-color: #c62828;
        outline: none;
    }

/* Button */
.btn-primary {
    width: 100%;
    padding: 14px;
    background: #c62828;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .btn-primary:hover {
        background: #a91f1f;
    }



/* Animation */
@keyframes popupFade {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .enquiry-popup {
        margin: 0 12px;
    }
}

#enquiryOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

#enquiryOverlay {
    display: none;
}

    #enquiryOverlay.active {
        display: flex;
    }
