/* Popup Overlay */
.hcfp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.hcfp-popup-overlay.show {
    opacity: 1;
}

/* Popup Content */
.hcfp-popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease-in-out;
}

.hcfp-popup-overlay.show .hcfp-popup-content {
    transform: translateY(0);
}

/* Close Button */
.hcfp-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.hcfp-close-btn:hover {
    color: #000;
}

/* Form Container */
.hcfp-form-container {
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .hcfp-popup-content {
        padding: 20px;
    }
}