@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

:root {
    --gold: #D4AF37;
    --dark: #0a0a0a;
    --teal: #D4AF37;
    --light-bg: #f8fafc;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #fff;
    color: #333;
    overflow-x: hidden;
}

/* Sticky Navbar Base */
.custom-navbar {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 5px 0;
    transition: all 0.4s ease;
    z-index: 9999;
}

/* Shrink Effect on Scroll */
.custom-navbar.scrolled {
    padding: 3px 0;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Nav Links */
.nav-link {
    color: #fff !important;
    font-weight: 600;
    margin: 0 15px;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    transition: 0.3s ease;
}

/* Gold Active + Hover */
.nav-link:hover,
.nav-link:active,
.nav-link.active {
    color: var(--gold) !important;
}

/* Animated Underline Effect */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    outline: none !important;
}

.navbar-toggler-icon {
    filter: invert(1);
}

@media (max-width: 991px) {

    .navbar-collapse {
        background: #111;
        padding: 20px;
        margin-top: 10px;
        border-radius: 10px;
    }

    .nav-link {
        margin: 10px 0;
        font-size: 16px;
    }
}

/* Hero Banner */
.hero {
    height: 35vh;
    /* background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('assets/images/Rent-Banner.webp'); */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
}

.hero span {
    color: var(--gold);
}

/* index css start */
/* index-hero from Screenshot 1 */
.index-hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/index-banner-bg.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.index-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.index-hero-title span {
    color: #D4AF37;
}

/* Search Box UI */
.search-card {
    background: #fff;
    padding: 10px;
    border-radius: 100px;
    display: flex;
    width: 100%;
    max-width: 850px;
    margin: 40px auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.toggle-grp {
    display: flex;
    background: #F3F6FB;
    border-radius: 50px;
    padding: 5px;
    margin-right: 15px;
}

.t-btn {
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    background: none;
    transition: 0.3s;
    color: #666;
}

.t-btn.active {
    background: #fff;
    color: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.s-input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 17px;
    color: #333;
    padding-left: 10px;
}

.btn-search {
    background: #D4AF37;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 800;
}

/* Suggestions Box Fixes */
#sug-box {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 25px;
    display: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 999;
    text-align: left;
    overflow: hidden;
}

.sug-item {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
    transition: 0.2s;
}

.sug-item:hover {
    background: #F9FBFF;
}

.sug-icon {
    background: #1e293b;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.sug-text strong {
    display: block;
    font-size: 17px;
    color: #1e293b;
    text-transform: capitalize;
}

.sug-text small {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* index css end */

/* about css start */

.intro-section {
    padding: 100px 0;
}

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.intro-img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* Stats Counter Section */
.stats-section {
    background: var(--dark);
    padding: 80px 0;
    color: #fff;
}

.stat-box h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* Core Values Section */
.values-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.value-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: none;
    transition: 0.4s;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--teal);
    margin-bottom: 20px;
}

.value-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.trust-card {
        transition: 0.4s ease;
        border: 1px solid #f1f1f1 !important;
    }
    .trust-card:hover {
        transform: translateY(-10px);
        background: #fff !important;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
        border-color: var(--gold) !important;
    }
    .filter-grayscale {
        opacity: 0.4;
        transition: 0.3s;
    }
    .filter-grayscale:hover {
        opacity: 1;
        filter: grayscale(0%);
    }

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(128, 100, 0, 0.9), rgba(128, 102, 0, 0.9)), url('images/About-Us-BG.webp');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.btn-gold-large {
    background: var(--gold);
    color: #000;
    padding: 18px 45px;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    margin-top: 30px;
}

.btn-gold-large:hover {
    background: #fff;
    transform: scale(1.05);
    color: #000;
}

/* Footer (Consistent) */
footer {
    background: var(--dark);
    color: #888;
    padding: 80px 0 30px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 25px;
}

.footer-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 14px;
    letter-spacing: 2px;
}

/* contact page css start */

.contact-list i {
    color: var(--gold);
    margin-right: 10px;
}

/* Contact Cards */
.info-card {
    border: none;
    padding: 40px;
    border-radius: 20px;
    background: #f8fafc;
    transition: 0.3s;
    height: 100%;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.info-card h5 {
    font-weight: 800;
    margin-bottom: 10px;
}

/* Form Styling */
.contact-form-wrap {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    margin-top: -100px;
    position: relative;
    z-index: 5;
}

.form-control {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-control:focus {
    border-color: var(--teal);
    box-shadow: none;
}

.btn-send {
    background: var(--dark);
    color: #fff;
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: 800;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-send:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
}

/* Map Section */
#map-container {
    height: 500px;
    width: 100%;
    filter: grayscale(1);
}

/* contact css end */

/* search result css start */
/* Filter Bar */
.filter-section {
    background: #fff;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-weight: 500;
    font-size: 14px;
}

.btn-filter {
    background: var(--dark);
    color: #fff;
    border-radius: 10px;
    padding: 12px 25px;
    font-weight: 700;
    width: 100%;
    transition: 0.3s;
}

.btn-filter:hover {
    background: var(--gold);
    color: #000;
}

/* Property Card */
.prop-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid #f0f0f0;
}

.prop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.prop-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.prop-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.prop-card:hover .prop-img-wrap img {
    transform: scale(1.1);
}

.badge-type {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prop-body {
    padding: 25px;
}

.prop-price {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 5px;
}

.prop-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prop-loc {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}

.prop-specs {
    display: flex;
    gap: 20px;
    border-top: 1px solid #f1f1f1;
    pt: 20px;
    padding-top: 15px;
}

.prop-specs span {
    font-size: 14px;
    color: #555;
    font-weight: 600;
}

.prop-specs i {
    color: var(--gold);
    margin-right: 5px;
}

/* No results style */
.no-results {
    padding: 100px 0;
    text-align: center;
}

.no-results i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

/* search result css end */

/* property detail page css start  */
.detail-page {
    padding: 50px 0;
}

.main-img-wrap {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
}

.main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tabs Style from Screenshot 3 */
.tab-grp {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.tab-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    color: #D4AF37;
    cursor: pointer;
}

.tab-btn.active {
    background: #D4AF37;
    color: #fff;
    border-color: #D4AF37;
}

.price-big {
    font-size: 3.5rem;
    font-weight: 800;
    color: #D4AF37;
}

.btn-booking {
    background: #D4AF37;
    color: #fff;
    border: none;
    padding: 15px;
    width: 100%;
    font-weight: 700;
    border-radius: 5px;
    margin-bottom: 10px;
}

.btn-advice {
    background: #f2eee0;
    color: #D4AF37;
    border: none;
    padding: 15px;
    width: 100%;
    font-weight: 700;
    border-radius: 5px;
}

/* PROPERTY DETAIL - MAP & FLOOR FIX */
#map-box {
    width: 100%;
    height: 100%;
    flex: 1;
}

#floor-box {
    text-align: center;
    overflow-y: auto;
    background: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* property detail page css end  */

/* term page css start  */
/* .legal-hero {
    background: #f8fafc;
    padding: 80px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.legal-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--light-bg);
} */

.last-updated {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
}

.content-wrap {
    padding: 80px 0;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.legal-nav a {
    display: block;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    border-left: 3px solid #eee;
    transition: 0.3s;
    font-weight: 600;
    margin-bottom: 5px;
}

.legal-nav a:hover,
.legal-nav a.active {
    color: var(--teal);
    border-left-color: var(--teal);
    background: #eee0b6;
}

.legal-content h3 {
    font-weight: 800;
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
}

/* term page css end */

/* privacy page css start */
.content-section {
    padding: 80px 0;
}

h3 {
    font-weight: 800;
    color: #000;
    margin-top: 40px;
}

.highlight-box {
    background: #eee0b6;
    border-left: 5px solid #c09c17;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

/* privacy page css end */

/* back to top start */
/* Back to Top Progress Circle Styling */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 400ms linear;
    background: #fff;
    /* White Background */
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    content: '';
    /* Empty as we use FontAwesome icon instead */
}

.progress-wrap i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: #000;
    /* Black Arrow */
    transition: all 400ms linear;
}

.progress-wrap:hover i {
    color: #D4AF37;
    /* Gold on Hover */
    transform: translate(-50%, -60%);
    /* Slight bounce up */
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.svg-content path {
    stroke: #D4AF37;
    /* Gold Progress Line */
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 400ms linear;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .progress-wrap {
        right: 20px;
        bottom: 20px;
        height: 45px;
        width: 45px;
    }
}

/* back to top send */

/* email and whatsapp icon start */
/* Floating Sidebar Styling */
.mlr-contact-side {
    position: fixed;
    left: 25px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.contact-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff !important;
    text-decoration: none !important;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* WhatsApp Specific Styling */
.whatsapp-btn {
    background: #25D366;
    animation: pulse-green 2s infinite;
}

/* Email Specific Styling (Using Brand Gold) */
.email-btn {
    background: #D4AF37;
    /* MLR Gold */
    animation: pulse-gold 2s infinite;
}

/* Pulse Animations */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Hover Effects */
.contact-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Tooltip Styling */
.tooltip-text {
    position: absolute;
    left: 70px;
    background: #111;
    color: #fff;
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tooltip-text::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #111;
}

.contact-btn:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    left: 65px;
}

/* Responsive */
@media (max-width: 768px) {
    .mlr-contact-side {
        left: 15px;
        bottom: 20px;
    }

    .contact-btn {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .tooltip-text {
        display: none;
        /* Hide tooltips on mobile for clean UI */
    }
}

/* email and whatsapp icon end */