/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    padding-top: 0 !important;
}
/* Floating Bottom Contact Bar */
.floating-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    gap: 2px;
    padding: 5px 8px;
    background: #181d24;
    /* iOS safe area */
    /* padding-bottom: calc(10px + env(safe-area-inset-bottom)); */
}
.floating-contact-bar .floating-btn {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 35px;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.floating-contact-bar .floating-btn:active {
    transform: translateY(1px);
}
.floating-contact-bar .whatsapp-btn {
    background: #25D366;
    color: #fff;
    /* box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35); */
}
.floating-contact-bar .touch-btn {
    background: #b98a5a;
    color: #fff;
    /* box-shadow: 0 2px 8px rgba(185, 138, 90, 0.35); */
}
.floating-contact-bar i {
    font-size: 18px;
}

/* Responsive tweaks */
@media (max-width: 480px) {
    .floating-contact-bar {
        gap: 8px;
        padding: 8px 10px;
        background: #181d24;
    }
    .floating-contact-bar .floating-btn {
        height: 42px;
        font-size: 15px;
        border-radius: 7px;
    }
}

/* Desktop layout: two small buttons left and right */
@media (min-width: 768px) {
    .floating-contact-bar {
        justify-content: space-between;
        padding-left: 10px;
        padding-right: 10px;
        background: transparent;
        border-top: none;
        box-shadow: none;
    }
    .floating-contact-bar .floating-btn {
        flex: 0 0 auto;
        height: 40px;
        font-size: 14px;
        padding: 0 14px;
        border-radius: 6px;
    }
}

/* Header Styles */
.header {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: none;
}

.top-header {
    background: #181D24;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 400;
}

.phone {
    color: #fff;
    font-weight: 500;
}

.register-link {
    color: #fff;
    text-decoration: none;
    padding: 5px 15px;
    border: 1px solid #fff;
    border-radius: 0px;
    transition: all 0.3s ease;
    font-size: 12px;
}

.register-link:hover {
    background: #fff;
    color: #181D24;
}

.navbar-custom {
    width: 100%;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px 18px 40px;
    gap: 0;
}

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

.call-info {
    color: #e2b47a;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}
.call-info i {
    margin-right: 8px;
}

.navbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo-img {
    width: 60px;
    height: 60px;
    margin-bottom: 2px;
}
.logo-text {
    color: #e2b47a;
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 2px;
}

.navbar-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.register-btn {
    background: #b98a5a;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 0px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: background 0.3s;
    border: none;
    outline: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.register-btn:hover {
    background: #e2b47a;
    color: #fff;
}

.navbar-bottom {
    display: none;
}
.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-item a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
    padding-bottom: 6px;
    position: relative;
    transition: color 0.3s;
}
.nav-item.active a,
.nav-item a:hover {
    color: #fff;
}
.nav-item.active a::after,
.nav-item a:hover::after {
    content: '';
    display: block;
    margin: 0 auto;
    width: 60%;
    border-bottom: 2px solid #fff;
    margin-top: 6px;
}

/* Hero Section - Belfort Style */
.hero-slider-container {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
}

.belfort-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* Responsive height for iPad and mobile */
@media (max-width: 1024px) {
    .hero-slider-container {
        height: 50vh;
    }
    
    .belfort-hero {
        height: 50vh;
    }
}

.belfort-hero.active {
    opacity: 1;
}

.hero-slide-1 {
    background: url('../images/sora.jpg');
    background-size: cover;
    background-position: center;
}

.hero-slide-2 {
    background: url('../images/miraya.jpg');
    background-size: cover;
    background-position: center;
}

.hero-slide-3 {
    background: url('../images/trilogy.webp');
    background-size: cover;
    background-position: center;
}

.belfort-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: left;
    max-width: 700px;
    margin: 0;
}

.hero-text-container {
    transform: translateY(100px);
    opacity: 0;
    transition: all 1s ease-out 0.5s;
}

.belfort-hero.active .hero-text-container {
    transform: translateY(0);
    opacity: 1;
}

.hero-title {
    font-size: 3rem !important;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1 !important;
    font-family: 'Marcellus', serif;
}

.hero-subtitle {
    font-size: 0.7rem;
    font-weight: 300;
    color: #e2b47a;
    letter-spacing: 2px;
    line-height: 1 !important;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    margin-top: 0 !important;
}

.belfort-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(24,29,36,0.8) 0%, rgba(24,29,36,0.4) 50%, transparent 100%);
    z-index: 1;
}

/* Section Styles */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.best-offers {
    padding: 100px 0;
    background: #f8f9fa;
}

.property-card {
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.property-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.new-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: #fff;
    padding: 8px 15px;
    border-radius: 0px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-content {
    padding: 30px;
}

.property-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.location {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #AC835D;
    margin-bottom: 20px;
}

.property-details {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
}

.property-details span {
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 0px;
    font-weight: 500;
}

.learn-more {
    color: #AC835D;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #1a1a1a;
}

/* Search Section */
.search-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
    background: #fff;
    border-radius: 0px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.search-input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 0px;
    font-size: 16px;
    outline: none;
}

.search-btn {
    padding: 15px 30px;
    background: #181D24;
    border: none;
    color: #fff;
    border-radius: 0px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-btn:hover {
    background: #333;
}

/* Development Section */
.development-section {
    padding: 60px 0;
    background: #F9F1EC;
}

/* Modern Development Card Overlay Styles */
.development-card-overlay {
    width: 100%;
    aspect-ratio: 4/5;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    margin-left: 0;
    margin-right: 0;
}
.dev-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}
.development-card-overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.35);
    z-index: 2;
}
.dev-card-title, .dev-card-desc, .dev-card-arrow {
    position: absolute;
    z-index: 3;
    color: #fff;
}
.dev-card-title {
    top: 32px;
    left: 28px;
    font-size: 1.5rem;
    font-family: 'Marcellus', serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.dev-card-desc {
    width: 80%;
    left: 22px;
    bottom: 28px;
    font-size: 0.7rem;
    /* font-weight: 600; */
    text-transform: uppercase;
    letter-spacing: 1px;
}
.dev-card-arrow {
    width: 28px;
    height: 28px;
    right: 5px;
    bottom: 20px;
    display: flex;
    align-items: flex-end;
}
.dev-card-arrow svg {
    display: block;
}
@media (max-width: 991.98px) {
    .development-card-overlay {
        height: 290px;
    }
    .dev-card-title, .dev-card-desc {
        left: 18px;
    }
    .dev-card-title {
        top: 18px;
        font-size: 1.3rem;
    }
    .dev-card-desc {
        bottom: 18px;
        font-size: 0.9rem;
    }
    .dev-card-arrow {
        right: 18px;
        bottom: 12px;
    }
}
@media (max-width: 600px) {
    /* .development-card-overlay {
        height: 180px;
    } */
    .dev-card-title {
        font-size: 1rem;
        top: 10px;
        left: 10px;
    }
    .dev-card-desc {
        font-size: 0.7rem;
        left: 10px;
        bottom: 10px;
    }
    .dev-card-arrow {
        right: 10px;
        bottom: 6px;
    }
}



/* Contact Section */
.contact-section {
    padding: 70px 0;
    background: #181D24;
    color: #fff;
}

.contact-form .form-control {
    background: #101319;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 15px 20px;
    border-radius: 0px;
    margin-bottom: 20px;
}

.contact-form .form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

.contact-form .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: #AC835D;
    box-shadow: 0 0 0 0.2rem rgba(200, 169, 126, 0.25);
}

/* Footer */
.footer {
    background: #181D24;
    color: #f5f5f5;
    padding: 80px 0 30px;
    text-align: left;
}

.footer h4 {
    color: #b98a5a;
    /* font-weight: 600; */
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f5f5f5;
}

.footer-contact-list i {
    color: #b98a5a;
    font-size: 1rem;
    min-width: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #b98a5a;
}

.newsletter-form {
    display: flex;
    gap: 0;
    background: #181a1d;
    border-radius: 0px;
    overflow: hidden;
    margin-bottom: 10px;
}

.newsletter-form input {
    background: #181a1d;
    color: #fff;
    border: none;
    padding: 16px 18px;
    font-size: 1rem;
    flex: 1;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-btn {
    background: #b98a5a;
    border: none;
    color: #fff;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: background 0.3s;
}

.newsletter-btn:hover {
    background: #a07a4a;
}

.footer-bottom-bar {
    border-top: 1px solid #35373a;
    margin-top: 40px;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo img {
    height: 48px;
    width: auto;
}

.footer-copyright {
    color: #aaa;
    font-size: 0.98rem;
    flex: 1;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 18px;
}

.footer-social a {
    color: #b98a5a;
    font-size: 1.3rem;
    transition: color 0.3s;
}

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

@media (max-width: 991.98px) {
    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }
    .footer-copyright {
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 40px 0 15px;
    }
    .footer-bottom-bar {
        padding-top: 16px;
        margin-top: 24px;
    }
    .footer-logo img {
        height: 36px;
    }
    .footer-social a {
        font-size: 1.1rem;
    }
}

/* Buttons */
.btn-primary {
    background: #AC835D;
    border-color: #AC835D;
    color: #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 0px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #a07a4a;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }
    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .search-form {
        flex-direction: column;
        border-radius: 0px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .property-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-nav {
        bottom: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem !important;
        /* letter-spacing: 1px; */
        margin-bottom: 12px;
    }
    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .property-content {
        padding: 20px;
    }
    
    .faq-item {
        padding: 25px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
}

@media (max-width: 991.98px) {
    .navbar-top {
        flex-direction: column;
        gap: 10px;
        padding: 10px 5vw 10px 5vw;
    }
    .navbar-bottom {
        margin-top: 15px;
    }
    .nav-links {
        gap: 20px;
    }
    .register-btn {
        padding: 12px 20px;
        font-size: 16px;
    }
    .logo-img {
        width: 40px;
        height: 40px;
    }
    .logo-text {
        font-size: 20px;
    }
    .call-info {
        font-size: 15px;
    }
    #belfortNavLinks {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 80vw;
        max-width: 320px;
        background: #181D24;
        z-index: 2500;
        box-shadow: 2px 0 24px rgba(0,0,0,0.18);
        padding: 16px 0 8px 0 !important;
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(.4,0,.2,1), background 0.3s;
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
    }
    .belfort-nav-menu.open #belfortNavLinks {
        transform: translateX(0) !important;
    }
}

@media (min-width: 992px) {
    #belfortNavLinks {
        display: flex !important;
        flex-direction: row;
        position: static;
        background: none;
        box-shadow: none;
        width: auto;
        padding: 0;
    }
}

@media (max-width: 600px) {
    .navbar-top {
        padding: 10px 2vw 0 2vw;
    }
    .nav-links {
        gap: 10px;
    }
    .navbar-bottom {
        margin-top: 10px;
    }
}

/* BELFORT HEADER & HERO BANNER STYLES */
.belfort-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3000;
    background: transparent;
    transition: all 0.3s ease;
}
.belfort-header.scrolled {
    background: #181D24 !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    backdrop-filter: blur(10px);
}
.belfort-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 60px 0 60px;
    background: transparent;
}
.belfort-navbar-left {
    flex: 1;
    display: flex;
    align-items: center;
}
.belfort-call {
    color: #e2b47a;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}
.belfort-call i {
    margin-right: 8px;
}
.belfort-navbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.belfort-logo img {
    height: 60px;
    width: auto;
    display: block;
}
.belfort-navbar-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.belfort-register-btn {
    background: #b98a5a;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 0px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: background 0.3s;
    border: none;
    outline: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    text-transform: uppercase;
}
.belfort-register-btn:hover {
    background: #e2b47a;
    color: #fff;
}
.belfort-nav-menu {
    width: 100%;
    display: flex;
    align-items: center;
    background: transparent;
    margin-top: 0;
    position: relative;
    min-height: 60px;
    justify-content: flex-start;
}
.belfort-nav-logo {
    display: flex !important;
    align-items: center;
    z-index: 3002;
    border-radius: 0px;
    min-width: 120px;
}
.belfort-nav-logo img {
    width: 230px;
    /* border: 2px solid red; */
    background: rgba(255,255,255,0.1);
    padding: 2px 15px;
}
/*.belfort-nav-logo h2 {*/
/*    color: #e2b47a !important;*/
/*    margin: 0 !important;*/
/*    font-size: 24px !important;*/
/*    font-weight: bold !important;*/
/*    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);*/
/*}*/
#belfortNavLinks {
    display: flex;
    gap: 48px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.belfort-hamburger {
    display: none;
}
.belfort-nav-menu a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 1px;
    padding-bottom: 6px;
    transition: color 0.3s;
    text-transform: uppercase;
}
.belfort-nav-menu li.active a,
.belfort-nav-menu a:hover {
    color: #e2b47a;
}
.belfort-nav-menu li.active a::after,
.belfort-nav-menu a:hover::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: #e2b47a;
    margin-top: 6px;
    margin-left: 0 !important;
    left: 0 !important;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .belfort-navbar {
        padding: 32px 24px 0 24px;
    }
    .hero-title {
        font-size: 5.5rem;
        letter-spacing: 2px;
    }
    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }
}
@media (max-width: 991.98px) {
    .belfort-navbar {
        flex-direction: column;
        gap: 10px;
        padding: 18px 5vw 0 5vw;
    }
    .belfort-nav-menu {
        justify-content: flex-start;
        padding: 0 0 0 0;
    }
    .belfort-nav-logo {
        position: relative;
        left: 0;
        top: 0;
        margin: 0 12px 0 12px;
        z-index: 3000;
        display: flex !important;
    }
    .belfort-hamburger {
        display: block !important;
        position: absolute;
        right: 20px;
        top: 18px;
        z-index: 3001;
        width: 32px;
        height: 32px;
        cursor: pointer;
    }
    .belfort-logo img {
        height: 40px;
    }
    .belfort-register-btn {
        padding: 12px 20px;
        font-size: 16px;
    }
    .belfort-call {
        font-size: 15px;
    }
}
@media (max-width: 800px) {
    .belfort-navbar {
        padding: 12px 2vw 0 2vw;
    }
    .belfort-nav-logo {
        margin: 0 6px 0 6px;
    }
    .belfort-nav-menu {
        margin-top: 10px;
    }
    .belfort-nav-menu ul {
        gap: 8px;
    }
    .belfort-nav-logo {
        left: 5px;
    }
}
@media (max-width: 600px) {
    .belfort-navbar {
        flex-direction: column;
        padding: 8px 1vw 0 1vw;
    }
    .belfort-logo img {
        height: 32px;
    }
    .belfort-register-btn {
        padding: 8px 10px;
        font-size: 13px;
        border-radius: 0px;
    }
    .belfort-call {
        font-size: 12px;
    }
    .belfort-nav-logo {
        margin: 0 5px 0 5px;
            left: -4px;
            top: -1px;
            transform: none;
    }
    .belfort-hamburger {
        right: 10px;
        top: 24px;
        width: 28px;
        height: 28px;
    }
    #belfortNavLinks li {
        margin: 0 !important;
        padding: 0 0 0 0 !important;
        line-height: 1 !important;
        height: auto !important;
    }
    #belfortNavLinks li a {
        font-size: 16px !important;
        padding: 0 !important;
        line-height: 1 !important;
        display: block !important;
        margin: 0 !important;
        text-decoration: none !important;
    }
    .belfort-nav-menu {
        margin-top: 6px;
        min-height: 48px;
    }
    .belfort-nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        background: rgba(20,20,20,0.95);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        padding: 12px 0;
        display: none;
        z-index: 1001;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }
    .belfort-nav-menu.open ul {
        display: flex;
    }
    
    /* .belfort-nav-menu .belfort-hamburger {
        display: block;
        position: absolute;
        right: 20px;
        top: 10px;
        z-index: 1002;
        width: 32px;
        height: 32px;
        cursor: pointer;
    } */
    .belfort-nav-menu .belfort-hamburger span {
        display: block;
        width: 100%;
        height: 4px;
        background: #e2b47a;
        margin: 6px 0;
        border-radius: 0px;
        transition: all 0.3s;
    }
}
/* Utility for 100% width images */
img, .belfort-hero, .belfort-header, .belfort-navbar, .belfort-nav-menu {
    max-width: 100%;
    box-sizing: border-box;
}
body, html {
    width: 100%;
    overflow-x: hidden;
}
/* END Responsive Styles */ 
/* END BELFORT HEADER & HERO BANNER STYLES */ 

@media (min-width: 992px) {
  .belfort-nav-logo {
    position: static;
    left: 0;
    top: 0;
    transform: none;
    margin: 0 24px 0 20px;
    height: 40px;
  }
} 

.belfort-hamburger span {
  display: block;
  width: 100%;
  height: 4px;
  background: #e2b47a;
  margin: 6px 0;
  border-radius: 0px;
  transition: all 0.3s;
} 

/* --- Navbar Scroll and Mobile Slide-in Fix --- */
.belfort-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
  background: transparent;
  transition: background 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s cubic-bezier(.4,0,.2,1);
}
.belfort-header.scrolled {
  background: #181D24 !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.belfort-hamburger {
  display: none;
}
@media (max-width: 991.98px) {
  .belfort-hamburger {
    display: block !important;
    position: absolute;
    right: 20px;
    top: 18px;
    z-index: 3001;
    width: 32px;
    height: 32px;
    cursor: pointer;
  }
  .belfort-hamburger span {
    display: block;
    width: 100%;
    height: 4px;
    background: #e2b47a;
    margin: 6px 0;
    border-radius: 0px;
    transition: all 0.3s;
  }
  #belfortNavLinks {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 80vw;
    max-width: 320px;
    background: #181D24;
    z-index: 2500;
    box-shadow: 2px 0 24px rgba(0,0,0,0.18);
    padding: 16px 0 8px 0 !important;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1), background 0.3s;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
  .belfort-nav-menu.open #belfortNavLinks {
    transform: translateX(0) !important;
  }
}
@media (min-width: 992px) {
  .belfort-hamburger {
    display: none !important;
  }
  #belfortNavLinks {
    position: static;
    transform: none !important;
    height: auto;
    width: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    display: flex !important;
    flex-direction: row;
    align-items: center;
  }
}
/* --- End Fix --- */ 

/* --- Belfort Nav Menu Structure --- */
.belfort-nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 80px;
  width: 100%;
  position: relative;
}

.belfort-nav-logo {
  display: flex !important;
  align-items: center;
  z-index: 3002;
  /*background: rgba(255,255,255,0.1);*/
  /*padding: 5px 10px;*/
  border-radius: 0px;
  min-width: 120px;
}

.belfort-nav-logo h2 {
  color: #e2b47a !important;
  margin: 0 !important;
  font-size: 24px !important;
  font-weight: bold !important;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

#belfortNavLinks {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

#belfortNavLinks li {
  margin: 0 !important;
  padding: 0 0 0 0 !important;
  line-height: 1 !important;
  height: auto !important;
}

#belfortNavLinks li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

#belfortNavLinks li a:hover,
#belfortNavLinks li.active a {
  color: #e2b47a;
}

@media (max-width: 991.98px) {
  .belfort-nav-menu {
    padding: 0 15px;
  }
  
  #belfortNavLinks li {
    margin: 0;
    width: 100%;
    text-align: left;
    padding: 0 20px;
  }
  
  #belfortNavLinks li a {
    font-size: 16px;
    padding: 10px 0;
    display: block;
  }
}
/* --- End Nav Menu Structure --- */ 

/* --- FORCE MOBILE MENU SPACING --- */
@media (max-width: 991.98px) {
  .belfort-nav-menu #belfortNavLinks {
    padding: 8px 0 4px 0 !important;
  }
  
  .belfort-nav-menu #belfortNavLinks li {
    margin: 0 !important;
    padding: 0 20px 0 20px !important;
    line-height: 1 !important;
    height: auto !important;
  }
  
  .belfort-nav-menu #belfortNavLinks li a {
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    font-size: 16px !important;
    display: block !important;
    text-decoration: none !important;
    text-align: left !important;
  }
}
/* --- END FORCE --- */ 

/* Hero Section */
.hero-slide-1 {
    background: url('../images/sora.jpg');
    background-size: cover;
    background-position: center;
}

.hero-slide-2 {
    background: url('../images/miraya.jpg');
    background-size: cover;
    background-position: center;
}

.hero-slide-3 {
    background: url('../images/trilogy.webp');
    background-size: cover;
    background-position: center;
} 

/* Responsive font sizes for hero section */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 5.5rem;
        letter-spacing: 2px;
    }
    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
    }
    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
} 

/* Belfort Welcome Section */
.belfort-welcome-section {
    background: #181d24;
    padding: 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container-welcome {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 5vw;
    gap: 40px;
}
.welcome-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.welcome-heading {
    color: #b98a5a;
    font-size: 1.75rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.15;
    margin-bottom: 40px;
    text-transform: uppercase;
}
.welcome-quote {
    display: flex;
    align-items: center;
    gap: 18px;
}
.welcome-quote-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}
.welcome-quote-text {
    color: #bfc7d1;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}
.welcome-quote-line {
    font-style: italic;
    color: #bfc7d1;
}
.welcome-quote-author {
    color: #b98a5a;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 6px;
}
.welcome-right {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.welcome-imgs {
    position: relative;
    width: 420px;
    min-width: 320px;
    height: 420px;
}
.building-img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 0px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}
.girl-img {
    width: 220px;
    height: 260px;
    object-fit: cover;
    border-radius: 0px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    border: 4px solid #181d24;
}
@media (max-width: 1100px) {
    .belfort-welcome-section {
        min-height: 60vh;
        padding: 40px 0;
    }
    .container-welcome {
        flex-direction: column;
        gap: 50px;
        padding: 0 4vw;
    }
    .welcome-right, .welcome-left {
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .welcome-imgs {
        margin: 0 auto;
    }
    .welcome-heading {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    .welcome-quote {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .belfort-welcome-section {
        min-height: 50vh;
        padding: 30px 0;
    }
    .container-welcome {
        gap: 40px;
        padding: 0 5vw;
    }
    .welcome-heading {
        font-size: 1.25rem;
        letter-spacing: 1.5px;
        line-height: 1.2;
        margin-bottom: 25px;
    }
    .welcome-quote {
        display: none;
    }
    .welcome-imgs {
        width: 280px;
        height: 280px;
    }
    .building-img {
        width: 200px;
        height: 200px;
    }
    .girl-img {
        width: 140px;
        height: 160px;
    }
}

@media (max-width: 700px) {
    .belfort-welcome-section {
        min-height: 45vh;
        padding: 25px 0;
    }
    .welcome-heading {
        font-size: 1.1rem;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    .welcome-quote-text {
        font-size: 0.9rem;
    }
    .welcome-imgs {
        width: 240px;
        height: 240px;
    }
    .building-img {
        width: 160px;
        height: 160px;
    }
    .girl-img {
        width: 110px;
        height: 130px;
    }
}

@media (max-width: 480px) {
    .belfort-welcome-section {
        min-height: 40vh;
        padding: 20px 0;
    }
    .container-welcome {
        padding: 0 6vw;
        gap: 30px;
    }
    .welcome-heading {
        font-size: 1rem;
        letter-spacing: 0.8px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    .welcome-quote-img {
        width: 50px;
        height: 50px;
    }
    .welcome-quote-text {
        font-size: 0.85rem;
    }
    .welcome-quote-author {
        font-size: 0.9rem;
    }
    .welcome-imgs {
        width: 200px;
        height: 200px;
    }
    .building-img {
        width: 140px;
        height: 140px;
    }
    .girl-img {
        width: 90px;
        height: 110px;
        border: 3px solid #181d24;
    }
} 

/* Best Offers Section Modern */
.best-offers-section {
    background: #181d24;
    padding: 80px 0 60px 0;
}
.best-offers-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.best-offers-header {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto 32px auto;
    text-align: left;
    position: relative;
}
.best-offers-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 8px;
}
.best-offers-label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}
.best-offers-nav-btns {
    position: absolute;
    right: 0;
    bottom: -15px;
    display: flex;
    gap: 12px;
    z-index: 2;
}
.swiper-button-prev.best-offers-prev,
.swiper-button-next.best-offers-next {
    position: absolute;
    right: 0;
    border: 0.5px solid #fff !important;
    background: transparent;
    color: #fff;
    border-radius: 0px !important;
    width: 56px;
    height: 56px;
    transition: none;
    box-shadow: none;
    opacity: 1;
    z-index: 2;
    display: flex !important;
    align-items: center;
    justify-content: center;
    top: auto;
    left: auto;
}
.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 1.6rem !important;
    font-weight: 100 !important;
    color: #ccc !important;
}
.swiper-button-prev.best-offers-prev:hover,
.swiper-button-next.best-offers-next:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.swiper-button-prev.best-offers-prev:hover:after,
.swiper-button-next.best-offers-next:hover:after {
    color: #fff !important;
}
@media (max-width: 600px) {
    .swiper-button-prev.best-offers-prev,
    .swiper-button-next.best-offers-next {
        display: flex !important;
    }
    .best-offers-section {
        background: #181d24;
        padding: 60px 0 20px 0;
    }
}
.best-offers-title {
  font-family: 'Marcellus', serif;
  font-size: 2.5rem;
  color: #b98a5a;
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.1;
  text-align: left;
}

.best-offers-divider-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 32px;
}

.best-offers-divider {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  border-bottom: 1px solid #b98a5a;
  opacity: 0.3;
  margin: 0;
}
.best-offers-cards {
    display: flex;
    gap: 32px;
    justify-content: flex-start;
    align-items: stretch;
    margin-top: 36px;
    flex-wrap: wrap;
}
.property-card-modern {
    background: #f7f4f0;
    border-radius: 0px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    overflow: hidden;
    flex: 1 1 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    min-width: 280px;
    transition: all 0.3s ease;
    position: relative;
}
.property-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.property-card-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    background: #111;
    overflow: hidden;
    position: relative;
}
.property-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.property-card-modern:hover .property-card-img {
    transform: scale(1.08);
}
.property-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    color: #b98a5a;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 0px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    letter-spacing: 1.2px;
    z-index: 5;
    text-transform: uppercase;
}
.property-card-content {
    background: #f7f4f0;
    padding: 35px 30px 25px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 200px;
    position: relative;
}
.property-card-title {
    color: #23272f;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.3;
}
.property-card-price {
    color: #23272f;
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.1;
}
.property-card-features {
    color: #23272f;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    opacity: 0.75;
    margin-bottom: 20px;
    line-height: 1.4;
}
.property-card-divider {
    width: 100%;
    height: 1px;
    background: #d6cfc2;
    opacity: 0.4;
    position: absolute;
    left: 0;
    bottom: 0;
}
@media (max-width: 1100px) {
    .best-offers-cards {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .property-card-modern {
        min-width: 260px;
        max-width: 100%;
    }
}
@media (max-width: 700px) {
    .best-offers-title {
        font-size: 1.5rem;
    }
    .property-card-content {
        padding: 25px 20px 20px 20px;
    }
    .best-offers-cards {
        gap: 20px;
    }
} 

/* SwiperJS for Best Offers */
.best-offers-swiper {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.best-offers-swiper .swiper-wrapper {
    align-items: stretch;
    display: flex;
    transition-timing-function: ease-out;
}
.best-offers-swiper .swiper-slide {
    display: flex;
    height: auto;
    width: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.swiper-button-prev.best-offers-prev,
.swiper-button-next.best-offers-next {
    /* color: #b98a5a;
    background: #23272f;
    border: 2px solid #b98a5a; */
    width: 48px;
    height: 48px;
    top: -60px;
    right: 60px;
    left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    z-index: 10;
    position: absolute;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
.swiper-button-next.best-offers-next {
    right: 0;
}
.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 1.6rem !important;
    font-weight: 100 !important;
    color: #ccc !important;
}
.swiper-button-prev.best-offers-prev:hover,
.swiper-button-next.best-offers-next:hover {
    background: #b98a5a;
    color: #fff;
    box-shadow: 0 6px 16px rgba(185, 138, 90, 0.3);
}
.swiper-button-prev.best-offers-prev:hover:after,
.swiper-button-next.best-offers-next:hover:after {
    color: #fff !important;
}
@media (max-width: 900px) {
    .swiper-button-prev.best-offers-prev,
    .swiper-button-next.best-offers-next {
        top: -50px;
        width: 40px;
        height: 40px;
    }
}
@media (max-width: 600px) {
    .swiper-button-prev.best-offers-prev,
    .swiper-button-next.best-offers-next {
        display: none;
        visibility: hidden;
    }
} 

.best-offers-nav-btns {
    position: absolute;
    right: 0;
    bottom: -15px;
    display: flex;
    gap: 12px;
    z-index: 2;
} 

.swiper-button-prev.best-offers-prev:after {
    content: '\f053' !important; /* Left arrow */
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    font-size: 1.2rem !important;
    color: #ccc !important;
}

.swiper-button-next.best-offers-next:after {
    content: '\f054' !important; /* Right arrow */
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    font-size: 1.2rem !important;
    color: #ccc !important;
} 

/* Custom Property Card Design for Best Offers Section */
.custom-property-card {
  background: #181D24;
  border: 1.5px solid #b98a5a;
  border-radius: 0px;
  overflow: hidden;
  color: #fff;
  max-width: 370px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', Arial, sans-serif;
}

.custom-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 2px solid #b98a5a;
}

.custom-card-content {
  padding: 9px 16px 8px 16px;
  background: #181D24;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.custom-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 0;
  color: #fff;
  text-align: center;
  letter-spacing: 0.5px;
}

.custom-card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 18px;
  margin-bottom: 9px;
  width: 100%;
}

.custom-card-features div {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  color: #fff;
  gap: 7px;
  font-weight: 500;
  line-height: 1.2;
}

.custom-card-features i {
  color: #b98a5a;
  font-size: 0.92rem;
  min-width: 16px;
  margin-right: 3px;
}

.custom-card-actions {
  display: flex;
  gap: 14px;
  width: 100%;
  justify-content: space-between;
}

.custom-btn {
  background: #b98a5a;
  color: #fff;
  border: none;
  border-radius: 0px;
  padding: 8px 0;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  width: 48%;
  transition: background 0.18s, color 0.18s, border 0.18s;
  letter-spacing: 0.5px;
}

.custom-btn:hover {
  background: #fff;
  color: #b98a5a;
  border: 1.5px solid #b98a5a;
} 

/* Inquiry Popup Overlay Styles */
.inquiry-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24, 29, 36, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s;
}

.inquiry-popup {
  background: #181D24;
  border-radius: 0px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  padding: 32px 28px 24px 28px;
  max-width: 370px;
  width: 95vw;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inquiry-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 2rem;
  color: #b98a5a;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.inquiry-close:hover {
  color: #fff;
}

#inquiryForm input,
#inquiryForm textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 0px;
  border: 1px solid #b98a5a;
  background: #23272f;
  color: #fff;
  font-size: 0.95rem;
  font-family: 'Poppins', Arial, sans-serif;
  outline: none;
  transition: border 0.2s;
}
#inquiryForm input:focus,
#inquiryForm textarea:focus {
  border: 1.5px solid #e2b47a;
}
#inquiryForm button.custom-btn {
  margin-top: 6px;
}
#inquirySuccess {
  color: #b98a5a;
  font-size: 1rem;
  text-align: center;
  margin-top: 10px;
}
@media (max-width: 500px) {
  .inquiry-popup {
    padding: 18px 6vw 16px 6vw;
    max-width: 98vw;
  }
  .inquiry-close {
    top: 6px;
    right: 10px;
    font-size: 1.5rem;
  }
} 

/* Custom Search Section Styles */
.custom-search-section {
  background: #181D24;
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.custom-search-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0 60px 0;
}
.custom-search-title {
  color: #AC835D;
  font-size: 1.7rem;
  font-family: Muli,sans-serif;
  font-weight: 100;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 1px;
  /* line-height: ; */
}
.custom-search-form {
  display: flex;
  width: 100%;
  max-width: 900px;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.custom-search-input {
  flex: 1 1 0;
  padding: 12px 20px;
  border-radius: 0px;
  border: 1px solid #4a4847;
  background: #101319;
  color: #fff;
  font-size: 1.2rem;
  /* font-family: 'Poppins', Arial, sans-serif; */
  outline: none;
  transition: border 0.2s;
}
.custom-search-input::placeholder {
  color: #fff;
  opacity: 0.8;
  font-weight: 300 !important;
  font-size: 1.2rem;
}
.custom-search-btn {
  background: #AC835D;
  color: #fff;
  border: none;
  border-radius: 0px;
  padding: 0 54px;
  font-size: 1rem;
  /* font-family: 'Poppins', Arial, sans-serif; */
  font-weight: 600;
  /* letter-spacing: 1px; */
  height: 58px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-search-btn:hover {
  background: #a07a4a;
  color: #fff;
}
@media (max-width: 900px) {
  .custom-search-title {
    font-size: 2rem;
    margin-bottom: 32px;
  }
  .custom-search-form {
    max-width: 98vw;
    gap: 12px;
  }
  .custom-search-input {
    font-size: 1.1rem;
    padding: 18px 16px;
  }
  .custom-search-btn {
    font-size: 1rem;
    height: 54px;
    padding: 0 24px;
  }
}
@media (max-width: 600px) {
  .custom-search-section {
    min-height: 25vh;
    padding: 0;
  }
  .custom-search-title {
    font-size: 1.2rem;
    margin-bottom: 22px;
  }
  .custom-search-form {
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 98vw;
  }
  .custom-search-input, .custom-search-btn {
    width: 100%;
    min-width: 0;
    font-size: 1rem;
    height: 48px;
    padding: 20px 12px;
    border-radius: 0px;
  }
  .custom-search-btn {
    padding: 0;
  }
} 

@media (min-width: 1200px) {
    .development-section .col-lg-4 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
    .development-section .col-md-6 {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}
@media (max-width: 767.98px) {
    .development-section .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* About Us Section Styles */
.about-us-section {
    padding: 30px 0;
    background: #F9F1EC;
    position: relative;
    overflow: hidden;
}

.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23e2b47a" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e2b47a 0%, #b98a5a 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 0px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.about-title {
    font-size: 29px;
    font-weight: 700;
    color: #181D24;
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #e2b47a 0%, #b98a5a 100%);
    border-radius: 0px;
}

.about-description {
    font-size:16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
    text-align: justify;
    font-weight: 500;
}

.about-features {
    margin-bottom: 50px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.about-feature-item {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: #fff;
    border-radius: 0px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.about-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e2b47a 0%, #b98a5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: #fff;
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #181D24;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}





/* Responsive Design for About Us Section */
@media (max-width: 991.98px) {
    .about-us-section {
        padding: 20px 0;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-description {
        font-size: 16px;
    }
    
    .about-features {
        gap: 20px;
    }
    
    .about-feature-item {
        min-width: 250px;
        padding: 20px;
    }
}

@media (max-width: 767.98px) {
    .about-us-section {
        padding: 15px 0;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-feature-item {
        flex: none;
        min-width: 100%;
        padding: 20px;
        margin-bottom: 0;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .feature-content h4 {
        font-size: 18px;
    }
}

@media (max-width: 575.98px) {
    .about-title {
        font-size: 24px;
    }
    
    .about-description {
        font-size: 15px;
    }
    
    .about-features {
        gap: 15px;
    }
    
    .about-feature-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .feature-icon {
        margin: 0 auto 15px;
        width: 45px;
        height: 45px;
    }
    
    .feature-icon i {
        font-size: 18px;
    }
    
    .feature-content h4 {
        font-size: 16px;
    }
    
    .feature-content p {
        font-size: 14px;
    }
} 

.divider-contact-footer {
  width: 100%;
  height: 0.2px;
  background: #b98a5a;
  border: none;
  margin: 0;
} 

/* --- Development Section Modern Redesign --- */
.dev-section-header {
  margin-bottom: 38px;
  text-align: center;
}
.dev-section-badge {
  display: inline-block;
  background: linear-gradient(90deg, #e2b47a 0%, #b98a5a 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 0px;
  padding: 6px 22px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.dev-section-title {
  font-family: 'Marcellus', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #181D24;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
}
.dev-section-bar {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #e2b47a 0%, #b98a5a 100%);
  border-radius: 0px;
  margin: 0 auto 10px auto;
  opacity: 0.7;
}
.dev-section-desc {
  color: #7a6a57;
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 0 auto;
  line-height: 1.7;
}
@media (max-width: 767.98px) {
  .dev-section-title {
    font-size: 1.5rem;
  }
  .dev-section-desc {
    font-size: 0.98rem;
  }
  .dev-section-header {
    margin-bottom: 22px;
  }
}
/* --- End Development Section Modern Redesign --- */ 

/* Best Offers Section iPad Responsive */
@media (min-width: 768px) and (max-width: 1024px) {
  .best-offers-swiper .swiper-slide {
    width: calc(50% - 15px) !important;
    margin-right: 30px !important;
  }
  
  .best-offers-swiper .swiper-wrapper {
    gap: 0;
  }
  
  .custom-property-card {
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .best-offers-swiper .swiper-slide {
    width: 100% !important;
  }
} 

/* Always keep container-welcome in row direction on all screens */
@media (max-width: 1200px) {
  .container-welcome {
    flex-direction: row !important;
  }
}
@media (max-width: 1100px) {
  .container-welcome {
    flex-direction: row !important;
  }
}
@media (max-width: 900px) {
  .container-welcome {
    flex-direction: row !important;
  }
}
@media (max-width: 700px) {
  .container-welcome {
    flex-direction: row !important;
  }
}
@media (max-width: 480px) {
  .container-welcome {
    flex-direction: row !important;
  }
}

/* Remove previous force-row overrides for .container-welcome */

@media (max-width: 700px) {
  .container-welcome {
    flex-direction: column !important;
  }
}

@media (min-width: 701px) {
  .container-welcome {
    flex-direction: row !important;
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .belfort-welcome-section {
    min-height: 45vh;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (max-width: 700px) {
  .belfort-welcome-section {
    min-height: 32vh;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

@media (max-width: 700px) {
  .welcome-imgs {
    width: 95vw;
    max-width: 340px;
    height: auto;
    min-height: 180px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .building-img {
    width: 70vw;
    max-width: 220px;
    height: auto;
    aspect-ratio: 1/1;
    position: relative;
    left: 12vw;
    top: 0;
    z-index: 2;
    border-radius: 0;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  }
  .girl-img {
    width: 38vw;
    max-width: 120px;
    height: auto;
    aspect-ratio: 11/13;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    border-radius: 0;
    border: 3px solid #181d24;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  }
}

@media (max-width: 700px) {
  .welcome-heading br {
    display: none;
  }
  .best-offers-title br {
    display: none;
  }
}

.property-section {
    padding-top : 60px;
    background: #181D24;
}

.section-title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0 12px 0;
  width: 100%;
}
.section-title-divider::before,
.section-title-divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, rgba(0,0,0,0.08), #b98a5a, rgba(0,0,0,0.08));
  margin: 0 18px;
  opacity: 0.5;
}
.section-title-text {
    font-family: 'Marcellus', serif;
  font-size: 1.3rem;
  /* font-weight: 700; */
  color:#b98a5a;
  letter-spacing: 1px;
  text-align: center;
  white-space: nowrap;
}

.property-section input {
    border-radius: 0 !important;
}

.property-section select {
    border-radius: 0 !important;
}

.property-section .filter-bar-flex {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.property-section .filter-bar-flex > div {
  flex: 1 1 140px;
  min-width: 140px;
}
.property-section .filter-bar-flex .filter-bar-actions {
  flex: 0.5 1 100px;
  min-width: 100px;
  display: flex;
  gap: 8px;
}
@media (max-width: 900px) {
  .property-section .filter-bar-flex {
    gap: 10px;
  }
  .property-section .filter-bar-flex > div {
    min-width: 120px;
  }
}
@media (max-width: 700px) {
  .property-section .filter-bar-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .property-section .filter-bar-flex > div,
  .property-section .filter-bar-flex .filter-bar-actions {
    flex: 1 1 100%;
    min-width: 0;
    width: 100%;
  }
  .property-section .filter-bar-flex .filter-bar-actions {
    flex-direction: row;
    justify-content: stretch;
  }
  .property-section select,
  .property-section input,
  .property-section button {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
}

/* Modern Circular Pagination */
.pagination-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 32px 0;
}

.pagination-modern-btn,
.pagination-modern-ellipsis {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  outline: none;
  background: #f6f6f8;
  color: #23232f;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
}

.pagination-modern-btn.active {
  background: #23232f;
  color: #fff;
  font-weight: 700;
}

.pagination-modern-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-modern-ellipsis {
  background: transparent;
  color: #aaa;
  cursor: default;
  font-size: 1.1rem;
  pointer-events: none;
  box-shadow: none;
}

/* Property Details Page Custom Styles */
.property-hero {
    /* background: url('../images/slide-1.jpg') center/cover no-repeat !important; */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: left;
    position: relative;
}
.property-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(24,29,36,0.8) 0%, rgba(24,29,36,0.5) 50%, transparent 100%);
    z-index: 1;
}
.property-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: left;
    max-width: 700px;
    left: 70px;
}
.property-hero-title {
    font-family: 'Marcellus', serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.property-hero-location {
    font-size: 1.1rem;
    color: #e2b47a;
    margin-bottom: 18px;
}
.property-hero-price {
    font-size: 2.2rem;
    color: #e2b47a;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 18px;
}
.property-hero-details {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.property-hero-details span {
    background: rgba(255,255,255,0.08);
    padding: 8px 18px;
    border-radius: 0px;
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}
.property-hero-status {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 8px;
}
.property-hero-rera {
    font-size: 0.95rem;
    color: #b98a5a;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .property-hero{
        min-height: 50vh;
    }
    .property-hero-content {
        top: 50px;
    }
}
@media (max-width: 900px) {
    .property-gallery-images img {
        width: 48vw;
        max-width: 180px;
        height: 120px;
    }
}
@media (max-width: 700px) {
    .property-hero-content {
        display: none !important;
    }
}

/* Property Details About Us Section Styles */
.property-about-section {
    padding: 15px 0;
    background: #181D24;
    position: relative;
    overflow: hidden;
}

.property-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23e2b47a" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.property-about-content {
    position: relative;
    z-index: 2;
}

.property-about-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e2b47a 0%, #b98a5a 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 0px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.property-about-title {
    font-family: 'Marcellus', serif;
    font-size: 29px;
    font-weight: 700;
    color: #b98a5a;
    margin-bottom: 10px;
    line-height: 1.2;
    position: relative;
}

.property-about-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(135deg, #e2b47a 0%, #b98a5a 100%);
    border-radius: 0px;
}

.property-about-description {
    font-size: 14px;
    line-height: 1.8;
    color: #a5a5a5;
    margin-bottom: 20px;
    text-align: justify;
    font-weight: 300 !important; 
}

/* Responsive Design for Property About Us Section */
@media (max-width: 991.98px) {
    .property-about-section {
        padding: 20px 0;
    }
    
    .property-about-title {
        font-size: 24px;
    }
    
    .property-about-description {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .property-about-section {
        padding: 15px 0;
    }
    
    .property-about-title {
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .property-about-title {
        font-size: 18px;
    }
    
    .property-about-description {
        font-size: 15px;
    }
}

/* Property Details Highlights Section Styles */
.property-highlights-section {
    width: 100%;
    background: transparent;
    margin: 0;
    padding: 15px 0;
}
.property-highlights-card {
    background: #fff;
    /* border-radius: 8px 0 0 8px; */
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}
.property-highlights-header {
    background: #e2b47a;
    color: #fff;
    font-size: 1rem;
    font-family: 'Marcellus', serif;
    font-weight: 600;
    padding: 10px;
    letter-spacing: 0.5px;
    border-bottom: none;
    /* border-radius: 8px 0 0 0; */
    margin: 0;
}
.property-highlights-list {
    list-style: none;
    margin: 0;
    padding: 0px 5px;
    margin-left: 8px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* gap: 18px; */
}
.property-highlights-list li {
    font-size: 0.9rem;
    color: #6b6b6b;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    /* gap: 12px; */
    line-height: 1.4;
}

/* Override for floorplan card specifications */
.floorplan-card .property-highlights-list li {
    color: #fff !important;
    font-weight: normal !important;
}
.property-highlight-icon {
    color: #e2b47a;
    font-size: 1.5em;
    margin-right: 8px;
    margin-top: 2px;
    flex-shrink: 0;
    /* font-weight: 600; */
}
.property-highlights-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 0 8px 8px 0 !important; */
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    display: block;
    margin: 0;
}
.rounded-right {
    /* border-radius: 0 8px 8px 0 !important; */
}
@media (max-width: 991.98px) {
    .property-highlights-card {
        border-radius: 8px 8px 0 0;
    }
    .property-highlights-header {
        border-radius: 8px 8px 0 0;
    }
    .property-highlights-image {
        border-radius: 0 0 8px 8px !important;
        margin-top: 0;
    }
}
@media (max-width: 600px) {
    .property-highlights-section {
        padding: 20px 0;
    }
    .property-highlights-header {
        font-size: 1.1rem;
        padding: 12px 10px 8px 10px;
    }
    .property-highlights-list {
        font-size: 1rem;
        padding: 0 10px 0 10px;
        gap: 10px;
    }
    .property-highlights-list li {
        font-size: 1rem;
    }
    .property-highlights-card {
        box-shadow: 0 2px 8px rgba(0,0,0,0.10);
        border-radius: 8px 8px 0 0;
    }
    .property-highlights-image {
        border-radius: 0 0 8px 8px !important;
        margin-top: 0;
    }
}

.property-highlights-section .container {
    width: 98%;
    max-width: 98vw;
    margin: 0 auto;
}

.property-highlights-image-wrap {
    width: 100%;
    height: 100%;
    display: flex;
}

/* Floor Plan Section Styles */
.floorplan-section {
    width: 100%;
    background: transparent;
    margin: 0;
    padding: 15px 0px;
}
.floorplan-section .container {
    width: 98%;
    max-width: 98vw;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}
.floorplan-section .row {
    width: 100%;
    display: flex;
    align-items: stretch;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.floorplan-section .col-md-8,
.floorplan-section .col-md-4 {
    display: flex;
    align-items: stretch;
}
.floorplan-card {
    background: #181D24;
    color: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    min-height: 400px;
    padding: 50px 0px 50px 40px;
    flex: 1;
}
.floorplan-title {
    font-size: 1.3rem;
    font-family: 'Marcellus', serif;
    font-weight: 700;
    margin-bottom: 32px;
    color: #fff;
}
.floorplan-table {
    width: 90%;
    border-collapse: collapse;
    margin-bottom: 22px;
}
.floorplan-table th, .floorplan-table td {
    border: 1px solid #e2b47a;
    padding: 5px 10px;
    text-align: left;
    font-size: 1rem;
}
.floorplan-table th {
    background: #181D24;
    color: #fff;
    font-weight: 600;
}
.floorplan-table td {
    background: #181D24;
    color: #fff;
    font-weight: normal;
}
.floorplan-btn {
    display: inline-block;
    background: #b98a5a;
    color: #fff;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 2px;
    text-decoration: none;
    letter-spacing: 1px;
    margin-top: 18px;
    transition: background 0.2s, color 0.2s;
    border: none;
}
.floorplan-image-wrap {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 0;
    margin: 0;
    flex: 1;
}
.floorplan-image {
    max-width: 98%;
    max-height: 98%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: auto;
    border-radius: 0;
}
@media (max-width: 991.98px) {
    .floorplan-section .container {
        flex-direction: column;
    }
    .floorplan-section .row {
        flex-direction: column;
    }
    .floorplan-card {
        padding: 24px 12px 18px 12px;
        min-height: 350px;
    }
    .floorplan-title {
        font-size: 1.1rem;
        margin-bottom: 18px;
    }
    .floorplan-image-wrap {
        padding: 18px 4px;
        min-height: 350px;
    }
    .floorplan-image {
        max-height: 220px;
    }
}
@media (max-width: 600px) {
    .floorplan-section .container {
        width: 100%;
        max-width: 100vw;
        padding: 0 2vw;
        flex-direction: column;
    }
    .floorplan-section .row {
        flex-direction: column;
    }
    .floorplan-card {
        padding: 14px 2vw 10px 2vw;
        min-height: 300px;
    }
    .floorplan-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    .floorplan-table th, .floorplan-table td {
        padding: 8px 6px;
        font-size: 0.9rem;
    }
    .floorplan-btn {
        font-size: 1rem;
        padding: 10px 10px;
        margin-top: 10px;
    }
    .floorplan-image-wrap {
        padding: 8px 2px;
        min-height: 300px;
    }
    .floorplan-image {
        max-height: 120px;
    }
}

/* Property Gallery Section */
.property-gallery-section {
    background: #181D24;
    padding: 0;
    margin: 0;
}
.gallery-container {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0;
}
.property-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-collapse: collapse;
}
.gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 2px solid #fff;
    box-sizing: border-box;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 1100px) {
    .property-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 700px) {
    .property-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item {
        aspect-ratio: 1/1;
    }
}

.property-gallery-title {
    color: #b98a5a;
    font-family: 'Marcellus', serif;
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin: 36px 0 24px 0;
    letter-spacing: 1px;
}

.builder-about-section {
    background: #f9f1ec;
    padding: 40px 0 30px 0;
}
.builder-about-title {
    color: #b98a5a;
    font-family: 'Marcellus', serif;
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 22px;
    letter-spacing: 1px;
}
.builder-about-description {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
@media (max-width: 700px) {
    .builder-about-section {
        padding: 24px 0 18px 0;
    }
    .builder-about-title {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }
    .builder-about-description {
        font-size: 1rem;
        padding: 0 8px;
    }
}

.property-about-section .container {
    width: 98%;
    max-width: 98vw;
    margin: 0 auto;
}

/* FAQ Section */
.faq-section {
    background: #181D24;
    padding: 20px 0 30px 0;
}
.faq-title {
    color: #fff;
    font-family: 'Marcellus', serif;
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 12px;
    margin-top: 32px;
    letter-spacing: 1px;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.faq-card {
    background: #181D24;
    border: 1px solid #b98a5a;
    /* border-left: 8px solid #e2b47a; */
    border-radius: 0;
    box-shadow: none;
    padding: 0 28px 0 0;
    margin: 0;
    transition: box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
/* .faq-gold-bar {
    display: inline-block;
    width: 8px;
    height: 70%;
    background: #e2b47a;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0;
} */
.faq-card-question {
    font-weight: 400;
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    padding: 14px 14px 0 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.faq-card-question:hover {
    background-color: rgba(185, 138, 90, 0.1);
}
.faq-card-answer {
    color: #fff;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    padding: 6px 14px 14px 22px;
    /* display: none; */
    /* opacity: 0; */
    /* max-height: 0; */
    /* transition: opacity 0.3s, max-height 0.3s; */
    z-index: 1;
}
.faq-card.open .faq-card-answer {
    /* display: block; */
    /* opacity: 1; */
    /* max-height: 500px; */
}
.faq-card.open {
    /* box-shadow: 0 4px 24px rgba(185,138,90,0.10); */
}
@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-card-question, .faq-card-answer {
        padding-left: 20px;
        padding-right: 10px;
    }
    .faq-title {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
}

/* Property Image Row Section (Custom) */
.property-image-row-section {
    background: #fff;
    padding: 24px 0 24px 0;
    margin: 0;
}
.property-image-row-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 98vw;
    width: 98%;
    margin: 0 auto;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.property-image-row-left {
    width: 67%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 32px 32px 32px;
}
.property-image-row-header {
    background: #b98a5a;
    color: #fff;
    font-size: 2rem;
    font-family: 'Marcellus', serif;
    font-weight: 500;
    padding: 18px 24px;
    border-radius: 0;
    margin-bottom: 24px;
    letter-spacing: 1px;
}
.property-image-row-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.property-image-row-list li {
    font-size: 1.25rem;
    color: #7a6a57;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.property-image-row-list li::before {
    content: '\2714';
    color: #b98a5a;
    font-size: 1.5rem;
    margin-right: 12px;
    font-weight: bold;
}
.property-image-row-right {
    width: 33%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 320px;
    min-height: 320px;
}
.property-image-row-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
@media (max-width: 1100px) {
    .property-image-row-container {
        flex-direction: column;
        min-width: 0;
    }
    .property-image-row-left, .property-image-row-right {
        width: 100%;
        padding: 18px 12px;
        min-width: 0;
    }
    .property-image-row-header {
        font-size: 1.3rem;
        padding: 12px 10px;
    }
    .property-image-row-img {
        max-width: 100%;
        min-width: 0;
    }
}
@media (max-width: 700px) {
    .property-image-row-section {
        padding: 10px 0;
    }
    .property-image-row-container {
        flex-direction: column;
        box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    }
    .property-image-row-left, .property-image-row-right {
        padding: 10px 4vw;
    }
    .property-image-row-header {
        font-size: 1.1rem;
        padding: 8px 8px;
        margin-bottom: 12px;
    }
    .property-image-row-list li {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    .property-image-row-img {
        max-width: 100vw;
        min-width: 0;
    }
}

/* Highlights Replica Section (Bootstrap) */
.property-highlights-bootstrap-section {
    background: #F9F1EC;
    padding: 12px 0 0 0;
}
.property-highlights-bootstrap-section .container {
    width: 98%;
    max-width: 98vw;
    margin: 0 auto;
}
.property-highlights-bootstrap-section .row {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-radius: 0;
    background: #fff;
    overflow: hidden;
    /* min-height: 340px; */
    align-items: stretch;
}
.property-highlights-bootstrap-header {
    background: #b98a5a;
    color: #fff;
    font-size: 1.3rem;
    font-family: 'Marcellus', serif;
    font-weight: 600;
    padding: 2px 0px 2px 15px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    /* box-shadow: 0 2px 8px rgba(185,138,90,0.10); */
}
.property-highlights-bootstrap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.property-highlights-bootstrap-list li {
    font-size: 0.8rem;
    color: #444;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 2px;
    margin-left: 15px;
    display: flex;
    /* align-items: center; */
    gap: 14px;
    position: relative;
    line-height: 1.5;
}
.property-highlights-bootstrap-list li:last-child {
    margin-bottom: 0;
}
.property-highlights-bootstrap-list li::before {
    content: '\2714';
    color: #b98a5a;
    font-size: 1rem;
    margin-right: 5px;
    font-weight: bold;
    display: inline-block;
    /* min-width: 24px; */
}
.property-highlights-bootstrap-section .col-12.col-md-8,
.property-highlights-bootstrap-section .col-12.col-md-4 {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: left;
    /* min-height: 340px; */
    padding: 0;
    /* border: 1px solid red; */
}
.property-highlights-bootstrap-section .col-12.col-md-8 {
    padding: 0;
    /* border-right: 1.5px solid #f0e6db; */
}
.property-highlights-bootstrap-section .col-12.col-md-4 {
    /* align-items: center; */
    justify-content: center;
    display: flex;
    padding: 0;
}
.property-highlights-bootstrap-img {
    /* background: #fff; */
    /* border-radius: 0; */
    /* box-shadow: 0 4px 24px rgba(0,0,0,0.10); */
    max-width: 100%;
    /* max-height: 320px; */
    object-fit: cover;
    display: block;
    /* margin: 0 auto; */
    /* border: 2px solid #f0e6db; */
}
@media (max-width: 991.98px) {
    .property-highlights-bootstrap-header {
        font-size: 1.3rem;
        padding: 14px 10px;
        margin-bottom: 18px;
    }
    .property-highlights-bootstrap-img {
        max-width: 100%;
        max-height: 220px;
    }
    .property-highlights-bootstrap-section .col-12.col-md-7 > div,
    .property-highlights-bootstrap-section .col-12.col-md-7 > ul {
        padding: 0 10px 0 10px;
    }
}
@media (max-width: 700px) {
    .property-highlights-bootstrap-section {
        padding: 10px 0;
    }
    .property-highlights-bootstrap-section .container {
        width: 100%;
        max-width: 100vw;
        padding-left: 0;
        padding-right: 0;
    }
    .property-highlights-bootstrap-section .row {
        flex-direction: column;
        min-height: 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.10);
        border-radius: 0;
    }
    .property-highlights-bootstrap-section .col-12.col-md-7,
    .property-highlights-bootstrap-section .col-12.col-md-5 {
        min-height: 0;
        /* border-right: none; */
        padding: 0;
    }
    .property-highlights-bootstrap-header {
        font-size: 1.1rem;
        padding: 8px 8px;
        margin-bottom: 12px;
    }
    .property-highlights-bootstrap-list li {
        margin-bottom: 5px;
    }
    .property-highlights-bootstrap-list li::before {
        margin-right: 1px;
    }
    .hide-mobile {
        display: none !important;
    }
}


/* Sizes & Floor Plan Section (Replica) */
.floorplan-section-replica {
    background: #F9F1EC;
    padding: 0;
}
.floorplan-left-bg {
    background: #181D24;
    color: #fff;
    /* min-height: 420px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.floorplan-title-replica {
    color: #fff;
    font-family: 'Marcellus', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 22px;
}
.floorplan-table-replica {
    background: transparent;
    color: #fff;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 0;
}
.floorplan-table-replica th,
.floorplan-table-replica td {
    border: 1px solid #b98a5a;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    background: transparent;
    color: #fff;
}
.floorplan-table-replica th {
    background: transparent;
    color: #fff;
    font-weight: 700;
}
.floorplan-table-replica td {
    font-weight: 400;
}
.floorplan-download-btn {
    width: 250px;
    display: inline-block;
    background: #b98a5a;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    padding: 7px 0;
    border: none;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s;
    margin-top: 5px;
}
.floorplan-download-btn:hover {
    background: #b98a5a;
    color: #fff;
    /* border: 2px solid #b98a5a; */
}
.floorplan-right-bg {
    background: #fff;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.floorplan-img-wrap {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.floorplan-img-replica {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.mobile-location-image{
    display: none;
}
@media (max-width: 991.98px) {
    .floorplan-title-replica {
        font-size: 1.5rem;
        margin-bottom: 18px;
    }
    .floorplan-table-replica th,
    .floorplan-table-replica td {
        padding: 10px 8px;
        font-size: 1rem;
    }
    .floorplan-img-replica {
        max-height: 220px;
    }
    .floorplan-left-bg, .floorplan-right-bg {
        min-height: 260px;
        padding: 18px 8px !important;
    }
}
@media (max-width: 700px) {
    .floorplan-section-replica .row {
        flex-direction: column;
    }
    .floorplan-left-bg, .floorplan-right-bg {
        min-height: 0;
        padding: 18px 4vw !important;
    }
    .floorplan-title-replica {
        margin-bottom: 10px;
    }
    .floorplan-table-replica th,
    .floorplan-table-replica td {
        padding: 8px 4px;
        font-size: 0.8rem;
    }
    .floorplan-download-btn {
        width: 200px;
        font-size: .7rem;
        margin-top: 5px;
    }
    .floorplan-img-replica {
        max-height: 100%;
    }
    .desctop-location-image{
        display: none;
    }
    .mobile-location-image{
        display: block;
    }
}

/* Gallery Table Section (Responsive) */
.gallery-table-section {
    background: #fff;
    padding: 0;
}
.gallery-table-title {
    font-family: 'Marcellus', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #181D24;
    margin-bottom: 32px;
    text-align: left;
}
.gallery-table {
    border-collapse: separate;
    border-spacing: 16px 16px;
    width: 100%;
    margin: 0 auto;
    background: transparent;
}
.gallery-table td {
    background: #f6f6f6;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 0;
    overflow: hidden;
    vertical-align: middle;
    text-align: center;
    width: 25%;
}
.gallery-table-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.gallery-table td:hover .gallery-table-img {
    transform: scale(1.04);
}
@media (max-width: 1199.98px) {
    .gallery-table td {
        width: 33.33%;
    }
    .gallery-table-img {
        height: 140px;
    }
    .gallery-table {
        border-spacing: 10px 10px;
    }
}
@media (max-width: 767.98px) {
    .gallery-table td {
        width: 50%;
    }
    .gallery-table-img {
        height: 90px;
    }
    .gallery-table {
        border-spacing: 6px 6px;
    }
    .gallery-table-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
}

/* Mobile Only Details Table Section */
.mobile-details-table-section {
    background: #181D24;
    width: 100%;
}
.mobile-details-table {
    font-size: .9rem;
    background: #181D24;
    /* border-radius: 8px; */
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.04); */
    overflow: hidden;
}
.mobile-details-table th {
    background: #181D24 ;
    color: #fff;
    font-weight: 600;
    width: 120px;
    border: none;
    padding: 5px 0px;
    padding-left: 10px;
    border-bottom: 1px solid #b98a5a;
    border-right: 1px solid #b98a5a;
}
.mobile-details-table td {
    background: #181D24 ;
    color: #fff;
    border: none;
    padding: 5px 0px;
    padding-left: 10px;
    border-bottom: 1px solid #b98a5a;
}
@media (min-width: 700px) {
    .mobile-details-table-section {
        display: none !important;
    }
}

@media (max-width: 700px) {
    .property-hero {
        height: 30vh !important;
    }
}

@media (max-width: 700px) {
    .belfort-nav-logo h2 {
        font-size: 19.2px !important;
    }
    .belfort-nav-logo {
        margin-top: -0.3em !important;
        /* If padding-top is used instead, reduce it by 20% as well */
        padding-top: 0.8em !important;
    }
}
.custom-btn {
    text-decoration: none !important;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
  }


