@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --main-color: #00a89c;
    --main-color2: #1c2035;
    --main-color3: #0dcaf0;

    --secondary-color: #F6F8FC;
    --body-bg: #fff;

    --h-font: "Plus Jakarta Sans", sans-serif;
    --p-font: "Plus Jakarta Sans", sans-serif;

    --h-color: #000;
    --p-color: #565656;

    --dark: #171C31;

    /* RD color palette (global variables — usable in any CSS) */
    --color-rd-light: white;
    --color-rd-dark: #424242;
    --color-rd-primary: #1688fe;
    --color-rd-blue-new-design: #428eff;
    --color-rd-blue-400: #0050c7;
    --color-rd-grey-50: #f6f6f6;
    --color-rd-grey-100: #ececed;
    --color-rd-grey-200: #e3e3e4;
    --color-rd-grey-400: #a1a1a5;
    --color-rd-grey-500: #595964;
    --color-rd-grey-600: #4c4c55;
    --color-rd-grey-900: #14141f;
    --color-rd-light-grey: #f3f6fa;
    --color-rd-dark-grey: #4f5e75;
    --color-rd-black: #1d2c43;
    --color-rd-accent: var(--main-color);
    --color-rd-orange: #df7e69;
    --color-rd-orange-2: #ff6f5b;
    --size-bezel: 5px;
    --size-radius: 4px;
    --rd-card-width: 300px;
    --rd-bottom-margin: 45px;
    --rd-right-margin: 15px;
    --rd-score-banner-color: #1688fe;
    --linkedin-blue: #0a66c2;
    --linkedin-blue-hover: #004182;
}

@media (min-width: 1536px) {
    .container {
        max-width: 1440px;
    }
}

/* @font-face {
    font-family: 'FinancierDisplay';
    src: url('../fonts/FinancierDisplay-Semibold.otf');
} */

body {
    color: var(--p-color);
    font-size: 16px;
    background-color: var(--body-bg);
    font-family: var(--p-font);
    line-height: 1.7;
    display: flex;
    flex-flow: column;
    min-height: 100vh;
}

a,
span {
    display: inline-block;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: var(--main-color);
    text-decoration: none;
}

label {
    text-transform: capitalize !important;
    margin-bottom: 6px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1, .h2, .h3, .h4, .h5, .h6{
    font-family: var(--h-font);
    line-height: 1.3;
    font-weight: 700;
    color: var(--h-color);
}

.dark-overlay {
    position: relative;
    z-index: 1;
}

.dark-overlay::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color2);
    opacity: 0.65;
    z-index: -1;
}

.dark-overlay2 {
    position: relative;
    z-index: 1;
}

.dark-overlay2::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color2);
    opacity: 0.85;
    z-index: -1;
}

.cmn-btn {
    border: 1px solid var(--main-color);
    padding: 14px 42px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
}

.cmn-btn:hover {
    color: #fff;
}

.cmn-btn2 {
    padding: 14px 42px;
    border: 1px solid var(--main-color3);
    background-color: var(--main-color3);
    box-shadow: -4px -2px 14px rgba(63,84,152,1) inset;
    color: #fff;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
}

.cmn-btn2:hover {
    color: #fff;
}

.cmn-btn-outline-white {
    padding: 14px 42px;
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
}

.cmn-btn-outline-white:hover {
    background-color: #fff;
    color: #000 !important;
}

.cmn-btn-outline-white:hover i,
.cmn-btn-outline-white:hover span {
    color: #000;
}

.btn-main {
    background-color: var(--main-color);
    color: #fff;
}

.btn-main:hover {
    color: #fff;
}

.border-btn {
    padding: 12px 30px;
    background-color: #fff;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    border-radius: 0;
    text-align: center;
    font-weight: 500;
    box-shadow: 4px 4px #0059ff5e;
}

.border-btn:hover {
    background-color: var(--main-color);
    color: #fff;
}

.border-btn2 {
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid var(--main-color);
    color: var(--p-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

.border-btn2:hover {
    background-color: var(--main-color);
    color: #fff;
}

.read-btn {
    color: var(--main-color);
    font-weight: 500;
}

.banner-btn-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -3px -10px;
}

.banner-btn-group [class*="-btn"] {
    margin: 10px;
}

@media (max-width: 575px) {
    .banner-btn-group [class*="-btn"] {
        width: 100%;
    }
}

.form-control,
.form-select {
    height: 50px;
    background-color: var(--body-bg);
    padding: 10px 15px;
    color: var(--h-color) !important;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.form-control.style-white {
    background-color: #fff;
}

.form-control.copy-text {
    background-color: #fff !important;
}

.form-control.style-white:focus {
    background-color: #fff;
}

textarea.form-control {
    min-height: 170px;
}

.form-control::-webkit-input-placeholder {
    color: #8f8f8f;
}

.form-control::-moz-placeholder {
    color: #8f8f8f;
}

.form-control:-ms-input-placeholder {
    color: #8f8f8f;
}

.form-control:-moz-placeholder {
    color: #8f8f8f;
}

.form-control {
    padding: 10px 15px;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #efefef;
}

.form-select option {
    background-color: var(--secondary-color);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--main-color);
    outline: 0;
    box-shadow: 0 3px 5px #e1b82340;
    background-color: var(--body-bg);
}

.has-bg-img {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-bg {
    background-color: var(--secondary-color);
}

.section-bg+.section-bg {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-bg2 {
    background-color: var(--main-color2);
}

.site-bg {
    background-color: var(--main-color);
}

img {
    max-width: 100%;
}


.input-icon-field {
    position: relative;
}

.input-icon-field .form-control {
    padding-left: 40px;
}

.input-icon-field i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 16px;
}

.form-label {
    font-weight: 500;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/


/* joba's top */

#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 8px;
    display: none;
    z-index: 999;
}

/* end */

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--main-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #151515;
    line-height: 0;
}

.back-to-top:hover {
    background: #151515;
}

.back-to-top:hover i {
    color: var(--main-color);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.pointer {
    cursor: context-menu !important;
}

.login {
    margin-top: 14% !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: var(--main-color2);
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 0px);
    left: calc(50% - 30px);
    border: 6px solid var(--main-color);
    border-top-color: var(--main-color2);
    border-bottom-color: var(--main-color2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.5s;
    z-index: 997;
    background-color: transparent;
}

.header-menu-area {
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
    .header-menu-area {
        padding: 12px 0;
    }
}

#header.header-scrolled,
#header.header-inner-pages {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.05);
}

#header.header-inner-pages {
    padding: 10px 0;
    background:linear-gradient(135deg, #260b71 0%, #4c21bc 100%) !important;
    box-shadow: none;
}

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
}

#header .logo a {
    color: #fff;
}

#header .logo a span {
    color: var(--main-color);
}

#header .logo img {
    max-height: 55px;
}

.header-scrolled .header-top-area {
    display: none;
}

.header-top-area {
    padding: 16px 0;
    background-color: var(--main-color3);
}

@media (max-width: 1199px) {
    .header-top-area {
        display: none;
    }
}

.header-top-info-list {
    display: flex;
    align-items: center;
    gap: 4px 32px;
    margin-bottom: 0;
}

.header-top-info-list li {
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-top-info-list li span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 375px;
}

@media (max-width: 1399px) {
    .header-top-info-list li span {
        width: 280px;
    }
}

.header-menu-area .dropdown-menu {
    min-width: 7rem !important;
    padding: 0;
    overflow: hidden;
    border: none;
}

.header-menu-area .dropdown-menu li + li {
    margin-top: 4px;
}

.header-menu-area .dropdown-item {
    padding-block: 8px;
}

.header-top-info-list li::before {
    position: absolute;
    content: '';
    top: 30%;
    right: -16px;
    width: 1px;
    height: 60%;
    background-color: #fff;
}

.header-top-info-list li:last-child::before {
    display: none;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-top-right ul {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 0;
}

.header-top-right ul li a {
    color: #fff;
}

.header-top-right ul li a:hover {
    color: var(--main-color);
}

@media screen and (max-width:330px) {
    #header .logo {
        font-size: 18px;
    }
}

.header-scrolled .header-menu-area {
    background-color: rgba(10,13,26, 1);
}

.header-menu-area {
    background-color: rgba(10,13,26,.7);
}

@media (min-width: 1200px) {
    .d-lg-block {
        display: block !important;
        display: flex !important;
    }
}

/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/

.btn-padding {
    padding: 3px 20px;
}

.get-started-btn:hover {
    background: #ffbb38;
    color: #343a40;
}

@media (max-width: 992px) {
    .get-started-btn {
        padding: 7px 20px 8px 20px;
        margin-right: 15px;
    }
}

@media screen and (max-width:575px) {}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

@media (max-width: 1199px) {
    .navbar li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar a {
        color: #fff !important;
    }

    .navbar li.active a {
        color: var(--main-color) !important;
    }

    .navbar li:last-child {
        margin-top: 15px;
        border-bottom: none;
    }
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 18px;
}

@media (max-width: 1550px) {
    .navbar a,
    .navbar a:focus {
        padding: 10px 12px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {

    .navbar a,
    .navbar a:focus {
        padding: 10px !important;
    }
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar li.active a,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--main-color);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    color: #151515;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    background-color: var(--main-color);
    color: #fff;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

select:focus {
    outline: none;
}

.changeLang {
    padding: 6px 10px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--p-color);
    font-size: 14px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.changeLang option {
    background-color: var(--secondary-color);
    color: var(--p-color);
}

.header-inner-pages .changeLang {
    color: var(--p-color);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

@media (max-width: 575px) {
    .header-inner-pages .changeLang {
        display: none;
    }
}

.btn-border {
    padding: 12px 30px;
    border: 1px solid var(--main-color);
    color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.btn-border:hover {
    background-color: var(--main-color);
    color: #fff;
}

.btn-md {
    padding: 10px 28px;
}

.btn-sm {
    padding: 7px 20px;
    font-size: 14px;
}

@media (max-width: 1399px) {
    .header-menu-area .header-right .btn-md {
        font-size: 14px;
        padding: 10px 16px;
    }

    .navbar a, .navbar a:focus {
        font-size: 16px;
        padding-left: 16px !important;
    }
}

/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 1199px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

@media screen and (min-width: 1024px) {


    .support-link {
        margin-right: 10px !important;
    }

    .nav-link {
        padding-left: 25px !important;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: var(--main-color2);
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #151515;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
    color: #151515;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    background-color: var(--main-color);
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--main-color);
}

.custom-select-form {
    margin-left: 18px !important;
}

.descripton-root span {
    display: inline-block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.banner-section {
    position: relative;
    padding-top: 325px;
    padding-bottom: 200px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-flow: column;
    justify-content: center;
    overflow: hidden;
    background-color: #131313;
    z-index: 1;
}

.banner-section::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(90deg,rgba(16,20,36,1) 0%,rgba(9,11,20,.4) 45%,rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(90deg,rgba(16,20,36,1) 0%,rgba(9,11,20,.4) 45%,rgba(0,0,0,0) 100%);
    background: linear-gradient(90deg,rgba(16,20,36,1) 0%,rgba(9,11,20,.4) 45%,rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#101424",endColorstr="#000000",GradientType=1);
    z-index: -1;
}

.banner-title {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 1540px) {
    .banner-title {
        font-size: 64px;
    }
}

.banner-description {
    font-size: 20px;
    color: #fff;
}

.banner-bottom-part {
    padding: 30px 0;
    background-color: var(--main-color2);
}

.banner-bottom-title {
    color: #fff;
    font-size: 32px;
}


.bookmark-btn {
    padding: 6px 15px;
    border: 1px solid #0059ff3b;
    color: var(--main-color);
    background-color: #0059ff18;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
}

.bookmark-btn .bookmark-icons {
    position: relative;
    width: 20px;
    height: 20px;
    font-size: 17px;
    background-color: transparent;
    border: none;
    margin-right: 6px;
}

.bookmark-btn i {
    position: absolute;
    top: 50%;
    left: 0;
    transition: all 0.3s;
    transform: translateY(-50%);
}

.bookmark-btn i.second-bookmark {
    opacity: 0;
}

.bookmark-btn.bookmarked .first-bookmark {
    opacity: 0;
}

.bookmark-btn.bookmarked .second-bookmark {
    opacity: 1;
    color: var(--main-color);
}

.property-share {
    padding: 6px 15px;
    border: 1px solid rgba(0,0,0, 0.2);
    color: var(--h-color);
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    border-radius: 5px;
}

.property-share:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.property-share i {
    margin-right: 10px;
}

.social-share-list ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.social-share-list li {
    padding: 5px 7px;
}

.social-share-list li a {
    width: 40px;
    height: 40px;
    background-color: #0059ff18;
    border: 1px solid #0059ff3b;
    color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 17px;
}

.social-share-list li a:hover {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}


.property-details-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 550px;
}

.property-details-thumb .gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    transition: all 0.3s;
    z-index: 2;
}

.property-details-thumb:hover .gallery {
    background-color: rgba(0, 0, 0, 0.55);
}

.property-details-thumb.choto-img {
    height: 271px;
}

.property-details-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    transition: all 0.3s;
}

.property-details-thumb:hover img {
    transform: scale(1.1, 1.1);
}

.property-details-banner {
    padding-top: 190px;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--secondary-color);
}

.property-details-top {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.property-details-top .content {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    padding: 15px;
}

.property-details-top-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -7px 0;
}

.property-details-top-info li {
    padding: 7px 0;
    font-size: 15px;
}

.property-details-top-info li::after {
    content: '/';
    padding: 0 10px;
}

.property-details-top-info li:last-child::after {
    display: none;
}

.property-details-top .content .title {
    font-size: 32px;
}

.property-details-top .action {
    padding: 15px;
    text-align: right;
}

.property-details-top .p-amount {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.property-details-top .p-amount span {
    font-weight: 400;
    font-size: 60%;
    margin-left: 8px;
}

.invest-cal-wrapper {
    background-color: #fff;
    position: sticky;
    top: 100px;
}

.invest-cal-wrapper .title {
    padding: 20px 20px;
    margin: 0;
    border-bottom: 1px solid #e5e5e5;
}

.calculate-form {
    padding: 30px;
}

.cal-details-list {
    padding: 15px;
    background-color: var(--secondary-color);
    border-radius: 5px;
}

.cal-details-list li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 14px;
    padding: 12px 0;
}

.cal-details-list li:first-child {
    padding-top: 0;
}

.cal-details-list li:last-child {
    padding-bottom: 0;
}

.cal-details-list li+li {
    border-top: 1px dashed #bbb;
}

.cal-details-list li .caption {
    font-weight: 500;
}


.icon-field {
    position: relative;
}

.profit-table {}

#profit-table td {
    border-bottom: 1px dashed #bbb !important;
    padding: 10px 0;
    font-size: 14px;
}

#profit-table td:last-child {
    text-align: right;
}

.icon-field i {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 100%;
    border-right: 1px solid #e5e5e5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: all 0.3s;
}

.icon-field input {
    padding-left: 50px;
}

.icon-field input:focus~i {
    border-color: var(--main-color);
}

.property-details-wrapper {
    padding: 30px;
    background-color: #fff;
}

.property-details-wrapper .content-box .title {
    margin-bottom: 15px;
}

.property-details-wrapper .content-box+.content-box {
    margin-top: 45px;
}

.single-feature {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.single-feature p {
    margin-bottom: 0;
    font-size: 15px;
}

.single-feature .p-amount {
    font-size: 18px;
    font-weight: 600;
}

.gallery-item {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.gallery-item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: block;
    opacity: 0;
    transition: all 0.3s;
}

.gallery-item:hover a {
    opacity: 0.4;
}

.property-map {
    width: 100%;
    height: 450px;
    border: none;
}

.single-amenities {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.single-amenities i {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.single-amenities:hover i {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

.single-amenities h6 {
    font-size: 14px;
}

.single-amenities .caption {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1;
    margin-top: 8px;
}

.single-amenities .content {
    width: calc(100% - 55px);
    padding-left: 15px;
}

@media (max-width: 1199px) {
    .invest-cal-wrapper .title {
        font-size: 20px;
    }

    .property-details-banner {
        padding-top: 215px;
        padding-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .property-details-top .action {
        text-align: left;
    }

    .property-map {
        height: 350px;
    }

    .property-details-top .content .title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .property-details-top .content .title {
        font-size: 28px;
    }

    .calculate-form {
        padding: 20px;
    }

    .property-details-wrapper {
        padding: 20px;
    }
}

.single-review {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
}

.single-review .thumb {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 5px;
}

.single-review .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.single-review .content {
    width: calc(100% - 80px);
    padding-left: 20px;
}

.single-review .content h6 {
    margin-bottom: 0;
}

.ratings i {
    font-size: 14px;
    color: #ffb307;
}

.star-cb-group {
    /* remove inline-block whitespace */
    font-size: 0;
    /* flip the order so we can use the + and ~ combinators */
    unicode-bidi: bidi-override;
    direction: rtl;
    /* the hidden clearer */
}

.star-cb-group * {
    font-size: 1rem;
}

.star-cb-group>input {
    display: none;
}

.star-cb-group>input+label {
    /* only enough room for the star */
    display: inline-block;
    overflow: hidden;
    text-indent: 9999px;
    width: 30px;
    white-space: nowrap;
    cursor: pointer;
}

.star-cb-group>input+label:before {
    display: inline-block;
    text-indent: -9999px;
    content: "☆";
    color: #888;
    font-size: 28px;
}

.star-cb-group>input:checked~label:before,
.star-cb-group>input+label:hover~label:before,
.star-cb-group>input+label:hover:before {
    content: "★";
    color: #ffb307;
    text-shadow: 0 0 1px #333;
}

.star-cb-group>.star-cb-clear+label {
    text-indent: -9999px;
    width: .5em;
    margin-left: -.5em;
}

.star-cb-group>.star-cb-clear+label:before {
    width: .5em;
}

.star-cb-group:hover>input+label:before {
    content: "☆";
    color: #888;
    text-shadow: none;
}

.star-cb-group:hover>input+label:hover~label:before,
.star-cb-group:hover>input+label:hover:before {
    content: "★";
    color: #ffb307;
    text-shadow: 0 0 1px #333;
}

.related-slider .slick-list {
    margin: -20px -15px;
}

.related-slider .single-slide {
    padding: 20px 15px;
}

.related-slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.related-slider .slick-dots li {
    padding: 0 3px;
}

.related-slider .slick-dots li button {
    padding: 0;
    font-size: 0;
    border: none;
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    transition: all 0.3s;
}

.related-slider .slick-dots li.slick-active button {
    background-color: var(--main-color);
}

/****** Style Star Rating Widget *****/

.rating {
    border: none;
    float: left;
}

.rating>input {
    display: none;
}

.rating>label:before {
    margin: 5px;
    font-size: 1.25em;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    content: "\f005";
}

.rating>.half:before {
    content: "\f089";
    position: absolute;
}

.rating>label {
    color: #ddd;
    float: right;
}

/***** CSS Magic to Highlight Stars on Hover *****/

.rating>input:checked~label,
/* show gold star when clicked */
.rating:not(:checked)>label:hover,
/* hover current star */
.rating:not(:checked)>label:hover~label {
    color: #FFD700;
}

/* hover previous stars in list */

.rating>input:checked+label:hover,
/* hover current star when changing rating */
.rating>input:checked~label:hover,
.rating>label:hover~input:checked~label,
/* lighten current selection */
.rating>input:checked~label:hover~label {
    color: #FFED85;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section-top {
    margin-bottom: 60px;
}

.section-top-title {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--main-color);
    position: relative;
    padding-left: 20px;
}

.section-top-title::before {
    position: absolute;
    content: '';
    top: 4px;
    left: 0;
    width: 5px;
    height: 20px;
    background-color: var(--main-color);
    transform: skew(-25deg);
    opacity: 0.25;
}

.section-top-title::after {
    position: absolute;
    content: '';
    top: 4px;
    left: 8px;
    width: 5px;
    height: 20px;
    background-color: var(--main-color);
    transform: skew(-25deg);
    opacity: 0.25;
}

.section-top .section-title {
    margin-top: -10px;
}

.section-title {
    font-size: 56px;
}

@media (max-width: 1399px) {
    .section-title {
        font-size: 42px;
    }
}

@media (max-width: 1199px) {
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 28px;
    }
}

.s-pt-100,
.s-pt-120 {
    padding-top: 120px;
}

.s-pb-100,
.s-pb-120 {
    padding-bottom: 120px;
}

.s-pt-80 {
    padding-top: 80px;
}

.s-pb-80 {
    padding-bottom: 80px;
}

@media (max-width: 1399px) {

    .s-pt-100,
    .s-pt-120 {
        padding-top: 100px;
    }

    .s-pb-100,
    .s-pb-120 {
        padding-bottom: 100px;
    }
}

@media (max-width: 991px) {

    .s-pt-100,
    .s-pt-120 {
        padding-top: 80px;
    }

    .s-pb-100,
    .s-pb-120 {
        padding-bottom: 80px;
    }

    .s-pt-80 {
        padding-top: 60px;
    }

    .s-pb-80 {
        padding-bottom: 60px;
    }
}


@media (max-width: 575px) {

    .s-pt-100,
    .s-pt-120 {
        padding-top: 60px;
    }

    .s-pb-100,
    .s-pb-120 {
        padding-bottom: 60px;
    }

    .s-pt-80 {
        padding-top: 40px;
    }

    .s-pb-80 {
        padding-bottom: 40px;
    }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 991px) {
    .about-thumb {
        height: 675px !important;
    }
}

@media (max-width: 575px) {
    .about-thumb {
        height: 375px !important;
    }
}

.about-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.descripton-root span {
    background-color: transparent !important;
    color: var(--p-color) !important;
}

.about-overview-item .number {
    font-size: 72px;
}

.about-overview-item .caption {
    font-size: 18px;
}

.about-content-wrapper {
    position: relative;
    padding: 60px;
    z-index: 1;
}

.about-content-wrapper::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    opacity: 0.05;
    z-index: -1;
}

@media (min-width: 1400px) {
    .about-content {
        padding-block: 100px;
    }
}

.about-content .about-item:last-child {
    padding-bottom: 0;
}

.about-item {
    padding-bottom: 24px;
}

.about-item .title {
    margin-bottom: 16px;
}

.about-btn {
    font-weight: 600;
    color: var(--main-color);
}


/* overview-section css start */

.overview-item {
    border-right: 1px solid #ffffff1c;
}

.overview-wrapper div[class*="col-"]:last-child .overview-item {
    border-right: none;
}

.overview-amount {
    font-size: 36px;
    margin-bottom: 5px;
    color: #fff;
}

.overview-title {
    color: #f1f1f1;
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .banner-bottom-title,
    .overview-amount {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .banner-bottom-title,
    .overview-amount {
        font-size: 24px;
    }
}

/* overview-section css end */

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients {
    padding-top: 20px;
}

.clients .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100);
}

.clients .swiper-slide img:hover {
    filter: none;
    opacity: 1;
}

.clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--main-color);
}


/* choose section css start */
.choose-section {
    position: relative;
    z-index: 1;
    background-color: var(--main-color2);
}

.choose-section .choose-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
    -o-object-fit: cover;
}

@media (max-width: 991px) {
    .choose-section .choose-bg {
        width: 100%;
    }
}

.choose-section .line-obj img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.choose-item .choose-item-title {
    margin-bottom: 12px;
}

.choose-item .choose-item-title  h5 {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    padding-bottom: 12px;
}

.choose-item .choose-item-title h5::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
    opacity: 0.25;
}

.choose-item .choose-item-title span {
    color: var(--main-color);
}

.choose-item .choose-item-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.choose-item .choose-item-content .icon {
    width: 65px;
    height: 65px;
    background-color: var(--main-color);
    color: #fff;
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.choose-item .choose-item-content .choose-item-details {
    width: calc(100% - 65px);
    padding-left: 20px;
}

.choose-item .choose-item-content .choose-item-details p {
    color: #c2c2c2;
}


/* choose section css end */

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services .banner-calc {
    text-align: center;
    border: 1px solid #ebebeb;
    padding: 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
}

.services .banner-calc .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: var(--main-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.services .banner-calc .icon i {
    color: #151515;
    font-size: 28px;
    transition: ease-in-out 0.3s;
}

.services .banner-calc h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}

.services .banner-calc h4 a {
    color: #151515;
    transition: ease-in-out 0.3s;
}

.services .banner-calc h4 a:hover {
    color: var(--main-color);
}

.services .banner-calc p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .banner-calc:hover {
    border-color: #fff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.subscribe-section {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.subscribe-el {
    position: absolute;
    left: 80px;
    bottom: 0;
    z-index: -1;
}

.subscribe-el img {
    max-height: 330px;
}

.subscribe-form .form-control {
    height: 55px;
    border-radius: 6px;
}

.subscribe-field {
    position: relative;
}

.subscribe-field .form-control {
    padding-right: 40px;
}

.subscribe-field i {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #777 !important;
    font-size: 20px;
}

.subscribe-form button {
    width: 100%;
    border: none;
    padding: 10px;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 6px;
    margin-top: 12px;
}

.property-search-form {
    display: none;
}

.property-search-form input::-webkit-outer-spin-button,
.property-search-form input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.property-search-form input[type="number"] {
    -moz-appearance: textfield;
}

.property-search-wrapper {
    padding: 16px 24px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.property-search-wrapper h2 {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 600;
}

.property-search-filter-btn {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 4px 12px;
}

.min-max-field {
    display: flex;
}

.min-max-field .form-select {
    width: 120px;
    border-radius: 5px 0 0 5px;
}

.min-max-field .form-control {
    width: calc(50% - 60px);
}

.min-max-field .form-control.fixed {
    width: calc(100% - 120px);
    border-left: none;
    border-radius: 0 5px 5px 0;
}

.min-max-field .min-amount-input {
    border-radius: 0;
    border-left: none;
}

.min-max-field .max-amount-input {
    border-radius: 0 5px 5px 0;
    transform: translateX(-1px);
}

/*--------------------------------------------------------------
# Investment Plans
--------------------------------------------------------------*/
.invest-plan {
    position: relative;
    padding: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    z-index: 1;
    background: linear-gradient(to top, #2f5b88, #153352);
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
}

.invest-plan .overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 120px;
    opacity: 0.05;
    z-index: -1;
}

.invest-plan-two .overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--main-color);
    font-size: 120px;
    opacity: 0.15;
    z-index: -1;
}


.invest-plan::before {
    position: absolute;
    /* content: ''; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #ffb7b7, #727272), radial-gradient(60.91% 100% at 50% 0, #ffd1d1 0, #260000 100%), linear-gradient(247.95deg, #fdd, #720066), linear-gradient(117.03deg, #0ff, #f44), radial-gradient(100.22% 100% at 70.57% 0, red 0, #00ffe0 100%), linear-gradient(117.03deg, #b7d500, #30f);
    border-radius: 8px;
    z-index: -1;
}

.invest-plan-middle {
    padding: 20px 0;
}

.invest-plan .invest-plan-name {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--main-color);
}

.invest-plan .invest-plan-amount {
    font-size: 28px;
    color: #fff;
}

.invest-plan .invest-plan-amount sub {
    font-size: 60%;
    font-weight: 400;
}

.invest-plan .invest-plan-min-max {
    font-size: 16px;
}

.invest-plan .invest-plan-min-max p {
    margin-bottom: 0;
}

.invest-plan-min-max li+li {
    margin-top: 10px;
}

.invest-plan-min-max li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: #e9e9e9;
}



.featured-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.featured-section-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    z-index: -1;
}

.featured-section .line-obj {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.featured-slider .slick-list {
    margin: -20px;
}

.featured-slider .single-slide {
    padding: 20px;
}

.featured-slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    margin-bottom: 0;
    gap: 6px;
}

.featured-slider .slick-dots li.slick-active button {
    border-color: var(--main-color);
}

.featured-slider .slick-dots button {
    position: relative;
    width: 24px;
    height: 24px;
    background: transparent;
    border-radius: 50%;
    padding: 0;
    border: 1px solid transparent;
    font-size: 0;
}

.featured-slider .slick-dots button::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background-color: #464646;
    border-radius: 50%;
}


.featured-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.featured-item .thumb {
    position: relative;
    width: 60%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
}

.featured-item .thumb .featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 15px;
    background-color: var(--main-color);
    color: #fff;
    font-size: 14px;
    border-radius: 99px;
}

.plan-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.featured-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.featured-item .content {
    width: calc(40% - 20px);
    padding: 45px 40px;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0,0,0,0.05);
}

.featured-item .content .top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 12px;
}

.featured-item .content .top .top-content {
    width: calc(100% - 50px);
}

.featured-item .content .top .featured-bookmark-btn {
    position: relative;
    width: 50px;
    height: 30px;
    text-align: right;
    font-size: 24px;
    border: none;
    background-color: transparent;
    color: #777;
}

.featured-item .content .top .featured-bookmark-btn i {
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.3s;
}

.featured-item .content .top .featured-bookmark-btn i.second-bookmark {
    opacity: 0;
}

.featured-item .content .top .featured-bookmark-btn.bookmarked i.first-bookmark {
    opacity: 0;
}

.featured-item .content .top .featured-bookmark-btn.bookmarked i.second-bookmark {
    opacity: 1;
    color: var(--main-color);
}

.featured-property-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featured-property-btn span {
    font-weight: 600;
    color: var(--h-color);
}

.featured-property-btn i {
    width: 44px;
    height: 44px;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s;
}

.featured-property-btn:hover i {
    background-color: var(--main-color);
    color: #fff;
}

.feature-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    border-top: 1px solid #e5e5e5;
    padding-top: 16px;
}

.featured-item .utilities {
    width: calc(100% - 250px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
}

.featured-item .utilities li {
    padding: 5px 15px;
}


.featured-item .utilities li:first-child {
    padding-left: 0;
}

.featured-item .utilities li i {
    color: var(--p-color);
    margin-right: 6px;
}

.featured-item .property-ratings i,
.featured-item .property-ratings {
    font-size: 16px;
}

.featured-section ~ .property-section {
    padding-top: 0 !important;
}

.invest-card {
    position: relative;
    padding: 12px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    height: 100%;
    background-color: #fff;
    transition: all 0.3s;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.invest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.invest-card-thumb {
    height: 300px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.invest-card-thumb .invest-bookmark-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
    line-height: 1;
    font-size: 18px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    z-index: 3;
}

.invest-bookmark-btn i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
}

.invest-bookmark-btn i.second-bookmark {
    opacity: 0;
}

.invest-bookmark-btn.bookmarked .first-bookmark {
    opacity: 0;
}

.invest-bookmark-btn.bookmarked .second-bookmark {
    opacity: 1;
}

.invest-card-thumb::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.invest-card-thumb .thumb-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
}

.invest-card-thumb .location,
.invest-card-thumb .title {
    color: #fff;
}

.invest-card-thumb .title {
    font-size: 24px;
}

.invest-card-thumb .title a:hover {
    color: #fff;
}

.invest-card-thumb .location {
    font-size: 14px;
    margin-bottom: 0;
}

.invest-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    transition: all 0.5s;
}

.invest-card:hover .invest-card-thumb img {
    transform: scale(1.25, 1.25) rotate(5deg);
}

.invest-card-content {
    padding-top: 20px;
    padding-bottom: 16px;
    padding-inline: 8px;
    font-size: 14px;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
}

.invest-card-content .title {
    font-size: 22px;
}

.invest-card-content .title a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.invest-card-content .return-rate {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.invest-card-content .return-rate .return-amount {
    font-size: 24px;
    margin-bottom: 0;
}

.invest-card-content .return-rate p {
    margin-bottom: 0;
}

.invest-card-content .other-options {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.invest-card-content .single-option {
    width: 50%;
    padding: 10px;
}

.invest-card-content .single-option p {
    margin-bottom: 0;
}

.invest-card-content .single-option h6 {
    margin-bottom: 0;
    font-size: 16px;
}

.invest-card-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -3px -10px;
}

.invest-card-list li {
    color: #777;
    padding: 3px 10px;
    font-size: 15px;
}

.invest-card-list li i {
    color: var(--p-color);
}

.invest-card-content .location {
    font-size: 15px;
    color: #777;
}


.invest-card-btn {
    width: 44px;
    height: 44px;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s;
}


.invest-card:hover .invest-card-btn {
    background-color: var(--main-color);
    color: #fff;
}

.invest-card-footer {
    padding-inline: 8px;
}

.invest-card-footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 8px;
    border-top: 1px solid #e5e5e5;
}

.invest-card-footer .cmn-btn.btn-sm,
.invest-card-footer .cmn-btn2.btn-sm {
    padding: 10px 25px;
}
.invest-cat {
    font-weight: 500;
    margin-bottom: 0;
    font-size: 14px;
}

.invest-btn {
    color: var(--main-color);
    font-weight: 500;
}

.calculate-btn {
    color: var(--main-color);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.calculate-btn i {
    margin-right: 5px;
    animation: ring 2s infinite linear;
}

/* 
.calculate-btn i::before {
} */


@keyframes ring {
    0% {
        transform: rotate(35deg);
    }

    12.5% {
        transform: rotate(-30deg);
    }

    25% {
        transform: rotate(25deg);
    }

    37.5% {
        transform: rotate(-20deg);
    }

    50% {
        transform: rotate(15deg);
    }

    62.5% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* work section css start */
.work-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.work-section::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F6F8FC;
    z-index: -1;
    opacity: 0.96;
}

.work-section .work-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    opacity: 0.05;
    z-index: -1;
}

.how-thumb {
    width: 550px;
    height: 550px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
}

.how-thumb img {
    max-width: 450px;
    max-height: 450px;
}

@media (max-width: 1199px) {
    .how-thumb {
        width: 450px;
        height: 450px;
    }

    .how-thumb img {
        max-width: 450px;
        max-height: 450px;
    }
}

.work-wrapper {
    position: relative;
    z-index: 1;
}

.work-wrapper::before {
    position: absolute;
    content: '';
    top: 50px;
    left: 43px;
    width: 2px;
    height: calc(100% - 110px);
    background-color: #fff;
    opacity: 0.2;
    z-index: -1;
}

.work-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.work-box-wrapper div[class*="col"] .work-box {
    position: relative;
}

.work-box-wrapper div[class*="col"] .work-box::before {
    position: absolute;
    content: '';
    top: 25%;
    right: -50px;
    width: 100px;
    height: 2px;
    border-top: 1px dashed #757575;
}

.work-box-wrapper div[class*="col"] .work-box::after {
    position: absolute;
    content: "\f285";
    top: 19%;
    right: -57px;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: 400 !important;
    color: #6c6c6c;
    font-size: 18px;
}

.work-box-wrapper div[class*="col"]:last-child .work-box::after,
.work-box-wrapper div[class*="col"]:last-child .work-box::before {
    display: none;
}

.work-box {
    text-align: center;
}

.work-box .icon {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    box-shadow: 0 10px 25px rgba(0,0,0, 0.05);
    transition: all 0.3s;
}

.work-box:hover .icon  {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0,0,0, 0.1);
}

.work-box .icon img {
    max-height: 55px;
}

/* work section css end */

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--main-color);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--main-color);
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}


/* Timeline */

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testi-slider-buttons {
    display: flex;
    align-items: center;
}

.testi-slider-buttons button {
    width: 45px;
    height: 45px;
    border: 1px solid var(--p-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    transition: all 0.3s;
}

.testi-slider-buttons button:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.testi-slider-buttons .testi-next {
    margin-left: 20px;
}

.testimonial-slider .slick-list {
    margin: -15px;
}

.testimonial-slider .single-slide {
    padding: 15px;
}

.testimonial-box {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.085);
    border-radius: 16px;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-rating i {
    color: #ffbd17;
}

.testimonial-box .content p {
    margin-bottom: 0;
    font-size: 18px;
}

.testimonial-quote {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
    position: relative;
}

.testimonial-quote::before {
    position: absolute;
    content: '';
    top: 30px;
    left: -30px;
    width: calc(100% - 10px);
    height: 1px;
    background-color: #e5e5e5;
}

.testimonial-quote i {
    color: black;
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
    font-size: 22px;
    width: 40px;
    background-color: #fff;
    text-align: right;
}

.testimonial-box .client {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.testimonial-box .thumb {
    width: 65px;
    height: 65px;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.testimonial-box .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    object-position: center;
    -o-object-position: center;
}

.testimonial-box .client-content {
    width: calc(100% - 65px);
    padding-left: 20px;
}

.testimonial-box .title {
    font-size: 20px;
    margin-bottom: 5px;
}

.testimonial-slider .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.testimonial-slider .slick-dots li {
    margin: 3px;
}

.testimonial-slider .slick-dots li button {
    font-size: 0;
    padding: 0;
    border: none;
    background-color: rgba(255, 255, 255, 0.15);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.testimonial-slider .slick-dots li.slick-active button {
    width: 35px;
    background-color: var(--main-color);
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
}

/* table css start */
.cmn-table {
    border: none;
}

.cmn-table thead th {
    font-size: 14px;
    color: #fff;
    background-color: var(--h-color);
    border: none;
    text-align: center;
    padding: 10px 20px;
    font-weight: 600;
}

.cmn-table thead th:first-child {
    border-radius: 8px 0 0 0;
    text-align: left;
}

.cmn-table thead th:last-child {
    border-radius: 0 8px 0 0;
    text-align: right;
}

.cmn-table tbody tr {
    background-color: #1c3e610d;
}

.cmn-table tbody td {
    border-top: none;
    border-bottom: 1px solid #d5d5d5;
    text-align: center;
    vertical-align: middle;
    padding: 15px 20px;
    background-color: #fff;
    font-size: 15px;
}

.cmn-table tbody td:first-child {
    text-align: left;
}

.cmn-table tbody td:last-child {
    text-align: right;
}

.cmn-table tbody tr:last-child td {
    border-bottom: none;
}

.cmn-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
    -webkit-border-radius: 0 0 0 5px;
    -moz-border-radius: 0 0 0 5px;
    -ms-border-radius: 0 0 0 5px;
    -o-border-radius: 0 0 0 5px;
}

.cmn-table tbody tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
    -webkit-border-radius: 0 0 5px 0;
    -moz-border-radius: 0 0 5px 0;
    -ms-border-radius: 0 0 5px 0;
    -o-border-radius: 0 0 5px 0;
}

.table>:not(:first-child) {
    border-top: none;
}

.view-btn {
    width: 30px;
    height: 30px;
    background-color: #6777ef47;
    border-radius: 3px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #6777ef !important;
    border: 1px solid #6777ef;
    font-size: 14px;
    transition: all 0.3s;
}

.view-btn:hover {
    background-color: #6777ef;
    color: #fff !important;
}

.cmn-table.style-separate {
    border-collapse: separate;
    border-spacing: 0 10px;
}

.cmn-table.style-separate tbody tr {
    box-shadow: inset 0 0px 8px #d776004d;

}

.cmn-table.style-separate thead tr th:first-child {
    border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -ms-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
}

.cmn-table.style-separate thead tr th:last-child {
    border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    -ms-border-radius: 0 5px 5px 0;
    -o-border-radius: 0 5px 5px 0;
}

.cmn-table.style-separate tbody tr {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

td[data-caption] {
    position: relative;
}

td[data-caption]::before {
    position: absolute;
    content: attr(data-caption);
    font-size: 14px;
    color: #849bab;
    font-weight: 600;
    top: 11px;
    left: 15px;
    display: none;
}

@media (max-width: 1199px) {
    .cmn-table thead {
        display: none;
    }

    .cmn-table tbody tr {
        display: block;
    }

    .cmn-table tbody tr:nth-child(odd) {
        background-color: #f7f7f70d;
    }

    .cmn-table tbody tr:nth-child(even) td {
        background-color: #f7f7f7;
    }

    .cmn-table tr td {
        display: block;
        text-align: right !important;
        padding: 10px 15px 10px 40%;
    }

    .cmn-table tr td {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    }

    .cmn-table tr td:last-child {
        border-bottom: none !important;
    }

    td[data-caption]::before {
        display: block;
        width: 40%;
        text-align: left;
    }

    .cmn-table.style-separate tbody tr+tr {
        margin-top: 15px;
    }
}

.nav-pills.has-two {
    display: inline-flex;
    border: 1px solid var(--main-color);
    border-radius: 999px;
    -webkit-border-radius: 999px;
    -moz-border-radius: 999px;
    -ms-border-radius: 999px;
    -o-border-radius: 999px;
    overflow: hidden;
}

.nav-pills.has-two .nav-item .nav-link {
    background-color: transparent;
    color: #fff;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 12px 20px;
}

.nav-pills.has-two .nav-item .nav-link.active {
    background-color: var(--main-color);
    color: #000;
}

/* table css end */


/* button css start */
.btn-group {
    margin: -3px;
}

.btn-group [class*="btn"] {
    margin: 3px;
}

.btn {
    padding: 10px 30px;
}

.btn-primary {
    background-color: #6777ef;
    border-color: #6777ef;
}

.btn-primary:hover {
    background-color: #4759df;
    border-color: #4759df;
}

.btn-info {
    background-color: #0bb2d4;
    border-color: #0bb2d4;
}

.btn-info:hover {
    background-color: #0a9ebc;
    border-color: #0a9ebc;
}

.btn-warning {
    background-color: #eb6709;
    border-color: #eb6709;
}

.btn-warning:hover {
    background-color: #dd6008;
    border-color: #dd6008;
}

.btn-danger {
    background-color: #ff4c52;
    border-color: #ff4c52;
}

.btn-danger:hover {
    background-color: #f63d43;
    border-color: #f63d43;
}

.btn-success {
    background-color: #11c26d;
    border-color: #11c26d;
}

.btn-success:hover {
    background-color: #0da65c;
    border-color: #0da65c;
}

.view-btn {
    width: 30px;
    height: 30px;
    background-color: #6777ef47;
    border-radius: 3px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #6777ef !important;
    border: 1px solid #6777ef;
    font-size: 14px;
    transition: all 0.3s;
}

.view-btn:hover {
    background-color: #6777ef;
    color: #fff !important;
}

.view-btn-primary {
    color: #6777ef !important;
    border: 1px solid #6777ef;
    background-color: #6777ef47;
}

.view-btn-primary:hover {
    background-color: #6777ef;
}

.view-btn-info {
    color: #0bb2d4 !important;
    border: 1px solid #0bb2d4;
    background-color: #0bb2d447;
}

.view-btn-info:hover {
    background-color: #0bb2d4;
}

.view-btn-warning {
    color: #eb6709 !important;
    border: 1px solid #eb6709;
    background-color: #eb670947;
}

.view-btn-warning:hover {
    background-color: #eb6709;
}

.view-btn-danger {
    color: #ff4c52 !important;
    border: 1px solid #ff4c52;
    background-color: #ff4c5247;
}

.view-btn-danger:hover {
    background-color: #ff4c52;
}

.view-btn-success {
    color: #11c26d !important;
    border: 1px solid #11c26d;
    background-color: #11c26d47;
}

.view-btn-success:hover {
    background-color: #11c26d;
}

.tab-btn-group {
    display: inline-flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    border-bottom: 1px solid transparent;
    margin-bottom: -1px;
}

.tab-btn.active {
    border-color: var(--main-color);
    color: var(--main-color);
}

.tab-btn .num {
    padding: 3px 5px;
    background-color: var(--main-color);
    color: var(--body-bg);
    font-size: 14px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    line-height: 1;
}

.cookie-modal {
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cookie-modal button,
.cookies-card__icon {
    background-color: var(--main-color) !important;
}

input[type="file"].form-control {
    line-height: 37px;
    padding: 6px 12px;
}

/* button css end */

/* modal css start */
.modal-title.text-white {
    color: var(--h-color) !important;
}

.modal-content {
    background-color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-content .close {
    width: 30px;
    font-size: 20px;
    background-color: #ff4c52;
    color: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border: none;
}

.modal-content .cmn-btn {
    padding: 8.5px 30px;
    font-size: 16px;
}

.modal-header,
.modal-footer {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.modal-open,
.modal-open #header {
    padding-right: 0px !important;
}

.modal-open {
    overflow: auto !important;
}

.card {
    border: none;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.card-header,
.card-footer {
    padding: 15px 20px;
    border-color: rgb(0 0 0 / 10%);
    background-color: #ffffff14;
}

.card-header {
    border-radius: 8px 8px 0 0;
}

.card-footer {
    border-radius: 0 0 8px 8px;
}

.card-body {
    padding: 15px 20px;
}

.bg-body {
    background-color: var(--body-bg) !important;
}

.bg-main {
    background-color: var(--main-color);
}

.payment-box {
    padding: 10px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.payment-box-content {
    padding: 20px 10px 10px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 8px 8px;
    -webkit-border-radius: 0 0 8px 8px;
    -moz-border-radius: 0 0 8px 8px;
    -ms-border-radius: 0 0 8px 8px;
    -o-border-radius: 0 0 8px 8px;
}

/* modal css end */


/* badge css start */
.badge {
    padding: 0 0 0 15px;
    position: relative;
    color: #052554;
    background-color: transparent;
    font-size: 14px;
}

.badge::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: #052554;
    border-radius: 50%;
    margin-top: -5px;
}

.badge-primary {
    color: #6777EF;
}

.badge-primary::before {
    background-color: #6777EF;
}

.badge-info {
    color: #0bb2d4;
}

.badge-info::before {
    background-color: #0bb2d4;
}

.badge-warning {
    color: #eb6709;
}

.badge-warning::before {
    background-color: #eb6709;
}

.badge-danger {
    color: #ff4c52;
}

.badge-danger::before {
    background-color: #ff4c52;
}

.badge-success {
    color: #11c26d;
}

.badge-success::before {
    background-color: #11c26d;
}

.single-reply {
    padding: 25px;
    background-color: var(--body-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.single-reply+.single-reply {
    margin-top: 20px;
}

.single-reply.admin-reply {
    position: relative;
}

.single-reply.admin-reply::before {
    position: absolute;
    content: 'Admin Reply';
    top: 0;
    right: 0;
    padding: 0px 7px 0 18px;
    background-color: var(--main-color);
    color: var(--body-bg);
    font-size: 12px;
    -webkit-clip-path: polygon(100% 0%, 100% 51%, 100% 100%, 0 100%, 15% 50%, 0 0);
    clip-path: polygon(100% 0%, 100% 51%, 100% 100%, 0 100%, 15% 50%, 0 0);
}

/* badge css end */


/* affiliate css start */

.affiliate-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.affiliate-section::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F6F8FC;
    z-index: -1;
    opacity: 0.96;
}

.affiliate-section .affiliate-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    z-index: -1;
    opacity: 0.05;
}

.referral-wrapper {
    padding: 30px;
    background-color: #fff;
    border-radius: 16px;
}

.referral-box {
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #e5e5e5;
}

.referral-box + .referral-box {
    margin-top: 24px;
}

.referral-box-icon {
    position: relative;
    width: 65px;
    height: 65px;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 28px;
}

.referral-box-icon::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.referral-box-content {
    width: calc(100% - 65px);
    padding-left: 20px;
}

.referral-box-title {
    font-size: 20px;
}
/* affiliate css end */

/* bonus section css start */

.bonus-box {
    padding: 24px;
    background-color: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    border-radius: 16px;
    border: 1px solid var(--main-color);
}

.bonus-box:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.bonus-box-img {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
    margin-bottom: 20px;
    margin-inline: auto;
}

.bonus-box-img::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    z-index: -1;
    border-radius: 12px;
}

.bonus-box-img img {
    max-height: 40px;
    max-width: 40px;
}

.bonus-box .title {
    text-align: center;
}

.bonus-box .title ~ p {
    text-align: center;
}

.bonus-list {
    margin: -10px -8px;
    padding: 12px;
    background-color: #f1f5f9;
    border-radius: 12px;
    margin-top: 20px;
}

.bonus-list li {
    padding: 10px 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
}

.bonus-list li h6 {
    margin-bottom: 0;
}

.bonus-list li span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bonus-list li span i {
    font-size: 16px;
    color: var(--main-color);
}
/* bonus section css end */

/* blog section css start */
.blog-box {
    background-color: #fff;
    border-radius: 16px;
    height: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.085);
    padding: 12px;
    transition: all 0.3s;
}

.blog-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.085);
}

.section-bg .blog-box {
    background-color: var(--body-bg);
}

.blog-box-thumb {
    overflow: hidden;
    height: 280px;
    border-radius: 12px;
}

.blog-box-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    transition: all 0.5s;
}

.blog-box:hover .blog-box-thumb img {
    transform: scale(1.1, 1.1);
}

.blog-box-content {
    padding: 20px 12px 16px 12px;
}

.blog-box-content .title {
    font-size: 22px;
}

.blog-box-content .title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -3px -15px;
}

.blog-meta li {
    padding: 3px 15px;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.blog-meta li i {
    margin-right: 5px;
}

.blog-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--para-color);
    margin-top: 16px;
    padding-top: 16px;
    margin-top: 24px;
    border-top: 1px solid #e5e5e5;
}

.blog-btn span {
    font-weight: 600;
}

.blog-btn i {
    width: 44px;
    height: 44px;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s;
}

.blog-btn:hover i {
    background-color: var(--main-color);
}

.side-blog {
    display: flex;
    flex-wrap: wrap;
}

.side-blog+.side-blog {
    margin-top: 20px;
}

.side-blog-thumb {
    width: 70px;
    height: 60px;
    overflow: hidden;
}

.side-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

.side-blog-content {
    width: calc(100% - 70px);
    padding-left: 20px;
}

.blog-share-part {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 15px 20px 20px;
}

.blog-share-part .caption {
    margin: 0 15px 0 0;
}

.blog-share-list {
    margin-bottom: 0;
}

.blog-share-list ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

}

.blog-share-list li {
    padding: 5px 10px;
}

.blog-share-list li a {
    color: var(--p-color);
}

.blog-share-list li a:hover {
    color: var(--main-color);
}

.blog-details-thumb {
    height: 450px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.blog-details-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}

/* blog section css end */


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.map-area {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    margin-top: 50px;
}

.map-area iframe {
    height: 550px;
    width: 100%;
}

@media (max-width: 991px) {

    .map-area,
    .contact-area {
        width: 100%;
        padding: 0;
    }

    .map-area iframe {
        height: 450px;
    }

    .contact-area {
        margin-top: 40px;
    }
}


@media (max-width: 575px) {
    .map-area iframe {
        height: 300px;
    }
}

.conact-section ~ .s-pt-120 {
    padding-top: 0 !important;
}

.contact-item {
    padding: 24px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-item .title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.contact-item .title i {
    color: var(--main-color);
}


/* NewsLetter */

#sub {
    height: 45px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #3d3d3d !important;
    border-radius: 8px;
    color: #fff;
    width: 240px;
}

.btn-sub {
    width: 110px;
    height: 45px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    outline: none;
    background: #FF8E06 !important;
    color: #fff !important;
    position: relative;
    transition: all 0.5s;
    z-index: 1;
    border-radius: 10px;
    margin-left: 10px;
}


/* .btn-sub::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: #f5a508;
    z-index: -1;
    transition: all 0.5s;
} */


/* .btn-sub:hover::before {
    width: 100%;
} */

.btn-sub:hover {
    color: black;
    background: #FF8E06 !important;
}


/* .btn-sub:active:before {
    background: #b9b9b9;
} */

@media screen and (max-width:576px) {
    .button-form {
        display: flex;
    }

    .email-newsletter {
        margin-top: 0px !important;
    }

    .button-form #sub {
        min-width: 179px !important;
    }
}

@media screen and (min-width:768px) {
    .button-form #sub {
        min-width: 299px !important;
    }
}


/* faq */
.faq-thumb img {
    max-height: 450px;
}

.accordion-item {
    background-color: var(--body-bg);
    border: none;
    border-bottom: 1px solid #e5e5e5 !important;
    border-radius: 0 !important;
    padding-block: 8px;
}

.accordion-item+.accordion-item {
    margin-top: 15px;
}

.accordion-button {
    background-color: var(--body-bg);
    font-size: 20px;
    position: relative;
    padding-right: 30px;
    padding-left: 0;
    padding-top: 0;
    color: var(--h-color);
    font-weight: 600;
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.accordion-button::after,
.accordion-button:not(.collapsed)::after {
    background-image: none;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
}

.accordion-button:not(.collapsed)::after {
    color: var(--h-color);
}

.accordion-button:not(.collapsed) {
    color: var(--h-color);
}

.accordion-button::after {
    position: absolute;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: 5px;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--h-color);
}

.accordion-body {
    padding-inline: 0;
}

/*------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    background-size: cover;
    background-position: center;
    padding-top: 190px;
    padding-bottom: 45px;
    position: relative;
    z-index: 1;
}

.breadcrumbs::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color2);
    opacity: 0.65;
    z-index: -1;
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: var(--main-color);
    content: "/";
}

@media (max-width: 991px) {
    .breadcrumbs {
        padding-top: 100px;
    }

    .breadcrumbs .d-flex {
        display: block !important;
        text-align: center;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}


/* auth section css start */
.auth-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}

.auth-wrapper {
    min-height: 100vh;
    width: 650px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding: 30px 70px;
    position: relative;
    z-index: 1;
}

.auth-wrapper::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:linear-gradient(135deg, #04010e 0%, #3a10a8 100%) !important;
    z-index: -1;
}

.auth-wrapper span,
.auth-wrapper li,
.auth-wrapper p,
.auth-wrapper label,
.auth-wrapper i {
    color: #fff;
}

.auth-top-part {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.auth-logo img {
    max-width: 175px;
    max-height: 65px;
}

.auth-body-part {
    padding: 50px 0;
}

.auth-thumb-area {
    min-height: 100vh;
    padding: 50px;
    width: calc(100% - 650px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    position: relative;
    background-size: cover;
}

.auth-thumb-area::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color2);
    opacity: 0.25;

}

.auth-section-two .auth-wrapper {
    width: 750px;
    padding: 30px 50px;
}

.auth-section-two .auth-thumb-area {
    width: calc(100% - 750px);
}

.divider-or {
    position: relative;
    z-index: 1;
    text-align: center;
}

.divider-or::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    opacity: 0.1;
    z-index: -1;
}

.divider-or span {
    padding: 2px 10px;
    background-color: var(--main-color2);
}

/* auth section css end */


/* user dashboard */
ul {
    list-style: none;
    padding: 0;
}

.user-account-number {
    position: relative;
    padding: 30px;
    border-radius: 10px;
    background: linear-gradient(to top, #2f5b88, #153352);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.card-dot [class*="dot-"] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--main-color);
}

.card-dot .dot-2 {
    background-color: #fff;
    opacity: 0.1;
    transform: translateX(-15px);

}

.user-account-number i {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    color: #fff;
    opacity: 0.1;
    font-size: 150px;
    line-height: 1;
}

.user-account-number .caption {
    color: #fff;
}

.user-account-number .acc-number {
    color: #fff;
    font-size: 32px;
    margin: 0;
}

.d-box-one {
    background-color: var(--body-bg);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.d-box-one i {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: -1;
    font-size: 56px;
    opacity: 0.05;
}

.d-box-one .top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.d-box-one .top span {
    font-weight: 500;
}

.d-box-one-amount {
    margin-top: 30px;
    margin-bottom: 0;
}

.d-box-two {
    padding: 25px;
    background-color: #fff;
    border-radius: 24px;
    position: relative;
}

.d-box-two-icon {
    position: relative;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f1f5f9;
    border-radius: 10px;
    color: #fff;
    font-size: 22px;
    z-index: 1;
}

.d-box-two-icon::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    border-radius: 10px;
    z-index: -1;
}

.d-box-two-amount {
    margin-bottom: 6px;
    font-size: 24px;
}

.d-box-two .link-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--h-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--h-color);
    border-radius: 50%;
    transition: all 0.3s;
}

.d-box-two .link-btn:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.d-box-three {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
}

@media (max-width: 767px) {
    .d-box-three {
        padding: 15px;
    }
}

.d-box-three .icon {
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-size: 24px;
    position: relative;
    color: var(--h-color);
    background-color: #f1f5f9;
}

.d-box-three .content {
    width: calc(100% - 55px);
    padding-left: 20px;
}

.d-box-three .content .title {
    font-size: 22px;
}

.text-small {
    font-size: 14px;
}

.no-data-icon {
    font-size: 46px;
}

.d-plan-notice {
    padding: 15px;
    background-color: #E5EAF0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    text-align: center;
}

.d-plan-notice p,
.d-plan-notice a {
    font-size: 14px;
}

.d-plan-notice a {
    color: var(--main-color);
}

/* investor section css start */
.investor-item {
    padding: 2.1875rem 1.5625rem;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

.investor-item:hover {
    border-color: var(--main-color);
}

.investor-item .thumb {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background-size: 200px auto;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .investor-item .thumb {
        width: 180px;
        height: 180px;
    }
}

.investor-item .thumb img {
    filter: grayscale(1);
}

.investor-item .content {
    margin-top: 1.5625rem;
}

.investor-item .content p {
    margin-bottom: 0;
}

.investor-item .content .title {
    font-size: 22px;
}

.investor-slider .slick-list {
    margin: -24px -16px;
}

.investor-slider .single-slide {
    padding: 24px 16px;
}

.investor-slider .slick-arrow {
    position: absolute;
    top: 45%;
    width: 40px;
    height: 35px;
    background-color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: centere;
}

.investor-slider .slick-arrow:hover {
    background-color: var(--main-color);
    color: #fff;
}

.investor-slider .slick-arrow.prev {
    left: 10px;
}

.investor-slider .slick-arrow.next {
    right: 10px;
}

.site-color {
    color: var(--main-color) !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.text-line-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-line-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-line-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* investor section css end */


/* cta-section css start */
.cta-section {
    position: relative;
    z-index: 1;
}

.cta-wrapper {
    padding: 40px 40px;
    background-color: #f1f5f9;
    border-radius: 16px;
    position: relative;
}

.cta-img {
    position: absolute;
    bottom: 0;
    right: 60px;
    max-width: 380px;
    max-height: 400px;
}

@media (max-width: 991px) {
    .cta-img {
        display: none;
    }
}

/* cta-section css end */

/* brand-section css start */
.brand-section {
    padding: 60px 0;
}

.brand-item {
    text-align: center;
}

.brand-item img {
    display: inline-block;
    max-height: 145px;
}

/* brand-section css end */

/* footer css start */
.footer-section {
    position: relative;
    background-color: var(--main-color2);
    margin-top: auto;
    z-index: 1;
}

.footer-section::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--main-color2) 50%, transparent 160%);
    z-index: -1;
}

.footer-section-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    z-index: -2;
}

.footer-obj2 {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.25;
    z-index: -1;
}

.footer-obj2 img {
    max-height: 300px;
}

.footer-top .container {
    padding: 80px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-middle .container {
    padding: 60px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    max-height: 65px;
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.footer-social-links li a {
    color: #fff;
}


.footer-bottom {
    padding: 25px 0;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    margin: -3px -5px;
}

.social-links li {
    padding: 3px 5px;
}

.social-links li a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.social-links li a:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.footer-info-list li {
    display: flex;
    flex-wrap: wrap;
}

.footer-text-muted {
    color: #c7c7c7 !important;
}

.footer-info-list .caption {
    font-weight: 500;
    width: 30px;
    position: relative;
}

.footer-info-list .description {
    width: calc(100% - 30px);
    padding-left: 4px;
}

.footer-section p,
.footer-section li,
.footer-section a,
.footer-section i,
.footer-section span {
    color: #fff;
}

.footer-box .logo img {
    max-width: 215px;
    max-height: 55px;
}

.footer-box .title {
    margin-bottom: 24px;
    padding-bottom: 10px;
    color: #fff;
    font-size: 16px;
}

.footer-link-list li:not(:first-child)::before {
    top: 5px;
}

.footer-link-list li a {
    padding: 5px 0;
    color: #c7c7c7;
}

.footer-link-list li:first-child a {
    padding-top: 0;
}

.footer-link-list li:last-child a {
    padding-bottom: 0;
}

/* footer css end */


.popup-search {
    width: 94%;
}

.popup-search-btn {
    height: 44px;
    margin-left: -38%;
    margin-top: -2px;
    background-color: #44c073;
    border: none;
    width: 36%;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: 1px;
}

.form-wrapper {
    border-radius: 16px;
    background-color: #fff;
    z-index: 99;
}

.form-wrapper input {
    height: 48px;
}

.form-wrapper select {
    height: 48px;
}

.form-wrapper label {
    margin-bottom: 8px;
    color: #131533;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.f-btn {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    border: 2px solid #fff !important;
    border-radius: 40px !important;
    background-color: #2c71f0 !important;
    width: 100%;
    padding: 18px 40px;
    margin-top: 7px !important;
    color: #fff !important;
    transition: all 300ms ease;
}

.form-bg {
    position: absolute;
    left: 85%;
    top: 18%;
    transform: translateY(-50%);
    background-color: #0337cc;
    z-index: -4;
    width: 146px;
    height: 146px;
    border-radius: 50%;
    border: 8px solid #fff;
}

.form-bg2 {
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translateY(-50%);
    background-color: #03cca7;
    z-index: -4;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 8px solid #fff;
}

.form-bg3 {
    position: absolute;
    left: 82%;
    top: 86%;
    transform: translateY(-50%);
    background-color: #f9a6f6;
    z-index: -4;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 8px solid #fff;
}

@media screen and (min-width:768px) and (max-width:991px) {
    .our-services {
        margin-top: 20px;
    }

    .location {
        margin-top: 23px !important;
    }

    .location-title {
        padding-bottom: 6px !important;
    }

    .useful-link {
        padding-bottom: 26px !important;
    }
}

@media (max-width: 767.98px) {
    .form-bg {
        display: none;
    }

    .form-bg2 {
        display: none;
    }

    .form-bg3 {
        display: none;
    }

    .footer-links {
        margin-top: 30px !important;
    }

    .our-services {
        margin-top: 0px !important;
    }
}

.text-justifys {
    text-align: justify;
    text-justify: inter-word;
}

.text-justifys span {
    color: #fff !important;
}

.card {
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.card-hight {
    height: 500px;
}

.top {
    width: 100%;
    background-size: cover;
}

.category {
    background-color: #ffbb38;
    width: 50%;
    padding: 8px 0;
    color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 800;
    opacity: 0.6;
}

.intro {
    text-align: justify;
    text-justify: inter-word;
}

a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    color: var(--main-color);
    transition: 0.3s;
}

.author {
    display: flex;
    align-items: center;
}

.profile {
    background-size: cover;
    background-position: center;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    margin: 10px 0 10px 22px;
}

.name {
    padding-left: 10px;
    cursor: pointer;
    font-weight: 300;
}

.name a {
    font-weight: 400;
    color: orange;
}

.info {
    display: flex;
    color: #999;
    font-size: 14px;
    margin-top: 8px;
    padding-left: 0;
}

.info a {
    cursor: pointer;
}

ion-icon {
    height: 20px;
    width: 20px;
    display: flex;
    padding: 10px 8px 0 22px;
}

.user-icon img {
    height: 30px;
    width: 30px;
    border-radius: 50%;
}

.user-icon {
    display: flex;
    align-items: center;
    vertical-align: bottom;
}

.user-icon h6 {
    margin-left: 10px;
    margin-bottom: 0;
}

.comment {
    margin-left: 38px;
    margin-top: 5px;
}

.header-dashboard {
    margin-right: 20px;
}

.card-body .instruction * {
    white-space: break-spaces;
}

@media screen and (max-width: 1003px) {
    #hero .banner-calc-btn {
        /* padding: 55px 20px; */
        transition: ease-in-out 0.3s;
        height: 100%;
        text-align: left;
        padding-bottom: 10px;
        padding-left: 20px;
        padding-top: 0px;
    }

    .banner-calc-box {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .triangle {
        display: none;
    }

    #hero h1 {
        font-size: 44px;
        line-height: 51px;
        padding: 24px 0;
    }
}

@media screen and (max-width:575px) {
    .faq-media {
        display: none;
    }

    .withdraw-ins {
        margin-top: 20px !important;
    }
}

.modal-footer {
    border-top: 0px !important;
}



/* dashboard-section css start */

.dashboard-main {
    min-height: 100vh;
    background-color: #E5EAF0;
}

.user-toggle-menu {
    display: flex;
    align-items: center;
    padding: 4px 12px 4px 4px;
    background-color: transparent;
    border: none;
    border-radius: 50px;
    transition: background 0.2s;
    text-decoration: none;
}
.user-toggle-menu:hover {
    background-color: rgba(0, 0, 0, 0.06);
}
.header-inner-pages .user-toggle-menu {
    background-color: transparent;
    border: none;
}

.dropdown-toggle::after {
    border-top-color: var(--p-color);
}

.dropdown-menu {
    background-color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li a:focus,
.dropdown-menu li a:hover,
.dropdown-menu li a:active {
    background: var(--main-color);
    color: #fff;
}

.header-inner-pages .user-menu li a {
    color: var(--p-color);
}

.header-inner-pages .dropdown-menu {
    background-color: #fff;
}

.header-inner-pages .dropdown-menu li a {
    color: var(--p-color);
}

.user-toggle-menu img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--main-color);
    object-fit: cover;
}

@media (max-width: 575px) {
    .user-toggle-menu img {
        display: none;
    }

    .user-toggle-menu span {
        margin: 0 !important;
    }
}

.dashboard-body-part {
    padding: 110px 15px 50px 345px;
}

.d-sidebar {
    position: fixed;
    min-height: calc(100vh - 75px);
    max-height: calc(100vh - 75px);
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    top: 75px;
    left: 0;
    width: 310px;
    padding: 20px 16px;
    background-color: #fff;
    overflow: hidden;
    z-index: 1;
    overflow: auto;
    border-top: 1px solid #e5e5e5;
}

.sidebar-open-btn {
    border: none;
    background-color: var(--secondary-color);
    font-size: 22px;
    padding: 0;
    width: 35px;
    height: 35px;
    display: none;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.sidebar-open-btn i.bi-arrow-bar-left {
    display: none;
}

.sidebar-open-btn.active i.bi-arrow-bar-left {
    display: inline-block;
}

.sidebar-open-btn.active i.bi-arrow-bar-right {
    display: none;
}

@media (max-width: 991px) {
    .sidebar-open-btn {
        display: flex;
        border-radius: 10px;
    }
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) var(--secondary-color);
}

*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

*::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    border: 3px solid var(--secondary-color);
}


.d-sidebar-menu li:last-child a {
    border-bottom: none;
    padding-bottom: 0;
}

.d-sidebar-menu li.active>a {
    background-color: var(--main-color);
    color: #fff;
    border-bottom: none;
}

.d-sidebar-menu li a i {
    margin-right: 5px;
}

.submenu {
    display: none;
    background-color: #705cd0;
    padding-block: 4px;
    border-radius: 10px;
}

.d-sidebar-menu li + li {
    margin-top: 4px;
}

.d-sidebar-menu li a {
    display: block;
    padding: 10px 16px !important;
    border-radius: 8px;
    font-size: 13px;
    color: #4b4b4b;
    display: flex;
    align-items: center;
    gap: 12px;
}

.d-sidebar-menu li a span {
    font-size: 13px;
    line-height: 1;
}

.d-sidebar-menu .submenu li a {
    padding-left: 49px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    font-size: 16px;
}

.d-plan-notice {
    padding: 15px;
    background-color: #E5EAF0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    text-align: center;
}

.d-plan-notice p,
.d-plan-notice a {
    font-size: 14px;
}

.d-plan-notice a {
    color: var(--main-color);
}

.has_submenu {
    position: relative;
}

.has_submenu::after {
    position: absolute;
    content: "\f078";
    top: 16px;
    right: 20px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
}

.has_submenu.active .submenu {
    display: block;
}
/* dashboard-section css end */

/* new css start */
.pagebuilder-content .pbcontainer {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .pagebuilder-content .pbcontainer {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .pagebuilder-content .pbcontainer {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .pagebuilder-content .pbcontainer {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .pagebuilder-content .pbcontainer {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .pagebuilder-content .pbcontainer {
        max-width: 1320px;
    }
}


@media (min-width: 1536px) {
    .pagebuilder-content .pbcontainer {
        max-width: 1440px;
    }
}
/* new css end */

/* responsive css start */
@media (max-width: 1800px) {
    .calculate-area .container {
        padding-left: 150px;
    }
}

@media (max-width: 1560px) {
    .about-overview-item .number {
        font-size: 60px;
    }
}

@media (max-width: 1500px) {
    .calculate-area .container {
        padding-left: 280px;
    }
}

@media (max-width: 1399px) {
    .banner-title {
        font-size: 48px;
    }
    
    .about-overview-item .number {
        font-size: 48px;
    }

    .overview-box-amount {
        font-size: 32px;
    }

    .banner-section {
        padding-top: 230px;
        padding-bottom: 120px;
    }

    .referral-box-percentage {
        font-size: 42px;
    }

    .d-sidebar {
        width: 265px;
    }

    .dashboard-body-part {
        padding-left: 300px;
    }

    .featured-item .utilities {
        width: calc(100% - 200px);
    }

    .featured-item .content {
        padding: 35px 30px;
    }

    .featured-item .thumb {
        width: 40%;
    }

    .featured-item .content {
        width: 60%;
    }

    .featured-item .other-options {
        padding: 10px 0;
    }

    .invest-card-list {
        margin: -3px -8px;
    }

    .invest-card-list li {
        padding: 3px 8px;
    }
}

@media (max-width: 1199px) {
    .banner-section {
        position: relative;
        z-index: 1;
        padding-top: 150px;
        padding-bottom: 90px;
    }

    .banner-title {
        font-size: 42px;
    }

    .about-overview-item .number {
        font-size: 42px;
    }

    .calculate-area .container {
        padding-left: 150px;
    }

    .calculate-area .cmn-btn {
        padding: 12px 20px;
    }

    .subscribe-el {
        left: 0;
    }

    .auth-wrapper {
        width: 600px;
    }

    .auth-thumb-area {
        width: calc(100% - 600px);
    }

    .auth-thumb img {
        max-height: 550px;
    }

    .auth-section-two .auth-wrapper {
        width: 565px;
        padding: 30px;
    }

    .auth-section-two .auth-thumb-area {
        width: calc(100% - 565px);
    }

    .work-box-wrapper div[class*="col"]:nth-child(2) .work-box::before,
    .work-box-wrapper div[class*="col"]:nth-child(2) .work-box::after {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .featured-item .other-options .single-option {
        padding: 10px 10px;
    }

    .featured-item .other-options p {
        font-size: 13px;
    }

    .featured-item .other-options .option-title {
        font-size: 16px;
    }
}


@media (max-width: 991px) {
    .banner-section .banner-obj {
        width: 55%;
    }

    .banner-title {
        font-size: 48px;
    }

    .banner-section {
        padding-top: 180px;
        padding-bottom: 80px;
    }

    .about-overview-item .number {
        font-size: 36px;
    }

    .choose-box {
        padding: 25px;
    }

    .subscribe-el img {
        max-height: 265px;
    }

    .auth-wrapper {
        width: 400px;
        padding: 30px;
    }

    .auth-thumb-area {
        width: calc(100% - 400px);
    }

    .auth-thumb img {
        max-height: 400px;
    }

    .auth-section-two .auth-wrapper {
        width: 100%;
    }

    .auth-section-two .auth-thumb-area {
        display: none;
    }

    .d-sidebar {
        left: -105%;
        transition: all 0.3s;
    }

    .d-sidebar.active {
        left: 0;
        z-index: 9999;
    }

    .dashboard-body-part {
        padding-left: 15px;
    }

    .featured-item .thumb {
        width: 100%;
        height: 400px;
    }

    .featured-item .content {
        width: 100%;
        margin-top: 16px;
    }

    .choose-section .choose-section-bg-img {
        width: 100%;
    }

    .choose-section::before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--main-color2);
        opacity: 0.95;
        z-index: -1;
    }

    .section-top {
        margin-bottom: 45px;
    }

    .testi-slider-buttons {
        display: none;
    }

    .property-details-banner {
        padding-top: 175px;
    }

    .property-details-thumb {
        height: 430px;
    }
}

@media (max-width: 767px) {


    .banner-title {
        font-size: 36px;
    }

    .work-box-wrapper div[class*="col"] .work-box::before,
    .work-box-wrapper div[class*="col"] .work-box::after {
        display: none;
    }

    .about-content-wrapper {
        padding: 30px;
    }

    .accordion-button {
        font-size: 16px;
    }

    .overview-item p {
        font-size: 14px;
    }

    .subscribe-el img {
        max-height: 120px;
    }

    .auth-wrapper {
        width: 100%;
        padding: 30px;
    }

    .auth-thumb-area {
        display: none;
    }

    .featured-item .other-options .single-option {
        width: 50%;
    }

    .featured-item .other-options .single-option:nth-child(2)::after {
        display: none;
    }

    .featured-item .content .return .return-amount {
        font-size: 24px;
    }

    .section-top {
        margin-bottom: 35px;
    }

    .property-details-thumb {
        height: 335px;
    }
}

@media (max-width: 575px) {
    #header .logo img {
        max-height: 45px;
    }

    .referral-box-percentage {
        font-size: 32px;
    }

    .banner-section {
        padding-top: 130px;
        padding-bottom: 70px;
    }

    .about-overview-item .caption {
        font-size: 14px;
    }

    .about-overview-item .number {
        margin-bottom: 0;
    }

    .about-overview-item .number {
        font-size: 26px;
    }

    .overview-box-amount {
        font-size: 24px;
    }

    .overview-item {
        border-right: none;
    }

    .d-box-one {
        padding: 20px 50px 20px 20px;
    }

    .d-box-one .d-box-one-icon {
        width: 65px;
    }

    .d-box-one .d-box-one-icon i {
        font-size: 36px;
    }

    .tab-btn {
        padding: 10px;
    }

    .featured-item .thumb {
        height: 260px;
    }

    .featured-item .utilities {
        width: 100%;
    }

    .featured-item .utilities~.cmn-btn {
        width: 100%;
        margin-top: 15px;
    }

    .featured-item .content {
        padding: 25px 20px;
    }

    .featured-item .content .return p {
        font-size: 13px;
    }

    .featured-item .content .return .return-amount {
        font-size: 18px;
    }

    .feature-footer [class*="cmn-"] {
        padding: 10px 15px;
        font-size: 14px;
    }

    .property-details-banner {
        padding-top: 120px;
    }

    .property-details-thumb {
        height: 265px;
    }

    .single-review .content {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 390px) {
    .invest-card-footer {
        padding: 10px 10px;
    }
    .invest-card-footer .btn-sm {
        padding: 10px !important;
    }
    .feature-footer [class*="cmn-"] {
        padding: 8px 9px;
        font-size: 13px;
    }
}

.social-links-btn {
    margin-right: 15px;
}

.property-ratings {
    font-size: 14px;
}

.property-ratings i {
    font-size: 13px;
}

.property-ratings i.fas {
    color: #f9bd15;
}

.property-ratings i.far {
    color: #fff;
}

.property-details-top .property-ratings i.far,
.featured-item .property-ratings i.far {
    color: #525456;
}

.line-height-1 {
    line-height: 1 !important;
}

.text-sm {
    font-size: 14px !important;
}

.text-xs {
    font-size: 12px !important;
}

.bonus-box-badge {
    position: absolute;
    top: 12px;
    left: 12px;
}

.cmn-btn2:hover span.site-color {
    color: #fff;
}


/* responsive css end */
/* ── Marketplace Sidebar Highlight ── */
.sidebar-marketplace-link {
    position: relative;
}
.sidebar-marketplace-link .mkt-label {
    flex: 1;
}
.mkt-live-badge {
    display: none;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .6px;
    background: #22c55e;
    color: #fff;
    padding: 2px 6px 2px 5px;
    border-radius: 20px;
    line-height: 1.4;
    flex-shrink: 0;
}
.mkt-live-badge::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    animation: mkt-dot-pulse 1.4s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes mkt-dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .45; transform: scale(.7); }
}

/* ── Token Marketplace: Trust Badges ── */
.tm-trust {
    padding: 64px 0;
    background: #f8f9fc;
    border-top: 1px solid #eef0f8;
    position: relative;
    overflow: hidden;
}
.tm-trust::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, color-mix(in srgb, var(--main-color) 5%, transparent) 0%, transparent 65%);
    pointer-events: none;
}
.tm-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}
.tm-trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 18px;
    padding: 28px 20px 24px;
    border: 1px solid #eef0f8;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    gap: 14px;
}
.tm-trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px color-mix(in srgb, var(--main-color) 14%, transparent);
    border-color: color-mix(in srgb, var(--main-color) 25%, white);
}
.tm-trust-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--main-color) 12%, white), color-mix(in srgb, var(--main-color) 22%, white));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--main-color);
    flex-shrink: 0;
    transition: background 0.25s ease;
}
.tm-trust-card:hover .tm-trust-card-icon {
    background: linear-gradient(135deg, var(--main-color), color-mix(in srgb, var(--main-color) 65%, white));
    color: #fff;
}
.tm-trust-card-body strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}
.tm-trust-card-body span {
    display: block;
    font-size: 12px;
    color: #999;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .tm-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .tm-trust-card { padding: 20px 14px 18px; }
}
@media (max-width: 480px) {
    .tm-trust-grid { grid-template-columns: 1fr 1fr; }
}

/*--------------------------------------------------------------
# Bayut-style Header (default theme)
--------------------------------------------------------------*/
.bayut-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #ffffff;
    background: #ffffff !important;
    border-bottom: 1px solid #eef0f2;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.bayut-header-inner {
    width: 100%;
    background:linear-gradient(135deg, #260b71 0%, #4c21bc 100%) !important;
}

.bayut-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 72px;
}

.bayut-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    max-height: 48px;
}

.bayut-logo img {
    height: 44px;
    width: auto;
    max-height: 48px;
    object-fit: contain;
    display: block;
}

.bayut-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.bayut-nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bayut-nav-list > li {
    position: relative;
}

.bayut-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2d2f33;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
    transition: color .18s ease;
}

.bayut-nav-link:hover,
.bayut-nav-link:focus {
    color: var(--main-color);
}

.bayut-badge-new {
    display: inline-block;
    background: #ff3b30;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 2px 6px;
    border-radius: 10px;
    line-height: 1;
    text-transform: uppercase;
}

.bayut-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.bayut-hamburger {
    width: 42px;
    height: 42px;
    border: 1px solid #d8dde2;
    background: #fff;
    border-radius: 6px;
    display: none; /* hidden on desktop — only shown on mobile via media query below */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    padding: 0;
    transition: border-color .18s ease, background .18s ease;
}
@media (max-width: 992px) {
    .bayut-hamburger { display: inline-flex; }
}

.bayut-hamburger:hover {
    border-color: var(--main-color);
    background: #fafafa;
}

.bayut-hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #2d2f33;
    border-radius: 2px;
}

.bayut-auth-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid #2d2f33;
    border-radius: 6px;
    color: #2d2f33;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: #fff;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
    white-space: nowrap;
}

.bayut-auth-btn:hover,
.bayut-auth-btn:focus {
    background: #2d2f33;
    color: #fff;
    border-color: #2d2f33;
}

.bayut-auth-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

/* Side panel (hamburger drawer) */
.bayut-side-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    z-index: 1040;
}

.bayut-side-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.bayut-side-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 360px;
    max-width: 92vw;
    height: 100vh;
    background: #fff;
    box-shadow: -8px 0 24px rgba(0,0,0,.08);
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 1050;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.bayut-side-panel.is-open {
    transform: translateX(0);
}

.bayut-side-head {
    display: flex;
    justify-content: flex-end;
    padding: 14px 20px;
    border-bottom: 1px solid #eef0f2;
}

.bayut-side-close {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    color: #2d2f33;
    cursor: pointer;
    border-radius: 6px;
}

.bayut-side-close:hover {
    background: #f3f4f6;
}

.bayut-side-body {
    padding: 18px 24px 28px;
    flex: 1;
}

.bayut-side-section {
    padding: 16px 0;
    border-bottom: 1px solid #eef0f2;
}

.bayut-side-section:last-child {
    border-bottom: none;
}

.bayut-side-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: .6px;
    margin: 0 0 10px;
}

.bayut-side-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bayut-side-list li + li {
    margin-top: 4px;
}

.bayut-side-list a {
    display: block;
    padding: 10px 0;
    color: #2d2f33;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.bayut-side-list a:hover {
    color: var(--main-color);
}

.bayut-side-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.bayut-side-label {
    color: #2d2f33;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bayut-side-label i {
    color: #6b7280;
}

.bayut-side-value {
    color: #6b7280;
    font-size: 14px;
}

.bayut-side-select {
    border: 1px solid #d8dde2;
    background: #fff;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 13px;
    color: #2d2f33;
    cursor: pointer;
    min-width: 110px;
}

.bayut-side-select:focus {
    outline: none;
    border-color: var(--main-color);
}

.bayut-side-cta,
.bayut-side-cta-outline {
    display: block;
    text-align: center;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 10px;
}

.bayut-side-cta {
    background: var(--main-color);
    color: #fff;
    border: 1px solid var(--main-color);
}

.bayut-side-cta:hover {
    opacity: .92;
    color: #fff;
}

.bayut-side-cta-outline {
    background: #fff;
    color: #2d2f33;
    border: 1px solid #2d2f33;
}

.bayut-side-cta-outline:hover {
    background: #2d2f33;
    color: #fff;
}

/* Responsive */
@media (max-width: 991.98px) {
    .bayut-nav {
        display: none;
    }
    .bayut-header-bar {
        height: 64px;
    }
    .bayut-logo img {
        height: 32px;
    }
}

@media (max-width: 575.98px) {
    .bayut-auth-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    .bayut-auth-btn span {
        display: none;
    }
    .bayut-auth-btn .bayut-auth-avatar {
        margin: 0;
    }
}

/*--------------------------------------------------------------
# Bayut-style Listing & Detail Pages (PropertyBuy / PropertyRent)
--------------------------------------------------------------*/
.bayut-listing-hero {
    background: linear-gradient(135deg, var(--main-color) 0%, #048b81 100%);
    padding: 56px 0 40px;
    color: #fff;
}

.bayut-listing-hero-rent {
    background: linear-gradient(135deg, #1c2035 0%, #2d3656 100%);
}

.bayut-listing-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #fff;
}

.bayut-listing-subtitle {
    color: rgba(255, 255, 255, .85);
    font-size: 15px;
    margin-bottom: 22px;
}

.bayut-filter-bar {
    background: #fff;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

.bayut-filter-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr auto;
    gap: 10px;
    align-items: center;
}

.bayut-filter-input {
    height: 42px;
    border: 1px solid #d8dde2;
    border-radius: 6px;
    padding: 0 12px;
    font-size: 14px;
    background: #fff;
    color: #2d2f33;
    width: 100%;
}

.bayut-filter-input:focus {
    outline: none;
    border-color: var(--main-color);
}

.bayut-filter-submit {
    height: 42px;
    border: none;
    background: var(--main-color);
    color: #fff;
    font-weight: 600;
    padding: 0 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity .18s ease;
}

.bayut-filter-submit:hover {
    opacity: .92;
}

@media (max-width: 991.98px) {
    .bayut-filter-row {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .bayut-filter-row > *:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575.98px) {
    .bayut-filter-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Listing grid */
.bayut-listing-grid-section {
    padding: 40px 0 60px;
    background: #f6f8fc;
    min-height: 60vh;
}

.bayut-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.bayut-listing-card {
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.bayut-listing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .1);
    color: inherit;
    text-decoration: none;
}

.bayut-listing-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e9ecf2;
}

.bayut-listing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bayut-listing-img-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e9ecf2 0%, #d8dde2 100%);
}

.bayut-listing-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--main-color);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.bayut-listing-badge-rent {
    background: #1c2035;
}

.bayut-listing-body {
    padding: 16px;
}

.bayut-listing-price {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.bayut-listing-period {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

.bayut-listing-name {
    font-size: 15px;
    font-weight: 600;
    color: #2d2f33;
    margin: 6px 0 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bayut-listing-meta {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #4b5563;
}

.bayut-listing-meta li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bayut-listing-meta i {
    color: var(--main-color);
    font-size: 12px;
}

.bayut-listing-furnished {
    background: #e6f7f4;
    color: var(--main-color);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.bayut-listing-loc {
    color: #6b7280;
    font-size: 13px;
    margin: 0;
}

.bayut-listing-loc i {
    color: var(--main-color);
    margin-right: 4px;
}

.bayut-listing-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.bayut-listing-empty i {
    font-size: 48px;
    color: #d8dde2;
    margin-bottom: 14px;
}

.bayut-listing-pagination {
    display: flex;
    justify-content: center;
}

/* Detail page */
.bayut-detail-section {
    padding: 40px 0 60px;
    background: #f6f8fc;
}

.bayut-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
}

@media (max-width: 991.98px) {
    .bayut-detail-grid {
        grid-template-columns: 1fr;
    }
}

.bayut-detail-main {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
}

.bayut-detail-img {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 10px;
    overflow: hidden;
    background: #e9ecf2;
    margin-bottom: 20px;
}

.bayut-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bayut-detail-name {
    font-size: 26px;
    font-weight: 700;
    color: #2d2f33;
    margin: 0 0 8px;
}

.bayut-detail-price {
    color: var(--main-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
}

.bayut-detail-meta {
    list-style: none;
    margin: 0 0 24px;
    padding: 16px 0;
    border-top: 1px solid #eef0f2;
    border-bottom: 1px solid #eef0f2;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.bayut-detail-meta li {
    color: #4b5563;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bayut-detail-meta i {
    color: var(--main-color);
}

.bayut-detail-desc {
    color: #4b5563;
    line-height: 1.7;
    font-size: 14px;
}

/* Contact card */
.bayut-detail-side {
    align-self: start;
    position: sticky;
    top: 90px;
}

.bayut-contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
}

.bayut-contact-card h4 {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 600;
    color: #2d2f33;
}

.bayut-input {
    width: 100%;
    height: 44px;
    border: 1px solid #d8dde2;
    border-radius: 6px;
    padding: 0 12px;
    font-size: 14px;
    margin-bottom: 12px;
    color: #2d2f33;
}

textarea.bayut-input {
    height: auto;
    padding: 10px 12px;
    resize: vertical;
}

.bayut-input:focus {
    outline: none;
    border-color: var(--main-color);
}

.bayut-contact-btn {
    width: 100%;
    height: 46px;
    border: none;
    background: var(--main-color);
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: opacity .18s ease;
}

.bayut-contact-btn:hover {
    opacity: .92;
}

/* Related */
.bayut-related-section {
    margin-top: 50px;
}

.bayut-related-title {
    font-size: 22px;
    font-weight: 700;
    color: #2d2f33;
    margin-bottom: 18px;
}

/*--------------------------------------------------------------
# Bayut-style Hero Banner + Search Card (Homepage)
--------------------------------------------------------------*/

/* Header — mybayut italic accent */
.bayut-nav-mybayut {
    font-style: italic;
    color: var(--main-color) !important;
}
.bayut-mybayut-prefix {
    font-weight: 400;
}
.bayut-mybayut-brand {
    font-weight: 700;
}

/* Hero section */
.bayut-hero {
    position: relative;
    width: 100%;
    min-height: 820px;
    background: #f3eee3;
    overflow: hidden;
}

.bayut-hero-bg {
    position: absolute;
    inset: 0;
    background-color: #2d3656;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.bayut-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.35));
    pointer-events: none;
}

.bayut-hero-inner {
    position: relative;
    z-index: 1;
    padding: 110px 0 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bayut-hero-text {
    text-align: center;
    color: #fff;
    margin-bottom: 28px;
    text-shadow: 0 2px 10px rgba(0,0,0,.3);
}

.bayut-hero-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #fff;
}

.bayut-hero-subtitle {
    font-size: 17px;
    margin: 0;
    color: #fff;
    opacity: .95;
}

/* Search card */
.bayut-search-card {
    width: 100%;
    max-width: 880px;
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,.18);
}

.bayut-search-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.bayut-tab {
    flex-shrink: 0;
    border: none;
    background: transparent;
    color: #2d2f33;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

.bayut-tab.is-active {
    background: #e6f7f4;
    color: var(--main-color);
}

.bayut-tab strong {
    font-weight: 700;
}

.bayut-tab-badge {
    position: absolute;
    top: -4px;
    right: -2px;
    background: #ff3b30;
    color: #fff;
    font-size: 8px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 8px;
    line-height: 1;
}

/* Search form rows */
.bayut-search-form {
    margin: 0;
}

.bayut-search-row-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    margin-bottom: 10px;
}

.bayut-buyrent-toggle {
    display: inline-flex;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 4px;
    gap: 2px;
}

.bayut-pill {
    border: none;
    background: transparent;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    border-radius: 6px;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}

.bayut-pill.is-active {
    background: #fff;
    color: var(--main-color);
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

.bayut-location-field {
    position: relative;
    display: flex;
    align-items: center;
}

.bayut-location-field i {
    position: absolute;
    left: 14px;
    color: #6b7280;
    pointer-events: none;
    font-size: 14px;
}

.bayut-location-input {
    width: 100%;
    height: 48px;
    border: 1px solid #d8dde2;
    border-radius: 8px;
    padding: 0 14px 0 38px;
    font-size: 14px;
    background: #fff;
    color: #2d2f33;
}

.bayut-location-input:focus {
    outline: none;
    border-color: var(--main-color);
}

.bayut-search-submit {
    height: 48px;
    border: none;
    background: var(--main-color);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 0 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity .18s ease;
}

.bayut-search-submit:hover {
    opacity: .92;
}

.bayut-search-row-bot {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.bayut-completion-toggle {
    display: inline-flex;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 4px;
    gap: 2px;
}

.bayut-mini-pill {
    border: none;
    background: transparent;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    border-radius: 6px;
    cursor: pointer;
}

.bayut-mini-pill.is-active {
    background: #e6f7f4;
    color: var(--main-color);
}

.bayut-select {
    height: 42px;
    border: 1px solid #d8dde2;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 14px;
    background: #fff;
    color: #2d2f33;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.bayut-select:focus {
    outline: none;
    border-color: var(--main-color);
}

/* AI banner */
.bayut-ai-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f0fdf9;
    border-radius: 8px;
    border: 1px solid rgba(var(--main-color-rgb), .08);
}

.bayut-ai-icon {
    color: var(--main-color);
    flex-shrink: 0;
}

.bayut-ai-banner span {
    flex: 1;
    color: #2d2f33;
    font-size: 13px;
}

.bayut-ai-link {
    color: var(--main-color);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    flex-shrink: 0;
    white-space: nowrap;
}

.bayut-ai-link:hover {
    color: var(--main-color);
    text-decoration: underline;
}

.bayut-ai-link i {
    font-size: 11px;
    margin-left: 4px;
}

/* Experience Journey button */
.bayut-hero-journey {
    margin-top: 24px;
}

.bayut-journey-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.92);
    border: none;
    color: #2d2f33;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
}

.bayut-journey-btn:hover {
    background: #fff;
}

.bayut-journey-play {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--main-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Promo Section under hero */
.bayut-promo-section {
    background: #fff;
    padding: 30px 0 50px;
}

.bayut-promo-section .container {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bayut-promo-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 28px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    position: relative;
    transition: transform .2s ease;
    overflow: hidden;
}

.bayut-promo-card:hover {
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.bayut-promo-sell {
    background: linear-gradient(120deg, #0c5f57 0%, #0d8a7c 100%);
}

.bayut-promo-broker {
    background: linear-gradient(120deg, #1a4f56 0%, #105159 100%);
}

.bayut-promo-tag {
    position: absolute;
    top: 12px;
    left: 20px;
    background: #dc2626;
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.bayut-promo-illust {
    flex-shrink: 0;
    width: 120px;
}

.bayut-promo-avatars {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.bayut-promo-avatars .bayut-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid #fff;
    background-color: #d1d5db;
    background-size: cover;
    background-position: center;
    margin-left: -12px;
}

.bayut-promo-avatars .bayut-avatar:first-child { margin-left: 0; }
.bayut-avatar-1 { background-image: url('https://i.pravatar.cc/100?img=12'); }
.bayut-avatar-2 { background-image: url('https://i.pravatar.cc/100?img=23'); }
.bayut-avatar-3 { background-image: url('https://i.pravatar.cc/100?img=44'); }
.bayut-avatar-4 { background-image: url('https://i.pravatar.cc/100?img=68'); }

.bayut-promo-text {
    flex: 1;
}

.bayut-promo-text h3 {
    color: rgba(var(--main-color-rgb), .15);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 4px;
}

.bayut-promo-broker .bayut-promo-text h3 strong {
    color: #fff;
    font-weight: 700;
}

.bayut-promo-broker .bayut-promo-text h3 strong span {
    color: rgba(var(--main-color-rgb), .15);
}

.bayut-promo-text p {
    color: rgba(255,255,255,.85);
    margin: 0;
    font-size: 14px;
}

.bayut-promo-btn {
    flex-shrink: 0;
    background: #fff;
    color: #0c5f57;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bayut-promo-broker .bayut-promo-btn {
    color: #1a4f56;
}

.bayut-promo-btn i {
    font-size: 11px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .bayut-hero {
        min-height: 540px;
    }
    .bayut-hero-title {
        font-size: 30px;
    }
    .bayut-search-row-top {
        grid-template-columns: 1fr;
    }
    .bayut-search-row-bot {
        grid-template-columns: 1fr 1fr;
    }
    .bayut-promo-card {
        flex-wrap: wrap;
        gap: 14px;
        padding: 18px 20px;
    }
    .bayut-promo-illust,
    .bayut-promo-avatars {
        order: -1;
    }
    .bayut-promo-text h3 {
        font-size: 18px;
    }
    .bayut-promo-text p {
        font-size: 13px;
    }
    .bayut-ai-banner {
        flex-wrap: wrap;
    }
    .bayut-ai-banner span {
        flex-basis: 100%;
    }
}

@media (max-width: 575.98px) {
    .bayut-hero-inner {
        padding: 70px 0 50px;
    }
    .bayut-hero-title {
        font-size: 24px;
        padding-top:30px ;
    }
    .bayut-hero-subtitle {
        font-size: 14px;
    }
    .bayut-search-card {
        padding: 14px;
    }
    .bayut-tab {
        font-size: 12px;
        padding: 6px 10px;
    }
    .bayut-search-row-bot {
        grid-template-columns: 1fr;
    }
    .bayut-promo-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# Bayut-style Property Detail / Listing Enhancements
--------------------------------------------------------------*/

/* Breadcrumb */
.bayut-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.85);
    margin-bottom: 8px;
}

.bayut-breadcrumb a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
}

.bayut-breadcrumb a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Section title */
.bayut-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d2f33;
    margin: 0 0 18px;
}

/* Featured section */
.bayut-featured-section {
    background: #fff;
    padding: 30px 0;
}

.bayut-featured-grid .bayut-listing-card {
    border: 2px solid var(--main-color);
}

.bayut-listing-featured-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f59e0b;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* Listing toolbar (sort + count) */
.bayut-listing-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

.bayut-listing-count {
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
}

.bayut-listing-sort-form {
    display: flex;
    gap: 14px;
    margin: 0;
    align-items: center;
}

.bayut-listing-sort-form label {
    font-size: 13px;
    color: #4b5563;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bayut-sort-select {
    height: 34px;
    border: 1px solid #d8dde2;
    border-radius: 6px;
    padding: 0 10px;
    font-size: 13px;
    background: #fff;
    color: #2d2f33;
    cursor: pointer;
}

.bayut-sort-select:focus {
    outline: none;
    border-color: var(--main-color);
}

/* Listing card wrap + actions overlay */
.bayut-listing-card-wrap {
    position: relative;
}

.bayut-card-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.bayut-card-action {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.95);
    color: #2d2f33;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
    transition: background .2s ease, color .2s ease;
}

.bayut-card-action:hover {
    background: #fff;
    color: var(--main-color);
}

.bayut-card-action.is-active {
    background: var(--main-color);
    color: #fff;
}

.bayut-card-action i {
    font-size: 14px;
}

/* Detail page extras */
.bayut-detail-gallery {
    margin-bottom: 22px;
}

.bayut-detail-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
    margin-top: 8px;
}

.bayut-detail-thumbs a {
    display: block;
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
    background: #f3f4f6;
}

.bayut-detail-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .2s ease;
}

.bayut-detail-thumbs a:hover img {
    transform: scale(1.05);
}

.bayut-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.bayut-detail-quick-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bayut-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #d8dde2;
    color: #2d2f33;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all .2s ease;
}

.bayut-action-btn:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

.bayut-action-btn.is-active {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

.bayut-action-btn.is-active i {
    color: #fff;
}

.bayut-detail-desc,
.bayut-detail-amenities,
.bayut-mortgage-calc {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #eef0f2;
}

.bayut-detail-desc h3,
.bayut-detail-amenities h3,
.bayut-mortgage-calc h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2d2f33;
    margin: 0 0 12px;
}

.bayut-detail-amenities ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}

.bayut-detail-amenities li {
    color: #4b5563;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bayut-detail-amenities i {
    color: var(--main-color);
    font-size: 12px;
}

/* Mortgage calculator */
.bayut-mortgage-form {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.bayut-mortgage-form label {
    display: block;
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.bayut-mortgage-form .bayut-input {
    margin-top: 4px;
    margin-bottom: 0;
}

.bayut-range {
    width: 100%;
    margin-top: 8px;
    accent-color: var(--main-color);
}

.bayut-mortgage-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    background: #f0fdf9;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid rgba(var(--main-color-rgb), .08);
}

.bayut-mortgage-results > div {
    text-align: center;
}

.bayut-mortgage-label {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: block;
    margin-bottom: 4px;
}

.bayut-mortgage-results strong {
    font-size: 22px;
    color: var(--main-color);
    font-weight: 700;
}

/* Agent card in sidebar */
.bayut-agent-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
    text-align: center;
    margin-bottom: 16px;
}

.bayut-agent-photo {
    width: 70px;
    height: 70px;
    margin: 0 auto 10px;
    border-radius: 50%;
    overflow: hidden;
    background: #e9ecf2;
}

.bayut-agent-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bayut-agent-card h5 {
    font-size: 16px;
    margin: 0 0 4px;
    font-weight: 600;
}

.bayut-agent-card small {
    color: #6b7280;
}

.bayut-trubroker-badge {
    display: inline-block;
    background: linear-gradient(120deg, #f59e0b, #d97706);
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin: 4px 0;
}

/* Action buttons in contact card */
.bayut-whatsapp-btn,
.bayut-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 46px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
    text-decoration: none;
    transition: opacity .18s ease;
}

.bayut-whatsapp-btn {
    background: #25d366;
    color: #fff;
}

.bayut-whatsapp-btn:hover {
    color: #fff;
    opacity: .92;
}

.bayut-call-btn {
    background: #fff;
    color: #2d2f33;
    border: 1px solid #2d2f33;
}

.bayut-call-btn:hover {
    background: #2d2f33;
    color: #fff;
}

/* Share modal */
.bayut-share-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.bayut-share-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: opacity .18s ease;
}

.bayut-share-item:hover {
    color: #fff;
    opacity: .92;
}

.bayut-share-fb    { background: #1877f2; }
.bayut-share-tw    { background: #1da1f2; }
.bayut-share-wa    { background: #25d366; }
.bayut-share-email { background: #64748b; }

.bayut-share-copy {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.bayut-share-copy .bayut-input {
    margin: 0;
}

.bayut-share-copy .bayut-contact-btn {
    width: auto;
    flex-shrink: 0;
    padding: 0 16px;
}

/* Floating compare bar */
.bayut-compare-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #2d2f33;
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1000;
}

.bayut-compare-count {
    font-size: 13px;
    font-weight: 500;
}

.bayut-compare-go {
    background: var(--main-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.bayut-compare-go:hover {
    color: #fff;
    opacity: .92;
}

/* Compare page table */
.bayut-compare-section {
    padding: 40px 0 60px;
    background: #f6f8fc;
    min-height: 60vh;
}

.bayut-compare-table-wrap {
    background: #fff;
    border-radius: 10px;
    overflow-x: auto;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
}

.bayut-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.bayut-compare-table th,
.bayut-compare-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #eef0f2;
    font-size: 14px;
}

.bayut-compare-table th {
    background: #f6f8fc;
    font-weight: 600;
    color: #2d2f33;
    position: relative;
}

.bayut-compare-table th a {
    display: block;
    text-decoration: none;
    color: #2d2f33;
}

.bayut-compare-table th img {
    width: 100%;
    max-width: 160px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 6px;
}

.bayut-compare-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ef4444;
    color: #fff;
    border: none;
    cursor: pointer;
    line-height: 1;
    font-size: 16px;
}

/* Print-friendly */
@media print {
    .bayut-header,
    .bayut-detail-quick-actions,
    .bayut-detail-side,
    .bayut-related-section,
    .bayut-compare-bar,
    footer { display: none !important; }
    .bayut-detail-section { padding: 0; background: #fff; }
}

/* Rent-specific filter row (7-column) */
.bayut-filter-row-rent {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr auto;
}

@media (max-width: 1199.98px) {
    .bayut-filter-row-rent {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .bayut-filter-row-rent {
        grid-template-columns: 1fr 1fr;
    }
}

/* Rent info section on detail page */
.bayut-rent-info {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #eef0f2;
}

.bayut-rent-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2d2f33;
    margin: 0 0 14px;
}

.bayut-rent-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}

.bayut-rent-info-grid > div {
    background: #f6f8fc;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
}

.bayut-info-label {
    display: block;
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.bayut-rent-info-grid strong {
    font-size: 16px;
    color: #2d2f33;
    font-weight: 700;
}

/*--------------------------------------------------------------
# Agents Addon
--------------------------------------------------------------*/
.bayut-agents-hero {
    background: linear-gradient(135deg, #1c2035 0%, #2d3656 100%);
}

.bayut-agent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

.bayut-agent-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.bayut-agent-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.bayut-agent-card-public {
    background: #fff;
    border-radius: 12px;
    padding: 22px 18px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.bayut-agent-card-public:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.bayut-agent-photo-lg {
    width: 90px;
    height: 90px;
    margin: 0 auto 12px;
    position: relative;
}

.bayut-agent-photo-lg img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.bayut-trubroker-pill {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(120deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 999px;
    white-space: nowrap;
}

.bayut-agent-card-public h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 14px 0 4px;
    color: #2d2f33;
}

.bayut-agent-agency {
    color: #6b7280;
    font-size: 13px;
    margin: 0 0 8px;
}

.bayut-agent-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #f59e0b;
    font-size: 13px;
    margin-bottom: 8px;
}

.bayut-agent-rating span {
    color: #6b7280;
    margin-left: 4px;
    font-size: 12px;
}

.bayut-agent-rating-lg {
    font-size: 16px;
}

.bayut-agent-rating-lg span {
    font-size: 14px;
}

.bayut-agent-langs,
.bayut-tag-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.bayut-agent-langs span,
.bayut-tag-list span {
    background: #f3f4f6;
    color: #2d2f33;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
}

.bayut-agent-deals {
    color: var(--main-color);
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

/* Profile page */
.bayut-agent-profile {
    background: #f6f8fc;
    padding-bottom: 60px;
}

.bayut-agent-banner {
    height: 220px;
    background: linear-gradient(135deg, var(--main-color) 0%, #048b81 100%);
    background-size: cover;
    background-position: center;
}

.bayut-agent-profile-header {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    margin-top: -60px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: 22px;
    align-items: center;
}

.bayut-agent-photo-xl {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.bayut-agent-photo-xl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bayut-agent-info h1 {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 4px;
}

.bayut-agent-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.bayut-verify-pill {
    background: rgba(var(--main-color-rgb), .12);
    color: #065f46;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.bayut-agent-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bayut-agent-actions a {
    margin: 0 !important;
    min-width: 130px;
}

.bayut-email-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 42px;
    border-radius: 6px;
    background: #fff;
    color: #2d2f33;
    border: 1px solid #d8dde2;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.bayut-email-btn:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

.bayut-agent-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 22px 0;
    padding: 22px 0;
    border-top: 1px solid #eef0f2;
    border-bottom: 1px solid #eef0f2;
}

.bayut-agent-meta-grid h4 {
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 10px;
}

.bayut-tag-list {
    justify-content: flex-start;
}

/* Reviews */
.bayut-review-item {
    padding: 14px 0;
    border-bottom: 1px solid #eef0f2;
}

.bayut-review-item:last-child {
    border-bottom: none;
}

.bayut-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.bayut-review-header strong {
    color: #2d2f33;
}

.bayut-review-date {
    color: #6b7280;
    font-size: 12px;
    margin-left: auto;
}

.bayut-review-item p {
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

/* Star rating input */
.bayut-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    margin: 10px 0;
}

.bayut-rating-input > label:first-child {
    margin-right: auto;
    color: #6b7280;
    font-size: 13px;
    order: 100;
}

.bayut-rating-input input[type=radio] {
    display: none;
}

.bayut-rating-input label[for^="rate-"] {
    cursor: pointer;
    color: #d1d5db;
    font-size: 22px;
    margin: 0;
}

.bayut-rating-input input[type=radio]:checked ~ label[for^="rate-"],
.bayut-rating-input label[for^="rate-"]:hover,
.bayut-rating-input label[for^="rate-"]:hover ~ label[for^="rate-"] {
    color: #f59e0b;
}

/* Filter checkbox pill */
.bayut-checkbox-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #d8dde2;
    border-radius: 8px;
    background: #fff;
    font-size: 13px;
    cursor: pointer;
    user-select: none;
}

.bayut-checkbox-pill input {
    cursor: pointer;
}

@media (max-width: 767.98px) {
    .bayut-agent-profile-header {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: -40px;
    }
    .bayut-agent-photo-xl {
        margin: 0 auto;
    }
    .bayut-agent-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .bayut-agent-meta-grid {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------------------------------------
# Bayut Listing Page (horizontal cards + sidebar) — Buy/Rent
--------------------------------------------------------------*/

/* Top search strip (sticky-ish) */
.bayut-search-strip {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eef0f2;
    box-shadow: 0 1px 3px rgba(0,0,0,.03);
}

.bayut-search-strip-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.bayut-filter-pill {
    height: 42px;
    border: 1px solid #d8dde2;
    border-radius: 999px;
    padding: 0 16px;
    font-size: 13px;
    color: #2d2f33;
    background: #fff;
    cursor: pointer;
    min-width: 120px;
}

.bayut-filter-pill:focus {
    outline: none;
    border-color: var(--main-color);
}

.bayut-filter-input-text {
    flex: 1;
    min-width: 240px;
    cursor: text;
}

.bayut-filter-submit-strip {
    height: 42px;
    border: none;
    background: var(--main-color);
    color: #fff;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

.bayut-filter-submit-strip:hover {
    opacity: .92;
}

.bayut-more-filters {
    height: 42px;
    border: 1px solid #d8dde2;
    background: #fff;
    color: #2d2f33;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bayut-more-filters:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

/* Listing page section */
.bayut-listing-page-section {
    background: #f6f8fc;
    padding: 18px 0 50px;
}

.bayut-breadcrumb-dark a,
.bayut-breadcrumb-dark span {
    color: #6b7280;
}

.bayut-breadcrumb-dark a:hover {
    color: var(--main-color);
    text-decoration: underline;
}

.bayut-listing-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 22px;
    align-items: start;
}

@media (max-width: 991.98px) {
    .bayut-listing-layout {
        grid-template-columns: 1fr;
    }
}

/* Page header */
.bayut-listing-page-header {
    background: #fff;
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 14px;
}

.bayut-page-h1 {
    font-size: 22px;
    font-weight: 700;
    color: #2d2f33;
    margin: 0 0 4px;
}

.bayut-page-sub {
    color: #6b7280;
    font-size: 13px;
    margin: 0;
}

.bayut-page-sep {
    margin: 0 8px;
    color: #d8dde2;
}

/* Toolbar (sort + view toggle) */
.bayut-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    background: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 14px;
}

.bayut-sort-select-toolbar {
    height: 36px;
    border: 1px solid #d8dde2;
    border-radius: 6px;
    padding: 0 32px 0 12px;
    font-size: 13px;
    background: #fff;
    color: #2d2f33;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.bayut-view-toggle {
    display: inline-flex;
    background: #f6f8fc;
    border-radius: 6px;
    padding: 3px;
}

.bayut-view-btn {
    border: none;
    background: transparent;
    padding: 6px 14px;
    font-size: 13px;
    color: #6b7280;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bayut-view-btn.is-active {
    background: #fff;
    color: var(--main-color);
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

/* List stack */
.bayut-list-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Horizontal list card */
.bayut-list-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 340px 1fr;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
    transition: box-shadow .18s ease;
    position: relative;
}

.bayut-list-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.bayut-list-card-img {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    background: #e9ecf2;
    overflow: hidden;
}

.bayut-list-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bayut-trucheck-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255,255,255,.95);
    color: var(--main-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bayut-img-count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,.7);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bayut-list-card-body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.bayut-list-card-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    gap: 6px;
}

.bayut-list-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 6px;
}

.bayut-list-meta {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    display: flex;
    gap: 14px;
    font-size: 14px;
    color: #4b5563;
}

.bayut-list-meta li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bayut-list-meta i {
    color: #6b7280;
    font-size: 12px;
}

.bayut-list-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.4;
}

.bayut-list-title a {
    color: #2d2f33;
    text-decoration: none;
}

.bayut-list-title a:hover {
    color: var(--main-color);
}

.bayut-list-location {
    color: #6b7280;
    font-size: 13px;
    margin: 0 0 8px;
}

.bayut-list-location i {
    color: var(--main-color);
    font-size: 11px;
    margin-right: 4px;
}

.bayut-list-desc {
    color: #4b5563;
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bayut-list-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #eef0f2;
    flex-wrap: wrap;
    gap: 8px;
}

.bayut-list-agent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bayut-list-agent-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: #e9ecf2;
    flex-shrink: 0;
}

.bayut-list-agent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bayut-list-agent-info {
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.bayut-list-agent-info strong {
    color: #2d2f33;
    font-weight: 600;
}

.bayut-list-agent-info small {
    color: #6b7280;
    font-size: 11px;
}

.bayut-list-card-cta {
    display: inline-flex;
    gap: 6px;
}

.bayut-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 34px;
    border-radius: 6px;
    padding: 0 12px;
    background: #fff;
    color: #2d2f33;
    border: 1px solid #d8dde2;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all .18s ease;
}

.bayut-cta-btn:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

.bayut-cta-wa {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

.bayut-cta-wa:hover {
    background: #1faf57;
    color: #fff;
    border-color: #1faf57;
}

.bayut-cta-call {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
    padding: 0 16px;
}

.bayut-cta-call:hover {
    color: #fff;
    opacity: .92;
}

@media (max-width: 767.98px) {
    .bayut-list-card {
        grid-template-columns: 1fr;
    }
    .bayut-list-card-img {
        aspect-ratio: 16 / 10;
    }
}

/* Sidebar */
.bayut-listing-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 90px;
}

.bayut-side-card {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.bayut-side-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #2d2f33;
    text-transform: uppercase;
    letter-spacing: .3px;
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eef0f2;
}

.bayut-side-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bayut-side-list li + li {
    border-top: 1px solid #f3f4f6;
}

.bayut-side-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    color: #2d2f33;
    font-size: 13px;
    text-decoration: none;
}

.bayut-side-list a:hover {
    color: var(--main-color);
}

.bayut-side-count {
    color: #9ca3af;
    font-size: 11px;
    font-weight: 500;
}

.bayut-side-link {
    color: var(--main-color);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
}

.bayut-side-link:hover {
    color: var(--main-color);
    text-decoration: underline;
}

/* Map preview card */
.bayut-map-card {
    text-align: center;
}

.bayut-map-thumb {
    height: 120px;
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), .15) 0%, rgba(var(--main-color-rgb), .08) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.bayut-map-thumb i {
    font-size: 36px;
    color: var(--main-color);
}

/* Off-Plan section */
.bayut-offplan-section {
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    margin: 4px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.bayut-offplan-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.bayut-offplan-head h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    color: #2d2f33;
}

.bayut-offplan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
}

.bayut-offplan-card {
    background: #f6f8fc;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .18s ease, box-shadow .18s ease;
}

.bayut-offplan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    color: inherit;
    text-decoration: none;
}

.bayut-offplan-img {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #e9ecf2;
}

.bayut-offplan-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bayut-offplan-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #f59e0b;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 700;
}

.bayut-offplan-body {
    padding: 10px 12px;
}

.bayut-offplan-price {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.bayut-offplan-body h4 {
    font-size: 13px;
    margin: 0 0 2px;
    color: #2d2f33;
}

.bayut-offplan-body p {
    color: #6b7280;
    font-size: 11px;
    margin: 0;
}

/* Bottom guide section */
.bayut-guide-section {
    background: #fff;
    border-radius: 10px;
    padding: 28px 28px 32px;
    margin-top: 28px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.bayut-guide-title {
    font-size: 22px;
    font-weight: 700;
    color: #2d2f33;
    margin: 0 0 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eef0f2;
}

.bayut-guide-intro {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.bayut-guide-h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2d2f33;
    margin: 22px 0 10px;
}

.bayut-guide-h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2d2f33;
    margin: 20px 0 10px;
}

.bayut-guide-h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--main-color);
    margin: 16px 0 8px;
}

.bayut-guide-section p {
    color: #4b5563;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.bayut-guide-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.bayut-guide-list li {
    color: #4b5563;
    font-size: 13px;
    line-height: 1.6;
    padding: 6px 0 6px 18px;
    position: relative;
}

.bayut-guide-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--main-color);
}

.bayut-guide-list strong {
    color: #2d2f33;
}

/*--------------------------------------------------------------
# Bayut Listing — Enhanced Card + Filter Strip + Sidebar
--------------------------------------------------------------*/

/* Search strip — two rows */
.bayut-search-strip-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bayut-search-strip-row1 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.bayut-search-strip-row2 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding-top: 6px;
    border-top: 1px solid #f3f4f6;
}

.bayut-location-pill {
    flex: 1;
    min-width: 240px;
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #d8dde2;
    border-radius: 999px;
    padding: 0 16px;
    height: 42px;
    gap: 8px;
}

.bayut-location-pill i {
    color: var(--main-color);
    font-size: 13px;
}

.bayut-location-pill input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 13px;
    color: #2d2f33;
    height: 100%;
}

.bayut-completion-pill {
    display: inline-flex;
    background: #f3f4f6;
    border-radius: 999px;
    padding: 3px;
    gap: 2px;
    height: 42px;
}

.bayut-completion-pill button {
    border: none;
    background: transparent;
    padding: 0 14px;
    font-size: 13px;
    color: #4b5563;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 500;
}

.bayut-completion-pill button.is-active {
    background: #fff;
    color: var(--main-color);
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    font-weight: 600;
}

.bayut-check-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f6f8fc;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 6px 14px;
    cursor: pointer;
    font-size: 13px;
    color: #4b5563;
    margin: 0;
}

.bayut-check-pill input {
    margin: 0;
    cursor: pointer;
    accent-color: var(--main-color);
}

.bayut-check-pill i {
    color: var(--main-color);
    font-size: 11px;
}

.bayut-row2-spacer { flex: 1; }

.bayut-save-search {
    color: var(--main-color);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
}

.bayut-save-search:hover { text-decoration: underline; color: var(--main-color); }

/* Page header flex */
.bayut-page-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.bayut-page-header-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bayut-popular-select {
    height: 38px;
    border: 1px solid #d8dde2;
    border-radius: 8px;
    padding: 0 32px 0 14px;
    font-size: 13px;
    background: #fff;
    color: #2d2f33;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

/* Locations bar */
.bayut-locations-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: #fff;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 14px;
    align-items: center;
}

.bayut-loc-item {
    color: var(--main-color);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 18px;
    border-right: 1px solid #eef0f2;
}

.bayut-loc-item:first-child { padding-left: 0; }

.bayut-loc-item:hover { text-decoration: underline; color: var(--main-color); }

.bayut-loc-item strong { font-weight: 600; }

.bayut-loc-item span { color: #6b7280; font-size: 13px; }

.bayut-view-all-loc {
    margin-left: auto;
    color: var(--main-color);
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    letter-spacing: .5px;
}

.bayut-view-all-loc:hover { color: var(--main-color); text-decoration: underline; }

/* Enhanced card */
.bayut-list-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 360px 1fr;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
    transition: box-shadow .18s ease;
    position: relative;
}

.bayut-list-card-img-wrap {
    position: relative;
    background: #e9ecf2;
    aspect-ratio: 4 / 3.2;
}

.bayut-list-card-img {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
}

.bayut-list-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Top badges (TruCheck + Off-Plan + Resale) */
.bayut-card-top-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
    flex-wrap: wrap;
}

.bayut-trucheck-top {
    background: rgba(255,255,255,.95);
    color: #2d2f33;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bayut-trucheck-top i {
    color: var(--main-color);
    font-size: 10px;
}

.bayut-tag-offplan,
.bayut-tag-resale {
    background: rgba(255,255,255,.95);
    color: #2d2f33;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

/* Pagination dots on image */
.bayut-img-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
}

.bayut-img-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    transition: background .18s ease;
}

.bayut-img-dots span.is-active {
    background: #fff;
    width: 7px;
    height: 7px;
}

/* Agent pill (bottom-left of image) */
.bayut-agent-pill {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.95);
    border-radius: 999px;
    padding: 3px 12px 3px 3px;
    z-index: 2;
}

.bayut-agent-pill-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    background: #e9ecf2;
}

.bayut-agent-pill-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bayut-agent-pill-text {
    color: var(--main-color);
    font-size: 11px;
    font-weight: 700;
}

/* Favorite icon (bottom-right of image) */
.bayut-fav-icon {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.95);
    color: #6b7280;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
    z-index: 2;
}

.bayut-fav-icon:hover { background: #fff; color: var(--main-color); }
.bayut-fav-icon.is-active { color: var(--main-color); }

/* Card body */
.bayut-list-card-body {
    padding: 16px 20px 14px;
    display: flex;
    flex-direction: column;
}

.bayut-list-card-row1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.bayut-list-price {
    color: #2d2f33;
    font-size: 18px;
    font-weight: 400;
}

.bayut-list-price strong {
    font-size: 22px;
    font-weight: 700;
    color: #2d2f33;
}

.bayut-compare-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #d8dde2;
    background: #fff;
    color: #6b7280;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.bayut-compare-icon:hover { border-color: var(--main-color); color: var(--main-color); }
.bayut-compare-icon.is-active { background: var(--main-color); color: #fff; border-color: var(--main-color); }

.bayut-list-meta {
    list-style: none;
    margin: 0 0 8px;
    padding: 0;
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: #4b5563;
    align-items: center;
    flex-wrap: wrap;
}

.bayut-list-meta li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bayut-list-meta i { color: #6b7280; font-size: 12px; }

.bayut-meta-type { font-weight: 600; color: #2d2f33; }
.bayut-meta-sep { color: #d8dde2; }
.bayut-meta-area { margin-left: auto; }
.bayut-meta-area strong { color: #2d2f33; font-weight: 600; }

.bayut-list-title {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.4;
}

.bayut-list-title a {
    color: var(--main-color);
    text-decoration: none;
}

.bayut-list-title a:hover { text-decoration: underline; }

.bayut-list-location {
    color: #6b7280;
    font-size: 13px;
    margin: 0 0 10px;
}

.bayut-list-location i { color: #6b7280; font-size: 11px; margin-right: 4px; }

/* Validity badge */
.bayut-validity-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f3eaff;
    color: #6b46c1;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

.bayut-validity-badge i { font-size: 10px; }

/* Handover / Payment Plan box */
.bayut-handover-box {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.bayut-hp-item {
    flex: 1;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 8px 12px;
}

.bayut-hp-label {
    display: block;
    color: #6b7280;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.bayut-hp-item strong {
    color: #2d2f33;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bayut-hp-item i {
    color: #9ca3af;
    font-size: 10px;
}

/* Footer */
.bayut-list-card-footer-new {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid #eef0f2;
}

.bayut-list-card-cta-row {
    display: flex;
    gap: 8px;
}

.bayut-cta-new {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all .18s ease;
}

.bayut-cta-email {
    background: #fff;
    color: #2d2f33;
    border: 1px solid #d8dde2;
}

.bayut-cta-email:hover { color: var(--main-color); border-color: var(--main-color); }

.bayut-cta-call-new {
    background: var(--main-color);
    color: #fff;
    border: 1px solid var(--main-color);
}

.bayut-cta-call-new:hover { color: #fff; opacity: .92; }

.bayut-cta-wa-new {
    width: 38px;
    height: 38px;
    background: transparent;
    color: #25d366;
    border: 1px solid #25d366;
    border-radius: 50%;
    padding: 0;
    font-size: 16px;
    justify-content: center;
}

.bayut-cta-wa-new:hover { background: #25d366; color: #fff; }

.bayut-agency-logo {
    display: flex;
    align-items: center;
}

.bayut-agency-name {
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 1px;
}

@media (max-width: 767.98px) {
    .bayut-list-card {
        grid-template-columns: 1fr;
    }
    .bayut-list-card-img-wrap {
        aspect-ratio: 16 / 10;
    }
    .bayut-handover-box { flex-direction: column; }
    .bayut-list-card-footer-new { flex-direction: column; align-items: stretch; }
}

/* Drive time card */
.bayut-drive-card {
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.bayut-drive-map {
    height: 130px;
    background: linear-gradient(135deg, #d6f5ec 0%, #e0f5f1 50%, #ffe6c4 100%);
    position: relative;
    border-radius: 10px 10px 0 0;
}

.bayut-drive-pin {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--main-color);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,.15);
}

.bayut-drive-pin-1 {
    top: 45%;
    left: 12%;
    background: #fbbf24;
}

.bayut-drive-pin-2 {
    top: 20%;
    right: 12%;
    background: var(--main-color);
}

.bayut-drive-path {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.bayut-drive-link {
    display: block;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color);
    text-decoration: none;
    background: #fff;
}

.bayut-drive-link i { margin-right: 6px; }

/* Promo side card (Sell or Rent) */
.bayut-promo-side {
    background: linear-gradient(135deg, #0c5f57 0%, #0d8a7c 100%) !important;
    color: #fff;
    position: relative;
}

.bayut-promo-side h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 4px 0 6px;
}

.bayut-promo-side p {
    color: rgba(255,255,255,.9);
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 12px;
}

.bayut-promo-side-tag {
    display: inline-block;
    background: #dc2626;
    color: #fff;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.bayut-promo-side-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(var(--main-color-rgb), .15);
    color: #0c5f57;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
}

.bayut-promo-side-btn:hover {
    background: #fff;
    color: #0c5f57;
}

/* Alert me side card */
.bayut-alert-side {
    text-align: center;
}

.bayut-alert-side-text {
    color: #4b5563;
    font-size: 13px;
    margin: 0 0 10px;
    line-height: 1.5;
}

.bayut-alert-side-btn {
    display: block;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .3px;
    text-decoration: none;
    transition: all .18s ease;
}

.bayut-alert-side-btn:hover {
    background: var(--main-color);
    color: #fff;
}

.bayut-alert-side-btn i { margin-right: 6px; }

/*--------------------------------------------------------------
# BayutGPT-style Floating Chat Widget + Info Icons
--------------------------------------------------------------*/

.bayut-gpt-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0c5f57 0%, #0d8a7c 100%);
    color: #fff;
    padding: 12px 18px 12px 14px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(13, 138, 124, .35);
    font-weight: 600;
    font-size: 14px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.bayut-gpt-fab:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 12px 32px rgba(13, 138, 124, .45);
    text-decoration: none;
}

.bayut-gpt-fab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
}

.bayut-gpt-fab-text {
    font-weight: 700;
}

.bayut-gpt-fab-badge {
    position: absolute;
    top: -6px;
    right: 8px;
    background: #dc2626;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: .5px;
}

@media (max-width: 575.98px) {
    .bayut-gpt-fab {
        padding: 10px 14px 10px 10px;
        font-size: 12px;
        right: 14px;
        bottom: 14px;
    }
    .bayut-gpt-fab-icon { width: 28px; height: 28px; }
    .bayut-gpt-fab-icon svg { width: 18px; height: 18px; }
}

/* Info icons next to filter checkboxes */
.bayut-info-i {
    color: #9ca3af;
    font-size: 12px;
    cursor: help;
    transition: color .18s ease;
}

.bayut-info-i:hover {
    color: var(--main-color);
}

.bayut-save-search i {
    margin-right: 4px;
}

/*--------------------------------------------------------------
# Bayut Tool Pages (TruEstimate, Mortgage, Rent vs Buy, etc.)
--------------------------------------------------------------*/
.bayut-tool-section {
    background: #f6f8fc;
    padding: 30px 0 60px;
    min-height: 60vh;
}

.bayut-tool-h1 {
    font-size: 30px;
    font-weight: 700;
    color: #2d2f33;
    margin: 14px 0 6px;
}

.bayut-tool-sub {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 24px;
}

.bayut-tool-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

@media (max-width: 991.98px) {
    .bayut-tool-grid { grid-template-columns: 1fr; }
}

.bayut-tool-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

.bayut-tool-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2d2f33;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eef0f2;
}

.bayut-tool-card h4 {
    font-size: 15px;
    margin: 16px 0 8px;
    color: #2d2f33;
}

.bayut-tool-card label {
    display: block;
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 10px;
}

.bayut-tool-card .bayut-input {
    margin-top: 4px;
}

.bayut-tool-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

/* TruEstimate result */
.bayut-tru-result { background: linear-gradient(135deg, #f0fdf9, #ffffff); }

.bayut-tru-range {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 10px;
    margin: 16px 0;
}

.bayut-tru-range > div {
    text-align: center;
    background: #fff;
    border: 1px solid rgba(var(--main-color-rgb), .08);
    border-radius: 8px;
    padding: 14px;
}

.bayut-tru-range span {
    display: block;
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.bayut-tru-range strong {
    color: var(--main-color);
    font-size: 17px;
    font-weight: 700;
}

.bayut-tru-mid {
    background: var(--main-color) !important;
    border-color: var(--main-color) !important;
}

.bayut-tru-mid strong, .bayut-tru-mid span {
    color: #fff !important;
}

.bayut-tru-mid strong {
    font-size: 22px !important;
}

.bayut-tru-sub {
    text-align: center;
    color: #6b7280;
    font-size: 13px;
}

.bayut-tru-comp {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bayut-tru-comp li {
    padding: 8px 0;
    border-bottom: 1px solid #eef0f2;
}

.bayut-tru-comp a {
    color: var(--main-color);
    text-decoration: none;
    font-size: 13px;
}

.bayut-tru-comp a:hover { text-decoration: underline; }

/* Mortgage finder — bank table */
.bayut-bank-table {
    width: 100%;
    border-collapse: collapse;
}

.bayut-bank-table th,
.bayut-bank-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #eef0f2;
    font-size: 13px;
}

.bayut-bank-table th {
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
}

.bayut-bank-table strong { color: var(--main-color); }

.bayut-bank-logo {
    font-size: 18px;
    margin-right: 6px;
}

.bayut-bank-apply {
    color: var(--main-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 12px;
}

.bayut-bank-apply:hover { text-decoration: underline; }

/* Rent vs Buy verdict */
.bayut-rvb-verdict {
    text-align: center;
    padding: 22px;
    border-radius: 8px;
    background: #f9fafb;
    color: #2d2f33;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

.bayut-rvb-buy {
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), .08), rgba(var(--main-color-rgb), .15));
    color: #065f46;
}

.bayut-rvb-rent {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
}

.bayut-rvb-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.bayut-rvb-stats > div {
    text-align: center;
    background: #f9fafb;
    border-radius: 8px;
    padding: 14px;
}

.bayut-rvb-stats span {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.bayut-rvb-stats strong {
    color: #2d2f33;
    font-size: 16px;
    font-weight: 700;
}

/* Developers strip on New Projects */
.bayut-developers-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: #fff;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 18px;
}

.bayut-developer-card {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid #d8dde2;
    border-radius: 999px;
    text-decoration: none;
    color: #2d2f33;
    font-size: 13px;
    transition: all .18s ease;
}

.bayut-developer-card:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

/* Transactions */
.bayut-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.bayut-stats-row > div {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.bayut-stats-row span {
    color: #6b7280;
    font-size: 12px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.bayut-stats-row strong {
    color: #2d2f33;
    font-size: 20px;
    font-weight: 700;
}

.bayut-trans-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    align-items: center;
}

.bayut-trans-table-wrap {
    background: #fff;
    border-radius: 10px;
    overflow-x: auto;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.bayut-trans-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.bayut-trans-table th,
.bayut-trans-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #eef0f2;
    font-size: 13px;
}

.bayut-trans-table th {
    background: #f9fafb;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
}

.bayut-trans-tag {
    background: #e6f7f4;
    color: var(--main-color);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

/* Area Guide thumb */
.bayut-area-thumb {
    height: 130px;
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), .15) 0%, rgba(var(--main-color-rgb), .08) 100%);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 12px;
}

.bayut-area-hero {
    height: 280px;
    background: linear-gradient(135deg, #0c5f57 0%, #0d8a7c 100%);
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-top: 14px;
}

.bayut-area-hero-overlay {
    background: linear-gradient(transparent, rgba(0,0,0,.6));
    width: 100%;
    padding: 30px;
    color: #fff;
}

.bayut-area-hero-overlay h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.bayut-area-hero-overlay p {
    color: rgba(255,255,255,.85);
    margin: 4px 0 0;
}

/*--------------------------------------------------------------
# User Hub (Saved properties, searches, documents, referrals)
--------------------------------------------------------------*/
.bayut-search-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eef0f2;
    gap: 12px;
    flex-wrap: wrap;
}

.bayut-search-row:last-child { border-bottom: none; }

.bayut-search-row strong { color: #2d2f33; }
.bayut-search-row small { display: block; color: #9ca3af; font-size: 11px; margin-top: 2px; }
.bayut-search-row-meta { color: #6b7280; font-size: 13px; margin-left: 6px; }

.bayut-ref-code-box {
    display: flex;
    gap: 8px;
    align-items: stretch;
    margin-bottom: 18px;
}

.bayut-ref-code-box .bayut-input {
    margin: 0;
    font-family: monospace;
    font-size: 18px;
    text-align: center;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--main-color);
}

.bayut-ref-code-box .bayut-contact-btn {
    width: auto;
    padding: 0 22px;
}

/*--------------------------------------------------------------
# PWA / Dark mode hooks (data-theme="dark")
--------------------------------------------------------------*/
[data-theme="dark"] body {
    background: #0f172a;
    color: #e5e7eb;
}

[data-theme="dark"] .bayut-header,
[data-theme="dark"] .bayut-list-card,
[data-theme="dark"] .bayut-side-card,
[data-theme="dark"] .bayut-tool-card,
[data-theme="dark"] .bayut-listing-page-header,
[data-theme="dark"] .bayut-toolbar,
[data-theme="dark"] .bayut-locations-bar {
    background: #1e293b;
    color: #e5e7eb;
}

[data-theme="dark"] .bayut-list-title a,
[data-theme="dark"] .bayut-page-h1,
[data-theme="dark"] .bayut-tool-h1,
[data-theme="dark"] .bayut-list-card-body strong { color: #e5e7eb; }

[data-theme="dark"] .bayut-list-meta,
[data-theme="dark"] .bayut-list-location,
[data-theme="dark"] .bayut-tool-sub { color: #94a3b8; }

[data-theme="dark"] .bayut-listing-page-section { background: #0f172a; }
[data-theme="dark"] .bayut-tool-section { background: #0f172a; }
[data-theme="dark"] .bayut-search-strip { background: #1e293b; }

/* Dark mode toggle button */
.bayut-dark-toggle {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 1099;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #1e293b;
    color: #fbbf24;
    box-shadow: 0 4px 14px rgba(0,0,0,.2);
    cursor: pointer;
    font-size: 18px;
}

.bayut-dark-toggle:hover { transform: scale(1.08); }

[data-theme="dark"] .bayut-dark-toggle {
    background: #fbbf24;
    color: #1e293b;
}

/* Skeleton loaders */
.bayut-skeleton {
    background: linear-gradient(90deg, #f3f4f6 0%, #e5e7eb 50%, #f3f4f6 100%);
    background-size: 200% 100%;
    animation: bayut-skeleton-shimmer 1.4s ease infinite;
    border-radius: 6px;
}

@keyframes bayut-skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/*--------------------------------------------------------------
# Bayut Property Detail Page (Clone)
--------------------------------------------------------------*/
.bayut-pd-section { background: #fff; padding: 18px 0 50px; }

.bayut-pd-breadcrumb {
    display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
    font-size: 12px; color: #6b7280; margin-bottom: 14px;
}
.bayut-pd-breadcrumb a {
    color: var(--main-color); text-decoration: none;
    display: inline-flex; align-items: center; gap: 4px;
}
.bayut-pd-breadcrumb a:hover { text-decoration: underline; }
.bayut-pd-bc-sep { width: 1px; height: 14px; background: #d8dde2; margin: 0 6px; }
.bayut-pd-ref { color: #9ca3af; margin-left: auto; font-size: 11px; }

.bayut-pd-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8px;
    height: 460px;
    max-height: 460px;
    margin-bottom: 22px;
    overflow: hidden;
}

.bayut-pd-gallery > * { min-height: 0; min-width: 0; overflow: hidden; }

.bayut-pd-main-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #e9ecf2;
    height: 100%;
}
.bayut-pd-main-img > a {
    display: block;
    width: 100%;
    height: 100%;
}
.bayut-pd-main-img > a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bayut-pd-img-badges {
    position: absolute; top: 16px; left: 16px;
    display: flex; gap: 6px; z-index: 2;
}
.bayut-pd-img-tools {
    position: absolute; bottom: 16px; left: 16px; display: flex; gap: 8px;
}
.bayut-pd-tool-btn {
    background: rgba(13, 138, 124, .92); border: none; color: #fff;
    padding: 8px 14px; border-radius: 999px; font-size: 12px;
    font-weight: 600; cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
}
.bayut-pd-tool-btn:hover { background: rgba(13, 138, 124, 1); }

.bayut-pd-thumbs {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
    height: 100%;
    overflow: hidden;
}
.bayut-pd-thumb {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background: #e9ecf2;
    min-height: 0;
    min-width: 0;
}
.bayut-pd-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bayut-pd-thumb-count {
    position: absolute; inset: 0; background: rgba(0,0,0,.55);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 700;
}

@media (max-width: 767.98px) {
    .bayut-pd-gallery { grid-template-columns: 1fr; height: auto; }
    .bayut-pd-main-img { aspect-ratio: 16 / 10; }
    .bayut-pd-thumbs { grid-template-columns: repeat(3, 1fr); grid-template-rows: none; height: 100px; }
}

.bayut-pd-layout {
    display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start;
}
@media (max-width: 991.98px) { .bayut-pd-layout { grid-template-columns: 1fr; } }

.bayut-pd-header { margin-bottom: 24px; }
.bayut-pd-price-row {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 10px; margin-bottom: 6px;
}
.bayut-pd-price { font-size: 24px; font-weight: 500; color: #2d2f33; }
.bayut-pd-price strong { font-size: 30px; font-weight: 700; }
.bayut-pd-actions { display: flex; gap: 8px; }
.bayut-pd-address { color: #6b7280; font-size: 14px; margin: 4px 0 10px; }
.bayut-pd-meta {
    list-style: none; padding: 0; margin: 0 0 12px;
    display: flex; gap: 18px; color: #4b5563;
}
.bayut-pd-meta li {
    display: inline-flex; align-items: center; gap: 6px; font-size: 13px;
}
.bayut-pd-meta i { color: #6b7280; }
.bayut-pd-title {
    font-size: 20px; font-weight: 600; color: var(--main-color);
    margin: 0; line-height: 1.4;
}

.bayut-pd-desc {
    color: #4b5563; line-height: 1.7; font-size: 14px;
    padding: 18px 0; border-top: 1px solid #eef0f2;
    border-bottom: 1px solid #eef0f2; margin-bottom: 24px;
    max-height: 130px; overflow: hidden; position: relative;
}
.bayut-pd-desc.is-expanded { max-height: none; }
.bayut-pd-desc:not(.is-expanded)::after {
    content: ''; position: absolute; inset: auto 0 30px 0;
    height: 40px; background: linear-gradient(transparent, #fff);
}
.bayut-read-more {
    display: inline-block; margin-top: 8px; color: var(--main-color);
    font-weight: 600; font-size: 13px; text-decoration: none; position: relative; z-index: 2;
}
.bayut-read-more:hover { text-decoration: underline; }

.bayut-pd-block { margin: 24px 0; }
.bayut-pd-block-title {
    font-size: 18px; font-weight: 700; color: #2d2f33;
    margin: 0 0 14px; display: inline-flex; align-items: center; gap: 8px;
}
.bayut-pd-validated { color: var(--main-color); font-size: 14px; }
.bayut-pd-sub-h { font-size: 15px; font-weight: 600; color: #2d2f33; margin: 14px 0 4px; }
.bayut-pd-sub { color: #6b7280; font-size: 12px; margin: 0 0 12px; }

.bayut-pd-info-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px;
}
.bayut-pd-info-grid > div {
    display: flex; justify-content: space-between; padding: 10px 0;
    border-bottom: 1px solid #f3f4f6; font-size: 14px; gap: 14px;
}
.bayut-pd-info-grid span { color: #6b7280; }
.bayut-pd-info-grid strong {
    color: #2d2f33; font-weight: 500; text-align: right;
    display: inline-flex; align-items: center; gap: 4px;
}
.bayut-pd-info-grid strong i { color: #9ca3af; font-size: 11px; }
.bayut-pd-active {
    color: var(--main-color) !important; background: #e6f7f4;
    padding: 2px 10px; border-radius: 4px; font-size: 12px !important;
}
@media (max-width: 767.98px) {
    .bayut-pd-info-grid { grid-template-columns: 1fr; }
}

.bayut-pd-amenities-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px;
}
.bayut-am-item {
    background: #f9fafb; border: 1px solid #eef0f2; border-radius: 6px;
    padding: 14px 10px; text-align: center;
    display: flex; flex-direction: column; align-items: center;
    gap: 6px; font-size: 12px; color: #4b5563;
}
.bayut-am-item i { font-size: 22px; color: var(--main-color); }
.bayut-am-more {
    background: #f0fdf9; border: 1px dashed var(--main-color);
    border-radius: 6px; padding: 14px 10px; text-align: center;
    color: var(--main-color); font-size: 12px; text-decoration: none;
    font-weight: 600; display: flex; align-items: center; justify-content: center;
}
.bayut-am-more:hover { background: var(--main-color); color: #fff; }

.bayut-trans-tabs {
    display: flex; gap: 0; border-bottom: 1px solid #eef0f2; margin-bottom: 12px;
}
.bayut-trans-tab {
    border: none; background: transparent; padding: 10px 18px;
    font-size: 13px; font-weight: 600; color: #6b7280; cursor: pointer;
    border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.bayut-trans-tab.is-active {
    color: var(--main-color); border-bottom-color: var(--main-color);
}

.bayut-pd-chart {
    position: relative; margin-top: 14px; background: #f9fafb;
    border-radius: 8px; padding: 18px 50px 18px 50px; height: 240px;
}
.bayut-pd-chart svg { width: 100%; height: 100%; display: block; }
.bayut-pd-chart-y {
    position: absolute; left: 14px; top: 18px; bottom: 18px;
    display: flex; flex-direction: column; justify-content: space-between;
    font-size: 11px; color: #9ca3af;
}

.bayut-pd-mini-charts {
    display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px;
}
@media (max-width: 767.98px) {
    .bayut-pd-mini-charts { grid-template-columns: 1fr; }
}

.bayut-pd-bar-chart {
    display: flex; gap: 14px; align-items: flex-end;
    height: 160px; padding: 22px 10px;
}
.bayut-pd-bar {
    flex: 1; background: #428eff; border-radius: 6px 6px 0 0;
    position: relative; text-align: center;
}
.bayut-pd-bar-active { background: var(--main-color); }
.bayut-pd-bar span {
    position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
    font-size: 12px; font-weight: 700; color: #2d2f33; white-space: nowrap;
}
.bayut-pd-bar label {
    position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
    font-size: 11px; color: #6b7280; white-space: nowrap;
}

.bayut-pd-pop-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.bayut-pd-pop-table th, .bayut-pd-pop-table td {
    padding: 8px 6px; border-bottom: 1px solid #eef0f2;
}
.bayut-pd-pop-table th { color: #6b7280; font-weight: 600; }
.bayut-pd-trend.up { color: #059669; }
.bayut-pd-trend.up::before { content: '↑'; margin-right: 2px; }
.bayut-pd-trend.down { color: #dc2626; }
.bayut-pd-trend.down::before { content: '↓'; margin-right: 2px; }

.bayut-pd-regulatory {
    display: grid; grid-template-columns: 1fr 150px; gap: 20px; align-items: center;
}
.bayut-pd-reg-info > div {
    display: flex; justify-content: space-between; padding: 10px 0;
    border-bottom: 1px solid #f3f4f6; font-size: 14px;
}
.bayut-pd-reg-info span {
    color: #6b7280; display: inline-flex; align-items: center; gap: 4px;
}
.bayut-pd-reg-info span i { color: #9ca3af; font-size: 11px; }
.bayut-pd-qr { text-align: center; }
.bayut-pd-qr img {
    width: 130px; height: 130px; border: 1px solid #eef0f2;
    border-radius: 6px; padding: 6px; background: #fff;
}
.bayut-pd-qr small {
    display: block; color: #6b7280; margin-top: 6px; font-size: 11px;
}

.bayut-pd-rec-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
@media (max-width: 767.98px) { .bayut-pd-rec-grid { grid-template-columns: 1fr; } }

.bayut-pd-rec-card {
    display: block; text-decoration: none; color: inherit;
    background: #fff; border-radius: 10px; overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.bayut-pd-rec-card:hover {
    color: inherit; text-decoration: none; box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.bayut-pd-rec-img {
    aspect-ratio: 4 / 3; position: relative; background: #e9ecf2;
}
.bayut-pd-rec-img img { width: 100%; height: 100%; object-fit: cover; }
.bayut-pd-rec-body { padding: 12px 14px; }
.bayut-pd-rec-name {
    font-size: 14px; margin: 6px 0 2px; color: #2d2f33; line-height: 1.3;
}
.bayut-pd-rec-body small { color: #6b7280; font-size: 11px; }

.bayut-pd-side {
    position: sticky; top: 90px;
    display: flex; flex-direction: column; gap: 14px;
}

.bayut-pd-agent-card {
    background: #fff; border-radius: 10px; padding: 18px;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.bayut-pd-agent-head { display: flex; align-items: center; gap: 12px; }
.bayut-pd-agent-photo {
    width: 54px; height: 54px; border-radius: 50%;
    overflow: hidden; background: #e9ecf2; flex-shrink: 0;
}
.bayut-pd-agent-photo img { width: 100%; height: 100%; object-fit: cover; }
.bayut-pd-agent-info h4 {
    font-size: 15px; font-weight: 600; margin: 4px 0 0; color: #2d2f33;
}
.bayut-pd-trubroker {
    background: linear-gradient(120deg, #f59e0b, #d97706);
    color: #fff; padding: 2px 8px; border-radius: 3px;
    font-size: 10px; font-weight: 700;
}
.bayut-pd-agent-badges {
    display: flex; gap: 6px; flex-wrap: wrap; margin: 12px 0;
}
.bayut-pd-agent-badges span {
    background: #f6f8fc; padding: 4px 10px; border-radius: 999px;
    font-size: 11px; color: #4b5563;
    display: inline-flex; align-items: center; gap: 4px;
}
.bayut-pd-agent-badges i { color: var(--main-color); font-size: 10px; }
.bayut-pd-agent-ctas { display: flex; gap: 6px; margin-bottom: 12px; }
.bayut-pd-agent-ctas .bayut-cta-new {
    flex: 1; height: 34px; padding: 0 10px;
    justify-content: center; font-size: 12px;
}
.bayut-pd-agency {
    padding-top: 10px; border-top: 1px solid #eef0f2;
    display: flex; justify-content: space-between;
    align-items: center; font-size: 11px;
}
.bayut-pd-agency span {
    color: #9ca3af; font-weight: 700; letter-spacing: .5px;
}

.bayut-pd-community {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px !important;
}
.bayut-pd-community-thumb {
    width: 54px; height: 54px; border-radius: 8px;
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), .15), rgba(var(--main-color-rgb), .08));
    display: flex; align-items: center; justify-content: center;
    color: var(--main-color); font-size: 22px; flex-shrink: 0;
}
.bayut-pd-community strong {
    color: #2d2f33; font-size: 14px; display: block;
}
.bayut-pd-community p {
    color: #6b7280; font-size: 11px; margin: 2px 0 0;
}

.bayut-pd-report {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 14px; border: 1px solid #d8dde2;
    border-radius: 6px; color: #6b7280; text-decoration: none;
    font-size: 13px; background: #fff; justify-content: center;
}
.bayut-pd-report:hover { border-color: #dc2626; color: #dc2626; }

/*--------------------------------------------------------------
# Bayut Mortgage Calculator (2-column with sliders + result)
--------------------------------------------------------------*/
.bayut-mc-card {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 10px;
    padding: 20px;
}

.bayut-mc-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
}

@media (max-width: 991.98px) { .bayut-mc-grid { grid-template-columns: 1fr; } }

.bayut-mc-left { display: flex; flex-direction: column; gap: 18px; }

.bayut-mc-row { display: flex; flex-direction: column; gap: 6px; }

.bayut-mc-label {
    font-size: 12px;
    color: #4b5563;
    font-weight: 600;
}

.bayut-mc-residency {
    display: inline-flex;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 4px;
    gap: 2px;
    margin-top: 4px;
    align-self: flex-start;
}

.bayut-mc-residency button {
    border: none;
    background: transparent;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    border-radius: 6px;
}

.bayut-mc-residency button.is-active {
    background: rgba(var(--main-color-rgb), .15);
    color: #065f46;
    font-weight: 700;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

.bayut-mc-slider-wrap { display: flex; flex-direction: column; gap: 6px; }

.bayut-mc-input-row {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #d8dde2;
    border-radius: 8px;
    padding: 0 14px;
    height: 40px;
}

.bayut-mc-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: #2d2f33;
    font-weight: 600;
    background: transparent;
}

.bayut-mc-input::-webkit-outer-spin-button,
.bayut-mc-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.bayut-mc-down-amt { font-weight: 600; color: #2d2f33; }

.bayut-mc-unit {
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.bayut-mc-pct {
    color: #2d2f33;
    background: #f6f8fc;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
}

.bayut-mc-range {
    width: 100%;
    height: 4px;
    appearance: none;
    background: linear-gradient(to right, var(--main-color) 0%, var(--main-color) 50%, #e5e7eb 50%, #e5e7eb 100%);
    border-radius: 999px;
    outline: none;
    margin: 4px 0;
}

.bayut-mc-range::-webkit-slider-thumb {
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--main-color);
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,.15);
}

.bayut-mc-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--main-color);
    cursor: pointer;
}

/* Right column — result */
.bayut-mc-right {
    background: #f0fdf9;
    border: 1px solid rgba(var(--main-color-rgb), .08);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bayut-mc-result {
    text-align: center;
}

.bayut-mc-result-prefix {
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.bayut-mc-result strong {
    color: #2d2f33;
    font-size: 38px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.bayut-mc-result small {
    color: #6b7280;
    font-size: 13px;
    display: block;
    margin-top: 6px;
}

.bayut-mc-loan {
    text-align: center;
    padding-top: 14px;
    border-top: 1px solid rgba(var(--main-color-rgb), .08);
}

.bayut-mc-loan span {
    display: block;
    color: #6b7280;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.bayut-mc-loan strong {
    color: #2d2f33;
    font-size: 18px;
    font-weight: 700;
}

.bayut-mc-breakdown {
    padding-top: 14px;
    border-top: 1px solid rgba(var(--main-color-rgb), .08);
}

.bayut-mc-breakdown .bayut-mc-label {
    text-align: center;
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: .5px;
}

.bayut-mc-breakdown-bar {
    display: flex;
    height: 18px;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 10px;
}

.bayut-mc-interest { background: #fef3c7; height: 100%; transition: width .3s ease; }
.bayut-mc-principal { background: var(--main-color); height: 100%; transition: width .3s ease; }

.bayut-mc-breakdown-legend {
    display: flex;
    justify-content: space-around;
    font-size: 11px;
    color: #6b7280;
}

.bayut-mc-breakdown-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bayut-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    display: inline-block;
}

.bayut-dot-interest { background: #fef3c7; }
.bayut-dot-principal { background: var(--main-color); }

/* Recommended cards — Bayut style */
.bayut-pd-rec-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 767.98px) {
    .bayut-pd-rec-grid { grid-template-columns: 1fr !important; }
}

.bayut-pd-rec-card {
    position: relative;
    transition: transform .18s ease, box-shadow .18s ease;
}

.bayut-pd-rec-card:hover {
    transform: translateY(-2px);
}

.bayut-pd-rec-img .bayut-fav-icon {
    width: 32px;
    height: 32px;
    bottom: 12px;
    right: 12px;
}

.bayut-pd-rec-img .bayut-img-dots {
    bottom: 10px;
}

.bayut-pd-rec-body {
    padding: 12px 14px 14px;
}

.bayut-pd-rec-body .bayut-list-price {
    font-size: 14px;
    color: #2d2f33;
    margin-bottom: 4px;
}

.bayut-pd-rec-body .bayut-list-price strong {
    font-size: 18px;
}

.bayut-pd-rec-body .bayut-list-meta {
    font-size: 12px;
    gap: 10px;
    margin-bottom: 6px;
}

.bayut-pd-rec-name {
    font-size: 13px;
    margin: 4px 0 2px;
    color: var(--main-color);
    font-weight: 600;
    line-height: 1.3;
}

.bayut-pd-rec-loc {
    color: #6b7280;
    font-size: 11px;
    margin: 0 0 4px;
}

.bayut-pd-rec-agency {
    color: #9ca3af;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

/* =========================================================
   P2P TOKEN MARKETPLACE — appended by P2P addon
   ========================================================= */
.bayut-p2p-properties {
    margin: 24px 0;
}
.bayut-p2p-prop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 12px;
}
.bayut-p2p-prop-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    text-decoration: none;
    color: #1f2937;
    transition: all .2s;
}
.bayut-p2p-prop-card:hover {
    border-color: var(--main-color, var(--main-color));
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    transform: translateY(-2px);
}
.bayut-p2p-prop-card strong {
    font-size: 15px;
    font-weight: 700;
}
.bayut-p2p-prop-card span {
    font-size: 12px;
    color: #6b7280;
}

.bayut-p2p-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 16px;
}
.bayut-p2p-offer-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all .2s;
}
.bayut-p2p-offer-card:hover {
    border-color: var(--main-color, var(--main-color));
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    transform: translateY(-2px);
}
.bayut-p2p-offer-img {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #f3f4f6;
}
.bayut-p2p-offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bayut-p2p-offer-img .bayut-trucheck-top {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--main-color, var(--main-color));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 4px 8px;
    border-radius: 4px;
}
.bayut-p2p-offer-body {
    padding: 14px;
}
.bayut-p2p-offer-body h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px;
    color: #1f2937;
}
.bayut-p2p-offer-body small {
    color: #6b7280;
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}
.bayut-p2p-offer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 10px;
    background: #f9fafb;
    border-radius: 8px;
    margin: 10px 0;
}
.bayut-p2p-offer-stats > div {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.bayut-p2p-offer-stats span {
    font-size: 10px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.bayut-p2p-offer-stats strong {
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
}
.bayut-p2p-spread {
    display: inline-block;
    margin: 6px 0;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}
.bayut-p2p-spread-discount {
    background: #dcfce7;
    color: #15803d;
}
.bayut-p2p-spread-premium {
    background: #fef3c7;
    color: #b45309;
}
.bayut-p2p-seller {
    margin: 8px 0;
    font-size: 13px;
    color: #6b7280;
}
.bayut-p2p-seller strong {
    color: #1f2937;
}
.bayut-p2p-own {
    display: inline-block;
    padding: 8px 12px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 6px;
    font-size: 12px;
    text-align: center;
    width: 100%;
}
.bayut-p2p-status-active   { background: #dcfce7; color: #15803d; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.bayut-p2p-status-sold     { background: #dbeafe; color: #1e40af; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.bayut-p2p-status-cancelled{ background: #fee2e2; color: #b91c1c; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 600; }

@media (max-width: 768px) {
    .bayut-p2p-offer-grid { grid-template-columns: 1fr; }
    .bayut-p2p-prop-grid  { grid-template-columns: 1fr; }
}

/* =========================================================
   HEADER LANGUAGE SWITCHER (Bayut style)
   ========================================================= */
.bayut-lang-dd {
    position: relative;
    margin-right: 8px;
}
.bayut-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    transition: all .15s;
}
.bayut-lang-btn:hover {
    border-color: var(--main-color, var(--main-color));
    color: var(--main-color, var(--main-color));
}
.bayut-lang-btn i.fa-globe {
    font-size: 14px;
    color: #6b7280;
}
.bayut-lang-btn .bayut-lang-caret {
    font-size: 10px;
    margin-left: 2px;
    color: #9ca3af;
    transition: transform .15s;
}
.bayut-lang-btn[aria-expanded="true"] .bayut-lang-caret {
    transform: rotate(180deg);
}
.bayut-lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 180px;
    padding: 6px;
    margin: 0;
    list-style: none;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0,0,0,.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .15s, transform .15s, visibility .15s;
    z-index: 1100;
}
.bayut-lang-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.bayut-lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 6px;
    text-decoration: none;
    color: #1f2937;
    font-size: 13px;
    transition: background .15s;
}
.bayut-lang-item:hover {
    background: #f3f4f6;
    color: #1f2937;
    text-decoration: none;
}
.bayut-lang-item.is-active {
    background: rgba(var(--main-color-rgb), .12);
    color: var(--main-color, var(--main-color));
    font-weight: 600;
}
.bayut-lang-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 22px;
    background: #f3f4f6;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
}
.bayut-lang-item.is-active .bayut-lang-code {
    background: var(--main-color, var(--main-color));
    color: #fff;
}
.bayut-lang-name {
    flex: 1;
}

@media (max-width: 768px) {
    .bayut-lang-btn span { display: none; }
    .bayut-lang-btn .bayut-lang-caret { display: none; }
    .bayut-lang-btn { padding: 8px 10px; }
}

/* P2P partial-buy form */
.bayut-p2p-buy-form {
    display: flex;
    gap: 6px;
    align-items: stretch;
}
.bayut-p2p-qty {
    width: 80px;
    padding: 8px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}
.bayut-p2p-qty:focus {
    outline: none;
    border-color: var(--main-color, var(--main-color));
}
.bayut-p2p-buy-form .bayut-contact-btn {
    flex: 1;
}

/* =========================================================
   HEADER NAV DROPDOWN (Tokenization umbrella menu)
   ========================================================= */
.bayut-nav-dd {
    position: relative;
}
.bayut-nav-dd-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}
.bayut-nav-dd-caret {
    font-size: 10px;
    transition: transform .15s;
    color: inherit;
    opacity: .65;
}
.bayut-nav-dd:hover .bayut-nav-dd-caret,
.bayut-nav-dd.is-open .bayut-nav-dd-caret {
    transform: rotate(180deg);
}
.bayut-nav-dd-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 220px;
    padding: 8px;
    margin: 0;
    list-style: none;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0,0,0,.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .15s, transform .15s, visibility .15s;
    z-index: 1100;
}
.bayut-nav-dd:hover .bayut-nav-dd-menu,
.bayut-nav-dd:focus-within .bayut-nav-dd-menu,
.bayut-nav-dd.is-open .bayut-nav-dd-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.bayut-nav-dd-menu li {
    list-style: none;
}
.bayut-nav-dd-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.bayut-nav-dd-menu a:hover {
    background: rgba(var(--main-color-rgb), .08);
    color: var(--main-color, var(--main-color));
}
.bayut-nav-dd-menu a i {
    width: 18px;
    text-align: center;
    color: var(--main-color, var(--main-color));
}
.bayut-nav-dd-menu .bayut-badge-new {
    margin-left: auto;
    font-size: 9px;
}

@media (max-width: 992px) {
    .bayut-nav-dd-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 18px;
    }
}

/* =========================================================
   PROFESSIONAL HOMEPAGE OVERRIDES — default theme
   Applies to all dynamic page-builder sections without
   touching .blade.php files.
   ========================================================= */

/* 1. Section rhythm */
.s-pt-120 { padding-top: 96px; }
.s-pb-120 { padding-bottom: 96px; }
.s-pt-100 { padding-top: 80px; }
.s-pb-100 { padding-bottom: 80px; }
@media (max-width: 991px) {
    .s-pt-120, .s-pt-100 { padding-top: 56px; }
    .s-pb-120, .s-pb-100 { padding-bottom: 56px; }
}
.section-bg { background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%); }

/* 2. Section headings */
.section-top {
    margin-bottom: 48px;
    text-align: center;
}
.section-top-title {
    display: inline-block;
    padding: 6px 14px;
    margin-bottom: 16px;
    background: rgba(var(--main-color-rgb), .10);
    color: var(--main-color);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
}
.section-top-title::before, .section-top-title::after { content: none; }

.section-title {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -.5px;
}
@media (max-width: 991px) { .section-title { font-size: 30px; } }
@media (max-width: 575px) { .section-title { font-size: 24px; } }

/* 3. Investment overview band */
.overview-item {
    padding: 28px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    transition: background .2s, transform .2s;
}
.overview-item:hover {
    background: rgba(255,255,255,.08);
    transform: translateY(-2px);
}
.overview-amount {
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 30%, rgba(var(--main-color-rgb), .15) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.overview-title {
    margin-top: 6px;
    font-size: 13px;
    letter-spacing: .5px;
    text-transform: uppercase;
    opacity: .85;
}

/* 4. Best property deals carousel */
.property-section { background: linear-gradient(180deg, #ffffff 0%, #f5f8fa 100%); }
.single-slide .thumb {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
}

/* 5. Hot new properties grid */
.invest-card {
    border: 1px solid #eef0f3;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.invest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .10);
    border-color: rgba(var(--main-color-rgb), .35);
}
.invest-card-thumb { border-radius: 0; }
.invest-card-thumb .title a { color: #fff; font-weight: 700; }
.invest-card-thumb .location { opacity: .9; font-size: 13px; }
.invest-bookmark-btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.95);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.return-rate {
    background: var(--main-color);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}
.property-ratings { color: #f5a623; font-size: 13px; }

/* 6. Why we are the right choice */
.choose-section { position: relative; color: #fff; }
.choose-section .section-title,
.choose-section .section-top-title { color: #fff; }
.choose-section .section-top-title { background: rgba(255,255,255,.15); color: #fff; }
.choose-section .section-title.text-white { color: #fff; }

.choose-item {
    padding: 24px;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    transition: transform .2s, background .2s, border-color .2s;
}
.choose-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,.08);
    border-color: rgba(var(--main-color-rgb), .4);
}
.choose-item .choose-item-content .icon {
    width: 54px;
    height: 54px;
    background: var(--main-color);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 16px;
}
.choose-item-title h5,
.choose-item .choose-item-title h5 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}
.choose-item-title h5::after { content: none; }
.choose-item .choose-item-content .choose-item-details p {
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.7;
}

/* 7. 5 steps referral program — keep original diamond design (no override) */

/* 8. FAQ accordion */
.accordion-item {
    border: 1px solid #eef0f3 !important;
    border-radius: 12px !important;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}
.accordion-button {
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    background: #fff;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    background: rgba(var(--main-color-rgb), .06);
    color: var(--main-color);
}
.accordion-button:focus { border: none; outline: none; }
.accordion-body {
    padding: 6px 22px 22px;
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
}

/* 9. Bonus / VIP levels */
.bonus-box {
    background: #fff;
    border: 1px solid #e6f4f0;
    border-radius: 14px;
    padding: 22px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.bonus-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
    border-color: var(--main-color);
}
.bonus-box-img {
    width: 44px;
    height: 44px;
    background: var(--main-color);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    margin-bottom: 14px;
}

/* 10. Latest property news (blog) */
.blog-box {
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 14px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.blog-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .10);
    border-color: rgba(var(--main-color-rgb), .35);
}
.blog-box-thumb img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform .4s ease;
}
.blog-box:hover .blog-box-thumb img { transform: scale(1.05); }
.blog-box-content { padding: 22px; }
.blog-box-content .title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 8px;
}
.blog-box-content .description {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}
.blog-btn {
    color: var(--main-color);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}
.blog-btn:hover { color: var(--main-color); gap: 10px; }

/* 11. CTA Build future together */
.cta-section {
    background: linear-gradient(135deg, #f5f8fa 0%, #e6f4f0 100%);
    border-radius: 24px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0;
    overflow: hidden;
}
.cta-wrapper {
    padding: 56px 48px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}
.cta-wrapper .section-title { font-size: 32px; }
.cta-wrapper .cmn-btn { margin-top: 16px; }

/* 12. Brand strip */
.affiliate-section {
    border-top: 1px solid #eef0f3;
    border-bottom: 1px solid #eef0f3;
}
.affiliate-section img {
    filter: grayscale(100%);
    opacity: .55;
    transition: filter .2s, opacity .2s;
    max-height: 48px;
}
.affiliate-section img:hover { filter: grayscale(0%); opacity: 1; }

/* 13. Newsletter / subscribe */
.subscribe-field {
    display: flex;
    gap: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 6px;
}
.subscribe-email {
    border: none !important;
    background: transparent !important;
    flex: 1;
    box-shadow: none !important;
}
.subscribe-form .cmn-btn {
    border-radius: 8px;
    padding: 10px 22px;
}

/* 14. Common button polish */
.cmn-btn {
    background: var(--main-color);
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: transform .15s, box-shadow .2s, filter .15s;
}
.cmn-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(var(--main-color-rgb), .35);
    filter: brightness(1.05);
}

/* 15. Footer polish */
.footer-section {
    background: #0b1220;
    color: rgba(255,255,255,.7);
}
.footer-top {
    padding: 72px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-middle, .footer-bottom { padding: 28px 0; }
.footer-box .title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.footer-link-list a {
    color: rgba(255,255,255,.65);
    font-size: 14px;
    transition: color .2s, padding-left .2s;
    display: inline-block;
    padding: 6px 0;
}
.footer-link-list a:hover {
    color: var(--main-color);
    padding-left: 6px;
}

/* 16. Promo banners */
.bayut-promo-card {
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}
.bayut-promo-btn {
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 600;
}

/* 17. Bookmark badge */
.bookmark-text { font-size: 12px; color: #fff; font-weight: 600; }

/* 18. Modal polish */
.modal-content { border: none; border-radius: 14px; overflow: hidden; }
.modal-header {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color) 100%);
    color: #fff;
    border: none;
}
.modal-header .close,
.modal-header .btn-close {
    filter: invert(1) brightness(2);
}
.cal-list { list-style: none; padding: 0; margin: 0; }
.cal-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #eef0f3;
}
.cal-list .caption { color: #64748b; font-size: 13px; }
.cal-list .value   { color: #0f172a; font-weight: 700; }

/* =========================================================
   PROFESSIONAL HOMEPAGE — v2 "THICK" PASS
   Stronger weights, bigger paddings, deeper shadows.
   Loads after v1 so it wins specificity ties.
   ========================================================= */

/* --- Section paddings: extra breathing room --- */
.s-pt-120 { padding-top: 120px !important; }
.s-pb-120 { padding-bottom: 120px !important; }
.s-pt-100 { padding-top: 100px !important; }
.s-pb-100 { padding-bottom: 100px !important; }
@media (max-width: 991px) {
    .s-pt-120, .s-pt-100 { padding-top: 64px !important; }
    .s-pb-120, .s-pb-100 { padding-bottom: 64px !important; }
}

/* --- Section title — bigger, bolder, thicker --- */
.section-title {
    font-size: 48px !important;
    font-weight: 800 !important;
    color: #0b1220;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 0;
}
@media (max-width: 991px) { .section-title { font-size: 34px !important; } }
@media (max-width: 575px) { .section-title { font-size: 26px !important; } }

.section-top { margin-bottom: 56px; }
.section-top-title {
    display: inline-block;
    padding: 8px 18px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), .12), rgba(var(--main-color-rgb), .04));
    color: var(--main-color);
    border: 1px solid rgba(var(--main-color-rgb), .18);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.section-top .section-title { margin-top: 6px; }

/* --- Investment overview band (dark strip) --- */
.overview-item {
    padding: 36px 24px !important;
    border-radius: 18px;
}
.overview-amount {
    font-size: 48px !important;
    font-weight: 900 !important;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 20%, rgba(var(--main-color-rgb), .18) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}
.overview-title {
    margin-top: 10px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .85;
    font-weight: 600;
}

/* --- Property cards: thicker frame, deeper hover --- */
.invest-card {
    border: 1px solid #e9edf2 !important;
    border-radius: 18px !important;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .04);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.invest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, .14);
    border-color: rgba(var(--main-color-rgb), .45);
}
.invest-card-thumb {
    height: 200px;
    overflow: hidden;
}
.invest-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.invest-card:hover .invest-card-thumb img { transform: scale(1.06); }
.invest-card-thumb .title a {
    color: #fff !important;
    font-size: 18px;
    font-weight: 800;
}
.invest-card-thumb .location {
    opacity: .9;
    font-size: 13px;
    color: #fff;
}
.invest-bookmark-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.95);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.return-rate {
    background: var(--main-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
}

/* --- Best property deals: heavy slide card --- */
.property-section .single-slide {
    padding: 0 8px;
}
.property-section .single-slide .thumb {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
}

/* --- "Why we're right choice" section — dark, premium --- */
.choose-section {
    position: relative;
    background-color: var(--main-color2, #0e3535) !important;
    color: #fff;
    overflow: hidden;
}
.choose-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(var(--main-color-rgb), .15), transparent 60%);
    z-index: 0;
}
.choose-section > .container { position: relative; z-index: 2; }
.choose-section .section-title,
.choose-section .section-title.text-white { color: #fff !important; }
.choose-section .section-top-title {
    background: rgba(255,255,255,.10) !important;
    border-color: rgba(255,255,255,.20) !important;
    color: rgba(255,255,255,.92) !important;
}

.choose-item {
    padding: 28px !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    backdrop-filter: blur(6px);
    transition: transform .25s, background .25s, border-color .25s;
    height: 100%;
}
.choose-item:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.08) !important;
    border-color: rgba(var(--main-color-rgb), .5) !important;
}
.choose-item .choose-item-title {
    margin-bottom: 16px;
}
.choose-item .choose-item-title h5 {
    color: #fff !important;
    font-size: 19px !important;
    font-weight: 800 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    margin: 0;
    line-height: 1.3;
}
.choose-item .choose-item-title h5::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--main-color);
    border-radius: 2px;
    opacity: 1 !important;
}
.choose-item .choose-item-title h5 span {
    width: 32px;
    height: 32px;
    background: var(--main-color);
    color: #fff !important;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}
.choose-item .choose-item-content {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: nowrap;
}
.choose-item .choose-item-content .icon {
    width: 62px !important;
    height: 62px !important;
    min-width: 62px;
    background: var(--main-color) !important;
    color: #fff !important;
    font-size: 26px !important;
    border-radius: 14px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(var(--main-color-rgb), .35);
}
.choose-item .choose-item-content .choose-item-details {
    width: auto !important;
    padding-left: 0 !important;
    flex: 1;
}
.choose-item .choose-item-content .choose-item-details p {
    color: rgba(255,255,255,.78) !important;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* --- Referral program — keep original diamond design (overrides removed) --- */

/* --- FAQ: thicker, better contrast --- */
.accordion-item {
    border: 1px solid #e9edf2 !important;
    border-radius: 14px !important;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .04);
}
.accordion-button {
    padding: 22px 26px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0b1220 !important;
    background: #fff !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), .08), rgba(var(--main-color-rgb), .02)) !important;
    color: var(--main-color) !important;
}
.accordion-body {
    padding: 0 26px 24px !important;
    color: #475569;
    font-size: 14.5px;
    line-height: 1.75;
}

/* --- VIP bonus levels: heavy card --- */
.bonus-box {
    background: #fff !important;
    border: 1px solid #e9edf2 !important;
    border-radius: 18px !important;
    padding: 28px !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .04);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.bonus-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, .12);
    border-color: var(--main-color) !important;
}
.bonus-box-img {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--main-color), var(--main-color));
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(var(--main-color-rgb), .35);
}
.bonus-box .title {
    font-size: 20px;
    font-weight: 800;
    color: #0b1220;
    margin: 8px 0 12px;
}
.bonus-box .feature-footer {
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
    margin-top: 14px;
}

/* --- Latest property news (blog cards) --- */
.blog-box {
    background: #fff !important;
    border: 1px solid #e9edf2 !important;
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .04);
    transition: transform .28s, box-shadow .28s, border-color .28s;
}
.blog-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, .12);
    border-color: rgba(var(--main-color-rgb), .4) !important;
}
.blog-box-thumb img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform .5s ease;
}
.blog-box:hover .blog-box-thumb img { transform: scale(1.06); }
.blog-box-content {
    padding: 26px !important;
}
.blog-box-content .title {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #0b1220 !important;
    line-height: 1.4;
    margin-bottom: 10px;
}
.blog-box-content .description {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}
.blog-meta {
    color: var(--main-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 8px;
}
.blog-btn {
    color: var(--main-color);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(var(--main-color-rgb), .08);
    border-radius: 8px;
    transition: all .2s;
}
.blog-btn:hover {
    color: #fff;
    background: var(--main-color);
    gap: 12px;
}

/* --- CTA "Build future together" --- */
.cta-section {
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), .04) 0%, rgba(var(--main-color-rgb), .12) 100%) !important;
    border-radius: 28px !important;
    margin: 60px auto !important;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(var(--main-color-rgb), .25), transparent 70%);
    border-radius: 50%;
}
.cta-wrapper {
    padding: 60px 56px !important;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    position: relative;
}
.cta-wrapper .section-title {
    font-size: 38px !important;
    color: #0b1220 !important;
}

/* --- Brand strip --- */
.affiliate-section {
    background: #ffffff !important;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.affiliate-section img {
    filter: grayscale(100%);
    opacity: .55;
    transition: filter .25s, opacity .25s, transform .25s;
    max-height: 52px;
}
.affiliate-section img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* --- Newsletter --- */
.subscribe-field {
    display: flex;
    gap: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .04);
}
.subscribe-email {
    border: none !important;
    background: transparent !important;
    flex: 1;
    padding: 10px 14px !important;
    box-shadow: none !important;
    font-size: 14px;
}

/* --- Common button: thick, branded --- */
.cmn-btn {
    background: var(--main-color) !important;
    color: #fff !important;
    padding: 14px 32px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 14px;
    border: none !important;
    box-shadow: 0 4px 14px rgba(var(--main-color-rgb), .25);
    transition: transform .18s, box-shadow .25s, filter .15s;
}
.cmn-btn:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(var(--main-color-rgb), .42);
    filter: brightness(1.05);
}

/* --- Footer: dark, premium --- */
.footer-section {
    background: #0b1220 !important;
    color: rgba(255,255,255,.7);
}
.footer-top { padding: 80px 0 48px; }
.footer-section-bg-img { opacity: .25; }
.footer-box .title {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-link-list a {
    color: rgba(255,255,255,.65);
    font-size: 14px;
    transition: color .2s, padding-left .2s;
    display: inline-block;
    padding: 6px 0;
}
.footer-link-list a:hover {
    color: var(--main-color);
    padding-left: 6px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px 0;
    text-align: center;
    color: rgba(255,255,255,.55);
    font-size: 13px;
}

/* --- Promo banners polish --- */
.bayut-promo-card {
    border-radius: 18px !important;
    padding: 28px 32px !important;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .08);
}
.bayut-promo-btn {
    border-radius: 999px !important;
    padding: 13px 28px !important;
    font-weight: 700 !important;
}

/* =========================================================
   PROPERTYBUY upgrades — more filters panel + skeletons +
   sticky details bar
   ========================================================= */
.bayut-search-strip-submit {
    background: var(--main-color, var(--main-color));
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}
.bayut-search-strip-submit:hover { filter: brightness(1.05); }

.bayut-more-filters-panel {
    margin-top: 12px;
    padding: 18px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}
.bayut-mf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}
.bayut-mf-grid label {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.bayut-mf-input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    background: #fff;
}
.bayut-mf-input:focus { outline: none; border-color: var(--main-color, var(--main-color)); }
.bayut-mf-check {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-top: 26px;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 13px !important;
}
.bayut-more-filters.is-open {
    background: rgba(var(--main-color-rgb), .1);
    color: var(--main-color);
}

/* Sticky mobile "Contact agent" bar on details */
.bayut-pd-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: 12px 16px;
    display: none;
    gap: 8px;
    z-index: 999;
    box-shadow: 0 -4px 18px rgba(0,0,0,.08);
}
.bayut-pd-sticky-bar a {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}
.bayut-pd-sticky-bar a.call { background: #f3f4f6; color: #0b1220; }
.bayut-pd-sticky-bar a.email { background: var(--main-color); color: #fff; }
.bayut-pd-sticky-bar a.wapp { background: #25d366; color: #fff; }
@media (max-width: 768px) {
    .bayut-pd-sticky-bar { display: flex; }
    body { padding-bottom: 80px; }
}

/* Skeleton loader */
.bayut-skel {
    background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
    background-size: 200% 100%;
    animation: bayutSkel 1.2s infinite;
    border-radius: 6px;
}
@keyframes bayutSkel {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Empty state */
.bayut-empty {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
}
.bayut-empty i {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 12px;
}
.bayut-empty h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0b1220;
    margin-bottom: 6px;
}

/* 4-property compare grid (was 3) */
.bayut-compare-table th,
.bayut-compare-table td { min-width: 180px; }

/* Schedule viewing / make offer / pre-qualify forms */
.bayut-pd-action-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}
.bayut-pd-action-tab {
    padding: 10px 16px;
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}
.bayut-pd-action-tab.is-active {
    color: var(--main-color);
    border-bottom-color: var(--main-color);
}
.bayut-pd-action-panel { display: none; }
.bayut-pd-action-panel.is-active { display: block; }
.bayut-pd-action-panel input,
.bayut-pd-action-panel select,
.bayut-pd-action-panel textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 10px;
    background: #fff;
}
.bayut-pd-action-panel input:focus,
.bayut-pd-action-panel select:focus,
.bayut-pd-action-panel textarea:focus {
    outline: none;
    border-color: var(--main-color);
}
.bayut-pd-action-panel button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}
.bayut-pd-action-panel button[type="submit"]:hover { filter: brightness(1.05); }

/* Price alert button */
.bayut-price-alert {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: #0b1220;
}
.bayut-price-alert.is-active {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}

/* Honeypot — must remain off-screen but accessible to bots */
.bayut-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    opacity: 0;
}

/* P2P v2: progress bar, market badge, period toggle, watched, bid form */
.bayut-p2p-progress {
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin: 6px 0 10px;
    overflow: hidden;
}
.bayut-p2p-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--main-color, var(--main-color)), var(--main-color));
    border-radius: 2px;
    transition: width .4s ease;
}

.bayut-p2p-market-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.bayut-p2p-market-badge.at-market {
    background: rgba(100, 116, 139, .15);
    color: #475569;
}

.bayut-prop-disc {
    margin-top: 6px;
    display: inline-block;
    font-size: 11px;
    padding: 2px 8px;
}
.bayut-prop-watch {
    position: absolute;
    top: 8px;
    right: 8px;
    color: var(--main-color);
    font-size: 12px;
}
.bayut-p2p-prop-card.is-watched {
    border-color: var(--main-color);
    box-shadow: 0 0 0 1px var(--main-color);
}

.bayut-period-toggle {
    display: inline-flex;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 3px;
}
.bayut-period-toggle a {
    padding: 6px 14px;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all .15s;
}
.bayut-period-toggle a.is-active {
    background: var(--main-color, var(--main-color));
    color: #fff;
}

.bayut-chart-legend {
    display: flex;
    gap: 18px;
    margin-top: 10px;
    font-size: 12px;
    color: #64748b;
}
.bayut-chart-legend .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
}
.bayut-chart-legend .dot.avg   { background: var(--main-color); }
.bayut-chart-legend .dot.range { background: rgba(var(--main-color-rgb), .25); border-radius: 2px; }
.bayut-chart-legend .dot.vol   { background: rgba(var(--main-color-rgb), .4); border-radius: 2px; }

.bayut-p2p-bid-link {
    display: block;
    text-align: center;
    margin-top: 6px;
    font-size: 12px;
    color: var(--main-color);
    text-decoration: none;
}
.bayut-p2p-bid-link:hover {
    text-decoration: underline;
}

.bayut-p2p-bid-details {
    margin-top: 10px;
    padding: 10px;
    background: #f9fafb;
    border: 1px dashed #e5e7eb;
    border-radius: 8px;
}
.bayut-p2p-bid-details summary {
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: var(--main-color);
}
.bayut-bid-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 10px;
}
.bayut-bid-form input {
    padding: 6px 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 12px;
}
.bayut-bid-form input[type="text"] { grid-column: 1 / 3; }
.bayut-bid-form button {
    grid-column: 1 / 3;
    margin-top: 4px;
}

/* =========================================================
   HEADER POLISH — white theme
   ========================================================= */
#header {
    background-color: #fff;
    border-bottom: 1px solid #eef0f3;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .04);
}

.header-top-area {
    padding: 10px 0 !important;
    background: linear-gradient(135deg, #0b1220 0%, #15243d 100%) !important;
}
.header-top-info-list li {
    color: rgba(255,255,255,.85);
    font-size: 13px;
}
.header-top-info-list li i {
    color: var(--main-color);
    font-size: 13px;
}
.header-top-right span {
    color: rgba(255,255,255,.85) !important;
    font-size: 13px;
}
.header-top-right ul li a {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    transition: all .2s;
    margin-left: 4px;
}
.header-top-right ul li a:hover {
    background: var(--main-color);
    transform: translateY(-1px);
}

.header-bottom-area {
    padding: 12px 0;
}

#header .logo img {
    max-height: 48px;
    width: auto !important;
}

/* Navbar */
.navbar ul {
    gap: 4px;
}
.navbar a,
.navbar a:focus {
    padding: 10px 14px !important;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    border-radius: 8px;
    transition: all .2s;
}
.navbar a:hover,
.navbar li.active a,
.navbar li:hover > a {
    color: var(--main-color);
    background: rgba(var(--main-color-rgb), .08);
}
.navbar a i.bi-chevron-down {
    font-size: 10px;
    margin-left: 4px;
    transition: transform .2s;
}
.navbar .dropdown:hover > a i.bi-chevron-down {
    transform: rotate(180deg);
}
.navbar a .badge {
    font-size: 9px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    letter-spacing: .3px;
}

/* Dropdown polish */
.navbar .dropdown ul {
    min-width: 240px;
    padding: 6px !important;
    border: 1px solid #eef0f3;
    border-radius: 12px;
    top: calc(100% + 8px);
    left: 0;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .12);
}
.navbar .dropdown ul li {
    min-width: 220px;
}
.navbar .dropdown ul a {
    padding: 10px 14px !important;
    border-radius: 8px;
    font-size: 13px !important;
    font-weight: 500 !important;
    display: flex;
    align-items: center;
    gap: 6px;
}
.navbar .dropdown ul a:hover {
    background: rgba(var(--main-color-rgb), .12) !important;
    color: var(--main-color) !important;
}
.navbar .dropdown ul a i {
    color: var(--main-color);
    width: 16px;
    text-align: center;
}

/* Header right: language + login button */
.header-right .dropdown button {
    padding: 8px 14px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    background: #fff !important;
    transition: all .15s;
}
.header-right .dropdown button:hover {
    border-color: var(--main-color) !important;
    color: var(--main-color);
}
.header-right .dropdown-menu {
    border: 1px solid #eef0f3;
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .10);
}
.header-right .dropdown-item {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
}
.header-right .dropdown-item:hover {
    background: rgba(var(--main-color-rgb), .10);
    color: var(--main-color);
}
.header-right .dropdown-item.active {
    background: var(--main-color);
    color: #fff;
}

/* User avatar pill */
.user-toggle-menu {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 6px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    text-decoration: none;
    transition: all .2s;
}
.user-toggle-menu:hover {
    border-color: var(--main-color);
    box-shadow: 0 4px 12px rgba(var(--main-color-rgb), .15);
}
.user-toggle-menu img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}
.user-toggle-menu p {
    margin: 0 !important;
    font-size: 13px;
    line-height: 1.2;
}
.user-toggle-menu p .text-dark {
    font-weight: 700;
    font-size: 14px;
}
.user-toggle-menu p .text-xs {
    font-size: 11px !important;
}

/* Login button polish */
.header-right .cmn-btn {
    padding: 10px 24px !important;
    border-radius: 8px !important;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(var(--main-color-rgb), .25);
}
.header-right .cmn-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(var(--main-color-rgb), .35);
}

/* Scrolled header */
#header.header-scrolled {
    box-shadow: 0 4px 18px rgba(15, 23, 42, .06);
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, .96) !important;
}

/* Mobile nav toggle button */
.mobile-nav-toggle {
    font-size: 28px;
    cursor: pointer;
    color: #1f2937;
    line-height: 0;
    transition: .5s;
}

/* Mobile menu overlay */
@media (max-width: 991px) {
    .navbar ul {
        display: none;
        position: absolute;
        inset: 60px 16px auto 16px;
        padding: 14px;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 20px 40px rgba(15, 23, 42, .15);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    .navbar.navbar-mobile ul {
        display: flex;
    }
    .navbar a,
    .navbar a:focus {
        color: #1f2937 !important;
        padding: 12px 16px !important;
        border-bottom: 1px solid #f1f5f9;
        border-radius: 0;
    }
    .navbar li.active a {
        color: var(--main-color) !important;
    }
    .navbar .dropdown ul {
        position: static;
        opacity: 1;
        visibility: visible;
        background: #f9fafb;
        border: none;
        box-shadow: none;
        margin: 4px 0 8px;
    }
}

/* =========================================================
   LISTING PAGE — BIGGER cards + bigger sections
   Targets /properties/rent & /properties/buy listing layouts
   ========================================================= */

.bayut-listing-page-section {
    background: #f5f7fa;
    padding: 32px 0 80px;
}

.bayut-listing-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
}
@media (max-width: 1199px) {
    .bayut-listing-layout {
        grid-template-columns: 1fr 300px;
        gap: 20px;
    }
}
@media (max-width: 991.98px) {
    .bayut-listing-layout {
        grid-template-columns: 1fr;
    }
}

/* Page header — much bigger title */
.bayut-listing-page-header {
    background: #fff;
    border-radius: 14px;
    padding: 28px 32px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, .04);
}
.bayut-page-h1 {
    font-size: 34px !important;
    font-weight: 800 !important;
    color: #0b1220 !important;
    margin: 0 0 6px !important;
    letter-spacing: -.5px;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .bayut-page-h1 { font-size: 26px !important; }
}
.bayut-page-sub {
    color: #64748b;
    font-size: 15px;
    margin: 0;
}

/* Toolbar */
.bayut-toolbar {
    background: #fff;
    padding: 16px 22px;
    border-radius: 14px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, .04);
}
.bayut-listing-count {
    font-size: 16px;
    font-weight: 700;
    color: #0b1220;
}
.bayut-sort-select-toolbar {
    height: 44px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    padding: 0 36px 0 14px !important;
}

/* List stack — bigger gap */
.bayut-list-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* HORIZONTAL LIST CARD — much bigger */
.bayut-list-card {
    background: #fff;
    border-radius: 16px !important;
    overflow: hidden;
    display: grid;
    grid-template-columns: 440px 1fr;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    border: 1px solid #eef0f3;
    position: relative;
}
.bayut-list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, .14);
    border-color: rgba(var(--main-color-rgb), .35);
}
@media (max-width: 991px) {
    .bayut-list-card {
        grid-template-columns: 1fr !important;
    }
}

.bayut-list-card-img,
.bayut-list-card-img-wrap {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.bayut-list-card-img img,
.bayut-list-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.bayut-list-card:hover .bayut-list-card-img img,
.bayut-list-card:hover .bayut-list-card-img-wrap img {
    transform: scale(1.04);
}

/* Card image badges — bigger */
.bayut-trucheck-badge,
.bayut-img-count {
    padding: 6px 14px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

/* Card body — much bigger padding */
.bayut-list-card-body {
    padding: 24px 28px !important;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Price — way bigger */
.bayut-list-price,
.bayut-list-card-body .bayut-list-price {
    font-size: 30px !important;
    font-weight: 800 !important;
    color: var(--main-color) !important;
    margin-bottom: 4px !important;
    line-height: 1.1;
    letter-spacing: -.3px;
}
.bayut-list-period {
    font-size: 14px !important;
    color: #64748b;
    font-weight: 500;
    margin-left: 6px;
}

/* Property name / location */
.bayut-list-name,
.bayut-list-card .property-name {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0b1220 !important;
    margin: 4px 0 !important;
    line-height: 1.3;
}
.bayut-list-location {
    color: #64748b;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.bayut-list-location i {
    color: var(--main-color);
}

/* Meta (beds / baths / sqft) — much bigger */
.bayut-list-meta {
    list-style: none;
    margin: 12px 0 14px !important;
    padding: 0;
    display: flex;
    gap: 22px !important;
    font-size: 15px !important;
    color: #1f2937;
    font-weight: 600;
}
.bayut-list-meta li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.bayut-list-meta li i {
    color: var(--main-color);
    font-size: 16px;
}

/* Card CTAs — bigger */
.bayut-list-card-cta-row {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.bayut-cta-new {
    padding: 12px 18px !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    transition: all .2s;
}
.bayut-cta-email {
    background: var(--main-color) !important;
    color: #fff !important;
}
.bayut-cta-email:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(var(--main-color-rgb), .32);
}
.bayut-cta-call-new {
    background: #f1f5f9 !important;
    color: #0b1220 !important;
}
.bayut-cta-call-new:hover {
    background: #e2e8f0 !important;
}
.bayut-cta-wa-new {
    background: #25d366 !important;
    color: #fff !important;
}

/* Agent pill */
.bayut-agent-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    background: #f8fafc;
    border-radius: 999px;
    margin-top: 12px;
    font-size: 13px;
}
.bayut-agent-pill-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}
.bayut-agency-name {
    font-weight: 600;
    color: #0b1220;
}

/* Top-right action icons — bigger */
.bayut-card-top-badges {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    gap: 6px;
    z-index: 2;
}
.bayut-fav-icon,
.bayut-compare-icon {
    width: 38px !important;
    height: 38px !important;
    background: rgba(255,255,255,.95) !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    backdrop-filter: blur(4px);
    transition: all .2s;
    color: #1f2937;
}
.bayut-fav-icon:hover,
.bayut-compare-icon:hover {
    transform: scale(1.1);
    color: var(--main-color);
}
.bayut-fav-icon.is-active {
    color: #e11d48;
    background: rgba(255, 235, 240, .95) !important;
}

/* Aside (right column) — slightly bigger */
.bayut-listing-aside {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.bayut-side-card {
    background: #fff !important;
    border-radius: 14px !important;
    padding: 22px !important;
    box-shadow: 0 2px 6px rgba(15, 23, 42, .04);
    border: 1px solid #eef0f3;
}
.bayut-side-card-title {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #0b1220 !important;
    margin-bottom: 14px !important;
}
.bayut-side-list a {
    padding: 8px 0;
    font-size: 14px;
    color: #475569;
}
.bayut-side-list a:hover {
    color: var(--main-color);
}

/* Pagination */
.bayut-listing-page-section .pagination,
.bayut-listing-page-section nav ul.pagination {
    margin-top: 28px;
    gap: 6px;
}
.bayut-listing-page-section .page-link {
    border-radius: 10px !important;
    border: 1px solid #e5e7eb;
    padding: 10px 16px;
    font-weight: 600;
    color: #1f2937;
}
.bayut-listing-page-section .page-item.active .page-link {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .bayut-listing-page-section { padding: 18px 0 60px; }
    .bayut-listing-page-header { padding: 20px; }
    .bayut-list-card-body { padding: 20px !important; }
    .bayut-list-price { font-size: 24px !important; }
    .bayut-list-meta { gap: 14px !important; font-size: 13px !important; }
}

/* =========================================================
   LISTING PAGE — BIGGER BUTTONS
   All filter pills, CTAs, action buttons on /properties/buy + /properties/rent
   ========================================================= */

/* Search strip — taller, bolder pills */
.bayut-search-strip {
    padding: 18px 0;
}
.bayut-search-strip-row1,
.bayut-search-strip-row2 {
    gap: 10px !important;
    flex-wrap: wrap;
}

.bayut-filter-pill,
.bayut-location-pill {
    height: 52px !important;
    padding: 0 18px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border: 1px solid #e5e7eb !important;
    background: #fff;
    transition: border-color .15s, box-shadow .15s, transform .15s;
}
.bayut-filter-pill:hover,
.bayut-location-pill:hover {
    border-color: var(--main-color) !important;
    box-shadow: 0 4px 12px rgba(var(--main-color-rgb), .12);
}
.bayut-location-pill input {
    height: 48px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
}
.bayut-location-pill i {
    font-size: 16px !important;
    color: var(--main-color);
}

/* Completion pill group */
.bayut-completion-pill {
    height: 52px !important;
    padding: 4px !important;
    border-radius: 12px !important;
    background: #f1f5f9 !important;
    border: 1px solid #e5e7eb !important;
}
.bayut-completion-pill button {
    height: 100% !important;
    padding: 0 18px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    border: none;
    background: transparent;
    color: #475569;
    cursor: pointer;
    transition: all .15s;
}
.bayut-completion-pill button.is-active {
    background: #fff !important;
    color: var(--main-color) !important;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.bayut-completion-pill button:hover:not(.is-active) {
    color: #0b1220;
}

/* More Filters button */
.bayut-more-filters {
    height: 52px !important;
    padding: 0 22px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    border: 1px solid #e5e7eb !important;
    background: #fff;
    color: #0b1220;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all .15s;
}
.bayut-more-filters:hover,
.bayut-more-filters.is-open {
    border-color: var(--main-color) !important;
    color: var(--main-color) !important;
    background: rgba(var(--main-color-rgb), .06);
}
.bayut-more-filters i {
    font-size: 16px;
}

/* Search submit button */
.bayut-search-strip-submit {
    height: 52px !important;
    padding: 0 32px !important;
    border-radius: 12px !important;
    background: var(--main-color) !important;
    color: #fff !important;
    border: none !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(var(--main-color-rgb), .28);
    transition: all .15s;
}
.bayut-search-strip-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(var(--main-color-rgb), .42);
    filter: brightness(1.05);
}
.bayut-search-strip-submit i {
    font-size: 16px;
}

/* Check pills (TruCheck, Floor Plans toggles) */
.bayut-check-pill {
    height: 44px !important;
    padding: 0 16px !important;
    border-radius: 10px !important;
    border: 1px solid #e5e7eb !important;
    background: #fff;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    transition: all .15s;
}
.bayut-check-pill:hover {
    border-color: var(--main-color) !important;
    color: var(--main-color);
}
.bayut-check-pill input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--main-color);
}

/* Save Search link */
.bayut-save-search {
    height: 44px;
    padding: 0 18px;
    border-radius: 10px;
    background: rgba(var(--main-color-rgb), .08);
    color: var(--main-color) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    transition: all .15s;
}
.bayut-save-search:hover {
    background: var(--main-color);
    color: #fff !important;
    transform: translateY(-1px);
}

/* Card CTAs (Email / Call / WhatsApp) — bigger */
.bayut-cta-new,
.bayut-list-card-cta-row .bayut-cta-new {
    height: 48px !important;
    padding: 0 22px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .2s;
    text-decoration: none !important;
}
.bayut-cta-new i {
    font-size: 15px;
}
.bayut-cta-email {
    background: var(--main-color) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(var(--main-color-rgb), .25);
    flex: 1;
    min-width: 110px;
}
.bayut-cta-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(var(--main-color-rgb), .42);
    filter: brightness(1.05);
}
.bayut-cta-call-new {
    background: #f1f5f9 !important;
    color: #0b1220 !important;
    border: 1px solid #e5e7eb;
    flex: 1;
    min-width: 110px;
}
.bayut-cta-call-new:hover {
    background: #fff !important;
    border-color: var(--main-color);
    color: var(--main-color) !important;
    transform: translateY(-2px);
}
.bayut-cta-wa-new {
    background: #25d366 !important;
    color: #fff !important;
    width: 52px;
    padding: 0 !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, .3);
}
.bayut-cta-wa-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, .45);
}
.bayut-cta-wa-new i {
    font-size: 22px;
}

/* View toggle (List/Grid) — bigger */
.bayut-view-toggle {
    background: #f1f5f9 !important;
    border-radius: 10px !important;
    padding: 4px !important;
}
.bayut-view-btn {
    padding: 10px 18px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    gap: 8px !important;
}
.bayut-view-btn.is-active {
    background: #fff !important;
    color: var(--main-color) !important;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

/* Side card action buttons (Alert / Promo) — bigger */
.bayut-alert-side-btn,
.bayut-promo-side-btn {
    height: 48px !important;
    padding: 0 22px !important;
    border-radius: 10px !important;
    background: var(--main-color) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(var(--main-color-rgb), .25);
    transition: all .2s;
    width: 100%;
}
.bayut-alert-side-btn:hover,
.bayut-promo-side-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(var(--main-color-rgb), .42);
    filter: brightness(1.05);
}

/* Pagination — bigger */
.bayut-listing-page-section .page-link {
    min-width: 44px;
    height: 44px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 10px !important;
    border: 1px solid #e5e7eb !important;
    padding: 0 14px !important;
    font-weight: 700 !important;
    font-size: 14px;
    color: #1f2937;
    transition: all .15s;
}
.bayut-listing-page-section .page-link:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}
.bayut-listing-page-section .page-item.active .page-link {
    background: var(--main-color) !important;
    border-color: var(--main-color) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(var(--main-color-rgb), .28);
}

/* Sort dropdown taller */
.bayut-popular-select,
.bayut-sort-select-toolbar {
    height: 44px !important;
    padding: 0 36px 0 16px !important;
    border-radius: 10px !important;
    border: 1px solid #e5e7eb !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

/* Mobile */
@media (max-width: 768px) {
    .bayut-filter-pill,
    .bayut-location-pill,
    .bayut-completion-pill,
    .bayut-more-filters,
    .bayut-search-strip-submit {
        height: 46px !important;
        font-size: 14px !important;
    }
    .bayut-cta-new {
        height: 44px !important;
        font-size: 13px !important;
    }
}

/* =========================================================
   MINI MAP WIDGET (Leaflet) — sidebar professional
   ========================================================= */
.bayut-drive-card {
    overflow: hidden;
    padding: 0 !important;
}
.bayut-drive-map-real {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    position: relative;
    z-index: 1;
}
.bayut-drive-map-real .leaflet-control-attribution {
    background: rgba(255,255,255,.7) !important;
    font-size: 9px !important;
    padding: 0 4px !important;
    color: #64748b;
}
.bayut-drive-map-real .leaflet-control-attribution a {
    color: var(--main-color);
}

.bayut-drive-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #eef0f3;
}
.bayut-drive-link {
    padding: 14px 12px !important;
    background: #fff;
    color: #0b1220 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .15s;
    border: none;
    border-radius: 0 !important;
    margin: 0;
}
.bayut-drive-link i {
    color: var(--main-color);
    font-size: 14px;
}
.bayut-drive-link:hover {
    background: rgba(var(--main-color-rgb), .08);
    color: var(--main-color) !important;
}
.bayut-drive-link-secondary i {
    color: #475569;
}
.bayut-drive-link-secondary:hover i {
    color: var(--main-color);
}

/* Leaflet pin / marker default looks fine; ensure zoom controls are clean */
.leaflet-bar a,
.leaflet-bar a:hover {
    background-color: #fff;
    border-color: #e5e7eb;
    color: #0b1220;
}
.leaflet-bar a:hover {
    color: var(--main-color);
}

/* Old fake-map widget — hide if still rendered anywhere */
.bayut-drive-map { display: none !important; }
