/* =========================================================
   TOWNSQUARE - LUXURY RESIDENCES STYLESHEET
   ========================================================= */

:root {
    --color-gold: #c29b68;
    --color-gold-hover: #b08856;
    --color-gold-light: #f7f2ea;
    --color-dark-bg: #0c131d;
    --color-dark-card: #080d15;
    --color-text-main: #1a202c;
    --color-text-muted: #64748b;
    --color-white: #ffffff;
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --header-height: 80px;
    --transition-fast: all 0.3s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-dark-bg);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* =========================================================
   BUTTONS & BADGES
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary, .btn-gold {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.btn-primary:hover, .btn-gold:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 155, 104, 0.35);
}

.btn-outline-gold {
    background: transparent;
    border: 1.5px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline-gold:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

.btn-gold-fill {
    background-color: var(--color-gold);
    color: var(--color-white);
    border-radius: 12px;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-gold-fill:hover {
    background-color: var(--color-gold-hover);
}

.btn-block {
    width: 100%;
}

/* =========================================================
   NAVIGATION HEADER
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(12, 19, 29, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-fast);
}

.header-container {
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logos in Navigation Header */
.brand-logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo .logo-img {
    height: 42px;
    width: auto;
    display: block;
}

.partner-logo-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 12px;
}

.partner-logo-img {
    height: 22px;
    width: auto;
    display: block;
}

.partner-text {
    font-size: 0.55rem;
    font-weight: 600;
    color: #c29b68;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: 2px;
    white-space: nowrap;
}

.desktop-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav .nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 6px 0;
    transition: var(--transition-fast);
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
    color: var(--color-gold);
}

.desktop-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Mobile Menu Drawer Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1001;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-header.menu-open + .mobile-menu-overlay,
.mobile-menu-overlay[aria-hidden="false"] {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

/* Mobile Drawer Opening From Left */
.mobile-menu-drawer {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 320px;
    height: auto;
    max-height: 100vh;
    background-color: var(--color-dark-card);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 20px 20px 24px;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom-right-radius: 20px;
}

.site-header.menu-open + .mobile-menu-overlay .mobile-menu-drawer {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-town-logo {
    height: 36px;
    width: auto;
}

.mobile-partner-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 10px;
}

.mobile-brick-logo {
    height: 20px;
    width: auto;
}

.mobile-partner-text {
    font-size: 0.5rem;
    font-weight: 600;
    color: #c29b68;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: 2px;
    white-space: nowrap;
}

.mobile-close-btn {
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 16px;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--color-gold);
    padding-left: 6px;
}

.mobile-menu-action {
    margin-top: 6px;
    width: 100%;
}

@media (max-width: 991px) {
    .mobile-toggle {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .header-actions .desktop-header-btn {
        display: none !important;
    }
}


/* =========================================================
   HERO SECTION (DESKTOP & MOBILE)
   ========================================================= */

.hero-section {
    position: relative;
    padding-top: var(--header-height);
    min-height: 70vh;
    background-color: var(--color-dark-bg);
}

/* Desktop Hero View */
.hero-desktop-bg {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--header-height));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        rgba(8, 13, 21, 0.85) 0%, 
        rgba(8, 13, 21, 0.55) 50%, 
        rgba(8, 13, 21, 0.25) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
    width: 100%;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 14px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Mobile Hero View */
.hero-mobile-view {
    display: none;
}

/* =========================================================
   FLOATING ACTION BUTTONS
   ========================================================= */

.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-white);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    transition: var(--transition-fast);
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #20ba59;
    transform: scale(1.1);
}

.phone-btn {
    background-color: var(--color-gold);
}

.phone-btn:hover {
    background-color: var(--color-gold-hover);
    transform: scale(1.1);
}

/* =========================================================
   POPUP MODAL DIALOG
   ========================================================= */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(12, 19, 29, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    background-color: var(--color-white);
    border-radius: 24px;
    padding: 36px 32px;
    color: var(--color-text-main);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f5f9;
    border: none;
    color: #64748b;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.modal-close-btn:hover {
    background-color: #e2e8f0;
    color: #1e293b;
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-badge-pill {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid var(--color-gold);
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.modal-heading {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 500;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 10px;
}

.text-gold-serif {
    font-style: italic;
    color: var(--color-gold);
}

.modal-subheading {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Modal Form Controls */
.modal-form .form-group {
    margin-bottom: 16px;
    width: 100%;
}

.modal-form .form-input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #1e293b;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    transition: var(--transition-fast);
}

.modal-form .form-input::placeholder {
    color: #94a3b8;
}

.modal-form .form-input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3.5px rgba(194, 155, 104, 0.18);
}

/* intl-tel-input integration styling */
.iti {
    width: 100%;
}

.iti__country-list {
    z-index: 2050 !important;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Consent Checkbox Styling */
.consent-group {
    margin-top: 18px;
    margin-bottom: 24px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.45;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-gold);
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.consent-text a {
    color: var(--color-gold);
    text-decoration: underline;
    font-weight: 500;
}

/* Form Response Messages */
.form-response-msg {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.form-response-msg.error {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.form-response-msg.success {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

/* Success Modal Specifics */
.success-card {
    text-align: center;
    padding: 40px 32px;
}

.success-icon-wrapper {
    font-size: 3.5rem;
    color: #22c55e;
    margin-bottom: 16px;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.success-message {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

/* =========================================================
   MEDIA QUERIES (RESPONSIVE BREAKPOINTS)
   ========================================================= */

@media (max-width: 991px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    /* Hide Desktop Hero View on Mobile */
    .hero-desktop-bg {
        display: none;
    }

    /* Show Mobile Hero View with full vertical poster image */
    .hero-mobile-view {
        display: block;
        width: 100%;
        height: auto;
        background-color: transparent;
    }

    .hero-mobile-img-wrapper {
        width: 100%;
        height: auto;
        max-height: none;
        overflow: visible;
    }

    .hero-mobile-img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }

    .modal-card {
        padding: 30px 22px;
        border-radius: 20px;
    }

    .modal-heading {
        font-size: 1.9rem;
    }
}

/* =========================================================
   RICH SITE FOOTER STYLES
   ========================================================= */

.site-footer {
    background-color: #060b13;
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 10px 24px 10px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 14px;
}

.footer-brand-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.brand-logos-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-logos-row.justify-center {
    justify-content: center;
}

.footer-project-logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-divider {
    width: 1px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.25);
}

.partner-logo-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.partner-logo-col.center-aligned {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.brand-logos-row.justify-center .partner-logo-col {
    align-items: center;
}

.footer-partner-logo {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.partner-logo-col .partner-text {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.2;
    margin-top: 4px;
}

.footer-bullets {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.footer-bullets i {
    color: var(--color-gold);
}

/* Mobile Brand Container */
.footer-mobile-brand {
    display: none;
    text-align: center;
    margin-bottom: 30px;
}

.footer-mobile-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold);
    margin: 12px 0 8px;
}

.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0px 0;
}

/* Footer Contact Row */
.footer-contact {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    gap: 24px;
    text-align: center;
    flex-wrap: nowrap;
    margin: 24px 0;
    width: 100%;
}

.footer-contact-item {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.footer-contact-item h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-gold);
    margin-bottom: 4px;
}

.footer-contact-item a, .footer-contact-item p {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-contact-item a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

/* Footer RERA & Disclaimer */
.footer-rera {
    text-align: center;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: #64748b;
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.88rem;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.link-separator {
    color: rgba(255, 255, 255, 0.2);
}

.footer-copyright-bar {
    background-color: #04070d;
    text-align: center;
    padding: 16px 24px;
    font-size: 0.82rem;
    color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile Media Queries for Footer */
@media (max-width: 768px) {
    .footer-top {
        display: none;
    }

    .footer-mobile-brand {
        display: block;
    }

    .footer-contact {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        gap: 6px !important;
        width: 100% !important;
    }

    .footer-contact-item {
        flex: 1;
        min-width: 0;
        text-align: center;
    }

    .footer-contact-item h4 {
        font-size: 0.65rem !important;
        letter-spacing: 0.5px !important;
        white-space: nowrap !important;
    }

    .footer-contact-item a, 
    .footer-contact-item p {
        font-size: 0.68rem !important;
        line-height: 1.3 !important;
    }

    .footer-links {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 6px !important;
        white-space: nowrap !important;
    }

    .footer-links a {
        font-size: 0.72rem !important;
        white-space: nowrap !important;
    }

    .link-separator {
        font-size: 0.72rem !important;
    }
}

/* =========================================================
   OVERVIEW SECTION (WITH SINGLE IMAGE DISPLAY)
   ========================================================= */

.overview-section {
    background-color: #faf7f2;
    color: #1e293b;
    padding: 20px 24px 45px;
    position: relative;
}

.overview-container {
    max-width: 1240px;
    margin: 0 auto;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.overview-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #c29b68;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.badge-line {
    display: inline-block;
    width: 24px;
    height: 1.5px;
    background-color: #c29b68;
}

.overview-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.15;
    color: #1b2a47;
    margin-bottom: 16px;
}

.text-gold-italic {
    font-style: italic;
    color: #c29b68;
}

.overview-description {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.75;
    text-align: justify;
    margin-bottom: 0;
}

/* Single Overview Image Column */
.overview-image-col {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.overview-img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    max-height: 440px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

.overview-cta-wrap {
    margin-top: 24px;
}

.btn-know-more {
    padding: 14px 34px;
    border-radius: 30px;
    font-size: 0.92rem;
    font-weight: 600;
    background-color: #c29b68;
    color: #ffffff;
    border: none;
    box-shadow: 0 6px 20px rgba(194, 155, 104, 0.25);
    transition: var(--transition-fast);
}

.btn-know-more:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(194, 155, 104, 0.35);
}

/* Mobile Media Queries for Overview */
@media (max-width: 991px) {
    .overview-section {
        padding: 15px 16px 30px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .overview-heading {
        white-space: normal;
        font-size: 2.1rem;
    }

    .overview-description {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .overview-img {
        min-height: 240px;
        max-height: 300px;
    }

    .overview-cta-wrap {
        margin-top: 20px;
        text-align: center;
    }

    .btn-know-more {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   BOTTOM TO TOP SCROLL REVEAL ANIMATION
   ========================================================= */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible,
body:not(.js-loaded) .animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   WHY TOWN SQUARE CAROUSEL SECTION
   ========================================================= */

.why-section {
    background-color: #faf7f2;
    padding: 10px 24px 40px;
    position: relative;
}

.why-container {
    max-width: 1240px;
    margin: 0 auto;
}

.why-header {
    margin-bottom: 20px;
}

.why-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #c29b68;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.why-heading {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 400;
    color: #1b2a47;
    line-height: 1.18;
}

/* Carousel Track & Cards */
.why-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 18px;
}

.why-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.why-card {
    flex: 0 0 calc(50% - 10px);
    background-color: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.07);
}

.why-card-img-wrap {
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.why-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.why-card:hover .why-card-img {
    transform: scale(1.03);
}

.why-card-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.why-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #c29b68;
    background-color: rgba(194, 155, 104, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c29b68;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: #1b2a47;
    margin-bottom: 8px;
}

.why-card-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
}

/* Controls Row */
.why-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.why-dots-container {
    display: flex;
    align-items: center;
    gap: 6px;
}

.why-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition-fast);
}

.why-dot.active {
    background-color: #c29b68;
    width: 10px;
    height: 10px;
}

.why-nav-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    background-color: #ffffff;
    color: #475569;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.why-nav-btn:hover {
    border-color: #c29b68;
    background-color: #c29b68;
    color: #ffffff;
}

/* Mobile Responsiveness for Why Carousel */
@media (max-width: 991px) {
    .why-section {
        padding: 10px 16px 25px;
    }

    .why-heading {
        font-size: 2rem;
    }

    .why-card {
        flex: 0 0 100%;
    }

    .why-card-img-wrap {
        height: 185px;
    }

    .why-card-body {
        padding: 16px;
    }
}

/* =========================================================
   ENRICHED AMENITIES TABBED SECTION
   ========================================================= */

.amenities-tab-section {
    background-color: #faf7f2;
    padding: 10px 24px 50px;
    position: relative;
}

.amenities-container {
    max-width: 1240px;
    margin: 0 auto;
}

.amenities-header {
    margin-bottom: 20px;
}

.amenities-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #c29b68;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.amenities-heading {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 400;
    color: #1b2a47;
    line-height: 1.18;
}

/* Tab Pills Navigation */
.amenities-tabs-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.tab-pill-btn {
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    color: #475569;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-pill-btn:hover {
    border-color: #c29b68;
    color: #c29b68;
}

.tab-pill-btn.active {
    background-color: #c29b68;
    color: #ffffff;
    border-color: #c29b68;
    box-shadow: 0 4px 14px rgba(194, 155, 104, 0.3);
}

/* Tab Panels & Grid */
.amenities-content-wrapper {
    position: relative;
    width: 100%;
}

.amenities-panel {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.amenities-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.panel-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    align-items: stretch;
}

.panel-image-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.panel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.panel-image-card:hover .panel-img {
    transform: scale(1.04);
}

.panel-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 24px 24px;
    background: linear-gradient(to top, rgba(12, 19, 29, 0.88) 0%, rgba(12, 19, 29, 0) 100%);
}

.panel-img-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Panel Items Grid (Right side 12 items) */
.panel-items-grid {
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(194, 155, 104, 0.2);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.amenity-cell {
    padding: 16px 20px;
    border-right: 1px solid rgba(194, 155, 104, 0.15);
    border-bottom: 1px solid rgba(194, 155, 104, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #334155;
    transition: background-color 0.25s ease;
}

.panel-items-grid .amenity-cell:nth-child(3n) {
    border-right: none;
}

.panel-items-grid .amenity-cell:nth-last-child(-n+3) {
    border-bottom: none;
}

.amenity-cell:hover {
    background-color: rgba(194, 155, 104, 0.06);
}

.amenity-cell i {
    color: #c29b68;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* Mobile Responsiveness for Amenities Tab Section */
@media (max-width: 991px) {
    .amenities-tab-section {
        padding: 10px 16px 25px;
    }

    .amenities-heading {
        font-size: 2rem;
    }

    .amenities-tabs-row {
        gap: 8px;
        margin-bottom: 18px;
    }

    .tab-pill-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }

    .panel-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .panel-image-card {
        min-height: 240px;
        max-height: 280px;
    }

    .panel-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .panel-items-grid .amenity-cell:nth-child(3n) {
        border-right: 1px solid rgba(194, 155, 104, 0.15);
    }

    .panel-items-grid .amenity-cell:nth-child(2n) {
        border-right: none;
    }

    .panel-items-grid .amenity-cell:nth-last-child(-n+3) {
        border-bottom: 1px solid rgba(194, 155, 104, 0.15);
    }

    .panel-items-grid .amenity-cell:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .amenity-cell {
        padding: 14px 14px;
        font-size: 0.82rem;
    }
}

/* =========================================================
   GALLERY SECTION (A GLIMPSE OF PARADISE)
   ========================================================= */
.gallery-section {
    padding: 10px 0 35px;
    background-color: #faf8f5;
    position: relative;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gallery-header {
    margin-bottom: 24px;
}

.gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c29b68;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.gallery-badge .badge-line {
    width: 24px;
    height: 2px;
    background-color: #c29b68;
    display: inline-block;
}

.gallery-heading {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.2;
}

/* Gallery Grid Layout */
.gallery-grid-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.gallery-main-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    min-height: 480px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: #e2e8f0;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-main-card:hover .gallery-img,
.gallery-thumb-card:hover .gallery-img {
    transform: scale(1.04);
}

.gallery-thumbs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
}

.gallery-thumb-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    height: 230px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: #e2e8f0;
}

/* More Photos Dark Overlay (+4 MORE PHOTOS) */
.gallery-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: background 0.3s ease;
}

.gallery-thumb-card:hover .gallery-more-overlay {
    background: rgba(15, 23, 42, 0.78);
}

.gallery-more-overlay .more-count {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 4px;
    color: #ffffff;
}

.gallery-more-overlay .more-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

/* =========================================================
   LIGHTBOX MODAL VIEWER
   ========================================================= */
.gallery-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(6, 10, 16, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px 24px 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Top Bar: Counter & Close */
.lightbox-top-bar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    z-index: 10;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.lightbox-close-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.2rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.lightbox-close-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* Main Stage Container */
.lightbox-main-stage {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 70px;
    overflow: hidden;
}

.lightbox-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 190px);
}

.lightbox-main-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.lightbox-main-img.changing {
    opacity: 0.3;
    transform: scale(0.97);
}

/* Nav Buttons (Left / Right Floating Arrows) */
.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.25s ease;
    z-index: 10;
}

.lightbox-nav-btn:hover {
    background: #c29b68;
    border-color: #c29b68;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(194, 155, 104, 0.4);
}

.lightbox-nav-btn.prev-btn {
    left: 10px;
}

.lightbox-nav-btn.next-btn {
    right: 10px;
}

/* Bottom Thumbnail Bar */
.lightbox-thumbs-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 10px 0 4px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.lightbox-thumbs-bar::-webkit-scrollbar {
    display: none;
}

.lightbox-thumb-item {
    width: 68px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    opacity: 0.4;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    background-color: #1e293b;
}

.lightbox-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lightbox-thumb-item:hover {
    opacity: 0.8;
}

.lightbox-thumb-item.active {
    opacity: 1;
    border-color: #c29b68;
    transform: scale(1.08);
    box-shadow: 0 0 14px rgba(194, 155, 104, 0.6);
}

/* Gallery Responsiveness */
@media (max-width: 991px) {
    .gallery-section {
        padding: 10px 0 25px;
    }

    .gallery-container {
        padding: 0 16px;
    }

    .gallery-heading {
        font-size: 2.2rem;
    }

    .gallery-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-main-card {
        min-height: 260px;
        max-height: 320px;
        border-radius: 16px;
    }

    .gallery-thumbs-grid {
        gap: 12px;
    }

    .gallery-thumb-card {
        height: 155px;
        border-radius: 16px;
    }

    .gallery-more-overlay .more-count {
        font-size: 2.8rem;
    }

    .gallery-more-overlay .more-label {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .lightbox-main-stage {
        padding: 10px 45px;
    }

    .lightbox-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .lightbox-thumb-item {
        width: 54px;
        height: 40px;
        border-radius: 8px;
    }
}

/* =========================================================
   FLOOR PLANS SECTION
   ========================================================= */
.floor-plans-section {
    padding: 20px 0 15px;
    background-color: #faf8f5;
    position: relative;
}

.floor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.floor-header {
    margin-bottom: 12px;
}

.floor-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c29b68;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.floor-badge .badge-line {
    width: 20px;
    height: 2px;
    background-color: #c29b68;
    display: inline-block;
}

.floor-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.2;
}

.floor-heading-italic {
    font-style: italic;
    color: #1e293b;
}

/* Floor Plans Main Layout Grid */
.floor-layout-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 14px;
    align-items: stretch;
}

/* Left Stacked Tabs Card */
.floor-tabs-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
}

.floor-tab-btn {
    background: transparent;
    border: none;
    padding: 18px 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.floor-tab-btn:last-child {
    border-bottom: none;
}

.floor-tab-btn.active {
    background-color: rgba(194, 155, 104, 0.04);
    border-left-color: #c29b68;
}

.floor-tab-btn .tab-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.floor-tab-btn.active .tab-title {
    color: #c29b68;
}

.floor-tab-btn .tab-subtitle {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 400;
}

/* Right Floor Plan Carousel Container */
.floor-carousel-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 10px 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
}

.floor-slider-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
    border-radius: 12px;
}

.floor-slider-track {
    display: flex;
    gap: 12px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.floor-slide-item {
    flex: 0 0 calc(50% - 6px);
    min-width: calc(50% - 6px);
    box-sizing: border-box;
}

/* Blurred Floor Plan Card */
.floor-plan-card {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #1e293b;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.blur-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blurred-floor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(10px) brightness(0.85);
    transform: scale(1.12);
    transition: transform 0.5s ease;
}

.blur-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.35);
}

.card-top-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #c29b68;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 5;
}

.card-center-action {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.btn-lock-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background-color: #c29b68;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-lock-view:hover {
    background-color: #b08954;
    transform: scale(1.05);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

/* Floor Plan Bottom Controls Bar */
.floor-controls-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 4px 2px;
}

.floor-indicators {
    display: flex;
    align-items: center;
    gap: 6px;
}

.indicator-pill {
    width: 20px;
    height: 6px;
    border-radius: 10px;
    background-color: #cbd5e1;
    transition: all 0.3s ease;
}

.indicator-pill.active {
    background-color: #c29b68;
    width: 24px;
}

.indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #cbd5e1;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background-color: #c29b68;
    border-radius: 10px;
    width: 24px;
}

.floor-arrow-btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.floor-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: #475569;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.floor-arrow-btn:hover {
    border-color: #c29b68;
    color: #c29b68;
    transform: scale(1.08);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* Mobile Responsiveness for Floor Plans */
@media (max-width: 991px) {
    .floor-plans-section {
        padding: 15px 0 12px;
    }

    .floor-container {
        padding: 0 14px;
    }

    .floor-heading {
        font-size: 1.8rem;
    }

    .floor-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .floor-tabs-card {
        flex-direction: row;
        border-radius: 14px;
    }

    .floor-tab-btn {
        border-left: none;
        border-bottom: 3px solid transparent;
        border-right: 1px solid rgba(0, 0, 0, 0.06);
        padding: 10px 12px;
        flex: 1;
    }

    .floor-tab-btn:last-child {
        border-right: none;
    }

    .floor-tab-btn.active {
        border-bottom-color: #c29b68;
        border-left-color: transparent;
        background-color: #ffffff;
    }

    .floor-tab-btn .tab-title {
        font-size: 1.2rem;
        margin-bottom: 1px;
    }

    .floor-tab-btn .tab-subtitle {
        font-size: 0.72rem;
    }

    .floor-carousel-card {
        padding: 8px 8px 6px;
        border-radius: 14px;
    }

    .floor-slide-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .floor-plan-card {
        height: 230px;
        border-radius: 12px;
    }
}

/* =========================================================
   LOCATION SECTION
   ========================================================= */
.location-section {
    padding: 24px 0 20px;
    background-color: #faf8f5;
    position: relative;
}

.location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.location-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 24px;
    align-items: center;
}

/* Left Map Card */
.location-map-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: #e2e8f0;
}

.location-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-address-overlay {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.address-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(194, 155, 104, 0.15);
    color: #c29b68;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.address-city {
    font-size: 0.72rem;
    font-weight: 700;
    color: #c29b68;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.address-full {
    font-size: 0.76rem;
    color: #475569;
    font-weight: 500;
    margin-top: 2px;
    line-height: 1.35;
}

/* Right Content Header & Landmarks */
.location-header {
    margin-bottom: 14px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c29b68;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.location-badge .badge-line {
    width: 20px;
    height: 2px;
    background-color: #c29b68;
    display: inline-block;
}

.location-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 6px;
}

.location-heading-italic {
    font-style: italic;
    color: #1e293b;
}

.location-subheading {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.45;
}

/* Landmarks Grid / Slider Container */
.location-landmarks-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.landmarks-slider-viewport {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.landmarks-slider-track {
    display: flex;
    flex-direction: row;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.landmarks-page-item {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.landmarks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.landmark-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s ease, border-color 0.25s ease;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.landmark-card:hover {
    transform: translateY(-2px);
    border-color: rgba(194, 155, 104, 0.3);
}

.landmark-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: rgba(194, 155, 104, 0.12);
    color: #c29b68;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.landmark-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.landmark-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1e293b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.landmark-dist {
    font-size: 0.74rem;
    font-weight: 600;
    color: #c29b68;
    white-space: nowrap;
    flex-shrink: 0;
    text-align: right;
}

/* Desktop View */
@media (min-width: 992px) {
    .landmarks-slider-track {
        display: flex;
        flex-direction: column;
        gap: 10px;
        transform: none !important;
    }

    .landmarks-page-item {
        flex: auto;
        min-width: auto;
        max-width: none;
    }

    .landmarks-page-item.cloned-page {
        display: none !important;
    }

    .landmarks-mobile-dots {
        display: none;
    }
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .location-section {
        padding: 15px 0 12px;
    }

    .location-container {
        padding: 0 14px;
        overflow: hidden;
    }

    .location-grid-wrapper {
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .location-map-card {
        width: 100%;
        height: 240px;
        min-height: 240px;
        max-height: 280px;
        border-radius: 14px;
        position: relative;
    }

    .location-heading {
        font-size: 1.8rem;
    }

    .location-subheading {
        font-size: 0.78rem;
        margin-bottom: 12px;
    }

    .landmarks-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        width: 100%;
    }

    .landmark-card {
        padding: 8px 6px;
        border-radius: 10px;
        gap: 4px;
        min-width: 0;
        width: 100%;
    }

    .landmark-icon-box {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
        border-radius: 6px;
        flex-shrink: 0;
    }

    .landmark-name {
        font-size: 0.72rem;
    }

    .landmark-dist {
        font-size: 0.68rem;
        flex-shrink: 0;
    }

    /* Mobile Infinite Slider Indicator Dots */
    .landmarks-mobile-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        margin-top: 10px;
    }

    .landmarks-mobile-dots .dot-item {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #cbd5e1;
        transition: all 0.3s ease;
    }

    .landmarks-mobile-dots .dot-item.active {
        width: 20px;
        border-radius: 10px;
        background-color: #c29b68;
    }
}