/* customize */

.navbar-brand {
    font-weight: bold;
    font-size: 1.5em;
    width: 100% !important;
    padding: 0px !important;
    -ms-align-content: start;
    -webkit-align-content: start;
    align-content: start;
    max-width: 300px !important;
}

    .navbar-brand img {
        position: relative;
        /* margin-right: 10px; */
        max-height: 60px;
        vertical-align: middle;
    }

/* Property Card Images - Uniform Height */
.property-card-image {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
}

.property-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Listing Card Image Wrapper */
.listing-card-image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.listing-card-image-wrap a {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
}

.listing-card-image-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* for mobile */
@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2em;
        width: 180px !important;
    }

    .navbar-brand img {
        max-height: 50px;
    }
    .btn-submit {

        display:none;
    }
}
.btn-silver {
    /* Base styles */
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 6px;
    /* Metallic silver background and border */
    color: #333333;
    background: linear-gradient(to bottom, #e0e0e0, #cccccc);
    border: 1px solid #b3b3b3;
    /* Soft drop shadow */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    /* Smooth transitions for interactions */
    transition: all 0.2s ease-in-out;
}

    .btn-silver:hover {
        /* Slightly lighter, metallic sheen on hover */
        background: linear-gradient(to bottom, #eeeeee, #dddddd);
        border-color: #999999;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    .btn-silver:active {
        /* Depressed state */
        background: #c2c2c2;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
        transform: translateY(1px);
    }

    .btn-silver:focus-visible {
        /* Accessibility outline */
        outline: 2px solid #66afe9;
        outline-offset: 2px;
    }

    .btn-silver:disabled {
        /* Disabled state */
        opacity: 0.65;
        cursor: not-allowed;
        box-shadow: none;
    }
.btn-platinum {
    /* Base styles */
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 6px;
    /* Bright platinum metallic background and border */
    color: #222222;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 50%, #cbd2e1 100%);
    border: 1px solid #d1d8e6;
    /* Bright, crisp inner glow and soft drop shadow */
    box-shadow: 0 2px 4px rgba(160, 175, 195, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.9);
    /* Smooth transitions for interactions */
    transition: all 0.2s ease-in-out;
}

    .btn-platinum:hover {
        /* Extra brilliant shine on hover */
        background: linear-gradient(135deg, #ffffff 0%, #edf1f7 50%, #dbe2ef 100%);
        border-color: #b8c4d9;
        box-shadow: 0 4px 10px rgba(160, 175, 195, 0.35), inset 0 1px 1px rgba(255, 255, 255, 1);
    }

    .btn-platinum:active {
        /* Pressed state */
        background: #cbd2e1;
        box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
        transform: translateY(1px);
    }

    .btn-platinum:focus-visible {
        /* Accessibility outline matching the cool undertone */
        outline: 2px solid #a5b4fc;
        outline-offset: 2px;
    }

    .btn-platinum:disabled {
        /* Disabled state */
        opacity: 0.6;
        cursor: not-allowed;
        box-shadow: none;
    }
