/********** Custom CSS by ClungTech Services (https://www.clungtech.com) **********/
:root {
    --primary: #cfa969;
    --secondary: #c29a5c;
    --light: #EFFDF5;
    --dark: #54380e;
}

/* =========================================================
   BASE & TYPOGRAPHY
   ========================================================= */
body {
    font-family: 'Heebo', sans-serif;
    color: #3a3a3a;
    background: #f9f7f4;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.container-fluid.bg-white.p-0 {
    background: #f9f7f4 !important;
}

/* =========================================================
   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;
    background: linear-gradient(135deg, #fff8f0, #fdf4e7) !important;
}

.spinner-border.text-primary {
    color: var(--primary) !important;
    border-width: 3px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.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;
}

/* Primary button — gradient */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    border: none !important;
    border-radius: 50px !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(207,169,105,0.32);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(207,169,105,0.48) !important;
    background: linear-gradient(135deg, var(--secondary), var(--dark)) !important;
    color: #fff !important;
}

/* Outline primary button */
.btn-outline-primary {
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    border-radius: 50px !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
}

.btn-outline-primary:hover,
.btn-outline-primary.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    color: #fff !important;
    border-color: transparent !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207,169,105,0.35);
}

/* Back to top */
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    border: none !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(207,169,105,0.4) !important;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(207,169,105,0.5) !important;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.nav-bar {
    position: relative;
    margin-top: 0;
    padding: 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(207, 169, 105, 0.15);
    box-shadow: 0 2px 24px rgba(0,0,0,0.06);
    padding: 0 2rem !important;
}

.nav-bar.sticky-top .navbar {
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-brand {
    height: 70px;
}

.navbar-light .navbar-brand span {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #444 !important;
    margin-right: 28px;
    padding: 28px 0;
    position: relative;
    outline: none;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar {
        padding: 12px 16px !important;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 12px 0;
        border-bottom: 1px solid #f0ebe3;
    }

    .navbar-light .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

/* Dropdown menu */
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: all 0.3s ease;
        opacity: 1;
    }
}

.navbar .dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    padding: 8px;
    min-width: 200px;
    background: #fff;
}

.navbar .dropdown-item {
    font-size: 0.88rem;
    font-weight: 500;
    color: #555;
    border-radius: 8px;
    padding: 10px 16px;
    transition: background 0.2s, color 0.2s;
}

.navbar .dropdown-item:hover {
    background: rgba(207,169,105,0.10);
    color: var(--dark);
}

/* Nav CTA button */
.navbar .btn-primary.d-none.d-lg-flex {
    border-radius: 50px !important;
    padding: 10px 28px !important;
    font-size: 0.85rem;
}

/* =========================================================
   HEADER (Hero - Homepage)
   ========================================================= */
@media (min-width: 992px) {
    .header {
        margin-top: 0;
    }
}

.container-fluid.header.bg-white.p-0 {
    background: linear-gradient(160deg, #fff8f0 0%, #fdf5ec 60%, #f9efe3 100%) !important;
    align-items: center;
}

.container-fluid.header.bg-white.p-0 h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a1a;
}

.container-fluid.header.bg-white.p-0 p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
}

.container-fluid.header.bg-white.p-0 .btn-outline-primary {
    padding: 13px 36px !important;
    font-size: 0.9rem !important;
}

/* Hero carousel */
.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: #FFFFFF;
    background: var(--primary);
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(207,169,105,0.35);
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
    transform: scale(1.1);
}

.header-carousel .owl-carousel-item img {
    border-radius: 0 0 0 80px;
    object-fit: cover;
    height: 92vh;
    min-height: 500px;
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 15px;
    }

    .header-carousel .owl-carousel-item img {
        height: 350px;
        border-radius: 0 0 0 40px;
    }

    .container-fluid.header.bg-white.p-0,
    .container-fluid.header.bg-white.p-0 .row {
        min-height: auto;
    }
}

/* =========================================================
   PAGE HEADER (Inner pages breadcrumb banner)
   ========================================================= */
.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--dark);
}

.breadcrumb-item.active {
    color: #888;
    font-size: 0.85rem;
}

/* =========================================================
   STATS / INFO BAR
   ========================================================= */
.container-fluid.bg-primary.mb-5 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
    box-shadow: 0 8px 32px rgba(207,169,105,0.3);
    padding: 48px 0 !important;
    margin-bottom: 0 !important;
}

.container-fluid.bg-primary.mb-5 h4 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.container-fluid.bg-primary.mb-5 p {
    font-size: 0.82rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.container-fluid.bg-primary.mb-5 .fa {
    opacity: 0.9;
}

.container-fluid.bg-primary.mb-5 .col-md-3 {
    position: relative;
}

.container-fluid.bg-primary.mb-5 .col-md-3:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
    .container-fluid.bg-primary.mb-5 .col-md-3:not(:last-child)::after {
        display: none;
    }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.container-fluid.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* Section heading center underline */
.text-center.mx-auto.mb-5 h1 {
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.text-center.mx-auto.mb-5 h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

/* Section heading left underline */
.text-start.mx-auto.mb-5 h1 {
    position: relative;
    padding-bottom: 14px;
}

.text-start.mx-auto.mb-5 h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

/* =========================================================
   ICON
   ========================================================= */
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50%;
    border: 1.5px solid rgba(207,169,105,0.3) !important;
    width: 64px;
    height: 64px;
    box-shadow: 0 4px 16px rgba(207,169,105,0.12);
    transition: all 0.3s ease;
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about-img {
    border-radius: 24px;
    overflow: visible;
}

.about-img img {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: skew(20deg);
    z-index: 1;
    border-radius: 24px;
    opacity: 0.85;
}

/* =========================================================
   CATEGORY CARDS
   ========================================================= */
.cat-item {
    text-decoration: none;
    border-radius: 20px !important;
    overflow: hidden;
    transition: all 0.35s ease;
    background: #fff !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 4px !important;
    display: block;
}

.cat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(207,169,105,0.2);
    text-decoration: none;
}

.cat-item div {
    background: #fdf8f2;
    border: 2px dashed rgba(207, 169, 105, 0.3) !important;
    border-radius: 16px !important;
    transition: all 0.35s ease;
}

.cat-item:hover div {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent !important;
}

.cat-item div * {
    transition: all 0.35s ease;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}

.cat-item:hover .icon {
    background: rgba(255,255,255,0.25) !important;
    border-color: rgba(255,255,255,0.4) !important;
    box-shadow: none;
}

.cat-item h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #2a2a2a;
}

.cat-item span {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
}

/* =========================================================
   PROPERTY LIST FILTER TABS
   ========================================================= */
.nav-pills .nav-item .btn {
    color: var(--dark);
    border-radius: 50px !important;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 20px !important;
    border: none;
    transition: all 0.3s ease;
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.nav-pills.d-inline-flex {
    background: rgba(207,169,105,0.08);
    border-radius: 50px;
    padding: 6px;
    gap: 4px;
}

/* =========================================================
   PROPERTY CARDS
   ========================================================= */
.property-item {
    border-radius: 20px !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07) !important;
    background: #fff;
    overflow: hidden;
    transition: all 0.35s ease;
    border: 1px solid rgba(207,169,105,0.08);
}

.property-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.12) !important;
}

.property-item img {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.property-item:hover img {
    transform: scale(1.08);
}

/* Type badge */
.property-item .bg-primary.rounded.text-white.position-absolute {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    border-radius: 50px !important;
    padding: 5px 14px !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 2px 12px rgba(207,169,105,0.35);
}

/* Category tag */
.property-item .bg-white.rounded-top.text-primary.position-absolute {
    border-radius: 8px 8px 0 0 !important;
    padding: 4px 12px !important;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary) !important;
    background: #fff !important;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
}

.property-item h5.text-primary {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary) !important;
    font-family: 'Inter', sans-serif;
}

.property-item a.d-block.h5 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #1a1a1a !important;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.2s;
}

.property-item:hover a.d-block.h5 {
    color: var(--primary) !important;
}

.property-item .d-flex.border-top {
    border-top: 1px solid rgba(207,169,105,0.15) !important;
    background: #fdf8f2;
}

.property-item .border-top {
    border-top: 1px solid rgba(207,169,105,0.15) !important;
}

.property-item .border-end {
    border-right: 1px solid rgba(207,169,105,0.2) !important;
}

.property-item .border-top small {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

/* =========================================================
   CALL TO ACTION SECTION (Homepage)
   ========================================================= */
.container-fluid.bg-primary.text-white.py-5 {
    background: linear-gradient(135deg, var(--dark) 0%, #3a2508 60%, #1a1005 100%) !important;
    position: relative;
    overflow: hidden;
}

.container-fluid.bg-primary.text-white.py-5::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(207,169,105,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.container-fluid.bg-primary.text-white.py-5 h1 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
}

.container-fluid.bg-primary.text-white.py-5 p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.container-fluid.bg-primary.text-white.py-5 .btn-dark {
    background: #fff !important;
    color: var(--dark) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 14px 36px !important;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.container-fluid.bg-primary.text-white.py-5 .btn-dark:hover {
    background: var(--primary) !important;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(207,169,105,0.4);
}

.container-fluid.bg-primary.text-white.py-5 .btn-outline-light {
    border-radius: 50px !important;
    padding: 14px 36px !important;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255,255,255,0.4) !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
    background: transparent !important;
}

.container-fluid.bg-primary.text-white.py-5 .btn-outline-light:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.7) !important;
    transform: translateY(-3px);
}

/* =========================================================
   TEAM CARDS
   ========================================================= */
.team-item {
    border-radius: 20px !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06) !important;
    background: #fff;
    border: 1px solid rgba(207,169,105,0.08) !important;
    overflow: hidden;
    transition: all 0.35s ease;
}

.team-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(207,169,105,0.18) !important;
    border-color: rgba(207,169,105,0.25) !important;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item img {
    height: 280px;
    object-fit: cover;
    width: 100%;
}

.team-item h5.fw-bold {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a1a;
}

.team-item small {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
}

.team-item .badge.bg-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    border-radius: 50px !important;
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 700;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-item {
    border-radius: 20px !important;
    background: #fff !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06) !important;
    padding: 4px !important;
    border: 1px solid rgba(207,169,105,0.1);
    transition: all 0.35s ease;
}

.testimonial-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(207,169,105,0.15) !important;
}

.testimonial-item .bg-white.border.rounded {
    background: #fdf8f2 !important;
    border: none !important;
    border-radius: 16px !important;
    padding: 24px !important;
}

.testimonial-carousel .testimonial-item .border {
    border: 1px solid rgba(207,169,105,0.1) !important;
}

.testimonial-item p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-item .bg-primary.text-white.rounded-circle {
    background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
    box-shadow: 0 4px 16px rgba(207,169,105,0.35);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.testimonial-item h6.fw-bold {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.9rem;
}

.testimonial-item small {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.78rem;
}

.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: #FFFFFF;
    background: var(--primary);
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(207,169,105,0.3);
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
    transform: scale(1.1);
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.form-control {
    border-radius: 12px !important;
    border: 1.5px solid #e8e0d4 !important;
    background: #fdf8f2 !important;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    color: #333;
}

.form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(207,169,105,0.15) !important;
    background: #fff !important;
}

.form-floating label {
    color: #999;
    font-size: 0.88rem;
}

iframe.position-relative.rounded {
    border-radius: 20px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Contact info boxes */
.col-md-6.col-lg-4 .bg-light.rounded.p-3 {
    background: #fff !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06) !important;
    padding: 24px !important;
    border: 1px solid rgba(207,169,105,0.1) !important;
    transition: all 0.3s ease;
}

.col-md-6.col-lg-4 .bg-light.rounded.p-3:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(207,169,105,0.15) !important;
}

/* =========================================================
   FOOTER
   ========================================================= */
.container-fluid.bg-dark.footer {
    background: linear-gradient(160deg, #1a1005 0%, #2d1d08 50%, #1a1005 100%) !important;
    border-top: 3px solid var(--primary);
    margin-top: 0 !important;
}

.footer h5.text-white {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #fff !important;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 20px !important;
}

.footer h5.text-white::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.footer p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
}

.footer .btn.btn-social:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(207,169,105,0.35);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 8px;
    padding: 0;
    text-align: left;
    font-size: 0.87rem;
    font-weight: normal;
    text-transform: capitalize;
    transition: all 0.3s ease;
    color: rgba(255,255,255,0.6) !important;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary) !important;
    padding-left: 4px;
    box-shadow: none;
}

.footer .form-control {
    background: rgba(255,255,255,0.08) !important;
    border: 1.5px solid rgba(255,255,255,0.2) !important;
    border-radius: 50px !important;
    color: #fff !important;
    font-size: 0.88rem;
}

.footer .form-control::placeholder {
    color: rgba(255,255,255,0.45);
}

.footer .form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(207,169,105,0.2) !important;
    background: rgba(255,255,255,0.1) !important;
}

.footer .btn.btn-primary.py-2 {
    border-radius: 50px !important;
    font-size: 0.82rem;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 0.83rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255,255,255,0.5);
}

.footer .copyright a {
    color: var(--primary) !important;
    text-decoration: none;
    font-weight: 500;
    border-bottom: none;
    transition: color 0.2s;
}

.footer .copyright a:hover {
    color: var(--secondary) !important;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.83rem;
    transition: color 0.2s;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .footer-menu a:hover {
    color: var(--primary);
}

/* =========================================================
   TARGETED OVERRIDES (fix Bootstrap conflicts)
   ========================================================= */

/* Override Bootstrap rounded-0 on dropdown menus from HTML */
.navbar .dropdown-menu.rounded-0 {
    border-radius: 12px !important;
}

/* Ensure nav-bar bg-transparent wrapper doesn't show white on scroll */
.nav-bar.bg-transparent {
    background: transparent !important;
}

/* Property cards — ensure img hover works inside overflow:hidden */
.property-item .position-relative.overflow-hidden {
    overflow: hidden;
}

/* About page CTA box */
.bg-light.rounded.p-3 .bg-white.rounded.p-4 {
    border: 1px solid rgba(207,169,105,0.12) !important;
    border-radius: 16px !important;
    box-shadow: 0 6px 28px rgba(0,0,0,0.06);
}

/* Stats bar icon color ensure white */
.container-fluid.bg-primary.mb-5 .fa,
.container-fluid.bg-primary.mb-5 i {
    color: rgba(255,255,255,0.9);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Remove default text-decoration from cat-item links */
.cat-item,
.cat-item:hover,
.cat-item:focus {
    text-decoration: none;
    color: inherit;
}

/* Consistent section background */
.container-fluid.py-5:nth-child(even) {
    background: #ffffff;
}

.container-fluid.py-5:nth-child(odd) {
    background: #f9f7f4;
}

