/********** Template CSS **********/
:root {
    --primary: #C9A84C;
    --secondary: #a87c2a;
    --light: #1a1a2e;
    --dark: #0d0d0d;
    --gold: #C9A84C;
    --gold-light: #e8c97a;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary {
    color: #0d0d0d;
    background: var(--gold);
    border-color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: #0d0d0d;
}

.btn.btn-secondary {
    color: #FFFFFF;
}

.btn.btn-dark {
    background: #1a1a1a;
    border-color: #333;
    color: #fff;
}

.btn.btn-dark:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #0d0d0d;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
#navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 9999;
}

#mainNav {
    background: rgba(10, 10, 10, 0.97) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding-top: 0;
    padding-bottom: 0;
    min-height: 70px;
}

/* Brand */
.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(201, 168, 76, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.08);
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.brand-name span {
    color: #C9A84C;
}

/* Nav Links */
#mainNav .navbar-nav .nav-link {
    color: #bbbbbb;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 4px;
    transition: color 0.25s, background 0.25s;
    margin: 0 2px;
}

#mainNav .navbar-nav .nav-link:hover,
#mainNav .navbar-nav .nav-link.active {
    color: #ffffff;
    background: rgba(201, 168, 76, 0.1);
}

/* Dropdown */
#mainNav .dropdown-menu {
    background: #111111;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
    min-width: 180px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

#mainNav .dropdown-menu .dropdown-item {
    color: #aaaaaa;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 9px 20px;
    transition: 0.2s;
}

#mainNav .dropdown-menu .dropdown-item:hover {
    background: rgba(201, 168, 76, 0.08);
    color: #C9A84C;
}

#mainNav .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 4px;
    font-size: 11px;
    transition: .3s;
}

#mainNav .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

/* CTA Button */
.nav-cta {
    display: inline-block;
    padding: 9px 22px;
    background: transparent;
    border: 1.5px solid rgba(201, 168, 76, 0.6);
    color: #C9A84C !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.nav-cta:hover {
    background: #C9A84C;
    border-color: #C9A84C;
    color: #000000 !important;
}

/* Toggler */
#mainNav .navbar-toggler {
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 6px 10px;
    border-radius: 4px;
}

@media (max-width: 991.98px) {
    #mainNav {
        padding: 12px 16px;
    }

    #mainNav .navbar-nav .nav-link {
        padding: 10px 12px;
        margin: 2px 0;
    }

    .nav-cta {
        margin: 8px 12px;
        display: inline-block;
    }
}

.nav-bar {
    position: relative;
    margin-top: 0;
    padding: 0;
    transition: .5s;
    z-index: 9999;
}

.navbar {
    box-shadow: none;
}


/*** Header ***/
.container-fluid.header.bg-white,
.container-fluid.header {
    background: #ffffff !important;
}

@media (min-width: 992px) {
    .header {
        margin-top: 0;
        padding-top: 0;
    }
}

.header .col-md-6.p-5 {
    background: #ffffff;
}

.header h1 {
    color: #111111 !important;
}

.header h1 .text-primary {
    color: #111111 !important;
}

.header p {
    color: #555555 !important;
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d0d0d;
    background: var(--gold);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--gold-light);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a !important;
    border-radius: 50px;
    border: 1px dashed var(--gold) !important;
}


/*** General Dark BG ***/
.bg-white {
    background: #ffffff !important;
}

.bg-light {
    background: #f8f8f8 !important;
}

body {
    background: #ffffff;
    color: #333333;
}

h1, h2, h3, h4, h5, h6 {
    color: #111111;
}

p {
    color: #555555;
}

.text-primary {
    color: #111111 !important;
}


/*** Search Bar ***/
.container-fluid.bg-primary {
    background: linear-gradient(135deg, #C9A84C 0%, #a87c2a 100%) !important;
    border-top: none;
    border-bottom: none;
}

.container-fluid.bg-primary .form-control,
.container-fluid.bg-primary .form-select {
    background: #fff;
    border: 1px solid #ddd !important;
    color: #333;
}

.container-fluid.bg-primary .form-control::placeholder {
    color: #888;
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: skew(20deg);
    z-index: 1;
    opacity: 0.15;
}


/*** Category ***/
.cat-item div {
    background: #ffffff;
    border: 1px dashed rgba(201, 168, 76, 0.4);
    transition: .5s;
}

.cat-item:hover div {
    background: #111111;
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
    color: #333333 !important;
}

.cat-item:hover div * {
    color: #ffffff !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: #333333;
    border-color: rgba(201, 168, 76, 0.4);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #ffffff;
    background: #111111;
    border-color: #111111;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    background: #ffffff;
    border: 1px solid #eeeeee;
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item:hover {
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 0 30px rgba(0,0,0,0.15);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 0, 0, 0.1) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 0, 0, 0.1) !important;
}

.property-item .p-4 a,
.property-item .p-4 p,
.property-item small {
    color: #555555 !important;
}

.property-item .p-4 a.d-block {
    color: #111111 !important;
}

.property-item .p-4 a.d-block:hover {
    color: var(--gold) !important;
}

.property-item .bg-white {
    background: #f5f5f5 !important;
    color: #111111 !important;
}


/*** Call to Action ***/
.bg-light.rounded .bg-white.rounded {
    background: #ffffff !important;
    border-color: rgba(201, 168, 76, 0.3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
    background: #ffffff;
    border: 1px solid #eeeeee;
}

.team-item .btn {
    color: #111111;
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    border-color: #dddddd;
}

.team-item .btn:hover {
    color: #ffffff;
    background: #111111;
}

.team-item:hover {
    border-color: var(--gold) !important;
    box-shadow: 0 0 30px rgba(0,0,0,0.15);
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-item {
    background: #f8f8f8 !important;
}

.testimonial-item .bg-white {
    background: #ffffff !important;
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(201, 168, 76, 0.3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d0d0d;
    background: var(--gold);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--gold-light);
}


/*** Banner Section ***/
.banner-section {
    background: #222222;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.banner-side-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #666666;
    text-transform: uppercase;
    line-height: 1.1;
    min-width: 20px;
    white-space: nowrap;
}

.banner-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.banner-desc {
    font-size: 14px;
    line-height: 1.85;
    color: #888888;
    font-style: italic;
    max-width: 900px;
    margin: 0;
}


/*** Gallery ***/
.gallery-img-wrap {
    overflow: hidden;
    border-radius: 8px;
    height: 260px;
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-img-wrap:hover img {
    transform: scale(1.07);
}


/*** Footer ***/
#site-footer {
    background: #1a1a1a;
    color: #aaaaaa;
    font-size: 14px;
}

.footer-main {
    padding: 60px 0 50px;
}

.footer-phone a {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.2;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.footer-phone a:hover {
    color: #C9A84C;
}

.footer-hours p,
.footer-address p {
    margin-bottom: 4px;
    color: #888888;
    font-size: 13.5px;
}

.footer-label {
    color: #555555;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 20px 0;
}

.footer-map-wrap {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-map-wrap iframe {
    display: block;
    filter: grayscale(30%) brightness(0.9);
}

.footer-project-name {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: 1px;
}

.footer-plots-list {
    list-style: disc;
    padding-left: 18px;
    color: #888888;
}

.footer-plots-list li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-bottom {
    background: #111111;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #555555;
    font-size: 13px;
    letter-spacing: 0.5px;
}