@charset "UTF-8";
/**

* Template Name: Nestrix Real Estate HTML Template
* Version: 1.0
* Author: Unicoder
* Email: unicoder16@gmail.com
* Developed By: Unicoder
* Last Update: 30th July, 2026
* Author URL: www.unicoderbd.com

**/


/*===============================================================================
****CSS TABLE ****

# Accordion
# Agent Block
# About Page
# Box Style
# Button Style
# Career Page
# Color Settings
# Compare
# Contact Page
# Custom Webfont
# Custom Scroll Bar
# Dashboard
# Default Style
# Footer Style
# Form Style
# Font Variations
# Google Map
# Header Style
# Hover Effect
# jSlider Style
# Layer Slider
# Listing Info
# Listing Page
# List Style
# Modal Popup
# Modal Dialog Box
# Newslatter Subscrible
# Owl Carousel
# Page Banner
# Pagination
# Photo Gallery
# Post Block
# Portfolio
# Preloader
# Pricing Plan
# Progesss Bar
# Property Block
# Responsive Code
# Single Property
# Sidebar Filter
# Sign In Page
# Single Post
# Single Profile Page
# Tab Block Style
# Testimonial Block
# Timeline
# Video Play
# Widget Style

===============================================================================*/

/*==========================================================
Color Settings
==========================================================*/
.down-line-white:before,
.bg-white {
    background-color: var(--uc-white-color) !important;
}

.down-line:before,
.bg-primary {
    background-color: var(--uc-primary-color) !important;
}

.down-line-secondary:before,
.bg-secondary {
    background-color: var(--uc-secondary-color) !important;
}

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

.bg-light-gray {
    background-color: var(--uc-light-gray-color) !important;
}

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

.down-line-dark:before,
.bg-dark {
    background-color: var(--uc-dark-color) !important;
}

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

.copyright {
    background-color: var(--uc-footer-color);
}

.copyright hr {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.color-white,
.hover-color-white:hover,
.nav-white .navbar-nav li a,
.nav-active-white .navbar-nav li.active>a,
.nav-white .user-panel a,
.nav-hover-white .navbar-nav li a:hover,
.list-color-white li,
.list-color-white li a {
    color: var(--uc-white-color) !important;
}

.color-primary,
.hover-color-primary:hover,
.nav-primary .navbar-nav li a,
.nav-active-primary .navbar-nav li.active>a,
.nav-primary .user-panel a,
.nav-hover-primary .navbar-nav li a:hover,
.list-color-primary li,
.list-color-primary li a {
    color: var(--uc-primary-color) !important;
}

.color-secondary,
.hover-color-secondary:hover,
.nav-secondary .navbar-nav li a,
.nav-active-secondary .navbar-nav li.active>a,
.nav-secondary .user-panel a,
.nav-hover-secondary .navbar-nav li a:hover,
.list-color-secondary li,
.list-color-secondary li a {
    color: var(--uc-secondary-color) !important;
}

.color-dark,
.hover-color-dark:hover,
.nav-dark .navbar-nav li a,
.nav-active-dark .navbar-nav li.active>a,
.nav-dark .user-panel a,
.nav-hover-dark .navbar-nav li a:hover,
.list-color-dark li,
.list-color-dark li a {
    color: var(--uc-dark-color) !important;
}

.color-gray,
.hover-color-gray:hover,
.nav-gray .navbar-nav li a,
.nav-active-gray .navbar-nav li.active>a,
.nav-gray .user-panel a,
.nav-hover-gray .navbar-nav li a:hover,
.list-color-gray li,
.list-color-gray li a {
    color: var(--uc-text-gray-color);
}

.color-light,
.hover-color-light:hover,
.nav-light .navbar-nav li a,
.nav-active-light .navbar-nav li.active>a,
.nav-light .user-panel a,
.nav-hover-light .navbar-nav li a:hover,
.list-color-light li,
.list-color-light li a {
    color: var(--uc-light-color);
}

.color-default,
.hover-color-default:hover,
.nav-default .navbar-nav li a,
.nav-active-default .navbar-nav li.active>a,
.nav-default .user-panel a,
.nav-hover-default .navbar-nav li a:hover,
.list-color-default li,
.list-color-default li a {
    color: var(--uc-default-color);
}

.color-accent,
.hover-color-accent:hover,
.nav-accent .navbar-nav li a,
.nav-active-accent .navbar-nav li.active>a,
.nav-accent .user-panel a,
.nav-hover-accent .navbar-nav li a:hover,
.list-color-accent li,
.list-color-accent li a {
    color: var(--uc-accent-color);
}

.default-font {
    font-family: var(--uc-general-font);
}

.primary-font {
    font-family: var(--uc-primary-font);
}

[class*="overlay-"] {
    position: relative;
}

[class*="overlay-"]::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}

.overlay-dark::after {
    background-color: var(--uc-dark-opacity-color);
}

.overlay-secondary::after {
    background-color: var(--uc-secondary-opacity-color);
}

[class*="overlay-"] .container,
[class*="overlay-"] .container-fluid {
    position: relative;
    z-index: 10;
}

/*===============================================================================
Preloader
==================================================================================*/
:root {
    --loader-width: 40px;
    --loader-height: 40px;
    --less-margin: -20px;
    --loader-color-primary: #27ae60;
    --loader-color-secondary: #eee;
    --line-width: 2px;
    --animation-duration: 2s;
}

.preloader {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 9999999;
    background: #fff;
    top: 0;
    left: 0;
}

.preloader .loader {
    position: relative;
    border: var(--line-width) solid var(--uc-gray-color);
    border-radius: 50%;
    border-top: var(--line-width) solid var(--uc-dark-color);
    width: var(--loader-width);
    height: var(--loader-height);
    -webkit-animation: spin var(--animation-duration) linear infinite;
    animation: spin var(--animation-duration) linear infinite;
    margin-top: var(--less-margin);
    margin-left: var(--less-margin);
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

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

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

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

/*===============================================================================
Default Style
==================================================================================*/
body {
    font-size: 14px;
    font-family: var(--uc-general-font);
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0;
    color: var(--uc-default-color);
}

img {
    max-width: 100%
}

ul {
    list-style: none;
    padding: 0
}

li {
    line-height: 30px;
    list-style-type: disc;
    list-style-position: inside;
}

p {
    line-height: 27px;
    font-family: var(--uc-general-font);
}

p:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--uc-primary-font);
    color: var(--uc-dark-color);
    font-weight: 700;
}

h1,
.h1 {
    font-size: 50px;
}

h2,
.h2 {
    font-size: 40px;
}

h3,
.h3 {
    font-size: 30px;
}

h4,
.h4 {
    font-size: 24px;
}

h5,
.h5 {
    font-size: 21px;
}

h6,
.h6 {
    font-size: 18px;
}

a {
    font-family: var(--uc-accent-font);
    color: var(--uc-accent-color);
    text-decoration: none;
}

small {
    font-size: 13px;
}

blockquote {
    font-family: "Times New Roman";
    font-size: 18px;
    font-style: italic;
    padding-left: 20px;
    border-left: 2px;
    border-left-color: var(--uc-primary-color);
    border-left-style: solid;
    line-height: 30px;
    color: var(--uc-dark-color);
}

.full-row {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}

.box-100px {
    width: 100px;
    height: 100px;
}

.box-70px {
    width: 70px;
    height: 70px;
}

.box-50px {
    width: 50px;
    height: 50px;
}

.ls-1 {
    letter-spacing: 1px;
}

.ls-2 {
    letter-spacing: 2px;
}

.ls-3 {
    letter-spacing: 3px;
}

.sub-title {
    font-family: var(--uc-primary-font);
    font-size: 17px;
    font-weight: 500;
    display: inline-block;
    width: 100%;
    line-height: 28px;
}

.paraxify {
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
}

.transation,
.transation-all * {
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.rating {
    display: inline-block;
    unicode-bidi: bidi-override;
    color: var(--uc-text-color2);
    font-size: 25px;
    height: 25px;
    width: auto;
    margin: 0;
    position: relative;
    padding: 0;
}

.rating-upper {
    color: #f95e3b;
    padding: 0;
    position: absolute;
    z-index: 1;
    display: flex;
    top: 0;
    left: 0;
    overflow: hidden;
}

.rating-lower {
    padding: 0;
    display: flex;
    z-index: 0;
}

#page_wrapper {
    background-color: #fff;
    margin-right: auto;
    margin-left: auto;
    max-width: 100vw;
}

.nav-on-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.nav-on-top {
    animation-fill-mode: both;
    width: 100%;
    z-index: 999;
    top: 0;
    position: absolute;
}

.sidebar-page-wrapper {
    display: flex;
    width: 100%;
}

.form-group {
    position: relative;
}

.home-banner.position-relative {
    max-height: 90vh;
    overflow: hidden;
}

img.nav-logo {
    width: 120px;
}

.entry-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

#scroll {
    position: fixed;
    right: 20px;
    bottom: 50px;
    line-height: 40px;
    text-align: center;
    border-radius: 3px;
    z-index: 100;
    display: none;
    cursor: pointer;
    background-color: white;
    padding: 0 12px;
    color: var(--uc-dark-color);
}

.scroll-top-vertical {
    width: auto !important;
    height: auto !important;
    font-size: 14px;
}

.follow-vertical.left {
    left: -75px;
}

.follow-vertical {
    color: var(--theme-secondary-color);
}

.follow-vertical {
    position: fixed;
    bottom: 50%;
    transform: rotate(-90deg);
    z-index: 100;
}

.follow-vertical a {
    padding: 0 10px;
}

.text-block-05 {
    padding: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: var(--uc-secondary-color);
}

.category-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--uc-white-color);
    border: 2px solid;
    border-color: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 14px 20px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.category-card.active {
    background: var(--uc-primary-color);
    border-color: var(--uc-primary-color);
}

.category-card .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--uc-dark-color);
}

.category-card.active .icon {
    stroke: #FFFFFF;
}

.category-card .label {
    font-size: 15px;
    font-weight: 600;
    color: var(--uc-dark-color);
}

.category-card.active .label {
    color: #FFFFFF;
}

.category-card .count {
    font-size: 14px;
    font-weight: 500;
    color: var(--uc-default-color);
}

.category-card.active .count {
    color: var(--uc-white-color);
}

.image-zoom {
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.image-zoom:hover {
    transform: scale(1.05);
}

.tagline {
    text-transform: uppercase;
    font-family: var(--uc-accent-font);
    font-size: 12px;
    color: var(--uc-primary-color);
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 25px;
    position: relative;
    display: table;
}

.cta-card {
    background: var(--uc-dark-color);
    border-radius: 22px;
    padding: 56px 40px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.cta-title {
    font-weight: 400;
    font-size: 38px;
    color: #fff;
    margin-bottom: 18px;
}

.cta-title em {
    font-style: italic;
    color: #fff;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.55);
    font-size: 15.5px;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-book-valuation {
    background: var(--uc-primary-color);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    padding: 14px 26px;
    border-radius: 10px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-call {
    background: transparent;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 25px;
    border-radius: 10px;
    border: 1px solid #2C3A57;
    background-color: var(--uc-secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-call:hover {
    background: #1A2338;
    color: #fff;
}

@media (max-width: 576px) {
    .cta-card {
        padding: 40px 22px;
    }

    .cta-title {
        font-size: 27px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-book-valuation,
    .btn-call {
        justify-content: center;
    }
}

.hero-title {
    font-family: var(--uc-general-font);
}

/*======================================
Breadcumb
======================================*/
/* ===== BREADCRUMB ===== */
.breadcrumb-block {
    border-top: 1px solid;
    border-top-color: rgba(0, 0, 0, 0.15);
}

.breadcrumb-bar {
    padding: 14px 0;
    font-size: 14px;
}

.breadcrumb-bar a {
    color: var(--uc-general-color);
}

.breadcrumb-bar.light a {
    color: #bbbbc1;
}

.breadcrumb-bar a:hover {
    color: var(--uc-primary-color);
}

.breadcrumb-bar .sep {
    margin: 0 8px;
    color: #acaaa6;
}

.breadcrumb-bar .current {
    color: var(--uc-dark-color);
    font-weight: 500;
}

.breadcrumb-bar.light .current {
    color: var(--uc-primary-color);
}

/*======================================
Page Banner
======================================*/
.page-banner {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 150px;
}

.page-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(rgba(11, 22, 40, 0.62) 0%, rgba(11, 22, 40, 0.78) 100%);
}

.banner-content {
    position: relative;
    z-index: 10;
}

.page-banner .tagline {
    color: var(--uc-primary-color);
    font-weight: 600;
    font-size: 12px;
    border-radius: 5px;
    line-height: 1;
    max-width: max-content;
}

.page-title {
    font-size: 50px;
    color: rgb(255, 255, 255);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 400;
}

.banner-search-filter {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    max-width: 800px;
}

.breadcrumb li {
    list-style: none;
}

.breadcrumb li a {
    font-family: var(--uc-primary-font);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--uc-text-color2);
    text-decoration: none;
}

.breadcrumb li.active {
    font-family: var(--uc-primary-font);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--uc-primary-color);
    text-decoration: none;
}

.agent-banner-search {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
    max-width: 500px;
    margin: 0px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.22) 0px 4px 24px;
}

.agent-banner-search .form-group {
    position: relative;
    flex: 1 1 0%;
}

.agent-banner-search input {
    min-width: 350px;
    padding: 14px 14px 14px 40px;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    outline: none;
    font-size: 14px;
    color: rgb(11, 22, 40);
    background: rgb(255, 255, 255);
    box-sizing: border-box;
}

.agent-banner-search button {
    padding: 0px 22px;
    background: var(--uc-primary-color);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    color: rgb(11, 22, 40);
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    border-radius: 0;
    height: auto;
}

/*==========================================================
Font Variations
==========================================================*/

.font-primary {
    font-family: var(--uc-primary-font);
}

.font-secondary {
    font-family: var(--uc-secondary-font);
}

.font-text {
    font-family: var(--uc-text-font);
}

.font-accent {
    font-family: var(--uc-accent-font);
}


/*==========================================
Video Play
===========================================*/
.simple-video-play {
    line-height: 70px;
    align-items: center;
}

.simple-video-play a {
    width: 70px;
    height: 70px;
    display: block;
    text-align: center;
    float: left;
    background-color: var(--theme-primary-opacity-color);
}

.simple-video-play a i {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
}

@-webkit-keyframes sk-bounce {

    0%,
    100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.double-bounce1,
.double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #7bb441;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes ball-scale-multiple {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes ball-scale-multiple {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.ball-scale-multiple {
    position: relative
}

.ball-scale-multiple>div:nth-child(2) {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.ball-scale-multiple>div:nth-child(3) {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.ball-scale-multiple>div {
    background-color: var(--theme-secondary-color);
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: absolute;
    opacity: 0;
    margin: 0;
    left: -43px;
    top: -38px;
    width: 140px;
    height: 140px;
    -webkit-animation: ball-scale-multiple 3s 0s linear infinite;
    animation: ball-scale-multiple 3s 0s linear infinite;
}

.about-us-img-wrap .simple-video-play {
    position: absolute;
    left: 100px;
    bottom: 100px;
    z-index: 10;
}

/*==========================================================
Header Style
==========================================================*/
.top-header {
    padding-top: 10px;
    padding-bottom: 10px;
}

.top-header ul li a,
.top-header .navbar-top li a {
    font-family: var(--uc-primary-font);
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 300;
}

.navbar .navbar-nav li {
    list-style: none;
}

.navbar .navbar-nav li a {
    font-family: var(--uc-accent-font);
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: var(--uc-light-color);
}

.navbar .navbar-nav li .dropdown-item {
    color: var(--uc-dark-color) !important;
    line-height: 30px;
    padding-left: 20px;
    padding-right: 20px;
}

.navbar.nav-semibold .navbar-nav li a {
    font-weight: 600;
}

.navbar.nav-medium .navbar-nav li a {
    font-weight: 500;
}

.navbar.nav-norlam .navbar-nav li a {
    font-weight: 400;
}

.dropdown.mega-dropdown {
    position: static;
}

.main-header .navbar .btn {
    text-transform: capitalize;
}

.main-header .navbar .user-panel {
    display: flex;
    padding-left: 15px;
    padding-right: 15px;
}

.main-header .navbar .user-panel a {
    text-decoration: none;
    font-family: var(--uc-primary-font);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1px;
}

.navbar-nav>li.dropdown>a.nav-link::after,
.navbar-nav>li.dropdown .dropdown-toggle::after {
    transform: translateY(-50%) rotate(90deg);
    position: absolute;
    content: "";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    font-size: 8px;
    top: 50%;
    right: -10px;
    display: block;
    border: none;
}

.navbar-expand-lg .navbar-nav>li.dropdown>ul.dropdown-menu>li.dropdown .dropdown-toggle::after {
    transform: translateY(-50%);
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    font-size: 10px;
    top: 50%;
    right: 20px;
    display: block;
    border: none;
}

.header-absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
}

/*==========================================================
Footer Style
==========================================================*/
.footer-logo img {
    width: 150px;
    padding: 8px 0;
}

.bottom-footer-nav {
    display: flex;
    justify-content: end;
    gap: 10px;
}

.copyright {
    font-family: var(--uc-primary-font);
    margin-top: -1px;
}

.copyright ul {
    margin: 0;
}

.copyright ul li {
    list-style: none;
}

.copyright ul li a {
    text-decoration: none;
}

/*==========================================================
Hero Section
==========================================================*/
.video-hero {
    position: relative;
    padding: 0;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    width: 100%;
    max-height: 100vh;
}

.jquery-background-video {
    position: absolute;
    max-width: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.home-banner .quick-search {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 10;
    width: 80%;
    bottom: 50px;
}

.home-banner img {
    width: 100%;
}

.hero-section {
    position: relative;
    height: 780px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.hero-bg {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero-wrap {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.hero-content {
    width: 100%;
    position: relative;
}

.hero-content .ls-l {
    position: absolute;
}

.hero-tagline,
.hero-title {
    visibility: hidden;
    opacity: 0;
    position: relative;
    transform: translateY(50px);
}

.hero-content .hero-title {
    font-size: 80px;
    font-weight: 800;
    line-height: initial;
}

.hero-content.loaded .hero-tagline {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: all 1000ms ease-in-out;
}

.hero-content.loaded .hero-title {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: all 1000ms ease-in-out;
}

/*==========================================================
Button Style
==========================================================*/
.btn,
button {
    font-family: var(--uc-accent-font);
    font-weight: 400;
    font-size: 14px;
    border: 1px solid;
    border-radius: 5px;
    padding: 0 20px;
    height: 40px;
    width: max-content;
    line-height: 1;
    gap: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.btn.btn-large {
    height: 50px;
    padding-left: 25px;
    padding-right: 25px;
}

.btn:hover {
    background-color: var(--uc-primary-color);
    border-color: var(--uc-primary-color);
}

.btn.btn-primary,
.btn.btn-hover-primary:hover,
.btn.btn-hover-primary.btn-border:hover,
.btn.btn-primary.btn-border:hover {
    background-color: var(--uc-primary-color);
    border-color: var(--uc-primary-color);
    color: var(--uc-white-color);
}

.btn.btn-secondary,
.btn.btn-hover-secondary:hover,
.btn.btn-hover-secondary.btn-border:hover,
.btn.btn-secondary.btn-border:hover {
    background-color: var(--uc-secondary-color);
    border-color: var(--uc-secondary-color);
    color: var(--uc-white-color);
}

.btn.btn-light,
.btn.btn-hover-light:hover,
.btn.btn-hover-light.btn-border:hover,
.btn.btn-light.btn-border:hover {
    background-color: var(--uc-light-color);
    border-color: var(--uc-light-color);
    color: var(--uc-dark-color);
}

.btn.btn-gray,
.btn.btn-hover-gray:hover,
.btn.btn-hover-gray.btn-border:hover {
    background-color: var(--uc-gray-color);
    border-color: var(--uc-gray-color);
}

.btn.btn-dark,
.btn.btn-hover-dark:hover,
.btn.btn-hover-dark.btn-border:hover,
.btn.btn-dark.btn-border:hover {
    background-color: var(--uc-dark-color);
    border-color: var(--uc-dark-color);
    color: var(--uc-white-color);
}

.btn.btn-dark.btn-border {
    background-color: transparent;
    color: var(--uc-dark-color);
}

.btn.btn-primary.btn-border {
    background-color: transparent;
    color: var(--uc-primary-color);
}

.btn.btn-light.btn-border {
    background-color: transparent;
    color: var(--uc-light-color);
}

.btn.btn-gray.btn-border {
    background-color: transparent;
    color: var(--uc-gray-color);
}

.btn.hover-default:hover {
    filter: brightness(110%);
}

.btn.hover-flash-move {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn.hover-flash-move:hover {
    filter: brightness(110%);
}

.btn.hover-flash-move:hover::before {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.btn.hover-flash-move::before {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: -10;
}

.btn-link {
    font-family: var(--uc-accent-font);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    border: none;
    color: var(--uc-dark-color);
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.btn-link:hover {
    color: var(--uc-primary-color);
    background-color: transparent;
}

.transition-this {
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

/*==============
Career Page
===============*/
.benefits-grid {
    border: 1px solid #1a1a1a;
}

.benefit-cell {
    border-right: 1px solid #cfcec5;
    border-bottom: 1px solid #cfcec5;
    padding: 30px 28px;
    transition: all 300ms ease-in-out;
    color: var(--uc-dark-color);
}

.benefit-cell:hover {
    background: #1a1a1a;
    color: #fff;
    border-right: 1px solid #1a1a1a;
    color: var(--uc-white-color);
}

.benefit-icon {
    font-size: 20px;
    margin-bottom: 18px;
}

.benefit-title {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
}

.benefit-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--uc-default-color);
}

.benefit-cell:hover .benefit-desc {
    color: #afafaf;
}

/* remove borders on last column / last row for clean edges */
.row-benefits>.col-6:nth-child(4n) .benefit-cell,
.row-benefits>.col-lg-3:nth-child(4n) .benefit-cell {
    border-right: none;
}

.row-benefits:last-of-type .benefit-cell {
    border-bottom: none;
}

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

    .benefit-cell {
        border-right: none !important;
    }
}

.title-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 34px;
}

#roleCount {
    display: inline-block;
    min-width: 1ch;
}

/* Search + filters */
.controls-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.job-search-box {
    position: relative;
    flex: 1 1 260px;
    max-width: 300px;
}

.job-search-box input {
    width: 100%;
    background: #172232;
    border: 1px solid;
    padding: 10px 14px 10px 38px;
    color: #fff;
    font-size: 14px;
    height: auto;
    border-radius: 5px;
    border-color: #172232;
}

.job-search-box input::placeholder {
    color: #8a8a83;
}

.job-search-box input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: none;
}

.job-search-box svg {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #8a8a83;
    font-size: 14px;
}

.filter-btn {
    background: transparent;
    border: 1px solid;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--uc-default-color);
    border-radius: 5px;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background .15s, color .15s;
}

.filter-btn:hover {
    background: transparent;
}

.filter-btn.active {
    background: #f4f3ee;
    color: #14140f;
    border-color: #f4f3ee;
}

/* Job list */
.job-list {
    border-top: 1px solid #2c2c24;
}

.job-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 26px;
    background: #f4f3ee;
    border-bottom: 2px solid;
    border-bottom-color: var(--uc-dark-color);
    color: var(--uc-dark-color);
    flex-wrap: wrap;
    border-radius: 5px;
}

.job-main {
    flex: 1 1 auto;
    min-width: 240px;
}

.job-title-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.job-title {
    font-weight: 700;
    font-size: 16px;
}

.hot-badge {
    background: var(--uc-dark-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: 4px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 13.5px;
    color: #55554f;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-meta .salary {
    font-weight: 700;
    color: #1a1a1a;
}

.job-side {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-shrink: 0;
}

.job-posted {
    font-size: 13px;
    color: #8a8a83;
    white-space: nowrap;
}

.apply-btn {
    background: var(--uc-dark-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 18px;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.apply-btn:hover {
    color: #fff;
    opacity: 0.9;
}

.no-results {
    background: #f4f3ee;
    color: #5c5c56;
    padding: 40px 26px;
    text-align: center;
    font-size: 15px;
    display: none;
}

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

    .job-row {
        padding: 20px;
    }

    .job-side {
        width: 100%;
        justify-content: space-between;
    }
}

.cta-subtext {
    font-size: 15px;
    color: #9a9a94;
    margin: 0;
}

.cv-banner .cta-btn {
    background: #f4f3ee;
    color: #14140f;
    border: none;
    border-radius: 5px;
    padding: 16px 26px;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    white-space: nowrap;
}

.cv-banner .cta-btn:hover {
    color: #14140f;
    opacity: 0.9;
}

@media (max-width: 767px) {
    .cv-banner .cta-btn-col {
        margin-top: 26px;
        display: flex;
        justify-content: center;
    }
}

/*==============
List Style
===============*/
.list-element {
    gap: 10px;
}

.list-element li,
.list-element li a {
    font-family: var(--uc-accent-font);
    color: var(--uc-accent-color);
    list-style: none;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.list-element li a:hover {
    color: var(--uc-accent-color) !important;
}

.list-style li {
    position: relative;
    margin-bottom: 10px;
    list-style: none;
}

.list-style li::before {
    position: relative;
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    font-size: 12px;
    color: var(--theme-primary-color);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--theme-light-color);
    text-align: center;
}

.list-style-hyphen {
    margin-top: 20px;
}

.list-style-hyphen li {
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 30px;
    list-style: none;
}

.list-style-hyphen li:before {
    content: "";
    position: absolute;
    height: 1px;
    width: 20px;
    background-color: var(--uc-primary-color);
    top: 50%;
    left: 0;
}

.dotted-line-list li {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 10px;
    align-items: center;
    width: 100%;
    font-family: var(--uc-primary-font);
    letter-spacing: 1px;
}

.dotted-line-list li span {
    background-color: var(--uc-primary-color);
    display: block;
    position: relative;
    z-index: 10;
}

.dotted-line-list li::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    border-bottom: 1px dashed;
    border-bottom-color: var(--uc-white-color);
    z-index: 1;
}

.list-style-none li {
    list-style: none;
}

/*==========================================================
Form Style
==========================================================*/
label {
    font-size: 14px;
    line-height: 1;
    font-family: var(--uc-general-font);
    letter-spacing: .5px;
}

.quick-search {
    padding: 24px;
}

.quick-search-2 {
    padding: 24px;
    background-color: rgba(240, 236, 228, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid;
    border-color: rgba(212, 175, 55, 0.2);
}

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

.quick-search .field-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.quick-search .form-select:focus,
.quick-search .form-control:focus {
    box-shadow: none;
    border-color: var(--uc-dark-color);
}

.field-search label {
    font-size: 11px;
    margin-bottom: 10px;
}

.field-search .form-select,
.quick-search .form-select {
    padding-right: 30px !important;
}

.form-select,
.form-control {
    border-radius: 5px;
    min-height: 40px;
    padding: 10px 12px;
    border: 0;
    border: 1px solid;
    border-color: var(--uc-form-control-border-color);
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 0;
    color: var(--uc-default-color);
    font-family: var(--uc-general-font);
    line-height: 1.2;
    background-color: transparent;
    background-position: right 10px center;
    background-size: 10px;
}

.form-select {
    padding-right: 25px;
}

.form-select:focus,
.form-control:focus,
.form-select:focus-visible,
.form-control:focus-visible {
    background-color: transparent;
    outline: none;
    box-shadow: none;
}

.form-select option,
.form-control option {
    font-size: 13px;
    margin-bottom: 0;
    font-family: var(--uc-general-font);
}

input::placeholder,
.form-control::placeholder,
input::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
    color: var(--uc-default-color);
    font-size: 14px;
    font-weight: 400;
    font-family: var(--uc-general-font);
}

.form-icon-right .icon-font,
.form-icon-right .fas {
    right: 5px;
    top: 50%;
    position: absolute;
    color: var(--uc-dark-color);
}

.form-icon-left .icon-font,
.form-icon-left .fas {
    left: 16px;
    top: 50%;
    position: absolute;
    color: var(--uc-dark-color);
}

.price-toggle {
    text-align: left;
}

.header-search-form .quick-search {
    padding: 20px 0;
}

.banner-search-form {
    background: rgba(255, 255, 255, 0.2);
}

.slider-signup input {
    width: 100%;
    background: #fff;
    line-height: 47px !important;
    height: 56px;
    border-radius: 0;
    padding: 8px 130px 8px 20px;
}

.slider-signup button {
    position: absolute;
    line-height: 46px;
    border-radius: 0;
    right: 5px;
    top: 5px;
    width: 120px;
    font-size: 15px;
    text-align: center;
}

.entry-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: start;
    align-items: start;
}

.property-search-form.on-slider {
    position: relative;
    z-index: 100;
    margin-top: -235px;
    margin-bottom: 50px;
}

.banner-search {
    padding-top: 220px;
    padding-bottom: 500px;
}

.form-boder select,
.widget.agent-search select {
    border: 1px solid var(--uc-gray-color);
    padding: 10px 30px 10px 10px;
    width: 100%;
    font-size: 14px;
    color: var(--uc-general-color);
    background-position: calc(100% - 20px);
}

.banner-search-filter .form-control,
.banner-search-filter .form-select {
    border: none;
    padding-left: 8px;
    padding-right: 8px;
    background-position: right 5px center;
    border-bottom: 1px solid;
    border-bottom-color: rgba(0, 0, 0, 0.15);
    border-radius: 0;
}

.banner-search-filter label {
    font-size: 11px;
}

.banner-search-filter .form-select {
    padding-right: 20px;
}

.banner-search-filter .form-control::placeholder,
.banner-search-filter .form-select::placeholder,
.banner-search-filter .form-select option,
.banner-search-filter .form-select option:checked,
.banner-search-filter .form-select:has(option:not([value=""]):checked) {
    color: var(--uc-dark-color);
    font-size: 13px;
}

.banner-search-filter .formicon-left .form-control {
    padding-left: 20px;
}

.banner-search-filter .formicon-left .icon {
    position: relative;
    display: flex;
}

.banner-search-filter .formicon-left .icon svg {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Sell page valuation form */

.valuation-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 580px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.valuation-title {
    font-family: var(--uc-primary-font);
    font-weight: 400;
    font-size: 26px;
    margin-bottom: 30px;
}

.valuation-title em {
    font-style: italic;
}

.valuation-card .field-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.valuation-card .form-group {
    margin-bottom: 22px;
}

.valuation-card .form-control,
.valuation-card .form-select {
    background-color: var(--uc-light-color);
    border-radius: 8px;
    padding: 12px;
    width: 100%;
}

.valuation-card .form-select {
    padding-right: 25px;
}

.valuation-card .form-control:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.30);
    box-shadow: none;
}

.valuation-card .input-with-icon {
    position: relative;
}

.valuation-card .input-with-icon svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.valuation-card .input-with-icon .form-control {
    padding-left: 35px;
}

.valuation-card .btn-request {
    background: var(--uc-dark-color);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    padding: 20px;
    height: 45px;
    border-radius: 8px;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.valuation-card .btn-request:hover {
    background: var(--uc-primary-color);
    color: #fff;
}

.valuation-card .form-footnote {
    text-align: center;
    font-size: 13px;
    margin-top: 16px;
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .valuation-card {
        padding: 28px 22px;
    }

    .valuation-title {
        font-size: 22px;
    }
}

/*==========================================================
# Number Counter
==========================================================*/
.counter-style-1 {
    position: relative;
}

.counter-style-1 .entry-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.counter-style-1 .seperator {
    position: absolute;
    right: 0;
    height: 100%;
    width: 1px;
    top: 0;
    background-color: #212121;
}

.achivment-block-2 {
    border-width: 1px 0 1px 0;
    border-style: solid;
    border-color: rgb(212, 175, 55, 0.2);
}

.counter-style-2 {
    position: relative;
    height: 100%;
}

.counter-style-2 .entry-wrapper {
    padding: 24px;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}

.counter-style-2 .entry-thumbnail span {
    padding: 15px;
    border: 1px solid;
    border-color: rgb(212, 175, 55, 0.2);
    line-height: 1;
    display: flex;
    align-items: center;
    border-radius: 6px;
}

.counter-style-2 .counter-num {
    font-size: 30px;
    font-family: var(--uc-primary-font);
    font-weight: 700;
    line-height: 1.2;
}

.counter-style-2 .seperator {
    position: absolute;
    right: 0;
    height: 100%;
    width: 1px;
    top: 0;
    background-color: rgb(212, 175, 55, 0.2);
}


/*==========================================================
# Property Block
==========================================================*/
.property-block .entry-wrapper {
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.property-block .entry-thumbnail {
    position: relative;
    overflow: hidden;
    height: auto;
}

.property-block .entry-thumbnail img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.property-block .post-meta {
    display: flex;
    align-items: center;
}

.property-block .entry-thumbnail .entry-thumbnail-image,
.property-block .entry-thumbnail>a {
    position: relative;
    display: flex;
}

.property-block .property-type,
.property-block .property-type a {
    font-family: var(--uc-accent-font);
    font-size: 11px;
    text-decoration: none;
    color: var(--uc-default-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    display: block;
}

.property-block .entry-thumbnail .type {
    top: 10px;
    left: 10px;
    position: absolute;
    z-index: 10;
    display: flex;
    gap: 5px;
}

.property-block .entry-thumbnail .type span {
    padding: 0 10px;
    font-size: 11px;
    font-weight: 500;
    font-family: var(--uc-accent-font);
    letter-spacing: 0.5px;
    border-radius: 3px;
    height: 25px;
    line-height: 1;
    display: inline-block;
    color: var(--uc-white-color);
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.property-block .entry-header .badge .rent,
.property-block .type .rent {
    background-color: #f95e3b;
}

.property-block .entry-header .badge .new,
.property-block .type .new {
    background-color: var(--uc-primary-color);
}

.property-block .entry-header .badge .featured,
.property-block .type .featured {
    background-color: var(--uc-dark-color);
}

.property-block .entry-header .badge .sale,
.property-block .type .sale {
    background-color: var(--uc-white-color);
}

.property-block .entry-header .badge .hot,
.property-block .type .hot {
    background-color: red;
}

.property-block .listing-price {
    line-height: 1;
}

.quick-meta {
    margin: 0;
}

.quick-meta li {
    list-style: none;
}

.entry-thumbnail .quick-meta {
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.entry-thumbnail .quick-meta li a {
    color: #000;
    font-size: 15px;
    display: flex;
    width: 35px;
    height: 35px;
    line-height: 1;
    border-radius: 3px;
    background-color: var(--uc-white-color);
    text-align: center;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.property-block .property-seller-name {
    display: flex;
    gap: 10px;
}

.property-block .property-seller-name img {
    width: 30px;
    height: 30px;
    border-radius: 100%;
}

.property-block .property-seller-name a {
    text-decoration: none;
}

.property-block .post-date {
    font-family: var(--uc-primary-font);
    font-size: 13px;
    color: var(--uc-default-color);
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1;
}

.property-block .listing-title,
.property-block .listing-title a {
    font-weight: 600;
    color: var(--uc-dark-color);
    font-size: 17px;
    text-decoration: none;
    line-height: 30px;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.property-block .listing-title:hover,
.property-block .listing-title a:hover {
    color: var(--uc-primary-color);
}

.property-block ul {
    margin: 0;
}

.property-block ul li {
    list-style: none;
}

.entry-footer .entry-author .property-author a {
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.entry-footer .entry-author .property-author img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

.entry-footer .message-author a {
    font-family: var(--uc-accent-font);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    padding: 0 10px;
    line-height: 35px;
    display: table;
    color: var(--uc-dark-color);
    background-color: var(--uc-light-color);
    text-decoration: none;
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.property-grid-1 .entry-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.property-grid-1 .entry-footer a.btn {
    background: var(--uc-dark-color);
    color: rgb(248, 248, 246);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    padding: 11px 18px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.04em;
    height: auto;
}

.property-grid-1 .listing-price {
    font-weight: 700;
    color: var(--uc-dark-color);
    display: flex;
    font-family: var(--uc-primary-font);
    font-size: 21px;
    align-items: center;
    gap: 5px;
    line-height: 1;
}

.property-grid-1.property-block .property-type,
.property-grid-1.property-block .property-type a {
    text-transform: uppercase;
}

.property-grid-1 .listing-price small {
    font-size: 13px;
    font-weight: 500;
    color: var(--uc-default-color);
    letter-spacing: 0.5px;
}

.property-grid-1 .entry-wrapper {
    background-color: #fff;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
}

.property-grid-1 .entry-content-wrapper {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.property-grid-1 .listing-location {
    display: flex;
    width: 100%;
    font-size: 13px;
    color: var(--uc-text-color2);
    align-items: center;
    gap: 5px;
    line-height: 1;
}

.property-grid-1 .property-info {
    display: flex;
    gap: 20px;
    border-radius: 5px;
    align-items: center;
    width: 100%;
    border-top: 1px solid;
    border-top-color: #ececec;
    padding-top: 15px;
}

.property-grid-1 .property-info li {
    font-size: 13px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.property-grid-1 .post-meta {
    justify-content: space-between;
    align-items: center;
}

/* Property Grid 2 */

.property-grid-2 .entry-wrapper {
    background: var(--uc-secondary-color);
    overflow: hidden;
    height: 100%;
    transition: border-color 0.25s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.property-grid-2 .entry-wrapper:hover {
    border-color: rgba(var(--uc-primary-color-rgba), 0.8);
}

.property-grid-2 .entry-thumbnail::after {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(to top, rgba(10, 9, 6, 0.7) 0%, transparent 60%);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.property-grid-2 .listing-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--uc-primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    z-index: 10;
}

.property-grid-2 .entry-content-wrapper {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.property-grid-2 .entry-footer {
    display: flex;
    justify-content: space-between;
    gap: 1.25rem;
    font-size: 13px;
    color: rgba(240, 236, 228, 0.4);
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.property-grid-2 .entry-footer a.btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: rgb(212, 175, 55);
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.04em;
    height: auto;
}

.property-grid-2 .listing-stats {
    display: flex;
    gap: 18px;
    font-size: 13.5px;
    align-items: center;
}

.property-grid-2 .property-info {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: start;
    width: 100%;
}

.property-grid-2 .property-info li {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
    font-weight: 500;
}

.property-grid-2 .property-type a {
    color: var(--uc-white-color);
    text-transform: capitalize;
    background-color: var(--uc-secondary-color);
    padding: 5px 10px;
    font-weight: 400;
    letter-spacing: 1px;
    border-radius: 3px;
}

.property-grid-2 .listing-title {
    font-weight: 700;
    color: var(--uc-dark-color);
    font-family: var(--uc-primary-font);
    font-size: 20px;
}

.property-grid-2 .listing-price {
    position: absolute;
    bottom: 14px;
    left: 14px;
    font-size: 20px;
    font-weight: 800;
    color: rgb(212, 175, 55);
    z-index: 10;
}

.property-grid-2 .listing-location {
    display: flex;
    width: 100%;
    font-size: 14px;
    align-items: center;
    gap: 5px;
}

.property-grid-2 .listing-divider {
    border-top: 1px solid;
    border-color: rgba(0, 0, 0, 0.2);
}

/* Property Grid 3 */

.property-grid-3 .listing-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.property-grid-3 .listing-price {
    font-size: 18px;
    font-weight: 900;
    color: var(--uc-primary-color);
    letter-spacing: -0.02em;
    white-space: nowrap;
    margin-left: 8px;
}

.property-grid-3 .entry-thumbnail .quick-meta {
    top: 14px;
    right: 14px;
}

.property-grid-3 .listing-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--uc-primary-color);
    color: rgb(255, 255, 255);
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    z-index: 10;
    cursor: default;
}

.property-grid-3 .listing-title {
    font-size: 17px;
    font-weight: 800;
    margin: 0px;
    letter-spacing: -0.01em;
}

.property-grid-3 .property-type a {
    color: var(--uc-white-color);
    text-transform: capitalize;
    background-color: var(--uc-primary-color);
    padding: 3px 5px;
    font-weight: 400;
    letter-spacing: 1px;
}

.property-grid-3 .entry-header .post-meta {
    gap: 10px;
}

.property-grid-3 .entry-wrapper {
    background-color: var(--uc-white-color);
}

.property-grid-3 .entry-content-wrapper {
    padding: 20px;
}

.property-grid-3 .listing-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: rgb(136, 136, 136);
    margin-bottom: 1rem;
}

.property-grid-3 .property-info {
    display: flex;
    gap: 15px;
    padding: 0;
    justify-content: start;
    width: 100%;
}

.property-grid-3 .property-info li span {
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    font-size: 13px;
    margin-right: 5px;
}

.property-grid-3 .property-info li {
    color: var(--uc-dark-color);
    font-size: 14px;
}

.property-grid-3 .entry-footer {
    padding-top: 1rem;
    border-top: 1px solid rgb(238, 238, 238);
}

.property-grid-3 .listing-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 13px;
    color: rgb(85, 85, 85);
}

.property-grid-3 .listing-stats span {
    display: flex;
    align-items: center;
    gap: .25rem;
}

/* Property Grid 4 */
.property-grid-4 .entry-wrapper {
    background-color: #fff;
    box-shadow: rgba(11, 22, 40, 0.07) 0px 2px 12px;
}

.property-grid-4 .entry-wrapper:hover {
    box-shadow: rgba(11, 22, 40, 0.14) 0px 12px 40px;
}

.property-grid-4 .entry-wrapper:hover img {
    transform: scale(1.05);
}

.property-grid-4 .property-type {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 10;
}

.property-grid-4 .property-type a {
    padding: 0 10px;
    font-size: 11px;
    font-weight: 400;
    font-family: var(--uc-accent-font);
    letter-spacing: 0.5px;
    border-radius: 3px;
    height: 22px;
    line-height: 22px;
    display: inline-block;
    background-color: var(--uc-primary-color);
    color: var(--uc-white-color);
}

.property-grid-4 .entry-content-wrapper {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.property-grid-4 .listing-location {
    align-items: center;
    display: flex;
    gap: 5px;
    font-size: 13px;
}

.property-grid-4 .listing-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 13px;
    color: rgb(85, 85, 85);
}

.property-grid-4 .entry-content {
    border-top: 1px solid rgb(240, 239, 236);
    border-bottom: 1px solid rgb(240, 239, 236);
    padding: .75rem 0;
}

.property-grid-4 .listing-stats span {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.property-grid-4 .entry-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-grid-4 .listing-price {
    font-weight: 600;
    color: var(--uc-dark-color);
    display: flex;
    flex-direction: column;
    font-size: 18px;
    gap: 5px;
    line-height: 1;
    gap: 5px;
    justify-content: start;
}

.property-grid-4 .listing-price span:first-child {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--uc-default-color);
    letter-spacing: 0.5px;
}

.property-grid-4 .listing-price .price {
    display: flex;
    align-items: end;
    gap: 3px;
}

.property-grid-4 .listing-price small {
    color: var(--uc-default-color);
    font-weight: 400;
}

.property-grid-4 .entry-footer a.btn {
    background: var(--uc-dark-color);
    color: rgb(248, 248, 246);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    padding: 11px 18px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.04em;
    height: auto;
}

.property-grid-4 .entry-footer a.btn:hover {
    background-color: var(--uc-primary-color);
}

.load-more-properties {
    font-size: 15px;
    font-weight: 500;
}

/* Property Grid 5 */
.property-grid-5 .entry-wrapper {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    box-shadow: rgba(11, 22, 40, 0.07) 0px 2px 12px;
}

.property-grid-5 .entry-wrapper:hover {
    background: rgb(255, 255, 255);
    box-shadow: rgba(11, 22, 40, 0.14) 0px 12px 36px;
}

.property-grid-5 .entry-thumbnail img {
    display: block;
}

.property-grid-5 .entry-wrapper:hover img {
    transform: scale(1.05);
}

.property-grid-5 .listing-badge {
    background: rgb(243, 242, 239);
    color: rgb(11, 22, 40);
    color: var(--uc-dark-color);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.4px;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
}

.property-grid-5 .entry-content-wrapper {
    padding: 16px 18px 18px;
}

.property-grid-5 .listing-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.property-grid-5 .listing-card-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--uc-dark-color);
    margin-bottom: 5px;
    display: inline-block;
    transition: all ease-in-out 300ms;
}

.property-grid-5 .listing-card-title:hover {
    color: var(--uc-primary-color);
}

.property-grid-5 .listing-card-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--uc-dark-color);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-grid-5 .listing-card-price small {
    font-size: 13px;
    color: var(--uc-default-color);
    font-weight: 400;
}

.property-grid-5 .listing-card-location {
    font-size: 13px;
    margin-bottom: 12px;
}

.property-grid-5 .listing-card-divider {
    border-top: 1px solid;
    border-top-color: rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
}

.property-grid-5 .listing-card-stats {
    display: flex;
    gap: 14px;
    font-size: 14px;
    color: var(--uc-dark-color);
}

.property-grid-5 .listing-card-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/*=======================================================
# Box Style
========================================================*/
.box-style-1 .entry-wrapper {
    padding: 40px;
    text-align: center;
    display: flex;
    gap: 20px;
    flex-direction: column;
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.box-style-1 .entry-wrapper:hover {
    -webkit-box-shadow: 0 70px 70px rgba(0, 0, 0, .2);
    box-shadow: 0 70px 70px rgba(0, 0, 0, .2);
    -webkit-transform: translate(0, -10px);
    -moz-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.box-style-1 .entry-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box-style-1 .entry-content {
    color: var(--uc-dark-color);
    letter-spacing: 1px;
}

.box-style-1 .entry-title,
.box-style-1 .entry-title a {
    text-transform: uppercase;
    color: var(--uc-dark-color);
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.box-style-2 .entry-wrapper {
    gap: 1rem;
    flex-direction: row;
    align-items: start;
}

.box-style-2 .entry-thumbnail-icon {
    min-width: 40px;
    min-height: 40px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.25);
    color: var(--uc-primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-style-2 .entry-title {
    font-family: var(--uc-accent-color);
    line-height: 1;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 400;
    font-size: 15px;
}

.box-style-2 .entry-content span {
    font-size: 13px;
}

/*===============================================================================
jSlider Style Start
==================================================================================*/
.jslider .jslider-pointer {
    background-color: var(--uc-primary-color);
    border: 4px solid #fff;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .20) !important;
}

.jslider {
    display: block;
    width: 95%;
    height: 1em;
    position: relative;
    top: 30px;
}

.jslider table {
    width: 100%;
    border-collapse: collapse;
    border: 0;
}

.jslider td,
.jslider th {
    padding: 0;
    vertical-align: top;
    text-align: left;
    border: 0;
}

.jslider table,
.jslider table tr,
.jslider table tr td {
    width: 100%;
    vertical-align: top;
}

.jslider .jslider-bg {
    position: relative;
}

.jslider .jslider-bg .l {
    width: 10%;
    background-position: 0 0;
    left: 0;
    background: var(--uc-light-color);
}

.jslider .jslider-bg .f {
    width: 80%;
    left: 10%;
    background-repeat: repeat-x;
    background-position: 0 -20px;
    background: var(--uc-light-color);
}

.jslider .jslider-bg .r {
    background-position: right 0;
    width: 100%;
    right: -18px;
    background: var(--uc-light-color);
}

.jslider .jslider-bg i {
    height: 4px;
    position: absolute;
    font-size: 0;
    top: 0;
}

.jslider .jslider-bg .v {
    position: absolute;
    width: 60%;
    left: 20%;
    top: 0;
    height: 4px;
    background: var(--uc-primary-color);
}

.jslider .jslider-pointer {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-position: 0 -60px;
    position: absolute;
    left: 20%;
    top: -7px;
    cursor: pointer;
    cursor: hand;
}

.jslider .jslider-pointer-hover {
    background-position: -20px -60px;
}

.jslider .jslider-label {
    font-size: 9px;
    line-height: 12px;
    color: black;
    opacity: 0.4;
    white-space: nowrap;
    padding: 0px 2px;
    position: absolute;
    top: -18px;
    left: 0px;
}

.price-filter .jslider .jslider-label,
.area-filter .jslider .jslider-label {
    display: none !important
}

.jslider .jslider-label-to {
    left: auto;
    right: 0;
}

.jslider-value>span {
    float: right;
}

.area-filter .jslider-value>span {
    float: left;
    padding-right: 3px
}

.jslider .jslider-value {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    padding: 1px 2px 0;
    position: absolute;
    top: -30px;
    left: 20%;
    background: transparent;
    line-height: 13px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
}

.jslider .jslider-value-to {
    margin-right: -18px;
}

.jslider .jslider-label small,
.jslider .jslider-value small {
    position: relative;
    top: -0.4em;
}

.jslider .jslider-scale {
    position: relative;
    top: 9px;
}

.jslider .jslider-scale span {
    position: absolute;
    height: 4px;
    border-left: 1px solid #999;
    font-size: 0;
}

.jslider .jslider-scale ins {
    font-size: 9px;
    text-decoration: none;
    position: absolute;
    left: 0px;
    top: 5px;
    color: #999;
}

.jslider-single .jslider-pointer-to,
.jslider-single .jslider-value-to,
.jslider-single .jslider-bg .v,
.jslider-limitless .jslider-label {
    display: none;
}

.price-range-toggle {
    width: 285px;
    padding: 30px;
    background: #fff;
    border-radius: 6px;
    height: 100px;
    right: 0;
    top: 130%;
    position: absolute;
    box-shadow: 0px 0px 50px 0px rgba(32, 32, 32, 0.15);
    visibility: hidden;
    opacity: 0;
    z-index: 0;
}

.price-range-toggle.visible {
    visibility: visible;
    opacity: 1;
    z-index: 10;
}

.aditional-features:before,
.price-range-toggle:before {
    background-color: #ffffff;
    content: "";
    height: 20px;
    left: auto;
    margin: 0 auto;
    position: absolute;
    right: 20%;
    top: -5px;
    width: 20px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.opacity-1 {
    opacity: 1 !important
}

/*====================================
Newslatter Subscrible
=====================================*/
.newslatter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newslatter-form input {
    padding: 10px 12px;
    background-color: transparent;
    width: 300px;
    border: 1px solid;
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.newsletter-section {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-weight: 400;
    font-size: 30px;
    color: #fff;
    margin-bottom: 14px;
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    margin-bottom: 28px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.newsletter-input {
    background: #fff;
    border: none;
    border-radius: 5px;
    padding: 14px 20px;
    font-size: 14px;
    width: 320px;
    max-width: 100%;
    color: var(--uc-dark-color);
}

.newsletter-input::placeholder {
    color: #9A9DA6;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(203, 163, 95, 0.35);
}

.btn-subscribe {
    background: var(--uc-primary-color);
    color: var(--uc-dark-color);
    font-weight: 500;
    font-size: 14px;
    padding: 14px 26px;
    border-radius: 5px;
    border: none;
    white-space: nowrap;
    height: auto;
}

.btn-subscribe:hover {
    background: var(--uc-primary-color);
    color: var(--uc-dark-color);
}

.newsletter-section .icon-circle {
    font-size: 40px;
    margin-bottom: 15px;
}

@media (max-width: 480px) {
    .newsletter-title {
        font-size: 24px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-input {
        width: 100%;
    }
}

/*====================================
Owl Carousel Style Start
=====================================*/
.owl-carousel.dot-disable .owl-dots,
.owl-carousel.nav-disable .owl-nav {
    display: none !important
}

.owl-outer-20 .owl-stage-outer {
    padding: 20px;
    margin: -20px
}

.owl-carousel .owl-nav button span {
    display: block;
    margin-top: -5px
}

.owl-carousel.nav-top-right .owl-nav {
    position: absolute;
    right: 0;
    top: -70px;
}

.owl-carousel.nav-top-right .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;
    border-radius: 5px;
    background-color: var(--uc-light-color);
    color: var(--uc-dark-color);
    margin-left: 5px;
}

.owl-carousel.nav-between-in .owl-nav button.owl-prev {
    left: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}

.owl-carousel.nav-between-in .owl-nav button.owl-next {
    right: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}

.owl-carousel.nav-between-in .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 40px;
    border-radius: 5px;
    background-color: var(--uc-dark-color);
    color: var(--uc-white-color);
    margin-left: 5px;
}

.owl-carousel.nav-top-right .owl-nav button:hover {
    background-color: var(--uc-primary-color);
    color: var(--uc-white-color);
}

.owl-carousel button.owl-dot.active {
    width: 10px;
    height: 10px;
    background-color: var(--uc-primary-color) !important;
    border-radius: 50%;
    border: 3px solid #e0e2e3;
}

.owl-carousel button.owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: var(--uc-dark-color);
    border: 3px solid #fff;
}

.testimonial-simple blockquote {
    font-size: 16px;
    color: #fff;
    line-height: 34px;
    padding: 30px 0;
    border: none;
}

.owl-carousel .owl-dots {
    margin-top: 15px;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

/*===============================================================================
# Agent Block
================================================================================*/
.member-block-1 {
    width: 100%;
    padding: 35px;
    background-color: #fff;
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.10);
    border-radius: 8px;
}

.member-block-1 .entry-wrapper {
    align-items: center;
    gap: 1rem;
}

.member-block-1:hover {
    -webkit-transform: translate(0, -10px);
    -moz-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.member-block-1 .entry-thumbnail {
    width: 80px;
}

.member-block-1 .entry-thumbnail img {
    border-radius: 100%;
}

.member-block-1 .entry-content-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.member-block-1 .entry-content-wrapper .member-name a {
    font-size: 18px;
    font-weight: 600;
    color: var(--uc-dark-color);
    text-decoration: none;
}

.member-block-1 .entry-content-wrapper .designation {
    display: inline-block;
    font-family: var(--uc-primary-font);
    line-height: 1;
    font-size: 13px;
}

.member-block-1 .entry-content-wrapper {
    width: 100%;
}

.member-block-1 .btn-link {
    width: 100%;
    padding: .65rem;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.8);
    display: block;
    border-radius: 5px;
}

.member-block-1 .btn-link:hover {
    color: var(--uc-primary-color);
    border-color: var(--uc-primary-color);
}

.member-block-2 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
}

.member-block-2:hover {
    border-radius: 16px;
    box-shadow: rgba(11, 22, 40, 0.18) 0px 20px 48px;
    transform: translateY(-6px);
}

.member-block-2 .agent-photo-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.member-block-2 .agent-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-block-2 .luxury-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--uc-white-color);
    color: var(--uc-dark-color);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 13px;
    border-radius: 20px;
}

.member-block-2 .agent-body {
    padding: 22px 22px 20px;
}

.member-block-2 .agent-name {
    font-weight: 400;
    font-size: 21px;
    color: var(--uc-dark-color);
    margin-bottom: 4px;
}

.member-block-2 .agent-role {
    font-size: 14px;
    margin-bottom: 8px;
}

.member-block-2 .agent-location {
    font-size: 13px;
    color: #4B4F58;
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.member-block-2 .agent-location i {
    color: var(--gold);
    font-size: 12px;
    margin-right: 5px;
}

.member-block-2 .agent-divider {
    border-top: 1px solid;
    border-top-color: rgba(0, 0, 0, 0.15);
    margin-bottom: 16px;
}

.member-block-2 .agent-stats {
    display: flex;
    text-align: center;
    margin-bottom: 20px;
}

.member-block-2 .stat-item {
    flex: 1;
    border-right: 1px solid;
    border-right-color: rgba(0, 0, 0, 0.15);
}

.member-block-2 .stat-item:last-child {
    border-right: none;
}

.member-block-2 .stat-value {
    font-size: 17px;
    font-family: var(--uc-primary-font);
    font-weight: 600;
    color: var(--uc-dark-color);
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-block-2 .stat-value i {
    color: var(--uc-primary-color);
    font-size: 12px;
    margin-right: 3px;
}

.member-block-2 .stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--uc-default-color);
}

.member-block-2 .agent-actions {
    display: flex;
    gap: 10px;
}

.member-block-2 .btn-view-profile {
    background: var(--uc-dark-color);
    color: #fff;
    padding: 12px;
    border: none;
    flex: 1.3;
}

.member-block-2 .btn-view-profile:hover {
    background: #1a2338;
    color: #fff;
}

.member-block-2 .btn-contact {
    background: #fff;
    color: var(--uc-dark-color);
    font-weight: 500;
    font-size: 14px;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
    flex: 1;
    text-align: center;
}

.member-block-2 .btn-contact:hover {
    border-color: var(--uc-dark-color);
    color: var(--uc-dark-color);
}

.member-block-2 .agent-cta {
    margin: 0 auto;
    text-align: center;
}

.member-block-2 .icon-circle {
    width: 56px;
    height: 56px;
    background: var(--uc-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
}

.member-block-2 .icon-circle i {
    color: var(--uc-white-color);
    font-size: 22px;
}

.member-block-2 .agent-cta-title {
    font-style: italic;
    font-weight: 400;
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
}

.member-block-2 .agent-cta-title .accent {
    color: var(--uc-primary-color);
}

.member-block-2 .agent-cta-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 auto 34px;
}

.member-block-2 .agent-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.member-block-2 .btn-apply-now {
    background: var(--uc-primary-color);
    color: var(--uc-dark-color);
    font-weight: 500;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 10px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: auto;
}

.member-block-2 .btn-apply-now:hover {
    color: var(--uc-dark-color);
}

.member-block-2 .btn-learn-more {
    background: transparent;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 10px;
    border: 1px solid var(--uc-light-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.member-block-2 .btn-learn-more:hover {
    border-color: var(--uc-primary-color);
    color: var(--uc-primary-color);
}

.team-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.team-title {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 0;
}

.view-all-link {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid;
    border-bottom-color: rgba(0, 0, 0, 0.15);
    padding-bottom: 3px;
}

.member-block-3 .team-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: #eee;
    margin-bottom: 16px;
}

.member-block-3 .team-name {
    font-weight: 500;
    font-size: 16px;
    color: var(--uc-dark-color);
    margin-bottom: 2px;
    display: inline-block;
    transition: all 300ms ease-in-out;
}

.member-block-3 .team-name:hover {
    color: var(--uc-primary-color);
}

.member-block-3 .team-role {
    color: #8a8a83;
    font-size: 13px;
    margin-bottom: 1rem;
}

.member-block-3 .team-meta {
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid;
    border-bottom-color: rgba(0, 0, 0, 0.15);
    padding-bottom: 10px;
    transition: all 300ms ease-in-out;
}

.member-block-3 .entry-wrapper:hover .team-meta {
    border-bottom-color: var(--uc-primary-color);
}

@media (max-width: 576px) {
    .member-block-2 .agent-cta-title {
        font-size: 28px;
    }

    .member-block-2 .agent-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .member-block-2 .btn-apply-now,
    .member-block-2 .btn-learn-more {
        justify-content: center;
    }
}

.agent-cta {
    margin: 0 auto;
    text-align: center;
}

.agent-cta .icon-circle {
    width: 56px;
    height: 56px;
    background: var(--uc-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 26px;
}

.agent-cta .icon-circle i {
    color: var(--uc-white-color);
    font-size: 22px;
}

.agent-cta .agent-cta-title {
    font-style: italic;
    font-weight: 400;
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
}

.agent-cta .agent-cta-title .accent {
    color: var(--uc-primary-color);
}

.agent-cta .agent-cta-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 auto 34px;
}

.agent-cta .agent-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.agent-cta .btn-apply-now {
    background: var(--uc-primary-color);
    color: var(--uc-dark-color);
    font-weight: 500;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 10px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: auto;
}

.agent-cta .btn-apply-now:hover {
    color: var(--uc-dark-color);
}

.agent-cta .btn-learn-more {
    background: transparent;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 10px;
    border: 1px solid var(--uc-light-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.agent-cta .btn-learn-more:hover {
    border-color: var(--uc-primary-color);
    color: var(--uc-primary-color);
}

@media (max-width: 576px) {
    .agent-cta .agent-cta-title {
        font-size: 28px;
    }

    .agent-cta .agent-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .agent-cta .btn-apply-now,
    .agent-cta .btn-learn-more {
        justify-content: center;
    }
}

.meet-team-block .header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 34px;
}

.meet-team-block .eyebrow-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.meet-team-block .eyebrow-line {
    width: 24px;
    height: 1.5px;
    background: var(--uc-primary-color);
    display: inline-block;
}

.meet-team-block .eyebrow-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--uc-primary-color);
}

.meet-team-block .section-title {
    font-size: 34px;
    font-weight: 500;
    margin: 0;
}

.meet-team-block .view-all-link {
    font-size: 14px;
    font-weight: 500;
    color: #3a4a63;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.meet-team-block .view-all-link:hover {
    color: #14213d;
}

.team-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s, transform 0.25s;
}

.team-card:hover {
    box-shadow: rgba(11, 22, 40, 0.18) 0px 20px 48px;
    transform: translateY(-6px);
}

.team-card .team-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.team-card .team-body {
    padding: 16px 18px 18px;
}

.team-card .team-name {
    font-weight: 500;
    font-size: 21px;
    display: inline-block;
    color: var(--uc-dark-color);
    margin-bottom: 4px;
    font-family: var(--uc-primary-font);
}

.team-card .team-role {
    font-size: 12px;
    letter-spacing: 0.05em;
    color: #939393;
    margin-bottom: 10px;
}

.team-card .team-phone {
    font-size: 13px;
    color: #4d4d47;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/*=================================================
About Page
=================================================*/
.hero-row {
    min-height: 70vh;
}

.hero-left {
    display: flex;
    align-items: center;
}

.hero-row .hero-content {
    max-width: 480px;
}

.hero-row .eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
}

.hero-row .eyebrow-line {
    width: 32px;
    height: 2px;
    background: #1a1a1a;
    display: inline-block;
}

.hero-row .hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.01em;
    margin-bottom: 26px;
}

.hero-row .hero-title .underline {
    text-decoration: none;
    border-bottom: 4px solid;
    border-bottom-color: var(--uc-dark-color);
    padding-bottom: 2px;
}

.hero-row .hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #5c5c56;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
}

.btn-dark-custom {
    background: var(--uc-dark-color);
    padding: 14px 22px;
    gap: 8px;
    text-decoration: none;
    height: auto;
}

.btn-outline-custom {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    border-radius: 6px;
    padding: 14px 22px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
}

.hero-right {
    position: relative;
    padding: 0;
    min-height: 400px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

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

    .hero-left {
        padding: 50px 0;
    }

    .hero-right {
        min-height: 420px;
    }
}

/* --- OUR STORY --- */
.story-title {
    font-size: 42px;
    font-weight: 400;
}

.story-text {
    font-size: 15.5px;
    line-height: 1.75;
    color: #4d4d47;
    margin-bottom: 20px;
}

.check-list-plain {
    list-style: none;
    padding: 0;
    margin-top: 28px;
}

.check-list-plain li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
    color: #333;
}

.check-list-plain .box {
    width: 18px;
    height: 18px;
    background: #1a1a1a;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-list-plain .box svg {
    width: 11px;
    height: 11px;
}

.story-img-main {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.story-img-side {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.story-img-bottom {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-top: 16px;
}

.story-buttons {
    margin-top: 40px;
    display: flex;
    gap: 14px;
}

/* ---------- CORE VALUES ---------- */
.core-values {
    background: var(--uc-dark-color);
    color: #fff;
}

.core-values .eyebrow-text {
    color: #9a9a94;
}

.values-title {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 40px;
}

.value-card {
    border: 1px solid;
    border-color: #383b4a;
    padding: 45px;
    height: 100%;
    margin: -0.5px;
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.value-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.value-desc {
    font-size: 13.5px;
    color: #9a9a94;
    line-height: 1.6;
}

/* ---------- TIMELINE ---------- */

.timeline-section {
    border-top: 1px solid;
    border-top-color: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid;
    border-bottom-color: rgba(0, 0, 0, 0.5);
}

.timeline-title {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 40px;
}

.timeline-row {
    border-top: 2px solid #1a1a1a;
}

.timeline-col {
    border-right: 2px solid #1a1a1a;
    padding-right: 20px;
}

.timeline-col:last-child {
    border-right: none;
}

.timeline-year {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-top: 30px;
    color: var(--uc-dark-color);
}

.timeline-desc {
    font-size: 13.5px;
    color: #5c5c56;
    line-height: 1.6;
}

/* ---------- CTA ---------- */
.cta-desc {
    font-size: 15px;
    color: #5c5c56;
    line-height: 1.6;
    margin-bottom: 24px;
}

/*=================================================
Hover Effect
=================================================*/
.hover-underline-animation::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: var(--theme-primary-color);
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    opacity: 0;
    visibility: hidden;
}

.hover-shadow-lg {
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.hover-shadow-lg:hover {
    -webkit-box-shadow: 0 70px 70px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 70px 70px rgba(0, 0, 0, .2);
    box-shadow: 0 70px 70px rgba(0, 0, 0, .2);
    -webkit-transform: translate(0, -10px);
    -moz-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.hover-underline-animation:hover::before {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.hover-img-zoom {
    overflow: hidden;
}

.hover-grayscale img,
.hover-img-zoom img {
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.hover-img-zoom:hover img {
    transform: scale(1.05);
}

.hover-grayscale:hover img {
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
}

/*===============================================================================
# Testimonial Block
================================================================================*/
.testimonial-card {
    background: var(--uc-white-color);
    padding: 28px 26px;
    height: 100%;
    border-radius: 8px;
}

.testimonial-card .stars {
    color: var(--uc-primary-color);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial-card .quote-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-card .reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .reviewer img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-card .reviewer-name {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--uc-dark-color);
    line-height: 1.3;
}

.testimonial-card .reviewer-role {
    font-size: 13.5px;
    line-height: 1.3;
}

.review-sm-block {
    background: rgb(255, 255, 255);
    box-shadow: rgba(11, 22, 40, 0.06) 0px 2px 12px;
    max-width: 340px;
}

.review-sm-block img {
    width: 52px;
    height: 52px;
    border: 2px solid;
    border-color: var(--uc-primary-color);
}

.review-sm-block .name {
    font-size: 15px;
    font-weight: 700;
    color: rgb(11, 22, 40);
}

.review-sm-block .designation {
    font-size: 12px;
}

.review-sm-block .experience {
    font-size: 12px;
    color: var(--uc-primary-color);
    margin-top: 2px;
}

.testimonial-block {
    background-color: #f8f7f4;
}

.testimonial-card-2 {
    background: #fff;
    border-radius: 1rem;
    padding: 30px 30px 26px;
    width: 100%;
    box-shadow: rgba(11, 22, 40, 0.07) 0px 2px 12px;
}

.testimonial-card-2 .quote-mark {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.testimonial-card-2 .quote-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.testimonial-card-2 .testimonial-divider {
    border-top: 1px solid #ECE9E1;
    margin-bottom: 18px;
}

.testimonial-card-2 .reviewer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.testimonial-card-2 .reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card-2 .reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid;
    border-color: var(0, 0, 0, 0.3);
    padding: 2px;
    flex-shrink: 0;
}

.testimonial-card-2 .reviewer-name {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.3;
}

.testimonial-card-2 .reviewer-location {
    font-size: 13px;
    line-height: 1.3;
}

.testimonial-card-2 .price-badge {
    background: var(--uc-primary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

@media (max-width: 420px) {
    .testimonial-card-2 .testimonial-card {
        padding: 24px 20px 20px;
    }
}

/*==============================================================
# Post Block
==============================================================*/
.blog-wrap {
    margin: 0 auto;
}

/* ===== FEATURED CARD ===== */
.blog-wrap .featured-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: rgba(11, 22, 40, 0.1) 0px 4px 24px;
}

.blog-wrap .featured-photo {
    height: 100%;
    min-height: 320px;
    overflow: hidden;
}

.blog-wrap .featured-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-wrap .featured-body {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.blog-wrap .badge-featured {
    background: var(--uc-primary-color);
    color: var(--uc-dark-color);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
}

.blog-wrap .badge-tag {
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
}

.tag-market-trends {
    background: #E7E4F7;
    color: #6C5DD3;
}

.tag-buying-guides {
    background: #DDF3E4;
    color: #2E9E5B;
}

.tag-selling-tips {
    background: #FCE7D6;
    color: #C9772E;
}

.tag-rental-advice {
    background: #F1E1F7;
    color: #A24FC4;
}

.tag-investment {
    background: #FBF0CE;
    color: #B5901A;
}

.tag-design-interiors {
    background: #FBE1E4;
    color: #C94F63;
}

.featured-title {
    font-weight: 400;
    color: var(--uc-dark-color);
    margin: 18px 0 14px;
}

.featured-excerpt {
    font-size: 15px;
    color: #5A5E68;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 520px;
}

.author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
}

.author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--uc-dark-color);
    margin-bottom: 5px;
}

.author-meta {
    font-size: 12.5px;
    color: var(--text-muted);
}

.author-meta i {
    margin-right: 4px;
}

.blog-wrap .btn-read-article {
    background: var(--uc-dark-color);
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.blog-wrap .btn-read-article:hover {
    background: var(--uc-primary-color);
    color: #fff;
}

/* ===== BLOG CARDS ===== */
.blog-card .entry-wrapper {
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(11, 22, 40, 0.07) 0px 2px 12px;
    transition: box-shadow 0.25s, transform 0.25s;
    transform: translateY(0px);
    cursor: pointer;
}

.blog-card .entry-wrapper:hover {
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(11, 22, 40, 0.14) 0px 8px 32px;
    transition: box-shadow 0.25s, transform 0.25s;
    transform: translateY(-4px);
}

.blog-card .entry-thumbnail {
    height: 200px;
    overflow: hidden;
}

.blog-card .entry-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
    transform: scale(1);
}

.blog-card .entry-wrapper:hover .entry-thumbnail img {
    transform: scale(1.05);
}

.blog-card .entry-content {
    padding: 24px;
}

.blog-card .blog-tag-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.blog-card .entry-title {
    font-weight: 500;
    font-size: 21px;
    color: var(--uc-dark-color);
    margin-bottom: 8px;
    line-height: 1.35;
    font-family: var(--uc-primary-font);
    margin-bottom: 10px;
    display: inline-block;
}

.blog-card .blog-excerpt {
    font-size: 13.5px;
    color: #6B6F79;
    line-height: 1.55;
    margin-bottom: 16px;
}

.blog-card .blog-divider {
    border-top: 1px solid;
    border-top-color: rgba(0, 0, 0, 0.10);
    margin-bottom: 14px;
}

.blog-card .blog-author-row {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.blog-card .blog-author-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-card .blog-author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-card .blog-author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--uc-dark-color);
    margin-bottom: 5px;
}

.blog-card .blog-author-meta {
    font-size: 11.5px;
    color: var(--text-muted);
}

.blog-card .blog-author-meta i {
    margin-right: 3px;
}

.blog-card .blog-permalink {
    color: var(--uc-accent-color);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.2s, transform 0.2s;
    font-size: 13px;
}

.blog-card:hover .blog-permalink {
    color: var(--uc-accent-color);
    opacity: 1;
    transform: translateX(0px);
    transition: opacity 0.2s, transform 0.2s;
}

@media (max-width: 991px) {
    .featured-photo {
        min-height: 260px;
    }

    .featured-body {
        padding: 32px 28px;
    }

    .featured-title {
        font-size: 24px;
    }
}

/*==============================================================
# Single Post
==============================================================*/
.single-post .status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: .75rem;
}

.single-post .higlight-status {
    background: rgb(17, 17, 17);
    color: rgb(248, 248, 245);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.single-post .simple-status {
    font-size: 13px;
    color: rgba(17, 17, 17, 0.6);
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.single-post .simple-status::before {
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: var(--uc-gray-color);
}

.single-post .entry-title {
    font-weight: 400;
}

.single-post .sub-title {
    font-family: var(--uc-default-font);
    font-weight: 400;
    font-size: 17px;
}

.single-post-meta {
    padding: 10px 0;
    border-width: 1px 0 1px 0;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.15);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.single-post-meta .post-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 2rem;
    border-right: 1px solid;
    border-right-color: rgba(0, 0, 0, 0.15);
}

.single-post-meta .author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
}

.single-post-meta .author-name {
    font-weight: 600;
    margin-bottom: 0;
}

.single-post-meta .post-author span {
    font-size: 13px;
    color: var(--uc-default-color);
    font-weight: 400;
}

.single-post-meta .post-view span,
.single-post-meta .post-time span,
.single-post-meta .post-date span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}

.single-post-meta .post-share {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}

.single-post-meta .post-share a {
    border-radius: 5px;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.single-post-meta .post-share a:hover {
    border-color: rgba(0, 0, 0, 0.35);
}

.single-post .entry-thumbnail-image {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.single-post .entry-thumbnail {
    margin: 1.5rem 0;
}

.single-post blockquote {
    margin: 0px 0px 2rem;
    padding: 1.75rem 2rem;
    border-left: 4px solid rgb(17, 17, 17);
    background: rgb(240, 239, 235);
}

.single-post blockquote p {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: rgb(10, 10, 10);
    margin: 0px 0px 0.75rem;
    font-style: italic;
}

.single-post blockquote cite {
    font-size: 13px;
    font-weight: 600;
    color: rgba(17, 17, 17, 0.5);
    font-style: normal;
}

.single-post .report {
    display: flex;
    gap: 1rem;
    justify-content: start;
    align-items: center;
    margin-bottom: 1.5rem;
}

.single-post .r-block {
    flex-grow: 1;
    padding: 1.25rem;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.single-post .r-block .r-unit {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: rgb(10, 10, 10);
    line-height: 1;
}

.single-post .r-block .r-title {
    font-size: 13px;
    color: rgb(136, 136, 136);
    margin: 0.3rem 0px 0.5rem;
}

.single-post .r-block .r-except {
    font-size: 12px;
    font-weight: 600;
}

.single-post .capture {
    margin: 0px 0px 2rem;
}

.single-post .capture .caption {
    font-size: 12px;
    color: rgba(17, 17, 17, 0.4);
    padding: 0.6rem 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.single-post .card-panel {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px 32px;
    margin-bottom: 40px;
}

.single-post .panel-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.single-post .market-row {
    display: flex;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.single-post .market-row:last-child {
    border-bottom: none;
    padding-bottom: 4px;
}

.single-post .market-row:first-child {
    padding-top: 4px;
}

.single-post .bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1a1a1a;
    flex-shrink: 0;
    margin-right: 14px;
}

.single-post .market-name {
    font-weight: 700;
    font-size: 15px;
    width: 130px;
    flex-shrink: 0;
}

.single-post .market-pct {
    color: #1f9d55;
    font-weight: 700;
    font-size: 15px;
    width: 65px;
    flex-shrink: 0;
}

.single-post .market-desc {
    color: #9a9a94;
    font-size: 14px;
}

.single-post .section-intro {
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 22px;
}

.single-post .check-list {
    list-style: none;
    padding-left: 0;
}

.single-post .check-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
}

.single-post .check-box {
    width: 20px;
    height: 20px;
    background: #1a1a1a;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 14px;
    margin-top: 2px;
}

.single-post .check-box svg {
    width: 12px;
    height: 12px;
}

.single-post .check-text {
    line-height: 1.6;
    color: #1a1a1a;
}

@media (max-width: 576px) {
    .single-post .market-row {
        flex-wrap: wrap;
    }

    .single-post .market-name {
        width: auto;
        margin-right: 12px;
    }

    .single-post .market-pct {
        width: auto;
        margin-right: 12px;
    }

    .single-post .market-desc {
        width: 100%;
        margin-left: 20px;
        margin-top: 4px;
    }
}


.single-post .hr-line {
    border: none;
    border-top: 1px solid;
    border-top-color: rgba(0, 0, 0, 0.20);
    margin: 0 0 26px;
}

/* Tags */
.single-post .tags-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.single-post .tags-label {
    font-weight: 500;
    color: #333;
    margin-right: 4px;
    font-size: 15px;
}

.single-post .tag-pill {
    background: #ffffff;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 14px;
    color: #1a1a1a;
}

/* Share */
.single-post .share-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.single-post .share-label {
    font-weight: 500;
    color: #333;
    margin-right: 4px;
    font-size: 15px;
}

.single-post .share-btn {
    border: none;
    border-radius: 6px;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.single-post .share-btn i {
    font-size: 16px;
}

.single-post .btn-twitter {
    background-color: #1da1f2;
}

.single-post .btn-facebook {
    background-color: #3b5998;
}

.single-post .btn-linkedin {
    background-color: #0a5f8a;
}

/* Author card */
.single-post .author-card {
    background: #ffffff;
    border: 1px solid #eceae0;
    border-radius: 10px;
    padding: 28px 32px;
}

.single-post .author-row {
    display: flex;
    gap: 20px;
    align-items: start;
}

.single-post .avatar-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f1f0e9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 18px;
    color: #555;
}

.single-post .author-name {
    font-size: 18px;
    font-weight: 700;
    margin-right: 10px;
    margin-bottom: 0;
}

.single-post .verified-badge {
    background: #1a1a1a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 9px;
    border-radius: 4px;
    vertical-align: middle;
}

.single-post .author-role {
    color: #9a9a94;
    font-size: 14px;
    margin: 4px 0 14px;
}

.single-post .author-bio {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 16px;
}

.single-post .author-links {
    display: flex;
    gap: 10px;
}

.single-post .author-link-btn {
    background: #fff;
    border: 1px solid #d8d7cf;
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

@media (max-width: 576px) {
    .single-post .author-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

.related-section .section-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 22px;
}

.related-section .article-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.related-section .article-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.related-section .article-body {
    padding: 16px 18px 18px;
}

.related-section .article-category {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #9a9a94;
    margin-bottom: 8px;
}

.related-section .article-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 14px;
    color: #1a1a1a;
    display: inline-block;
    transition: all 300ms ease-in-out;
}

.related-section .article-title:hover {
    color: var(--uc-primary-color);
}

.related-section .article-author {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #6b6b64;
}

.related-section .author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
}

/* Blog Sidebar */
.blog-sidebar {
    margin: 0 auto;
}

.sb-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 24px 22px;
    margin-bottom: 20px;
}

.sb-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    color: var(--uc-dark-color);
}

/* Table of contents */
.blog-sidebar .toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar .toc-item {
    padding: 5px 0 5px 14px;
    border-left: 3px solid transparent;
    font-size: 14px;
    list-style-type: none;
}

.blog-sidebar .toc-item a {
    color: #8d8c85;
    text-decoration: none;
}

.blog-sidebar .toc-item a:hover {
    color: var(--uc-primary-color);
}

.blog-sidebar .toc-item.active {
    border-left-color: #1a1a1a;
}

.blog-sidebar .toc-item.active a {
    color: #1a1a1a;
    font-weight: 700;
}

/* Author card */
.blog-sidebar .author-mini {
    display: flex;
    align-items: center;
    gap: 14px;
}

.blog-sidebar .author-mini-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-sidebar .author-mini-name {
    font-weight: 600;
    font-size: 15px;
}

.blog-sidebar .author-mini-role {
    color: #9a9a94;
    font-size: 13px;
    margin-bottom: 4px;
}

.blog-sidebar .view-profile {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

.blog-sidebar .view-profile i {
    font-size: 12px;
    margin-left: 2px;
}

/* Newsletter */
.blog-sidebar .newsletter-card {
    background: #1a1a1a;
    color: #fff;
    border-radius: 10px;
    padding: 26px 24px;
    margin-bottom: 20px;
}

.blog-sidebar .newsletter-title {
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.blog-sidebar .newsletter-text {
    color: #b9b8b2;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.blog-sidebar .newsletter-input {
    width: 100%;
    background: #333230;
    border: none;
    border-radius: 6px;
    padding: 11px 14px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
}

.blog-sidebar .newsletter-input::placeholder {
    color: #8a8a85;
}

.blog-sidebar .newsletter-btn {
    width: 100%;
    background: #f4f3ee;
    color: #1a1a1a;
    border: none;
    border-radius: 6px;
    font-weight: 500;
}

/* Categories */
.blog-sidebar .cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar .cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.blog-sidebar .cat-item a {
    color: var(--uc-default-color);
}

.blog-sidebar .cat-item a:hover {
    color: var(--uc-primary-color);
}

.blog-sidebar .cat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-sidebar .cat-item:first-child {
    padding-top: 0;
}

.blog-sidebar .cat-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
}

.blog-sidebar .cat-left i {
    color: #6b6b64;
    font-size: 15px;
}

.blog-sidebar .cat-count {
    color: #9a9a94;
    font-size: 14px;
}

/* Popular posts */
.blog-sidebar .pp-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.blog-sidebar .pp-item:last-child {
    margin-bottom: 0;
}

.blog-sidebar .pp-thumb {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-sidebar .pp-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 4px;
}

.blog-sidebar .pp-meta {
    font-size: 12.5px;
    color: #9a9a94;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* CTA */
.blog-sidebar .cta-card {
    background: #e7e5db;
    border-radius: 10px;
    padding: 26px 24px;
    text-align: center;
}

.blog-sidebar .cta-title {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--uc-dark-color);
}

.blog-sidebar .cta-text {
    font-size: 14px;
    color: #5c5c56;
    margin-bottom: 18px;
    line-height: 1.5;
}

.blog-sidebar .cta-btn {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 15px;
}

/*=========================================
Single Profile Page
=========================================*/
.profile-card {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    padding: 28px 34px 30px;
    position: relative;
    z-index: 2;
    margin-bottom: -300px;
}

.profile-card .photo-col {
    position: relative;
    z-index: 3;
}

.profile-card .photo-wrap {
    position: relative;
}

.profile-card .agent-photo {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.profile-card .top-agent-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--uc-primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.05em;
    padding: 5px 10px;
    border-radius: 3px;
}

.profile-card .agent-name {
    font-size: 34px;
}

.profile-card .agent-role {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--uc-primary-color);
    margin-bottom: 4px;
}

.profile-card .agent-dre {
    font-size: 13.5px;
    color: #6b6b64;
    margin-bottom: 10px;
}

.profile-card .agent-loc-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 14px;
    color: #4d4d47;
    margin-bottom: 24px;
}

.profile-card .agent-loc-rating span {
    display: flex;
    align-items: center;

}

.profile-card .agent-loc-rating svg {
    line-height: 1;
    color: var(--uc-primary-color);
}

.profile-card .agent-loc-rating .stars svg {
    fill: var(--uc-primary-color);
}

.profile-card .agent-loc-rating .stars svg.text-border {
    fill: none;
}

.profile-card .review-count {
    color: #6b6b64;
}

.profile-card .specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.profile-card .specialty-tag {
    background: #f1f0e9;
    color: #3a3a35;
    font-size: 14px;
    font-weight: 400;
    padding: 5px 14px;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.05);
}

.profile-card .contact-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

.profile-card .btn-contact {
    background: var(--uc-dark-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    height: auto;
}

.profile-card .btn-contact:hover {
    color: #fff;
    opacity: 0.92;
}

.profile-card .btn-phone {
    background: transparent;
    color: var(--uc-dark-color);
    border: 1.5px solid #d8d7cf;
    border-radius: 5px;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.profile-card .social-row {
    display: flex;
    gap: 8px;
    margin-top: 2px;
}

.profile-card .social-icon-btn {
    width: 34px;
    height: 34px;
    border: 1.5px solid #d8d7cf;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4d4d47;
    text-decoration: none;
    font-size: 14px;
}

.profile-card .social-icon-btn:hover {
    background: #f4f3ee;
    color: #1a1a1a;
}

.profile-card .stats-row {
    border-top: 1px solid #eceae0;
    margin-top: 24px;
    padding-top: 26px;
}

.profile-card .stat-block {
    text-align: center;
}

.profile-card .stat-icon {
    color: var(--uc-primary-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.profile-card .stat-num {
    font-size: 32px;
    font-family: var(--uc-primary-font);
    color: var(--uc-dark-color);
    margin-bottom: 4px;
}

.profile-card .stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #8a8a83;
}

@media (max-width: 991px) {
    .profile-card .photo-col {
        margin-top: 0;
    }

    .profile-card {
        margin-top: 20px;
        padding: 24px;
    }

    .profile-card .contact-col {
        align-items: stretch;
        margin-top: 20px;
    }

    .profile-card .stats-row .col-6 {
        margin-bottom: 20px;
    }
}

.profile-content-block {
    margin-top: 200px;
}

.profile-content .top-divider {
    border: none;
    border-top: 1px solid #e2e1da;
    margin: 0 0 40px;
}

.profile-content .item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-content .item-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #3a4a63;
    padding: 6px 0;
}

.profile-content .item-list li svg {
    color: var(--uc-primary-color);
    font-size: 13px;
}

.profile-feedback {
    width: 100%;
    margin-top: 50px;
}

.profile-feedback .eyebrow-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.profile-feedback .eyebrow-line {
    width: 24px;
    height: 1px;
    background: var(--uc-primary-color);
    display: inline-block;
}

.profile-feedback .eyebrow-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--uc-primary-color);
}

.profile-feedback .section-title {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 32px;
}

.profile-feedback .review-card {
    background: #ffffff;
    border: 1px solid #ece9df;
    border-radius: 8px;
    padding: 26px 30px;
    margin-bottom: 20px;
}

.profile-feedback .review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-feedback .reviewer-name {
    font-weight: 700;
    font-family: var(--uc-primary-font);
    font-size: 17px;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.profile-feedback .review-date {
    font-size: 13px;
    color: #8a8a83;
}

.profile-feedback .review-stars i {
    color: var(--uc-primary-color);
    font-size: 10px;
}

.profile-feedback .review-text {
    font-style: italic;
    font-size: 15px;
    line-height: 1.7;
    color: #4d4d47;
    margin: 0;
}

/* Tabs */
.profile-sidebar .tab-row {
    display: flex;
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
}

.profile-sidebar .tab-btn {
    flex: 1;
    border: none;
    padding: 16px 10px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    background: #ffffff;
    color: #8a8a83;
    cursor: pointer;
    border-radius: 0;
    height: auto;
}

.profile-sidebar .tab-btn.active {
    background: #14142b;
    color: #fff;
}

/* Contact card */
.profile-sidebar .contact-card {
    background: #fff;
    padding: 30px 28px;
    margin-bottom: 22px;
    border-radius: 5px;
}

.profile-sidebar .card-subtext {
    font-size: 13.5px;
    color: #8a8a83;
    margin-bottom: 26px;
}

.profile-sidebar .field-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #5c5c56;
    margin-bottom: 8px;
    display: block;
}

.profile-sidebar .field-label .req {
    color: var(--uc-primary-color);
}

.profile-sidebar .form-control,
.profile-sidebar .form-select {
    width: 100%;
    background-color: var(--uc-light-color);
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 20px;
    background-position: right 10px center;
    background-size: 10px;
}

.profile-sidebar .form-control::placeholder,
.profile-sidebar .form-select::placeholder {
    color: #9a9a90;
}

.profile-sidebar .form-control:focus,
.profile-sidebar .form-select:focus {
    outline: none;
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.5);
    background: #fff;
}

.profile-sidebar textarea.form-control {
    resize: none;
    height: 110px;
}

.profile-sidebar .send-btn {
    width: 100%;
    background: #14142b;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 14px;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
    height: auto;
}

.profile-sidebar .send-btn:hover {
    opacity: 0.92;
}

.profile-sidebar .contact-divider {
    border: none;
    border-top: 1px solid #eee;
    margin-bottom: 18px;
}

.profile-sidebar .direct-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.profile-sidebar .direct-contact-row:last-child {
    margin-bottom: 0;
}

.profile-sidebar .icon-box {
    width: 34px;
    height: 34px;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--uc-primary-color);
    flex-shrink: 0;
}

/* Office panel */
.profile-sidebar .office-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
}

.profile-sidebar .office-photo-wrap {
    position: relative;
}

.profile-sidebar .office-photo-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
    padding: 16px 18px;
    color: #fff;
}

.profile-sidebar .office-name {
    font-weight: 700;
    font-size: 16px;
}

.profile-sidebar .office-sub {
    font-size: 12.5px;
    color: #d8d7cf;
}

.profile-sidebar .office-detail-row {
    display: flex;
    gap: 14px;
    padding: 18px 28px;
    border-bottom: 1px solid #f0efe8;
}

.profile-sidebar .office-detail-row:last-child {
    border-bottom: none;
}

.profile-sidebar .office-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #9a9a94;
    margin-bottom: 4px;
}

.profile-sidebar .office-value {
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1.5;
}

.profile-sidebar .map-photo-wrap {
    position: relative;
    margin-bottom: 22px;
    border-radius: 5px;
    overflow: hidden;
}

.profile-sidebar .map-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.profile-sidebar .directions-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #14142b;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* Why work with sarah box (shared, always visible) */
.profile-sidebar .why-card {
    background: #14142b;
    color: #fff;
    padding: 28px 26px;
    border-radius: 5px;
}

.profile-sidebar .why-title {
    color: var(--uc-primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}

.profile-sidebar .why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.profile-sidebar .why-list li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    color: #d8d7cf;
    margin-bottom: 11px;
    list-style-type: none;
}

.profile-sidebar .why-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    background: var(--uc-primary-color);
}

.profile-sidebar .schedule-btn {
    width: 100%;
    background: transparent;
    color: #fff;
    border: 1px solid #4a4a5e;
    border-radius: 4px;
    padding: 13px;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: auto;
}

.profile-sidebar .schedule-btn:hover {
    border-color: #6a6a7e;
}

.profile-sidebar .tab-pane-hidden {
    display: none;
}

/*==============================================================
# Widget Style
==============================================================*/
.widget {
    margin-bottom: 24px;
    color: var(--uc-dark-color);
    font-weight: 500;
    font-size: 14px;
    padding: 35px;
}

.listing-sidebar .widget {
    background-color: var(--uc-white-color);
}

.listing-sidebar .quick-search {
    padding: 0;
}

.property-carousel-widget .property-grid-1 .entry-content-wrapper {
    padding-left: 0;
    padding-right: 0;
}

.widget-listing li {
    display: flex;
    gap: 10px;
    align-items: center;
}

.widget-listing li .listing-title,
.widget-listing li .listing-title a {
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0;
}

.widget-listing li .listing-price {
    display: flex;
    gap: 5px;
    color: var(--uc-primary-color);
    font-family: var(--uc-primary-font);
    font-weight: 600;
}

.widget-listing li .property-info li {
    color: var(--uc-dark-color);
    font-size: 14px;
}

.widget-listing li .listing-price small {
    font-size: 13px;
    color: var(--uc-text-color2);
}

.widget-listing li img {
    width: 80px;
    height: 80px;
    border-radius: 3px;
}

.widget.footer-widget {
    color: var(--uc-default-color);
    font-weight: 400;
    padding: 0;
}

.widget-title {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--uc-primary-color);
    font-family: var(--uc-accent-font);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 30px;
    letter-spacing: 0.8px;
}

.footer-widget .widget-title {
    color: var(--uc-primary-color);
    margin-bottom: 30px;
}

.footer-light .footer-widget .widget-title {
    color: var(--uc-dark-color);
    font-weight: 600;
}

.footer-widget ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.widget ul {
    margin: 0;
}

.widget ul li {
    line-height: 25px;
    list-style: none;
}

.widget ul li a {
    text-decoration: none;
}

.widget .widget-listing {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-widget {
    display: flex;
    gap: 20px;
}

.social-widget li a,
.social-widget a {
    font-size: 14px;
    text-decoration: none;
    color: var(--uc-dark-color);
}

.footer-widget.social-widget li a,
.footer-widget.social-widget a {
    color: var(--uc-default-color);
}

.footer-light .footer-widget.social-widget li a,
.footer-light .footer-widget.social-widget a {
    color: var(--uc-default-color);
}

.widget ul li a {
    text-decoration: none;
    color: var(--uc-dark-color);
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.widget.footer-widget ul li a {
    color: var(--uc-default-color);
}

.footer-light .widget.footer-widget ul li a {
    color: var(--uc-default-color);
}

.footer-light .widget ul li a:hover,
.widget ul li a:hover {
    color: var(--uc-primary-color);
}

.widget-sidebar-nav {
    background-color: var(--uc-white-color);
}

.widget-sidebar-nav ul li {
    padding: 10px 0;
}

.widget-sidebar-nav ul li:not(:last-child) {
    border-bottom: 1px;
    border-bottom-style: dashed;
    border-bottom-color: var(--uc-gray-color);
}

.widget-category ul li {
    padding: 10px 0;
}

.widget-category ul li a span {
    color: var(--uc-primary-color);
}

.widget-category ul li:not(:last-child) {
    border-bottom: 1px;
    border-bottom-style: dashed;
    border-bottom-color: var(--uc-gray-color);
}

.blog-sidebar .widget {
    background-color: var(--uc-white-color);
}

.widget_search .search-field {
    border: 1px solid;
    border-color: var(--uc-gray-color);
    font-size: 14px;
    color: var(--uc-dark-color);
    height: 50px;
    padding: 12px 15px;
    border-radius: 3px;
    width: 100%;
}

.widget_search .search-field:focus,
.widget_search .search-field:focus-visible {
    border: none;
}

.widget_search input[type="submit"] {
    display: none;
}

.widget_categories ul li {
    padding: 10px 0;
    color: var(--uc-primary-color);
}

.widget_categories ul li a {
    color: var(--uc-dark-color);
}

.widget_categories ul li:not(:last-child) {
    border-bottom: 1px;
    border-bottom-style: dashed;
    border-bottom-color: var(--uc-gray-color);
}

.widget_recent_entries ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.widget_recent_entries ul li a {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
}

.widget_recent_entries .post-meta {
    display: flex;
    gap: 15px;
}

.widget_recent_entries .post-meta a {
    color: var(--uc-text-gray-color);
    font-size: 13px;
    position: relative;
    padding: 0;
}

.widget_recent_entries .post-meta a:not(:last-child)::after {
    content: "|";
    position: absolute;
    color: var(--uc-text-gray-color);
    right: -7px;
    top: -1px;
    height: 100%;
    width: 1px;
}

.widget_tag_cloud ul {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
}

.widget_tag_cloud ul li a {
    background-color: var(--uc-light-color);
    color: var(--uc-text-gray-color);
    padding: 0 7px;
    font-size: 13px;
    display: block;
    line-height: 2;
}

.widget_tag_cloud ul li a:hover {
    color: var(--uc-white-color);
    background-color: var(--uc-primary-color);
}

/*==========================================================
Modal Popup
==========================================================*/
.modal-content {
    border-radius: 0;
}

.quick-email-modal,
.quick-view-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99992;
    width: 100%;
    height: 100%;
}

.view-close {
    cursor: pointer;
    position: absolute;
    right: 1px;
    top: 1px;
    z-index: 99;
    background-color: var(--uc-dark-color);
    display: block;
    width: 35px;
    height: 35px;
    line-height: 33px;
    text-align: center;
    color: var(--uc-white-color);
}

.entry-thumbnail-modal {
    position: relative;
    overflow: hidden;
}

.modal-body .entry-title a {
    font-size: 18px;
    text-decoration: none;
    color: var(--uc-dark-color);
}

.modal-body .entry-title a:hover {
    color: var(--uc-primary-color);
}

.modal-body .product-status {
    background-color: var(--uc-secondary-color);
    color: var(--uc-white-color);
    font-size: 12px;
    letter-spacing: 1px;
    font-family: var(--uc-primary-font);
    padding: 0 12px;
}

.entry-thumbnail-modal,
.modal-body .entry-title a {
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}


/*==========================================================
Listing Info Block
==========================================================*/
.listing-block-1 .entry-thumbnail img,
.listing-block-2 .entry-thumbnail img,
.listing-block-1 .entry-footer a::after {
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.listing-block-1 {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    border: 1px solid;
    border-color: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 8px;
}

.listing-block-1:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.4);
}

.listing-block-2 {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.listing-block-1 .entry-title {
    color: var(--uc-white-color);
}

.listing-block-2::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: rgb(49, 49, 69);
    background: linear-gradient(0deg, rgba(49, 49, 69, 1) 10%, rgba(49, 49, 69, 0.10) 60%);
    z-index: 10;
}

.listing-block-1 .entry-content-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 20px;
    color: #fff;
}

.listing-block-1 .entry-content {
    font-size: 13px;
    letter-spacing: 2px;
}

.listing-block-1 .entry-title {
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 2px;
}

.listing-block-1:hover .entry-thumbnail img {
    transform: scale(1.05);
}

.listing-block-1 .entry-footer a {
    text-transform: capitalize;
    font-size: 14px;
    position: relative;
}

.listing-block-1 .entry-footer a::after {
    position: absolute;
    content: "";
    border-width: 4px;
    border-color: transparent transparent transparent #fff;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    border-style: solid;
}

.listing-block-1 .entry-footer a:hover::after {
    border-left-color: var(--uc-primary-color);
}

.listing-block-2 .entry-content-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    color: #fff;
}

.listing-block-2 .entry-content {
    font-size: 13px;
    letter-spacing: 2px;
}

.listing-block-2 .entry-title {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--uc-white-color);
}

.listing-block-2:hover .entry-thumbnail img {
    transform: scale(1.05);
}

.listing-block-2 .entry-footer {
    width: 100%;
}

.listing-block-2 .entry-footer a {
    text-transform: capitalize;
    font-size: 13px;
    position: relative;
    width: 100%;
    background-color: var(--uc-secondary-color);
    text-align: center;
    margin-top: 20px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    border: none;
    line-height: 45px;
}

.listing-block-2 .entry-footer a:hover {
    background-color: var(--uc-primary-color);
}

/* ===== STEPPER ===== */
.listing-form-step {
    border-bottom: 1px solid;
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.stepper-bar {
    background: #fff;
    padding: 28px 20px 28px;
}

.stepper-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 620px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease;
}

.step-circle.upcoming {
    background: var(--uc-light-color);
    color: var(--uc-dark-color);
}

.step-circle.active {
    background: var(--uc-primary-color);
    color: #fff;
}

.step-circle.completed {
    background: var(--uc-dark-color);
    color: var(--uc-white-color);
}

.step-label {
    margin-top: 8px;
    white-space: nowrap;
}

.step-label.upcoming {
    color: var(--uc-dark-color);
}

.step-label.active {
    color: var(--uc-primary-color);
}

.step-label.completed {
    color: var(--uc-dark-color);
}

.step-connector {
    flex: 1;
    height: 2px;
    background: var(--uc-light-color);
    margin-top: 19px;
    min-width: 40px;
    transition: background 0.2s ease;
}

.step-connector.completed {
    background: var(--uc-dark-color);
}

/* ===== FORM PAGE ===== */
.form-container {
    max-width: 720px;
    margin: 0 auto;
}

.step-eyebrow {
    color: var(--uc-primary-color);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.step-title {
    font-weight: 500;
    font-size: 28px;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.listing-form .field-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.listing-form .field-group {
    margin-bottom: 22px;
}

.listing-form .form-control,
.listing-form .form-select {
    background-color: #f3f2ef;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
    padding: 10px 12px;
    width: 100%;
}

.listing-form .form-control:focus,
.listing-form .form-select:focus {
    outline: none;
    border-color: var(--uc-dark-color);
    box-shadow: none;
    background: #fff;
}

.listing-form textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

.listing-form .input-with-icon {
    position: relative;
}

.listing-form .input-with-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--uc-dark-color);
    font-size: 13px;
}

.listing-form .input-with-icon .form-control {
    padding-left: 38px;
}

.listing-form .btn-continue {
    padding: 15px;
    width: 100%;
    gap: 8px;
    height: auto;
}

.listing-form .btn-continue:hover {
    background: #1a2338;
    color: #fff;
}

.listing-form .btn-back {
    padding: 15px;
    border-color: rgba(0, 0, 0, 0.15);
    width: 100%;
    gap: 8px;
    height: auto;
}

.listing-form .btn-back:hover {
    border-color: #C9C4B6;
}

/* ===== DROPZONE (Step 2) ===== */
.listing-form .dropzone {
    border: 2px dashed;
    border-color: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 44px 20px;
    text-align: center;
    cursor: pointer;
    background: var(--uc-light-color);
    margin-bottom: 18px;
}

.listing-form .dropzone:hover {
    border-color: var(--gold);
}

.listing-form .dropzone i {
    color: var(--gold);
    font-size: 26px;
    margin-bottom: 12px;
}

.listing-form .dropzone-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--uc-dark-color);
    margin-bottom: 6px;
}

.listing-form .dropzone-sub {
    font-size: 13px;
}

.listing-form .photo-preview-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.listing-form .photo-thumb {
    position: relative;
    width: calc(25% - 9px);
    min-width: 90px;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
}

.listing-form .photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.listing-form .photo-check {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    background: var(--uc-primary-color);
    color: var(--uc-white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* ===== TOGGLE SWITCH ===== */
.toggle-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.toggle-switch {
    position: relative;
    width: 42px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.listing-form .toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--uc-gray-color);
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.listing-form .toggle-slider::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.listing-form .toggle-switch input:checked+.toggle-slider {
    background: var(--uc-primary-color);
}

.listing-form .toggle-switch input:checked+.toggle-slider::before {
    transform: translateX(18px);
}

.listing-form .toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--uc-dark-color);
}

/* ===== KEY FEATURES CHECKBOXES ===== */
.listing-form .feature-check {
    background: var(--uc-white-color);
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
}

.listing-form .feature-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
}

.listing-form .feature-check label {
    cursor: pointer;
}

/* ===== STEP 3: SUMMARY ===== */
.listing-form .summary-box {
    background: var(--uc-light-color);
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 28px;
}

.listing-form .summary-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.listing-form .summary-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.listing-form .summary-item:last-child {
    margin-bottom: 0;
}

.listing-form .summary-item i {
    color: var(--uc-primary-color);
    font-size: 14px;
    margin-top: 2px;
    width: 16px;
}

.listing-form .summary-item-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.listing-form .summary-item-value {
    font-size: 14px;
    color: var(--uc-dark-color);
}

/* ===== CONTACT METHOD PILLS ===== */
.contact-method-row {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
}

.listing-form .contact-pill {
    flex: 1;
    background: var(--uc-light-color);
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: var(--uc-dark-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.listing-form .contact-pill i {
    font-size: 13px;
}

.listing-form .contact-pill.selected {
    border-color: var(--uc-primary-color);
    color: var(--uc-primary-color);
    background: #ebefe6;
}

/* ===== TERMS CHECKBOX ===== */
.listing-form .terms-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 14px;
    color: var(--uc-dark-color);
}

.listing-form .terms-row input {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    flex-shrink: 0;
}

.listing-form .terms-row a {
    color: var(--gold);
    font-weight: 600;
}

/* ===== SUBMIT BUTTON ===== */
.listing-form .btn-submit {
    background: #dee0e2;
    color: #949496;
    font-weight: 500;
    font-size: 15px;
    padding: 14px;
    border-radius: 5px;
    border: none;
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    cursor: not-allowed;
    transition: background 0.2s ease, color 0.2s ease;
}

.listing-form .btn-submit.enabled {
    background: var(--uc-primary-color);
    color: #fff;
    cursor: pointer;
}

.listing-form .btn-submit.enabled:hover {
    background: #1a2338;
}

@media (max-width: 576px) {
    .listing-form .step-label {
        display: none;
    }

    .listing-form .step-connector {
        min-width: 24px;
        margin-top: 18px;
    }

    .listing-form {
        padding: 32px 16px 48px;
    }

    .listing-form .step-title {
        font-size: 23px;
    }

    .listing-form .photo-thumb {
        width: calc(50% - 6px);
    }
}

/*==========================================================
Tab Block Style
==========================================================*/
.tab-underline {
    display: flex;
    flex-direction: column;
}

.tab-filter-nav {
    display: flex;
    gap: 5px;
}

.tab-filter-nav li {
    cursor: pointer;
    list-style: none;
    font-family: var(--uc-primary-font);
    font-weight: 500;
    font-size: 14px;
}

.tab-underline .tab-filter-nav li {
    line-height: 40px;
    position: relative;
    cursor: pointer;
    padding: 0 10px;
    border-bottom: 2px;
    border-bottom-style: solid;
    border-color: transparent;
}

.tab-underline li.active,
.tab-underline li:hover {
    color: var(--uc-dark-color);
    border-color: var(--uc-dark-color);
}

.tab-solid {
    display: flex;
    flex-direction: column;
}

.tab-solid .tab-filter-nav li {
    line-height: 35px;
    position: relative;
    padding: 0 25px;
    border-radius: 5px;
}

.tab-solid li:hover {
    color: var(--uc-primary-color);
}

.tab-solid li.active {
    color: var(--uc-white-color);
    background-color: var(--uc-primary-color);
}

.submit-valuation {
    background-color: #f3f2ef;
}

.submit-property .tab-simple {
    padding: 30px;
    border-bottom: 1px solid #ddd;
}

.submit-property .tab-element {
    padding: 30px
}

.tab-style-1 {
    position: relative;
}

.tab-style-2 {
    width: max-content;
    max-width: 100%;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    padding: 25px 50px;
    background: #fff;
    border-radius: 60px;
}

.tab-style-2 .tab-filter-nav li a.nav-link {
    font-family: var(--uc-primary-font);
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--uc-dark-color);
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    position: relative;
    padding: 0;
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.tab-style-2 .tab-filter-nav li a.nav-link:hover {
    color: var(--uc-primary-color);
}

.tab-style-2 .tab-filter-nav li a.nav-link.active {
    color: var(--uc-primary-color);
    text-decoration: line-through;
}

/*==========================================================
Pricing Plan
==========================================================*/
.pricing-plan-1 li,
.pricing-plan-2 li {
    list-style: none;
}

.pricing-plan-1 .entry-wrapper {
    padding: 30px;
    background-color: var(--uc-light-color);
}

.pricing-plan-1 .entry-title {
    font-family: var(--uc-primary-font);
    color: var(--uc-dark-color);
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.pricing-plan-1 .plan-price {
    color: var(--uc-primary-color);
}

.pricing-plan-2 .entry-title {
    font-family: var(--uc-primary-font);
    color: var(--uc-dark-color);
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.pricing-plan-2 .plan-price {
    color: var(--uc-primary-color);
    margin-bottom: 10px;
    font-family: var(--uc-primary-font);
}

.pricing-plan-2 .plan-price sup {
    font-size: 15px;
    top: -11px;
    left: -2px;
}

.pricing-plan-2 .entry-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.pricing-plan-2 .entry-content-wrapper .entry-header {
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.pricing-plan-2 .entry-content-wrapper {
    border: 1px solid #ddd;
}

.pricing-plan-2 .entry-content-wrapper::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: transparent;
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.pricing-plan-2 .entry-content-wrapper:hover::after {
    background-color: var(--uc-primary-color);
}


/*==========================================================
Modal Dialog Box
==========================================================*/
.quick-view-modal.show .modal-dialog {
    position: relative;
    z-index: 100;
}

.user-login-form {
    padding: 30px;
}

.modal-footer,
.modal-header {
    padding-left: 30px;
    padding-right: 30px;
}

.modal-header {
    border-radius: 0;
}

.modal-title {
    font-family: var(--uc-primary-font);
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--uc-dark-color);
    font-weight: 600;
}

.user-login-form .form-control {
    padding-left: 40px;
}

.user-login-form .access-field {
    position: relative;
    display: flex;
    align-items: center;
}

.user-login-form .access-field i {
    position: absolute;
    font-size: 13px;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

/*==========================================================
Google Map
==========================================================*/
#map-banner {
    position: relative;
    width: 100%
}

#map-banner.visible {
    overflow: visible
}

.homepage-map #map {
    width: 100%;
    height: 600px
}

.marker-style {
    width: 20px;
    height: 20px;
    margin-left: -10px !important;
    margin-top: -48px !important;
}

.cluster>div {
    font-size: 12px !important;
    font-family: var(--uc-text-font) !important;
    line-height: 45px !important;
}

.gm-style img {
    width: 100%;
}

.infobox-wrapper {
    background-color: var(--uc-white-color);
    width: 300px !important;
    margin-bottom: 85px;
    margin-left: -48px;
}

.infobox-wrapper>img {
    position: absolute !important;
    top: 10px;
    right: 10px;
    z-index: 10;
    width: 18px;
    height: 18px;
}

.property-map-block {
    width: 300px;
}

.infobox-wrapper:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 42.5%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #fff;
}

.map-view-list,
.map-view-grid {
    padding-right: 12px !important;
}

/*==========================================================
Portfolio Block
==========================================================*/
.portfolio-style-1 .entry-wrapper {
    position: relative;
}

.portfolio-style-1 .entry-thumbnail::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: rgb(49, 49, 69);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.20) 60%);
    z-index: 10;
}

.portfolio-style-1 .entry-content-wrapper {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 10;
    padding: 20px;
}

.portfolio-style-1 .listing-price {
    font-weight: 700;
    color: var(--uc-primary-color);
    display: flex;
    font-family: var(--uc-primary-font);
    font-size: 24px;
    align-items: center;
    gap: 5px;
}

.portfolio-style-1 .listing-price small {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.portfolio-style-1 .listing-title,
.portfolio-style-1 .listing-title a {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.portfolio-style-1 .listing-title:hover,
.portfolio-style-1 .listing-title a:hover {
    color: var(--uc-primary-color);
}

/*==========================================
Progesss Bar
===========================================*/
.fact-counter .progress {
    height: 3px;
    width: 100%;
    overflow: visible;
    border-radius: 0;
    margin-top: 10px;
}

.progress-bar {
    -moz-transition: all 3000ms linear 0s;
    -webkit-transition: all 3000ms linear 0s;
    transition: all 3000ms linear 0s;
    width: 0;
    overflow: visible;
    position: relative;
    background-color: var(--uc-dark-color);
}

.progress-wrapper {
    font-weight: 500;
    position: relative;
}

.skill-percent {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 15px;
    color: var(--uc-dark-color);
}

.skill-percent.msg-shape {
    top: inherit;
    bottom: 15px;
    padding: 3px 5px;
    background-color: var(--uc-dark-color);
    color: var(--uc-white-color);
    font-size: 12px;
    font-weight: 400;
}

.skill-percent.msg-shape::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 1px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent;
    border-right-color: var(--uc-dark-color);
    right: 0;
    bottom: -4px;
}

.progress-title {
    font-family: var(--uc-primary-font);
    font-weight: 600;
    font-size: 14px;
    color: var(--uc-dark-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*=========================================================
Listing Page
=========================================================*/
.listing-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.listing-header .short-by-wrapper {
    display: flex;
    gap: .75rem;
    align-items: center;
}

.short-by-wrapper button {
    padding-left: 12px;
    padding-right: 12px;
}

.short-by-wrapper .view-style button {
    border: 0;
    background-color: var(--uc-white-color);
    width: 45px;
    height: 45px;
}

.short-by-wrapper .view-style {
    display: flex;
    align-items: center;
    gap: 5px;
}

.listing-filter-bar .scrollableList {
    border: 0;
    background-color: transparent;
}

.results-count p {
    margin-bottom: 24px;
}

.results-count strong {
    color: var(--uc-dark-color);
}

.scrollableList {
    color: #666;
    width: 160px;
    float: left;
    background: #FFF;
    display: none;
    border-radius: 5px;
    border: 1px solid #DEDEDE;
    position: relative;
}

.scrollableList i {
    font-size: 11px;
    position: absolute;
    right: 10px;
    top: 35%;
}

.scrollableList ul {
    padding: 3px 0px 3px 0px;
    margin: 0;
    position: absolute;
    border-radius: 8px;
    width: 160px;
    background: #FAFAFA;
    margin-top: -1px;
    margin-left: -1px;
    border: 1px solid #DEDEDE;
    z-index: 100;
}

.scrollableList ul li {
    list-style: none;
    cursor: pointer;
    margin-left: 14px;
    line-height: 25px;
}

.selectedOption {
    cursor: pointer;
    padding: 0 12px;
    position: relative;
    z-index: 10;
    line-height: 40px;
}

.scrollableList ul li:hover {
    color: var(--uc-dark-color);
}

.selectedOption:hover {
    color: #333;
}

.listing-ordering {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}

.listing-ordering label {
    order: 1;
    color: var(--uc-dark-color);
}

.scrollableList {
    order: 2;
}

.push-nav-toggle {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(229, 227, 223);
    color: rgb(11, 22, 40);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.nav-leftpush-overlay .navbar-expand-lg .navbar-slide-push {
    height: 100vh;
    width: 360px;
    padding: 100px 40px;
    overflow-y: scroll;
    position: fixed;
    background-color: var(--uc-white-color);
    min-height: 100%;
    top: 0;
    left: -360px;
    opacity: 0;
    z-index: 1000;
    -moz-transition: all 300ms ease-in-out 0s;
    -webkit-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.nav-leftpush-overlay .navbar-expand-lg .navbar-slide-push::-webkit-scrollbar {
    display: none;
}

#page_wrapper.overlay::before {
    background-color: var(--uc-secondary-opacity-color);
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 100;
}

.nav-leftpush-overlay .navbar-expand-lg .navbar-slide-push.visible {
    animation-name: slideInLeft;
    animation-duration: 0.3s;
    left: 0;
    opacity: 1;
}

.slide-nav-close {
    position: absolute;
    top: 24px;
    left: 40px;
    border-radius: 0 !important;
    line-height: 25px;
    font-size: 13px;
    cursor: pointer !important;
}

.select-custom {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

.select-custom li {
    list-style: none;
    line-height: normal;
}

.select-custom li label {
    padding: 3px 12px;
    border: 1px solid #d7d7d8;
    border-radius: 3px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 400;
    position: relative;
    overflow: hidden;
    display: block;
}

.select-custom li input[type="radio"]:checked+label {
    border-color: var(--uc-primary-color);
    color: var(--uc-primary-color);
}

.select-custom li input[type="radio"]:checked+label:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 1px;
    border: 12px;
    border-style: solid;
    border-color: var(--uc-primary-color) transparent transparent transparent;
    transform: rotate(-45deg);
    right: -12px;
    bottom: -12px;
}

.select-custom li input[type="radio"]:checked+label:after {
    position: absolute;
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-size: 5px;
    right: -1px;
    bottom: 9px;
    width: 8px;
    height: 8px;
    color: #FFF;
    font-weight: 900;
    z-index: 9;
}

.slide-filter .price-range-toggle {
    width: 100%
}

.custom-check-box {
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.custom-check-box li {
    list-style: none;
}

.custom-check-box li .hide {
    display: none;
}

.custom-check-box label {
    padding-left: 27px;
    position: relative;
    cursor: pointer;
    line-height: 28px;
}

.custom-check-box label::before {
    background-color: #fff;
    border: 1px solid #ddd;
    height: 18px;
    top: .25rem;
    width: 18px;
    box-sizing: border-box;
    border-radius: .25rem;
    content: "";
    left: 0;
    position: absolute;
    transition: border-color 0.3s ease 0s;
}

.custom-check-box input[type="checkbox"]:checked+label::before {
    font-size: 7px;
    line-height: 20px;
    position: absolute;
    text-align: center;
    content: "\f00c";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    border: none;
    background-color: var(--uc-primary-color);
    color: var(--uc-white-color);
}

/*==========================================================
Pagination
==========================================================*/
.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
    gap: 2px;
    margin: 0;
}

.pagination li {
    list-style: none;
}

.pagination .page-item .page-link {
    display: flex;
    align-items: center;
    color: var(--uc-dark-color);
    text-align: center;
    padding: 0;
    font-weight: 500;
    height: 40px;
    width: 40px;
    justify-content: center;
    font-family: var(--uc-primary-font);
    border-radius: 100%;
    border-color: transparent;
}

.pagination .page-item.active .page-link {
    background-color: var(--uc-primary-color);
    color: #fff;
}

.pagination-wrap {
    margin-top: 50px;
}

.pagination .page-link,
.pagination .page-item.disabled .page-link {
    background: transparent;
}

/*==========================================================
Single Property
==========================================================*/
.property-page {
    margin: 0 auto;
}

.top-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.back-link {
    color: var(--uc-dark-color);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-link i {
    margin-right: 6px;
}

.action-btns {
    display: flex;
    gap: 10px;
}

.btn-pill-outline {
    background: #fff;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--uc-dark-color);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: auto;
}

.btn-pill-outline:hover {
    border-color: rgba(0, 0, 0, 0.35);
}

/* ===== GALLERY ===== */
.gallery-row {
    margin-bottom: 30px;
}

.gallery-main {
    position: relative;
    height: 480px;
    border-radius: 14px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--uc-primary-color);
    color: var(--uc-white-color);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 5px;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 480px;
}

.gallery-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 20, 36, 0.55);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

/* ===== TITLE SECTION ===== */
.property-title-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.type-badge {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.4px;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-right: 6px;
}

.badge-villa {
    background: var(--uc-white-color);
    color: var(--uc-dark-color);
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
}

.badge-sale {
    background: #c9e5bf;
    color: #06163c;
}

.property-title {
    font-weight: 400;
    font-size: 32px;
    margin: 12px 0 8px;
}

.property-address {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-address i {
    color: var(--uc-primary-color);
    margin-right: 5px;
}

.price-block {
    text-align: right;
}

.price-label {
    font-size: 11px;
    color: rgb(107, 114, 128);
    letter-spacing: 0.06em;
    font-weight: 500;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.price-value {
    font-family: var(--uc-primary-font);
    font-size: 30px;
    font-weight: 500;
    color: var(--uc-dark-color);
    line-height: 1;
}

.price-persqft {
    font-size: 13px;
}

/* ===== QUICK STATS ===== */
.quick-stats {
    background: #fff;
    border-radius: 12px;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
    display: flex;
    margin-bottom: 28px;
    overflow: hidden;
}

.quick-stat-cell {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    border-right: 1px solid;
    border-right-color: rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.quick-stat-cell:last-child {
    border-right: none;
}

.quick-stat-cell i {
    color: var(--gold);
    font-size: 17px;
    margin-bottom: 8px;
    display: block;
}

.quick-stat-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--uc-dark-color);
}

.quick-stat-label {
    font-size: 11px;
    color: rgb(107, 114, 128);
    letter-spacing: 0.04em;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

/* ===== TABS ===== */
.detail-tabs {
    display: inline-flex;
    background: var(--uc-white-color);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 22px;
    gap: .5rem;
}

.detail-tab {
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    background: transparent;
    border: none;
    cursor: pointer;
}

.detail-tab.active {
    background: var(--uc-dark-color);
    color: #fff;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.property-description p {
    font-size: 15px;
    line-height: 1.75;
    color: #3D3F46;
    margin-bottom: 18px;
}

/* ===== KEY HIGHLIGHTS ===== */
.highlights-box {
    background: #fff;
    border: 1px solid;
    border: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 24px 26px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.highlights-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--uc-dark-color);
    margin-bottom: 14px;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item i {
    color: var(--uc-primary-color);
    font-size: 15px;
}

/* ===== OPEN HOUSE ===== */
.openhouse-box {
    background: #F7EFE0;
    border-radius: 12px;
    padding: 22px 26px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.openhouse-icon {
    width: 42px;
    height: 42px;
    background: var(--uc-primary-color);
    color: var(--uc-white-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.openhouse-title {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.openhouse-dates {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.openhouse-date-card {
    background: #fff;
    border-radius: 8px;
    padding: 10px 16px;
}

.openhouse-date-day {
    font-size: 13px;
    font-weight: 500;
    color: var(--uc-dark-color);
}

.openhouse-date-time {
    font-size: 12px;
}

.location-map>div {
    height: 320px;
    background: rgb(229, 227, 223);
    position: relative;
}

/* ===== SIDEBAR ===== */
.sidebar-card {
    background: #fff;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-price-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.sidebar-price-value {
    font-family: var(--uc-primary-font);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--uc-dark-color);
}

.sidebar-price-sub {
    font-size: 12px;
    margin-bottom: 18px;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid;
    border-bottom-color: rgba(0, 0, 0, 0.15);
}

.btn-schedule-tour {
    padding: 15px;
    width: 100%;
    gap: 8px;
    margin-bottom: 10px;
    height: auto;
}

.btn-schedule-tour:hover {
    background: #1a2338;
    color: #fff;
}

.btn-make-offer {
    padding: 15px;
    width: 100%;
    height: auto;
}

.btn-make-offer:hover {
    border-color: #C9C4B6;
}

.agent-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.agent-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.agent-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid;
    border-color: var(--uc-primary-color);
}

.sidebar-card .agent-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--uc-dark-color);
    margin-bottom: 0;
}

.sidebar-card .agent-role {
    font-size: 12px;
}

.sidebar-card .agent-rating {
    font-size: 13px;
    margin-top: 2px;
}

.agent-rating i {
    color: #D9A441;
    margin-right: 3px;
}

.agent-message .sidebar-field {
    background: var(--uc-light-color);
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 11px 14px;
    font-size: 14px;
    width: 100%;
    margin-bottom: 12px;
    color: var(--uc-dark-color);
}

.agent-message .sidebar-field:focus-visible {
    border-color: rgba(0, 0, 0, 0.85);
    outline: none;
    background-color: #fff;
}

.agent-message .sidebar-field::placeholder {
    color: #9A9DA6;
}

.agent-message textarea.sidebar-field {
    resize: none;
    min-height: 100px;
}

.agent-message .btn-send-message {
    background: var(--uc-primary-color);
    color: var(--uc-white-color);
    padding: 15px;
    border: 0;
    border: none;
    width: 100%;
    margin-bottom: 10px;
    height: auto;
}

.agent-message .btn-send-message:hover {
    background: var(--uc-dark-color);
}

.agent-contact-row {
    display: flex;
    gap: 10px;
}

.btn-agent-contact {
    flex: 1;
    background: var(--uc-light-color);
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--uc-dark-color);
}

.btn-agent-contact:hover {
    border-color: #C9C4B6;
}

/* ===== MORTGAGE CALCULATOR ===== */
.mortgage-card {
    background: var(--uc-dark-color);
    border-radius: 10px;
    padding: 24px;
    color: #fff;
}

.mortgage-header {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: #D7DAE2;
}

.mortgage-header i {
    color: var(--uc-primary-color);
}

.mortgage-row {
    margin-bottom: 18px;
}

.mortgage-row-top {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
}

.mortgage-row-label {
    color: #B9BEC9;
}

.mortgage-row-value {
    font-weight: 600;
    color: var(--uc-primary-color);
}

.mortgage-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 3px;
    background: #2C3A57;
    outline: none;
}

.mortgage-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--uc-primary-color);
    cursor: pointer;
    border: 2px solid #fff;
}

.mortgage-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--uc-primary-color);
    cursor: pointer;
    border: 2px solid #fff;
}

.mortgage-result {
    border-top: 1px solid #24304B;
    margin-top: 6px;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.mortgage-result-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #B9BEC9;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.mortgage-result-value {
    font-family: var(--uc-primary-font);
    font-size: 24px;
    font-weight: 500;
    color: var(--uc-primary-color);
}

.mortgage-result-note {
    font-size: 11px;
    color: #7C8394;
    text-align: right;
    max-width: 130px;
    line-height: 1.4;
}

/* ===== SIMILAR PROPERTIES ===== */
.similar-section {
    margin-top: 50px;
    border-top: 1px solid;
    border-top-color: rgba(0, 0, 0, 0.15);
    padding-top: 50px;
    padding-bottom: 20px;
}

.similar-heading {
    font-weight: 500;
    font-size: 30px;
}

.similar-heading em {
    font-style: italic;
}

similar-section .view-all-link {
    color: var(--uc-dark-color);
    font-weight: 500;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .property-page {
        padding: 20px 20px 48px;
    }

    .gallery-main {
        height: 320px;
        margin-bottom: 12px;
    }

    .gallery-thumbs {
        height: 200px;
    }

    .price-block {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .breadcrumb-bar {
        padding: 12px 18px;
    }

    .property-title {
        font-size: 24px;
    }

    .quick-stats {
        flex-wrap: wrap;
    }

    .quick-stat-cell {
        flex: 0 0 33.33%;
        border-bottom: 1px solid var(--border-light);
    }
}

/*=========================================================
Sidebar Filter
=========================================================*/
.left-sidebar-block {
    flex: 0 0 auto;
    width: 320px;
    padding: 30px;
    background-color: var(--uc-white-color);
    height: 100vh;
    top: 0;
    position: sticky;
    overflow-y: scroll;
}

.left-sidebar-block::-webkit-scrollbar {
    display: none;
}

.right-sidebar-block {
    flex-grow: 1;
    align-items: stretch;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/*=========================================================
# Dashboard
==========================================================*/
.dashboard-header .navbar-collapse {
    display: flex;
    flex-direction: row;
}

.dashboard-header .navbar-nav {
    flex-direction: row;
    gap: 0;
}

.notice-warning {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 21px;
}

.dashboard-activity {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard-activity li {
    list-style: none;
}

.dashboard-nav .navbar-nav>.nav-item:hover,
.dashboard-nav .navbar-nav>.nav-item.active {
    background: var(--uc-white-color);
    color: #000 !important;
    font-weight: 600;
    border-radius: 5px;
}

.dashboard-nav .navbar-nav>.nav-item .nav-link:hover {
    color: #000 !important;
    font-weight: 600;
}

.dashboard-nav .navbar-nav>.nav-item.active>.nav-link,
.dashboard-nav .navbar-nav .nav-item.active>.nav-link {
    color: #000 !important;
    font-weight: 600;
}

.dashboard-nav .navbar-nav {
    margin-bottom: 15px;
}

.dashboard-nav .navbar-nav .nav-link {
    font-size: 14px;
    padding: 5px 15px;
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    letter-spacing: 1px;
    color: var(--uc-white-color) !important;
}

.dashboard-nav .navbar-nav .nav-link i {
    font-size: 12px;
}

.dashboard-nav {
    padding: 0 25px;
}

.dashboard-nav .db-dropdown-menu .nav-link {
    color: var(--uc-text-color) !important;
}

.dashboard-nav .navbar-nav {
    gap: 5px;
    margin: 0;
}

.dashboard-nav .navbar-nav li {
    list-style: none;
    position: relative;
}

.dashboard-nav .dropdown-toggle::after {
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.dashboard-logo .logo {
    color: #fff;
    padding: 20px 25px;
}

.dashboard-nav-title {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0;
    line-height: 40px;
}

.dashboard-nav .db-dropdown-menu {
    display: none;
}

.user-option img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    margin-right: 10px;
}

.navbar-nav.user-option li {
    display: flex;
    align-items: center;
}

.ball::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-color: #fff;
    left: 15px;
    top: 35px;
    opacity: 0.3;
}

.activity-table li {
    line-height: 35px;
}

.dashboard-header sup {
    top: -5px;
    left: inherit;
    right: -18px;
    font-size: 10px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--uc-primary-color);
    color: var(--uc-white-color);
    position: absolute;
    line-height: 20px;
    text-align: center;
}

.msg-history,
.active-chat-list {
    height: 60vh;
    overflow-y: scroll;
}

.msg-history li,
.active-chat-list li {
    display: flex;
    padding: 10px 0;
    align-items: start;
    flex-wrap: wrap;
}

.active-chat-list li {
    min-width: 100%;
    line-height: 20px;
    cursor: pointer;
}

.active-chat-list li img {
    width: 50px;
    height: 50px;
}

.msg-history li .avata,
.active-chat-list li .avata {
    position: relative;
    cursor: pointer;
    margin-right: 10px;
}

.active-chat-list li.new-message .chat-time,
.active-chat-list li.new-message .chat-info {
    font-weight: 600;
    color: var(--uc-dark-color);
}

.active-chat-list li .chat-time {
    font-size: 13px;
}

.active-chat-list li .user-status {
    position: absolute;
    top: 32px;
    left: 35px;
}

.active-chat-list li .un-read {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: var(--uc-primary-color);
    text-align: center;
    line-height: 19px;
    margin-left: auto;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
}

.chatbox-head img {
    width: 70px;
    height: 70px;
}

.chat-write-box {
    padding-top: 1.5rem;
    border-top: 1px solid;
    border-color: var(--uc-gray-color);
}

.chat-infor .name {
    font-weight: 500;
    font-size: 14px;
    color: var(--uc-general-color);
    display: table;
}

.search-form label {
    width: 100%;
}

.msg-history li .avata img {
    width: 40px;
    height: 40px;
}

.msg-history li.msg-replayer {
    flex-direction: row-reverse;
    margin-left: auto;
}

.msg-history li.msg-replayer .avata {
    margin-right: 0;
    margin-left: 10px;
}

.msg-history li {
    align-items: flex-start;
    width: 75%;
}

.msg-history li .avata {
    flex-shrink: 0;
}

.chat-write-box textarea {
    resize: none;
    padding-right: 115px;
}

.chat-write-box button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.msg-history li.msg-replayer .chat-info {
    text-align: right;
}

.chatbox-head .user-status {
    position: absolute;
    top: 50px;
    left: 50px;
}

.chatbox-head {
    border-bottom: 1px solid;
    border-color: var(--uc-gray-color);
    margin-bottom: 15px;
}

.chat-info {
    background-color: var(--uc-light-color);
    border-radius: 3px;
    padding: 10px 15px;
}

.chat-info .date-time {
    font-size: 12px;
    color: var(--uc-dark-color);
    margin-bottom: 0;
}

.use-on-chat {
    height: 100%;
}

.items-list tr td,
.items-list tr th {
    padding: 20px;
    font-weight: 400;
}

.items-list td img {
    width: 50px;
    float: left;
    margin-right: 15px;
}

.items-list.bg-transparent tr {
    background-color: transparent;
    border-bottom: 1px solid #ececec;
}

.dashboard-panel .items-list thead tr {
    background-color: var(--uc-light-color);
    border-bottom: 0;
}

.dashboard-panel .items-list thead tr th {
    color: var(--uc-dark-color);
    font-weight: 600;
}

.property-info .property-title {
    font-size: 17px;
    color: var(--uc-dark-color);
    font-weight: 500;
    line-height: 15px;
}

.items-list .price {
    font-family: var(--uc-primary-font);
    font-weight: 600;
    color: var(--uc-primary-color);
    font-size: 20px;
}

.submit-property {
    background-color: var(--uc-white-color);
    border-radius: 5px;
    position: relative;
}

.media-upload .col {
    position: relative
}

.media-upload a {
    position: absolute;
    top: 10px;
    right: 25px;
    color: #fff;
    cursor: pointer;
    display: block;
    background: var(--uc-primary-color);
    padding: 10px 12px;
    font-size: 11px;
    border-radius: 3px;
}

.fileupload_label {
    background: transparent;
    cursor: pointer;
    font-weight: 400;
    padding: 70px 0;
    margin-bottom: 30px;
    margin-top: 30px;
    text-align: center;
    background: var(--uc-light-color);
    width: 100%;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.collaps-head {
    background-color: var(--uc-light-color);
    padding: 20px;
    color: var(--uc-dark-color);
    display: block;
    cursor: pointer;
}

.panel {
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.collaps-content {
    background-color: var(--uc-white-color);
    padding: 20px 0;
}

.submit-property .save-data {
    position: absolute;
    top: 20px;
    right: 30px;
}

.db-review-statistics {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.db-review-data {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 30px;
    background-color: var(--uc-white-color);
    border-radius: 10px;
    flex: 1 1 0px;
}

.db-rating-score {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.db-score-avg {
    font-size: 40px;
    font-weight: 700;
    color: var(--uc-dark-color);
}

.db-star-rating-bg {
    position: relative;
}

.db-star-rating-bg::before {
    content: '\2605\2605\2605\2605\2605';
    top: 50%;
    position: relative;
    left: 0;
    transform: translateY(-50%);
    text-indent: initial;
    color: #555;
    font-size: 20px;
    letter-spacing: -2px;
}

.db-star-rating {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    overflow: hidden;
}

.db-star-rating::before {
    content: '\2605\2605\2605\2605\2605';
    position: relative;
    text-indent: initial;
    color: #f5b400;
    font-size: 20px;
    letter-spacing: -2px;
}

.db-rating-grow {
    padding: 2px 15px;
    background-color: lightgreen;
    border-radius: 15px;
    font-size: 12px;
    color: #fff;
    line-height: 28px;
}

.db-score-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.db-score-list li {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    font-weight: 500;
}

.db-score-list .rating-length {
    height: 5px;
    background-color: var(--uc-gray-color);
    position: relative;
}

.db-score-list .rating-length span {
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: green;
}

.submited-review-status {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    grid-row-gap: 10px;
}

.submited-review-status li {
    padding: 0 10px;
    border-right: 1px solid;
    border-color: var(--uc-gray-color);
    line-height: 20px;
    list-style: none;
}

.submited-review-status li:last-child {
    border: 0
}

.submited-review-status li a {
    font-size: 13px;
    font-weight: 600;
    color: var(--uc-text-light-color);
    text-decoration: none;
}

.db-comments-author {
    display: flex;
    gap: 10px;
    align-items: center;
}

.db-comments-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.db-comments-author span {
    font-weight: 500;
}

.db-comments-text {
    max-width: 700px;
    padding-bottom: 15px;
    position: relative;
}

.db-review-action {
    position: absolute;
    left: -10px;
    bottom: 0;
    display: flex;
    flex-direction: row;
    visibility: hidden;
    opacity: 0;
}

.db-review-table tbody tr:hover .db-review-action {
    visibility: visible;
    opacity: 1;
}

.db-review-action a {
    display: block;
    padding: 0 10px;
    line-height: 18px;
    text-decoration: none;
    border-right: 1px solid;
    border-color: var(--uc-gray-color);
    font-size: 13px;
    font-weight: 600;
    color: var(--uc-dark-color);
}

.db-review-action a:hover {
    color: var(--uc-primary-color);
}

.db-review-action a:last-child {
    border: none;
}

.db-review-table tbody td {
    vertical-align: top;
}

.db-response-property .property-title {
    font-size: 15px;
    margin-bottom: 0;
}

.db-feedback-status {
    display: block;
    color: darkorange;
    text-decoration: none;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 500;
}

.admin-profile {
    padding: 50px;
    background-color: var(--uc-white-color);
    text-align: center;
}

.admin-avata {
    position: relative;
    display: inline-block;
    text-align: center;
}

.admin-avata label {
    width: 100%;
    text-align: -webkit-center;
}

.admin-avata input[type="image"] {
    width: 200px;
    border-radius: 100%;
    margin-bottom: 10px;
}

.admin-avata label span {
    border-radius: 5px;
    background-color: var(--uc-light-color);
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.09);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.09);
    color: #484848;
    font-size: 14px;
    height: 35px;
    line-height: 35px;
    width: 70px;
    display: block;
    cursor: pointer;
    position: absolute;
    top: -20px;
    right: -20px;
}

.admin-profile .admin-name {
    font-size: 18px;
    font-family: var(--uc-primary-font);
    color: var(--uc-dark-color);
    font-weight: 700;
}

.admin-profile span {
    width: 100%;
    display: inline-block;
}

.user-profile-details {
    padding: 50px;
    position: relative;
    background-color: var(--uc-white-color);
}

.profile-settings {
    padding: 50px;
    background-color: var(--uc-white-color);
    position: relative;
}

.profile-settings .custom-check-box {
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

/*======================================================
# Photo Gallery
======================================================*/
.gallery-style-1 .entry-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery-style-1 .entry-title,
.gallery-style-1 .entry-title a {
    color: var(--uc-dark-color);
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 600;
}

.gallery-style-1 .entry-meta {
    display: flex;
    gap: 5px;
}

.gallery-style-1 .entry-meta a {
    background-color: var(--uc-primary-color);
    color: var(--uc-white-color);
    display: block;
    padding: 2px 5px;
    font-size: 12px;
    letter-spacing: 1px;
}

.gallery-style-1 .entry-wrapper::before {
    content: "";
    position: absolute;
    background: rgba(var(--uc-secondary-color-rgba), 0.9);
    height: 100%;
    left: 20%;
    right: 20%;
    top: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.gallery-style-1 .entry-wrapper:hover::before {
    opacity: 1;
    left: 0;
    right: 0;
    cursor: pointer;
}

.gallery-style-1 .entry-thumbnail {
    position: relative;
}

.gallery-style-1 a.quick-view,
.gallery-style-1 a.photo-view {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: #fff;
    position: absolute;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.gallery-style-1 .entry-wrapper:hover a.quick-view {
    visibility: visible;
    opacity: 1;
    margin-left: 24px;
}

.gallery-style-1 .entry-wrapper:hover a.photo-view {
    visibility: visible;
    opacity: 1;
    margin-left: -24px;
}

.gallery-style-2 .entry-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gallery-style-2 .entry-title,
.gallery-style-2 .entry-title a {
    color: var(--uc-dark-color);
    letter-spacing: 1px;
    font-size: 18px;
    font-weight: 600;
}

.gallery-style-2 .entry-meta {
    display: flex;
    gap: 5px;
}

.gallery-style-2 .entry-meta a {
    background-color: var(--uc-primary-color);
    color: var(--uc-white-color);
    display: block;
    padding: 2px 5px;
    font-size: 12px;
    letter-spacing: 1px;
}

.gallery-style-2 .entry-thumbnail {
    position: relative;
}

.gallery-style-2 a.quick-view,
.gallery-style-2 a.photo-view {
    width: 50px;
    height: 50px;
    border-radius: 3px;
    background: #fff;
    position: absolute;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}

.gallery-style-2 .entry-wrapper:hover a.quick-view {
    visibility: visible;
    opacity: 1;
    margin-left: 30px;
}

.gallery-style-2 .entry-wrapper:hover a.photo-view {
    visibility: visible;
    opacity: 1;
    margin-left: -30px;
}

/*======================================================
# Compare
======================================================*/
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-list-properties {
    overflow-x: auto;
    width: 100%;
    --bs-table-bg: transparent;
}

.clip-item .fa-times {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 25px;
    height: 25px;
    opacity: 0;
    padding: 5px;
    cursor: pointer;
    text-align: center;
    line-height: 16px;
    font-size: 10px;
}

.clip-item:hover .fa-times {
    opacity: 1;
}

.compare-list-properties tr:nth-child(2n) {
    background: #f5f5f5;
}

.compare-list-properties td:first-child {
    text-align: left;
    width: 200px;
}

.compare-list-properties td {
    padding: 15px;
    text-align: center;
    position: relative;
}

.compare-list-properties .available::before,
.compare-list-properties .not-available::before {
    content: "\f00c";
    color: #2ab160;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
}

.compare-list-properties .not-available::before {
    content: "\f00d";
    color: #d43e3e;
}

/*=====================================================
# Accordion
*====================================================*/
.bb-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ac-card {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ac-toggle {
    padding: 10px 15px;
    background-color: var(--uc-light-gray-color);
    color: var(--uc-dark-color);
    font-family: var(--uc-primary-font);
    font-weight: 600;
    font-size: 17px;
    display: block;
    cursor: pointer;
    letter-spacing: 1px;
    line-height: 30px;
}

.ac-toggle.active {
    background-color: var(--uc-primary-color);
    color: var(--uc-white-color);
}

.ac-collapse {
    padding: 18px;
    background-color: var(--uc-light-color);
    display: none;
}

/*=====================================================
# Timeline
*====================================================*/
.timeline-style-1,
.timeline-style-2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-style-1 .entry-wrapper {
    flex-direction: row;
    align-items: start;
    gap: 40px;
}

.timeline-style-1 .entry-date {
    white-space: nowrap;
    flex: 0 0 100px;
    font-family: var(--uc-primary-font);
    text-align: right;
}

.timeline-style-1 .entry-date span {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--uc-primary-color);
    color: var(--uc-white-color);
    font-size: 12px;
    position: relative;
}

.timeline-style-1 .entry-title,
.timeline-style-1 .entry-title a {
    color: var(--uc-dark-color);
}

.timeline-style-1 .entry-date span::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 1px;
    top: 0;
    right: -24px;
    border-width: 12px;
    border-color: transparent;
    border-left-color: var(--uc-primary-color);
    border-style: solid;
}

.timeline-style-1 .entry-content {
    position: relative;
    padding-left: 20px;
}

.timeline-style-1 .entry-content::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 35px;
    width: 1px;
    height: calc(100% - 20px);
    background-color: var(--uc-primary-color);
}

.timeline-style-1 .entry-content::after {
    content: "";
    position: absolute;
    left: -7px;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: var(--uc-primary-color);
}

.timeline-style-1 .entry-author {
    color: var(--uc-dark-color);
}

.timeline-style-1 .entry-author span {
    font-family: "Times New Roman";
    font-style: italic;
}

.timeline-style-2 .entry-wrapper {
    align-items: start;
    gap: 60px;
}

.timeline-style-2 .entry-wrapper:nth-child(odd) {
    flex-direction: row;
}

.timeline-style-2 .entry-wrapper:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-style-2 .entry-date,
.timeline-style-2 .entry-content {
    flex: 1 1 50%;
}

.timeline-style-2 .entry-date {
    white-space: nowrap;
    font-family: var(--uc-primary-font);
    display: flex;
}

.timeline-style-2 .entry-wrapper:nth-child(odd) .entry-date {
    justify-content: end;
}

.timeline-style-2 .entry-wrapper:nth-child(even) .entry-date {
    justify-content: start;
}

.timeline-style-2 .entry-date span {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--uc-primary-color);
    color: var(--uc-white-color);
    font-size: 12px;
    position: relative;
}

.timeline-style-2 .entry-title,
.timeline-style-2 .entry-title a {
    color: var(--uc-dark-color);
}

.timeline-style-2 .entry-wrapper:nth-child(odd) .entry-date span::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 1px;
    top: 0;
    right: -24px;
    border-width: 12px;
    border-color: transparent;
    border-left-color: var(--uc-primary-color);
    border-style: solid;
}

.timeline-style-2 .entry-wrapper:nth-child(even) .entry-date span::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 1px;
    top: 0;
    left: -24px;
    border-width: 12px;
    border-color: transparent;
    border-right-color: var(--uc-primary-color);
    border-style: solid;
}

.timeline-style-2 .entry-wrapper:nth-child(odd) .entry-content {
    position: relative;
    text-align: left;
}

.timeline-style-2 .entry-wrapper:nth-child(even) .entry-content {
    position: relative;
    text-align: right;
}

.timeline-style-2 .entry-wrapper:nth-child(odd) .entry-content::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 35px;
    width: 1px;
    height: calc(100% - 20px);
    background-color: var(--uc-primary-color);
}

.timeline-style-2 .entry-wrapper:nth-child(odd) .entry-content::after {
    content: "";
    position: absolute;
    left: -32px;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: var(--uc-primary-color);
}

.timeline-style-2 .entry-wrapper:nth-child(even) .entry-content::before {
    content: "";
    position: absolute;
    right: -30px;
    top: 35px;
    width: 1px;
    height: calc(100% - 20px);
    background-color: var(--uc-primary-color);
}

.timeline-style-2 .entry-wrapper:nth-child(even) .entry-content::after {
    content: "";
    position: absolute;
    right: -32px;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background-color: var(--uc-primary-color);
}

.timeline-style-2 .entry-author {
    color: var(--uc-dark-color);
}

.timeline-style-2 .entry-author span {
    font-family: "Times New Roman";
    font-style: italic;
}

.timeline-style-2 .entry-wrapper:nth-child(odd) .entry-date span {
    animation: linear infinite;
    animation-name: right-move;
    animation-duration: 1s;
}

@keyframes right-move {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}

.timeline-style-2 .entry-wrapper:nth-child(even) .entry-date span {
    animation: linear infinite;
    animation-name: left-move;
    animation-duration: 1s;
}

@keyframes left-move {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0);
    }
}

/*=====================================================
# Sign In Page
*====================================================*/
/* ===== LEFT PANEL ===== */
.auth-visual {
    position: relative;
    flex: 1;
    min-height: 90vh;
    background-image: linear-gradient(rgba(13, 20, 36, 0.55), rgba(13, 20, 36, 0.65)), url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?w=1200&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px;
    color: #fff;
}

.auth-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.auth-logo i {
    color: var(--gold);
    font-size: 18px;
}

.auth-quote {
    font-family: var(--uc-primary-font);
    font-style: italic;
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 26px;
}

.auth-quote .accent {
    color: var(--gold);
}

.auth-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 46px;
}

.auth-stat-value {
    color: var(--uc-primary-color);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    font-family: var(--uc-primary-font);
}

.auth-stat-label {
    font-size: 13px;
    color: #D7DAE2;
}

.auth-testimonial-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 18px 22px;
    font-size: 14.5px;
    font-style: italic;
    color: #fff;
    max-width: 420px;
}

.auth-testimonial-author {
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    color: var(--gold);
    margin-top: 10px;
}

/* ===== RIGHT PANEL ===== */
.auth-form-panel {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-form-container {
    max-width: 380px;
    width: 100%;
}

.auth-title {
    font-size: 30px;
    font-weight: 500;
}

.auth-subtitle {
    font-size: 14px;
    margin-bottom: 1.5rem;
}

.auth-tabs {
    display: flex;
    background: #fff;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
}

.auth-tab {
    flex: 1;
    font-weight: 500;
    color: var(--uc-dark-color);
    border: none;
    background: transparent;
}

.auth-tab.active {
    background: var(--uc-dark-color);
    color: #fff;
}

.field-group {
    margin-bottom: 16px;
}

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

.input-with-icon .icon-left {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9A9DA6;
    font-size: 14px;
    display: inline-flex;
}

.input-with-icon .icon-right {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9A9DA6;
    font-size: 14px;
    cursor: pointer;
}

.user-access-form .form-control {
    background: var(--uc-white-color);
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
    padding: 13px 16px 13px 42px;
    font-size: 14px;
    width: 100%;
    color: var(--uc-dark-color);
}

.user-access-form .form-control:focus,
.user-access-form .form-control::autofill {
    outline: none;
    border-color: var(--uc-dark-color);
    background-color: #fff;
}

.user-access-form .form-control.has-right-icon {
    padding-right: 42px;
}

.auth-options-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    font-size: 13.5px;
}

.remember-check {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
}

.remember-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--navy);
}

.btn-sign-in {
    padding: 14px;
    width: 100%;
    gap: 8px;
    margin-bottom: 24px;
    height: auto;
}

.btn-sign-in:hover {
    background: #1a2338;
    color: #fff;
}

.divider-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.divider-row .line {
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
}

.divider-row span {
    font-size: 13px;
    white-space: nowrap;
}

.social-row {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
}

.btn-social-google {
    background: #fff;
    color: var(--uc-dark-color);
}

.btn-social-apple {
    background: var(--uc-dark-color);
    color: #fff;
    border-color: var(--uc-dark-color);
}

.auth-footer-link {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== ACCOUNT TYPE (Sign Up) ===== */
.field-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #4B4F58;
    margin-bottom: 8px;
    display: block;
}

.account-type-row {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.account-type-pill {
    flex: 1;
    text-align: center;
    padding: 10px 6px;
    border-radius: 5px;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
    background: var(--uc-white-color);
    font-size: 13px;
    font-weight: 500;
    color: var(--uc-dark-color);
    cursor: pointer;
}

.account-type-pill:hover {
    border-color: var(--uc-dark-color);
}

.account-type-pill.selected {
    background: var(--uc-dark-color);
    color: #fff;
    border-color: var(--uc-dark-color);
}

.terms-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 14px;
    color: var(--uc-dark-color);
}

.terms-row input {
    width: 16px;
    height: 16px;
    accent-color: var(--uc-primary-color);
    flex-shrink: 0;
}

.terms-row a {
    color: var(--uc-primary-color);
    font-weight: 500;
}

.btn-create-account {
    padding: 14px;
    border-radius: 5px;
    border: none;
    width: 100%;
    gap: 8px;
    margin-bottom: 20px;
    height: auto;
}

@media (max-width: 991px) {
    .auth-page {
        flex-direction: column;
    }

    .auth-visual {
        min-height: 420px;
    }

    .auth-form-panel {
        min-height: auto;
        padding: 44px 20px;
    }
}

@media (max-width: 480px) {
    .auth-quote {
        font-size: 21px;
    }

    .auth-stats {
        gap: 26px;
    }

    .auth-testimonial-card {
        font-size: 13px;
        padding: 14px 16px;
    }

    .account-type-row {
        flex-direction: column;
    }
}

/*==================
# Contact Page
*=================*/
.contact-info ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info li {
    list-style: none;
}

.contact-info li span {
    color: var(--uc-dark-color);
    font-size: 15px;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 1px;
    width: 100%;
    font-family: var(--uc-primary-font);
}

.info-strip .info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.info-strip .info-item:last-child {
    border-right: none;
}

.info-strip .info-icon {
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.info-strip .info-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 4px;
}

.info-strip .info-value {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

.contact-form-wrap .eyebrow-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.contact-form-wrap .eyebrow-line {
    width: 24px;
    height: 1px;
    background: var(--uc-primary-color);
}

.contact-form-wrap .eyebrow-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--uc-primary-color);
}

.contact-form-wrap .section-title {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 12px;
}

.contact-form-wrap .section-subtext {
    font-size: 15px;
    color: #6b6b64;
    margin-bottom: 34px;
}

.contact-form-wrap .form-card {
    background: #fff;
    border-radius: 5px;
    padding: 34px 34px 30px;
}

.message-form .field-label .req {
    color: #c9924f;
}

.message-form .form-control,
.message-form .form-select {
    width: 100%;
    background-color: var(--uc-light-color);
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 22px;
}

.message-form .form-control::placeholder,
.message-form .form-select::placeholder {
    color: #9a9a90;
}

.message-form .form-control:focus,
.message-form .form-select:focus {
    outline: none;
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.3);
    background: #fff;
}

.message-form textarea.form-control {
    resize: none;
    height: 130px;
}

.message-form .consent-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 26px;
}

.message-form .consent-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #1a1a1a;
    margin-top: 2px;
    flex-shrink: 0;
}

.message-form .consent-text {
    font-size: 14px;
    color: #5c5c56;
    line-height: 1.6;
}

.message-form .consent-text a {
    color: #c9924f;
    text-decoration: none;
    font-weight: 600;
}

.message-form .submit-btn {
    width: 100%;
    background: var(--uc-dark-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 15px;
    font-size: 13px;
    letter-spacing: 0.04em;
    gap: 10px;
    height: auto;
}

.message-form .submit-btn:hover {
    opacity: 0.92;
    color: #fff;
}

/* Map */
.contact-sidebar-wrap .map-wrap {
    position: relative;
    height: 230px;
    background: url('https://picsum.photos/seed/mapbg1/700/460') center/cover;
    border-radius: 5px;
    overflow: hidden;
}

.contact-sidebar-wrap .map-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.contact-sidebar-wrap .map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
}

.contact-sidebar-wrap .pin-badge {
    width: 42px;
    height: 42px;
    background: var(--uc-primary-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    margin-bottom: 14px;
}

.contact-sidebar-wrap .map-address {
    font-size: 15px;
    color: #fff;
    margin-bottom: 2px;
}

.contact-sidebar-wrap .map-subaddress {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
}

.contact-sidebar-wrap .open-maps-btn {
    background: #fff;
    color: #1a1a1a;
    border: none;
    border-radius: 4px;
    padding: 9px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
}

/* Directory card */
.contact-sidebar-wrap .directory-card {
    background: #fff;
    margin-top: 20px;
}

.contact-sidebar-wrap .directory-header {
    padding: 20px 26px;
    border-bottom: 1px solid #f0efe8;
}

.contact-sidebar-wrap .directory-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: var(--uc-primary-color);
}

.contact-sidebar-wrap .dept-row {
    display: flex;
    gap: 16px;
    padding: 20px 26px;
    border-bottom: 1px solid #f0efe8;
}

.contact-sidebar-wrap .dept-row:last-child {
    border-bottom: none;
}

.contact-sidebar-wrap .dept-icon {
    width: 36px;
    height: 36px;
    border: 1px solid #e2e0d5;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4d4d47;
    flex-shrink: 0;
    font-size: 15px;
}

.contact-sidebar-wrap .dept-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 3px;
}

.contact-sidebar-wrap .dept-desc {
    font-size: 13.5px;
    color: #6b7a94;
    margin-bottom: 8px;
}

.contact-sidebar-wrap .dept-email {
    font-size: 14px;
    display: block;
    text-decoration: none;
}

.contact-sidebar-wrap .dept-phone {
    font-size: 13.5px;
    color: #6b6b64;
}

/* After hours */
.contact-sidebar-wrap .after-hours-card {
    background: #14142b;
    color: #fff;
    padding: 26px;
    margin-top: 20px;
    border-radius: 5px;
}

.contact-sidebar-wrap .after-hours-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.07em;
    color: var(--uc-primary-color);
    margin-bottom: 12px;
}

.contact-sidebar-wrap .after-hours-text {
    font-size: 14px;
    line-height: 1.6;
    color: #d8d7cf;
    margin-bottom: 18px;
}

.contact-sidebar-wrap .after-hours-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 15px;
    color: #fff;
}

@media (max-width: 576px) {
    .form-card {
        padding: 26px 22px;
    }

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

@media (max-width: 767px) {
    .info-strip .info-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .info-strip .col-6:nth-child(2n) .info-item {
        border-right: none;
    }
}

.location-tags .header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 26px;
}

.location-tags .eyebrow-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.location-tags .eyebrow-line {
    width: 24px;
    height: 1.5px;
    background: var(--uc-primary-color);
    display: inline-block;
}

.location-tags .eyebrow-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--uc-primary-color);
}

.location-tags .section-title {
    font-size: 34px;
    font-weight: 500;
    margin: 0;
}

/* Location tabs */
.location-tags .loc-tabs {
    display: flex;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.location-tags .loc-tab-btn {
    border: none;
    background-color: transparent;
    letter-spacing: 0.06em;
    padding: 13px 24px;
    cursor: pointer;
    border-radius: 0;
    height: auto;
    font-size: 12px;
    font-weight: 500;
}

.location-tags .loc-tab-btn.active {
    background-color: var(--uc-dark-color);
    color: #fff;
}

/* Panels */
.location-tags .loc-panel {
    display: none;
}

.location-tags .loc-panel.active {
    display: block;
}

.location-tags .loc-photo-wrap {
    position: relative;
    height: 100%;
    min-height: 360px;
    border-radius: 4px;
    overflow: hidden;
}

.location-tags .loc-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.location-tags .loc-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 55%, rgba(0, 0, 0, 0.6));
}

.location-tags .loc-photo-caption {
    position: absolute;
    left: 26px;
    bottom: 22px;
    z-index: 2;
}

.location-tags .loc-tag {
    display: inline-block;
    background: var(--uc-primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 5px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.location-tags .location-tags .loc-city {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.location-tags .loc-details-card {
    background: #fff;
    border-radius: 4px;
    padding: 28px 30px;
    height: 100%;
}

.location-tags .detail-row {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.location-tags .detail-icon {
    width: 34px;
    height: 34px;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--uc-primary-color);
    flex-shrink: 0;
    font-size: 14px;
}

.location-tags .detail-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #9a9a94;
    margin-bottom: 4px;
}

.location-tags .detail-value {
    font-size: 14.5px;
    color: #1a1a1a;
    line-height: 1.5;
}

.location-tags .loc-buttons {
    display: flex;
    gap: 12px;
    margin-top: 6px;
    flex-wrap: wrap;
}

.location-tags .btn-directions {
    background: var(--uc-dark-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex: 1 1 auto;
    justify-content: center;
}

.location-tags .btn-directions:hover {
    color: #fff;
    opacity: 0.92;
}

.location-tags .btn-call {
    background: transparent;
    color: var(--uc-dark-color);
    border: 1.5px solid;
    border-color: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    padding: 12px 20px;
    font-weight: 500;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex: 1 1 auto;
    justify-content: center;
}

.location-tags .btn-call:hover {
    color: #1a1a1a;
    background: #f4f3ee;
}

@media (max-width: 767px) {
    .location-tags .section-title {
        font-size: 26px;
    }

    .location-tags .loc-tabs {
        width: 100%;
    }

    .location-tags .loc-tab-btn {
        flex: 1;
        padding: 12px 10px;
        font-size: 11.5px;
    }

    .location-tags .loc-photo-wrap {
        min-height: 240px;
        margin-bottom: 20px;
    }
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header .eyebrow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
}

.faq-header .eyebrow-line {
    width: 24px;
    height: 1.5px;
    background: var(--uc-primary-color);
}

.faq-header .eyebrow-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--uc-primary-color);
}

.faq-header .faq-title {
    font-size: 34px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
}

.faq-header .faq-subtext {
    font-size: 15px;
    color: #9a9aa8;
}

.accordion-item-custom {
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.1);
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--uc-light-color);
}

.accordion-header-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
}

.accordion-header-custom i {
    font-size: 11px;
}

.accordion-header-custom.open i {
    transform: rotate(180deg);
}

.accordion-question {
    font-weight: 500;
    font-size: 15px;
    color: var(--uc-dark-color);
}

.accordion-icon {
    color: #c9924f;
    font-size: 14px;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.2s ease;
}

.accordion-header-custom.open .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body-custom {
    display: none;
    padding: 0 22px 22px;
}

.accordion-body-custom p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.newslatter-block .newsletter-title {
    font-size: 34px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
}

.newslatter-block .newsletter-subtext {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.newslatter-block .newsletter-form {
    display: flex;
    gap: 12px;
}

.newslatter-block .newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    border-radius: 5px;
    padding: 13px 16px;
    font-size: 14px;
    color: #fff;
}

.newslatter-block .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.newslatter-block .newsletter-input:focus {
    outline: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.newslatter-block .subscribe-btn {
    background-color: var(--uc-dark-color);
    color: #fff;
    border: none;
    padding: 13px 26px;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    height: auto;
}

.newslatter-block .subscribe-btn:hover {
    opacity: 0.9;
}

@media (max-width: 767px) {
    .newslatter-block .newsletter-banner {
        padding: 36px 24px;
    }

    .newslatter-block .newsletter-form {
        margin-top: 20px;
    }
}



/*=====================================================
# Custom Scroll Bar
======================================================*/
.dashboard-nav-area::-webkit-scrollbar,
.left-filter-fixed::-webkit-scrollbar,
.nav-leftpush-overlay .navbar-expand-lg .navbar-slide-push::-webkit-scrollbar {
    display: none;
}

.active-chat-list::-webkit-scrollbar,
.msg-history::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.active-chat-list::-webkit-scrollbar-track,
.msg-history::-webkit-scrollbar-track {
    background: var(--theme-white-color);
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: var(--theme-dark-color);
}

.active-chat-list::-webkit-scrollbar-thumb,
.msg-history::-webkit-scrollbar-thumb {
    background: var(--theme-gray-color);
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: var(--theme-primary-color);
}

/*================
Valuation Page
================*/
.wizard-wrap {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* ---------- Progress bar ---------- */
.progress-header {
    background: var(--uc-dark-color);
    padding: 26px 40px;
}

.progress-track {
    display: flex;
    align-items: center;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.wizard-wrap .step-circle {
    background: var(--uc-secondary-color);
    color: #8a8a9a;
    margin-bottom: 6px;
}

.wizard-wrap .step-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #6b6b80;
}

.progress-line {
    flex: 1 1 auto;
    height: 1.5px;
    background: #2b2b45;
    margin: 0 10px;
    margin-bottom: 22px;
    transition: background 0.2s ease;
}

.progress-step.active .step-circle {
    background: #fff;
    color: #14142b;
}

.progress-step.active .step-label {
    color: var(--uc-primary-color);
}

.progress-step.completed .step-circle {
    background: var(--uc-primary-color);
    color: #fff;
}

.progress-step.completed .step-label {
    color: var(--uc-primary-color);
}

.progress-line.completed {
    background: var(--uc-primary-color);
}

/* ---------- Step body ---------- */
.step-pane {
    display: none;
    padding: 40px;
}

.step-pane.active {
    display: block;
}

.step-title {
    font-size: 28px;
    margin-bottom: 8px;
}

.step-title em {
    font-style: italic;
}

.input-icon-wrap {
    margin-bottom: 22px;
}

.wizard-wrap .form-control {
    width: 100%;
}

.wizard-wrap .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--uc-dark-color);
}

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

.input-icon-wrap i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

.input-icon-wrap .form-control {
    padding-left: 35px;
}

/* map */
.map-box {
    position: relative;
    height: 222px;
    border-radius: 6px;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=800&h=300&fit=crop&auto=format') center/cover;
    margin-bottom: 26px;
}

.map-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(230, 225, 205, 0.35);
}

.map-pin-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.map-pin-circle {
    width: 40px;
    height: 40px;
    background: var(--uc-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 12px;
}

.map-pin-label {
    background: var(--uc-secondary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 5px;
}

hr.step-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 28px 0;
}

/* Pill buttons */
.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.pill-btn {
    border: 1px solid;
    border-color: rgba(0, 0, 0, .1);
}

.pill-btn.selected {
    background: var(--uc-dark-color);
    color: #fff;
    border-color: var(--uc-dark-color);
}

.pill-group.two-col-wide .pill-btn {
    flex: 1 1 45%;
    text-align: center;
}

/* Counter */
.counter-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.counter-btn {
    border: none;
}

.counter-btn.dark {
    background: #14142b;
    color: #fff;
}

/* Checkboxes */
.feature-check {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 13px 16px;
    margin-bottom: 14px;
    cursor: pointer;
    color: #1a1a1a;
}

.feature-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #14142b;
}

.feature-check.full-width {
    grid-column: 1 / -1;
}

/* Toggle two-buttons (mortgage) */
.toggle-two {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.toggle-two .pill-btn {
    flex: 1;
    text-align: center;
    padding: 13px;
}

/* Summary card */
.summary-card {
    background: var(--uc-light-color);
    border-radius: 8px;
    padding: 22px 26px;
    margin: 26px 0;
}

.summary-heading {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.07em;
    color: var(--uc-dark-color);
    margin-bottom: 18px;
}

.summary-item {
    margin-bottom: 16px;
}

.summary-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #9a9a94;
    margin-bottom: 3px;
}

.summary-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 22px 0;
}

.consent-row input[type="checkbox"] {
    width: 17px;
    height: 17px;
    accent-color: #14142b;
    margin-top: 2px;
    flex-shrink: 0;
}

.consent-text {
    font-size: 13.5px;
    color: #5c5c56;
    line-height: 1.6;
}

.consent-text a {
    text-decoration: none;
    font-weight: 600;
}

/* Nav buttons */
.step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.btn-back {
    background: #fff;
    border: 1.5px solid #e2e0d5;
}

.btn-continue {
    background: var(--uc-dark-color);
    color: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-continue:disabled {
    background: #cfcec5;
    color: #8a8a83;
    cursor: not-allowed;
}

.btn-continue:hover:not(:disabled) {
    opacity: 0.80;
    color: #fff;
}

.feature-card {
    background: #fff;
    border: 1px solid;
    border-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: border-color 0.2s ease;
}

.feature-card:hover {
    border-color: var(--uc-primary-color);
    border-width: 1.5px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--uc-light-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--uc-primary-color);
    font-size: 18px;
    margin-bottom: 18px;
}

.feature-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--uc-dark-color);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #6b6b64;
    margin: 0;
}

@media (max-width: 576px) {
    .step-pane {
        padding: 26px 22px;
    }

    .progress-header {
        padding: 20px;
    }

    .step-label {
        display: none;
    }

    .pill-group.two-col-wide .pill-btn {
        flex: 1 1 100%;
    }
}

.what-included {
    padding: 26px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    background-color: var(--uc-dark-color);
}

.included-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.agent-card-wrap {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #eceae0;
    border-radius: 10px;
    padding: 20px 22px;
}

.card-eyebrow {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.07em;
    margin-bottom: 1rem;
}

.agent-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.agent-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--uc-dark-color);
    margin-bottom: 2px;
}

.agent-role {
    font-size: 13px;
    color: #8a8a83;
    margin-bottom: 5px;
}

.agent-meta {
    font-size: 13px;
    color: #5c5c56;
    display: flex;
    align-items: center;
    gap: 5px;
}

.agent-meta i {
    color: var(--uc-primary-color);
    font-size: 12px;
}

.agent-buttons {
    display: flex;
    gap: 10px;
}

.btn-email {
    flex: 1;
    background: var(--uc-light-color);
    color: var(--uc-dark-color);
    border: none;
    border-radius: 6px;
    padding: 11px 14px;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-email:hover {
    color: #1a1a1a;
    background: #e6e3d7;
}

/*===============
Service Page
================*/
.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-photo-wrap {
    position: relative;
    height: 240px;
}

.service-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 7px 14px 7px 10px;
    border-radius: 20px;
}

.service-badge svg {
    width: 15px;
    height: 15px;
}

.badge-buy {
    background: #c9924f;
}

.badge-rent {
    background: #3b5fd9;
}

.badge-sell {
    background: #1f9d55;
}

.service-body {
    padding: 26px 26px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-title {
    font-size: 21px;
    font-weight: 500;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.feature-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--uc-primary-color);
}

.service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    width: 100%;
    margin-top: auto;
}

.service-cta svg {
    width: 15px;
    height: 15px;
}

.sp-service-block .header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 44px;
}

.sp-service-block .eyebrow-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--uc-primary-color);
    margin-bottom: 12px;
}

.sp-service-block .section-title {
    font-size: 34px;
    font-weight: 500;
    margin: 0;
}

.sp-service-block .section-title em {
    font-style: italic;
}

.sp-service-block .header-desc {
    max-width: 320px;
    margin: 0;
}

.sp-service-block .service-card {
    background: #fff;
    border: 1px solid;
    border-color: rgba(0, 0, 0, .1);
    border-radius: 10px;
    padding: 26px 26px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sp-service-block .card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.sp-service-block .service-icon {
    width: 45px;
    height: 45px;
    background: #eff7e1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--uc-dark-color);
    flex-shrink: 0;
}

.sp-service-block .service-icon svg {
    width: 20px;
    height: 20px;
}

.sp-service-block .tag-pill {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 5px 11px;
    border-radius: 20px;
    white-space: nowrap;
}

.sp-service-block .tag-blue {
    background: #e3ecfb;
    color: #3b5fd9;
}

.sp-service-block .tag-purple {
    background: #efe7fb;
    color: #8b5cf6;
}

.sp-service-block .tag-tan {
    background: #f1e9d8;
    color: #a97f3f;
}

.sp-service-block .tag-green {
    background: #e2f5e9;
    color: #1f9d55;
}

.sp-service-block .tag-red {
    background: #fbe6e6;
    color: #d9483b;
}

.sp-service-block .tag-skyblue {
    background: #e1f2fb;
    color: #1f8fd9;
}

.sp-service-block .card-footer {
    margin-top: auto;
    border-top: 1px solid #f0efe8;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.sp-service-block .stat-line {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--uc-primary-color);
}

.sp-service-block .stat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--uc-primary-color);
    flex-shrink: 0;
}

.sp-service-block .learn-more-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--uc-dark-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sp-service-block .learn-more-link svg {
    width: 13px;
    height: 13px;
}

.sp-service-block .learn-more-link:hover {
    color: #14213d;
}

@media (max-width: 767px) {
    .sp-service-block .section-title {
        font-size: 27px;
    }

    .sp-service-block .header-desc {
        max-width: 100%;
    }
}

.process-row {
    display: flex;
}

.process-col {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.process-node-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.process-node {
    width: 56px;
    height: 56px;
    background: #1a2436;
    border: 1px solid #2c3a52;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.process-num {
    font-style: italic;
    font-weight: 600;
    font-size: 15px;
    color: var(--uc-primary-color);
}

/* Dashed connector: spans from the center of this column's node
     to the center of the next column's node */
.process-col:not(:last-child) .process-node-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    border-top: 1.5px dashed #3a4760;
    z-index: 1;
}

.process-title {
    font-weight: 400;
    font-family: var(--uc-primary-font);
    font-size: 21px;
    color: #fff;
    margin-bottom: 10px;
}

.process-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: #8f9bb3;
    max-width: 260px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .process-row {
        flex-wrap: wrap;
    }

    .process-col {
        flex: 1 1 45%;
        margin-bottom: 34px;
    }

    .process-col .process-node-wrap::after {
        display: none;
    }
}

.plan-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 32px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-eyebrow {
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 42px;
    color: var(--uc-dark-color);
    font-family: var(--uc-primary-font);
}

.plan-price .unit {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #6b6b64;
    margin-left: 4px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
    border: none;
    border-radius: 6px;
    padding: 14px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

/* ESSENTIAL (light) */
.card-essential {
    border: 1px solid;
    border-color: rgba(0, 0, 0, .1);
}

.card-essential .plan-features li {
    color: var(--uc-dark-color);
}

.card-essential .plan-features svg {
    color: var(--uc-primary-color);
}

.btn-essential {
    background: var(--uc-dark-color);
    color: #fff;
}

.btn-essential:hover {
    color: #fff;
    opacity: 0.9;
}

/* PREMIUM (dark, featured) */
.card-premium-wrap {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-badge {
    background: var(--uc-primary-color);
    color: #fff;
    text-align: center;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 10px;
}

.card-premium {
    background: #14142b;
    color: #fff;
    padding: 26px 30px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-premium .plan-eyebrow {
    color: var(--uc-primary-color);
}

.card-premium .plan-price {
    color: #fff;
}

.card-premium .plan-price .unit {
    color: #9a9aab;
}

.card-premium .plan-desc {
    color: #b3b3c0;
}

.card-premium .plan-features li {
    color: #e6e6ee;
    font-weight: 500;
}

.card-premium .plan-features svg {
    color: var(--uc-primary-color);
}

.btn-premium {
    background: var(--uc-primary-color);
    color: #fff;
}

.btn-premium:hover {
    color: #fff;
    opacity: 0.9;
}

/* ELITE (light) */
.card-elite {
    border: 1px solid;
    border-color: rgba(0, 0, 0, .1);
}

.card-elite .plan-features li {
    color: var(--uc-dark-color);
}

.card-elite .plan-features svg {
    color: var(--uc-primary-color);
}

.btn-elite {
    background: #14142b;
    color: #fff;
}

.btn-elite:hover {
    color: #fff;
    opacity: 0.9;
}

.plan-footnote {
    text-align: center;
    font-size: 13px;
    color: #8a8a83;
    margin-top: 30px;
}

.plan-footnote a {
    font-weight: 500;
}

.start-working .eyebrow-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--uc-primary-color);
    margin-bottom: 14px;
}

.start-working .cta-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 22px;
    color: var(--uc-dark-color);
}

.start-working .cta-title em {
    font-style: italic;
    color: var(--uc-dark-color);
}

.start-working .cta-desc {
    max-width: 440px;
    margin-bottom: 30px;
}

.start-working .cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: start;
}

/* Right contact panel */
.contact-panel {
    background: var(--uc-dark-color);
    border-radius: 14px;
    padding: 32px;
}

.panel-title {
    font-weight: 500;
    font-size: 15px;
    color: var(--uc-primary-color);
    margin-bottom: 6px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #1a2436;
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 14px;
}

.contact-row:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: #2a3550;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--uc-primary-color);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 16px;
    height: 16px;
}

.contact-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #8f9bb3;
    margin-bottom: 3px;
}

.contact-value {
    font-size: 14px;
    color: #fff;
    margin-bottom: 3px;
}

.contact-sub {
    font-size: 12.5px;
    color: #7c88a3;
}

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

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

/*================
Responsive Code
================*/
@media screen and (min-width: 1200px) {
    .box-layout {
        width: 85%;
    }
}

@media screen and (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-item {
        padding: 10px 20px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav li>ul.dropdown-menu {
        visibility: hidden;
        min-width: 180px;
        display: block;
        background-color: #fff;
        box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
        opacity: 0;
        border: 0;
        border-radius: 0;
        left: 0;
        top: 100%;
        margin-top: 8px;
        -moz-transition: all 300ms ease-in-out 0s;
        -webkit-transition: all 300ms ease-in-out 0s;
        transition: all 300ms ease-in-out 0s;
    }

    .navbar .navbar-nav li>ul.dropdown-menu.mega-dropdown-menu {
        width: 100%;
        left: 0;
        padding-top: 20px;
        padding-bottom: 20px;
        margin-top: -10px;
    }

    .navbar .navbar-nav li:hover>ul.dropdown-menu {
        visibility: visible;
        opacity: 1;
    }

    .navbar .navbar-nav li>ul.dropdown-menu ul.dropdown-menu {
        left: 110%;
        top: -16px;
    }

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

    .mobile-login {
        display: none;
    }

}

@media screen and (max-width: 1199px) {
    .counter-style-1 .counter-num {
        font-size: 30px;
    }
}

@media screen and (max-width: 991px) {
    .blog-card .blog-permalink {
        display: none;
    }

    .comments-title {
        flex-direction: column;
        gap: 10px;
        text-align: left;
        align-items: start;
    }

    .single-content-wrapper .property-info li {
        width: 50%;
    }

    .top-header {
        display: none;
    }

    .main-header .navbar .user-panel {
        display: none;
    }

    .navbar-nav>li.dropdown>a.nav-link::after,
    .navbar-nav>li.dropdown .dropdown-toggle::after {
        right: 20px;
    }

    .navbar-toggler {
        border-radius: 3px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-nav .dropdown-menu {
        border-radius: 0;
        border: 0;
        background-color: var(--uc-light-color);
    }

    .field-search {
        padding-top: 3px;
        padding-bottom: 3px;
    }

    .property-search-form.on-slider {
        margin-top: -242px;
    }

    .price-range-toggle {
        width: 100%;
    }

    #scroll {
        right: 20px;
        bottom: 60px;
    }

    .counter-style-1 .seperator,
    .counter-style-2 .seperator {
        display: none;
    }

    .mobile-login {
        margin-left: auto;
        border: 0;
        background-color: var(--uc-primary-color);
        color: var(--uc-white-color);
        text-align: center;
        margin-right: 5px;
        width: 45px;
        height: 40px;
        padding: 0;
        border-radius: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-brand {
        width: 130px;
    }

    .main-header .navbar .btn {
        width: 100%;
    }

    .dashboard.left-sidebar-block {
        width: 60px;
        overflow: visible;
        z-index: 10;
    }

    .dashboard-nav .db-dropdown-menu {
        position: absolute;
        left: calc(100% + 5px);
        top: 0;
        background-color: var(--uc-white-color);
        padding: 15px;
    }

    .dashboard-nav .navbar-nav .nav-link {
        padding: 5px;
        justify-content: center;
        height: 45px;
        white-space: nowrap;
    }

    .dashboard-nav .db-dropdown-menu .nav-link {
        justify-content: start;
    }

    .dashboard-header .navbar-nav {
        padding: 0;
        gap: 30px;
    }

    .dashboard-nav .dropdown-toggle::after {
        display: none;
    }

    .dashboard-nav .navbar-nav .nav-link i {
        font-size: 17px;
    }

    .dashboard-nav .navbar-nav .nav-link span {
        display: none;
    }

    .dashboard-nav {
        padding: 0 5px;
    }

    .dashboard-logo .logo {
        padding: 10px 5px;
        font-size: 17px;
        line-height: 1;
    }

    .text-block-05 {
        padding: 30px;
        width: 100%;
    }

    .navbar .navbar-nav li a {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .navbar-nav {
        padding-top: 10px;
        padding-bottom: 10px;
    }

}

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

    .booking-shedule-tour,
    .single-property-calculator,
    .single-property-details,
    .single-property-description,
    .single-property-overview,
    .leave-feedback-wrapper {
        padding: 20px;
    }

    .single-content-wrapper .property-feature li,
    .single-content-wrapper .property-address li {
        width: 100%;
    }

    .comment-head {
        flex-direction: column;
        align-items: start
    }

    .single-content-wrapper .update-on {
        position: static;
    }

    .single-property-page .entry-single-wrapper .entry-single-header {
        flex-direction: column;
        gap: 15px;
    }

    .entry-property-price-wrapper {
        align-items: start;
    }

    .single-content-wrapper .property-info li {
        width: 100%;
    }

    .tab-style-1 .tab-filter-nav {
        position: static;
        flex-direction: column;
        gap: 10px;
    }

    .property-search-form.on-slider {
        margin-top: 50px;
        background: var(--uc-dark-color);
        padding-top: 50px !important;
        padding-bottom: 50px !important;
        margin: 0;
    }

    .copyright {
        text-align: center;
    }

    .bottom-footer-nav {
        justify-content: center;
    }

    .listing-filter-bar {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .overflow-mobile-scroll {
        overflow-x: scroll;
    }

    .hero-content .hero-title {
        font-size: 65px;
    }

    .banner-search {
        padding-top: 150px;
    }

    .dashboard-header .navbar-collapse {
        flex-direction: column;
        align-items: start;
    }

    .dashboard-header sup {
        top: 0;
    }

    .dropdown-toggle {
        padding-right: 40px;
    }

    .testimonial-block-2 .owl-nav {
        top: inherit;
        right: 50%;
        transform: translateX(50%);
        bottom: -50px;
    }

    .property-search-form.on-slider {
        background: var(--uc-dark-color);
        padding-top: 50px !important;
        padding-bottom: 50px !important;
        margin: 0 !important;
        margin-top: -0 !important;
    }

    .field-search {
        flex: 0 0 auto;
        width: 100%;
        padding: 10px 0;
    }

    .owl-carousel.nav-top-right .owl-nav {
        position: absolute;
        right: 50%;
        top: inherit;
        bottom: -50px;
        display: flex;
        transform: translateX(50%);
        -webkit-transform: translateX(50%);
        -moz-transform: translateX(50%);
    }

    .msg-history,
    .active-chat-list {
        height: auto;
        overflow-y: scroll;
    }

    .active-chat-list li .chat-time {
        display: flex;
        gap: 10px;
    }

    .active-chat-list li .chat-info {
        width: calc(100% - 60px);
    }

    .category-row {
        gap: 10px;
    }

    .category-card {
        padding: 12px 14px;
    }
}