
    .property-card-wrapper {
        cursor: pointer;
        position: relative;
    }
    
    .popup-overlay-leads {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999999 !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .popup-content-leads {
        background: white;
        padding: 40px;
        border-radius: 8px;
        max-width: 500px;
        width: 90%;
        position: relative;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }

    .popup-close-leads {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 30px;
        cursor: pointer;
        color: #999;
        line-height: 1;
        padding: 0;
        width: 30px;
        height: 30px;
    }

    .popup-close-leads:hover {
        color: #333;
    }

    .popup-content-leads h3 {
        margin: 0 0 10px 0;
        font-size: 24px;
        color: #333;
    }

    .popup-content-leads p {
        margin: 0 0 25px 0;
        color: #666;
        font-size: 16px;
    }

    .popup-input-leads {
        width: 100%;
        padding: 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    .popup-input-leads:focus {
        outline: none;
        border-color: #999;
    }

    .btn-submit-leads {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        cursor: pointer;
        background: #c7a467;
        color: white;
        border: none;
        border-radius: 4px;
    }

    .btn-submit-leads:hover {
        background: #b08d4e;
    }
    