/* new css */
    /* Default hidden */
    #custom-form {
        display: none;
        position: fixed;
        inset: 0;
        /* top, right, bottom, left = 0 */
        z-index: 1055;

        /* FLEX CENTERING */
        align-items: center;
        justify-content: center;

        overflow-y: auto;
    }

    /* Visible state */
    #custom-form.show {
        display: flex;
    }

    /* Fade animation */
    #custom-form.fade {
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    #custom-form.fade.show {
        opacity: 1;
    }


    /* Backdrop */
    .custom-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1050;
    }

    /* Lock page scroll */
    body.modal-open {
        overflow: hidden;
    }

    /* Modal colors */
    #custom-form .modal-content {
        background: #fff;
        border-radius: 20px;
    }

    #custom-form .modal-title,
    #custom-form .modal-body,
    #custom-form .modal-body *,
    #custom-form .modal-footer {
        color: #000;
    }

    #custom-form .modal-dialog {
        width: 80%;
        max-width: 1000px;
        margin: 0;
    }

    #custom-form .modal-body {
        min-height: 560px;
    }


    .property-wrapper {
        background: #fff;
        padding: 40px;
        border-radius: 20px;
        max-width: 900px;
        margin: auto;
        text-align: center;
    }

    .title {
        font-weight: 700;
        margin-bottom: 40px;
        font-size: 30px;
    }

    .property-types {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .property-box {
        flex: 1;
        max-width: 180px;
        min-height: 250px;

        padding: 30px 20px;
        background: #f4f7fa;
        border-radius: 12px;
        cursor: pointer;

        /* 🔥 CENTER CONTENT */
        display: flex;
        flex-direction: column;
        align-items: center;
        /* left-right center */
        justify-content: center;
        /* top-bottom center */

        text-align: center;
        font-weight: 600;
        color: #0a3d78;
        transition: all 0.3s ease;
    }


    .property-box span {
        color: #0a3d78 !important;
        font-size: 16px;
    }

    .property-box:hover {
        background: #e9f0f7;
    }

    .property-box.active {
        background: #123f6d;
        color: #fff !important;
    }

    .property-box.active span {
        /* background: #123f6d; */
        color: #fff !important;
    }

    .property-details {
        display: none;
        margin-top: 40px;
    }

    .property-details h4 {
        font-size: 20px;
        font-weight: 600px;
    }

    .speed-options {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-top: 20px;
    }

    .speed-item {
        text-align: center;
    }

    .speed-btn {
        background: #6fbe44;
        border: none;
        padding: 15px 40px;
        border-radius: 8px;
        color: #ffffff !important;
        font-size: 20px;
        font-weight: 600;
        cursor: pointer;
        min-width: 200px;
    }

    .speed-btn:hover {
        background: #ffffff;
        color: #6fbe44 !important;
    }

    /* Text under button */
    .speed-note {
        margin-top: 6px;
        font-size: 13px;
        color: #9aa0a6;
    }

    .property-box img {
        width: 70px;
        height: auto;
        margin-bottom: 12px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    /* Text under icon */
    .property-box span {
        display: block;
        font-weight: 600;
        font-size: 16px;
        margin-top: 25px;
    }

    /* Active box image tweak (optional but nice) */
    .property-box.active img {
        filter: brightness(0) invert(1);
        /* icon white on blue bg */
    }

