/* =========================================================================
   1. GLOBAL RESET & BASE TYPOGRAPHY
========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #ffffff;
    color: #000000;
    overflow-x: hidden;
    padding-top: 92px;
}
body.modal-open {
    overflow: hidden;
}
/* =========================================================================
   SCROLL-TRIGGERED STICKY LEAD BAR
========================================================================= */
.agm-sticky-lead-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 99998;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
    padding: 5px 0;
    
    /* Hidden by default until scrolled */
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active class added via JavaScript on scroll */
.agm-sticky-lead-bar.show-bar {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.agm-sticky-lead-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lead-bar-text {
    line-height: 1.3;
    text-align: left;
}

.lead-bar-text span {
    font-size: 14px;
    letter-spacing: 0.3px;
    color: #ffffff;
}

.lead-bar-text small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

/* Right-aligned actions container on desktop */
.lead-bar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto; /* Forces element to the right side on desktop */
}

.btn-lead-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-lead-action.call-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-lead-action.call-btn:hover {
    background: #ffffff;
    color: #000000 !important;
}

.btn-lead-action.wa-btn {
    background: #25D366;
    color: #ffffff !important;
}

.btn-lead-action.wa-btn:hover {
    background: #1ebd5b;
}

.btn-lead-action.popup-trigger-btn {
    background: #ffffff;
    color: #000000 !important;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.btn-lead-action.popup-trigger-btn:hover {
    background: #d4af37;
    color: #000000 !important;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .lead-bar-actions {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
    .btn-lead-action {
        padding: 7px 10px;
        font-size: 11px;
        flex: 1;
        justify-content: center;
    }
}
/* --- VERTICAL MARQUEE SCROLLER FOR LEFT SIDE --- */
.marquee-spotlight-wrapper {
    background: #0b0f19;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    height: 480px; /* Matches the right grid height roughly */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.marquee-track-container {
    position: relative;
    height: 420px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100%;
    animation: scrollVerticalMarquee 18s linear infinite;
}
/* --- LUXURY EDITORIAL FLAGSHIP BANNER (LEFT COLUMN) --- */
.lux-flagship-banner {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    min-height: 480px; /* Matches the combined row height of the right grid */
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease;
}

.lux-flagship-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.flagship-top-badge {
    position: relative;
    z-index: 2;
}

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

@media (max-width: 991.98px) {
    .lux-flagship-banner {
        min-height: 380px;
        margin-bottom: 15px;
    }
}
/* Pause marquee animation on hover so users can click or view details easily */
.marquee-track-container:hover .marquee-track {
    animation-play-state: paused;
}
/* --- TEXT TRUNCATION & UNIFORM CARD STYLING UTILITIES --- */
.text-truncate-custom {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.6em; /* Keeps title height uniform whether it's 1 or 2 lines */
}

/* Fix right-side grid card height balance */
.priority-projects-section .col-md-6.d-flex {
    display: flex !important;
}

.lux-card {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.lux-card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 6px;
}

.lux-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}
@keyframes scrollVerticalMarquee {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Mobile Adjustments: Disable vertical marquee on mobile and let it snap-scroll horizontally or stack normally */
@media (max-width: 991.98px) {
    .marquee-spotlight-wrapper {
        height: auto;
    }
    .marquee-track-container {
        height: auto;
        overflow-y: visible;
        mask-image: none;
    }
    .marquee-track {
        position: relative;
        animation: none;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
    }
    .marquee-card-item {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: start;
        margin-bottom: 0 !important;
    }
}
/* --- VERTICAL AUTO-SLIDING SPOTLIGHT WRAPPER --- */
.vertical-spotlight-wrapper {
    background: #0b0f19;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.vertical-badge {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.vertical-counter {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.vertical-slider-container {
    overflow: hidden;
    position: relative;
    min-height: 330px;
}

.vertical-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vertical-slide-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}
/* =========================================================================
   2. HEADER & NAVIGATION
========================================================================= */
/* =========================================================================
   SMART HIDE/SHOW HEADER TRANSITIONS
========================================================================= */
.agm-header {
    background: #000000;
    padding: 12px 0;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10500 !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Class toggled via JS when scrolling down */
.agm-header.header-hidden {
    transform: translateY(-100%);
}

/* Optional body padding offset so content doesn't jump under fixed header */


.agm-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.agm-logo img {
    height: 68px;
    width: auto;
    object-fit: contain;
}

.agm-nav-area {
    flex: 1;
    padding-left: 35px;
}

.top-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.top-links a:hover {
    color: #ffffff;
}

.country-switch {
    display: inline-flex;
    background: #181818;
    padding: 3px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.country-btn {
    min-width: 70px;
    height: 28px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 16px;
    color: #888888 !important;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.country-btn.active {
    background: #ffffff;
    color: #000000 !important;
}

.login-btn {
    height: 32px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    background: #ffffff;
    border: 1px solid #ffffff;
    color: #000000 !important;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s ease;
}

.login-btn:hover {
    background: #e0e0e0;
}

.contact-dropdown {
    position: relative;
}

.contact-box {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 300px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 18px 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 99999;
}

.contact-dropdown:hover .contact-box,
.contact-dropdown.active .contact-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-box h4 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #000000;
    margin-bottom: 14px;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-item i {
    font-size: 15px;
    color: #000000;
    margin-top: 3px;
}

.contact-item small {
    display: block;
    color: #777777;
    font-size: 11px;
}

.contact-item h5 {
    font-size: 15px;
    margin: 2px 0 0;
    color: #000000;
    font-weight: 700;
}

.callback-btn {
    width: 100%;
    height: 38px;
    border: 1px solid #000000;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: #000000 !important;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
    transition: all 0.2s ease;
}

.callback-btn:hover {
    background: #000000;
    color: #ffffff !important;
}

.main-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu > li > a {
    color: #e5e5e5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.main-menu > li > a:hover {
    color: #ffffff;
}

.mega-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 520px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    display: flex;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 99999;
}

.main-menu li.mega-dropdown:last-child .mega-menu,
.main-menu li.mega-dropdown:nth-last-child(2) .mega-menu {
    left: auto;
    right: 0;
}

.mega-dropdown:hover > .mega-menu,
.mega-dropdown.active > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-left a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    color: #000000 !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.mega-left a:hover {
    background: #000000;
    color: #ffffff !important;
}

.mega-right {
    width: 200px;
    border-radius: 6px;
    overflow: hidden;
    background: #000000;
}

.mega-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
    z-index: 9998;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Mobile Drawer */
.agm-mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #080808;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100000;
    padding: 24px 20px;
    transition: right 0.35s ease;
    overflow-y: auto;
}

.agm-mobile-drawer.show {
    right: 0;
}

.agm-mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agm-mobile-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
}

.agm-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agm-mobile-nav li {
    margin-bottom: 8px;
}

.agm-mobile-nav a.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-submenu {
    display: none;
    padding: 8px 0 8px 14px;
    list-style: none;
}

.mobile-submenu a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
}

/* =========================================================================
   3. HERO SECTION & DISCOVERY SEARCH
========================================================================= */
.hero-section {
    position: relative;
    background-color: #030303;
    background-image: 
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
        linear-gradient(180deg, rgba(3, 3, 3, 0.85) 0%, rgba(3, 3, 3, 0.95) 100%),
        url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920');
    background-size: cover;
    background-position: center 25%;
    padding: 20px 0 60px 0; /* Tighten top padding to merge seamlessly with header */
    color: #ffffff;
    overflow: visible !important; /* Allow search dropdown to flow outside section */
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    pointer-events: none;
}

.search-wrapper {
    margin: 40px auto 0;
    max-width: 960px;
    position: relative;
    z-index: 50;
    overflow: visible !important;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    margin-bottom: 14px;
    backdrop-filter: blur(8px);
}

.hero-main-heading {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.8px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.hero-subheading {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
}

/* Mobile Horizontal Tabs Scrolling */
.tabs-scroll {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    margin-bottom: 20px;
}

.tabs-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.search-tabs {
    display: inline-flex;
    gap: 10px;
    padding: 4px;
}

.search-tabs .tab-btn {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-tabs .tab-btn.active,
.search-tabs .tab-btn:hover {
    background: #ffffff; /* Gold accent */
    color: #000;
   
}

.tab-btn {
    color: #a3a3a3 !important;
    text-decoration: none;
    padding: 7px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.tab-btn.active, .tab-btn:hover {
    background: #ffffff;
    color: #000000 !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.search-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 9999 !important; /* Forces search card above subsequent sections */
    overflow: visible !important;
}

.location-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-location-box {
    display: flex;
    flex: 1;
    align-items: center;
    background: #f4f5f7;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.location-select-box {
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 10px;
    border-right: 1px solid #dcdfe4;
    min-width: 170px;
}

.location-select-box i {
    color: #000000;
    font-size: 14px;
}

.location-select-box select {
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    color: #000000;
    outline: none;
    cursor: pointer;
    width: 100%;
}

.project-search-box {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0 16px;
    gap: 10px;
    position: relative;
    overflow: visible !important;
}

.project-search-box i {
    color: #71717a;
    font-size: 14px;
}

.project-search-box input {
    border: none;
    background: transparent;
    width: 100%;
    padding: 13px 0;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    outline: none;
}

.project-search-box input::placeholder {
    color: #8c8c8c;
    font-weight: 500;
}

.search-btn {
    background: #000000;
    color: #ffffff !important;
    border: none;
    padding: 13px 30px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 10px;
    transition: all 0.25s ease;
    cursor: pointer;
}

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

.hero-quick-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.hero-quick-pills span {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-chip {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.2s ease;
    backdrop-filter: blur(6px);
}

.quick-chip:hover {
    background: #ffffff;
    color: #000000 !important;
    border-color: #ffffff;
}

.ai-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding: 10px 16px;
    background: #050505;
    border-radius: 8px;
    color: #ffffff;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.ai-strip a {
    color: #ffffff !important;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 11px;
}

/* =========================================================================
   4. UNIVERSAL LUXURY SECTION HEADERS & SLIDER CONTROLS
========================================================================= */
.lux-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    gap: 20px;
}

.lux-titles {
    flex: 1;
}

.lux-badge {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #777777;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.lux-heading {
    font-size: 28px;
    font-weight: 800;
    color: #0a0a0a;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    line-height: 1.2;
}

.lux-subheading {
    font-size: 14px;
    color: #666666;
    margin: 0;
    max-width: 620px;
}

.lux-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.lux-view-all {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #000000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.25s ease;
    white-space: nowrap;
}

.lux-view-all:hover {
    opacity: 0.6;
    color: #000000;
}

.lux-nav-arrows {
    display: flex;
    gap: 8px;
}

.lux-arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    background: #ffffff;
    color: #111111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.lux-arrow-btn:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

/* =========================================================================
   5. ASSET CLASSES SECTION
========================================================================= */
.asset-class-section {
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.asset-slider-wrap {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 5px 0 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.asset-slider-wrap::-webkit-scrollbar {
    display: none;
}

.asset-premium-card {
    flex: 0 0 280px !important;
    width: 280px !important;
    max-width: 280px !important;
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s ease;
    box-sizing: border-box;
}

.asset-premium-card:hover {
    transform: translateY(-6px);
    border-color: #000000;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.asset-img-box {
    position: relative;
    width: 100%;
    height: 180px;
    min-height: 180px;
    max-height: 180px;
    overflow: hidden;
    background: #111111;
}

.asset-img-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.6s ease;
}

.asset-premium-card:hover .asset-img-box img {
    transform: scale(1.08);
}

.asset-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(5px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
}

.asset-details {
    padding-left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding-right: 10px;
}

.asset-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px;
}

.asset-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f2f2f2;
    padding-top: 10px;
    padding-bottom: 10px;
}

.asset-meta span {
    font-size: 12px;
    color: #444444;
}

.asset-meta strong {
    color: #000000;
    font-size: 17px;
    font-weight: 700;
}

.asset-explore-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #000000;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s;
}

.asset-explore-btn:hover {
    background: #333333;
}

/* =========================================================================
   6. FULL-WIDTH OFFERS PROMOTIONS CAROUSEL
========================================================================= */
.exclusive-offers-section {
    padding: 1.5rem 0;
}

.offers-carousel-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.offers-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.offer-slide {
    min-width: 100%;
    flex: 0 0 100%;
}

.offer-bg-img {
    background-size: cover;
    background-position: center;
    min-height: 360px;
    display: flex;
    align-items: center;
    padding: 50px 70px;
    color: #ffffff;
}

.offer-content {
    max-width: 620px;
}

.offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.offer-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.offer-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    line-height: 1.5;
}

.offer-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-offer-primary {
    background: #ffffff;
    color: #000000 !important;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-offer-primary:hover {
    background: #000000;
    color: #ffffff !important;
    outline: 1px solid #ffffff;
}

.btn-offer-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-offer-secondary:hover {
    background: #25D366;
    color: #ffffff !important;
    border-color: #25D366;
}

.offer-dots {
    position: absolute;
    bottom: 20px;
    right: 40px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.offer-dots .dot {
    width: 28px;
    height: 4px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.offer-dots .dot.active {
    background: #ffffff;
    width: 40px;
}

.offer-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.offer-nav-btn:hover { background: #000000; }
.offer-nav-btn.prev { left: 20px; }
.offer-nav-btn.next { right: 20px; }

/* =========================================================================
   7. TOP BUYERS' CHOICE (1/3 SPOTLIGHT + 2x2 GRID & MOBILE SLIDER)
========================================================================= */
/* --- UNIFIED EQUAL HEIGHT MARQUEE & GRID FIXES --- */
.priority-projects-section .row.g-4.align-items-stretch {
    display: flex;
    align-items: stretch !important;
}

.marquee-spotlight-wrapper {
    background: #0b0f19;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    height: 100% !important; /* Dynamically matches right-side height */
    min-height: 520px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.marquee-track-container {
    position: relative;
    height: 440px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100%;
    animation: scrollVerticalMarquee 24s linear infinite;
}

.marquee-track-container:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scrollVerticalMarquee {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Ensure all right-side grid cards share exact proportional width and flex alignment */
.priority-projects-section .col-md-6.d-flex {
    display: flex !important;
}

.lux-card {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}


/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
    .marquee-spotlight-wrapper {
        height: auto !important;
        min-height: auto;
    }
    .marquee-track-container {
        height: auto;
        overflow-y: visible;
        mask-image: none;
    }
    .marquee-track {
        position: relative;
        animation: none;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
    }
    .marquee-card-item {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: start;
        margin-bottom: 0 !important;
    }
}
.priority-projects-section {
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.spotlight-card-wrapper {
    background: #000000;
    color: #ffffff;
    border-radius: 14px;
    padding: 24px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.spotlight-slider {
    position: relative;
    overflow: hidden;
    flex: 1;
}

.spotlight-item {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.spotlight-item.active { 
    display: block !important; 
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.spotlight-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    min-height: 220px;
    max-height: 220px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 18px;
    background: #111111;
}

.spotlight-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

.spotlight-status {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #ffffff;
    color: #000000;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
}

.spotlight-price {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.spotlight-content h3 {
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.spotlight-loc {
    font-size: 12px;
    color: #888888;
    margin-bottom: 14px;
}

.spotlight-specs {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #bbbbbb;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
}

.spotlight-footer {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-spotlight-enquire {
    flex: 1;
    background: #ffffff;
    color: #000000 !important;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-spotlight-enquire:hover {
    background: #cccccc;
}

.btn-spotlight-wa {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-spotlight-wa:hover {
    background: #25D366;
}

.spotlight-nav-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    margin-top: 15px;
}

.spotlight-nav-controls span {
    font-size: 12px;
    letter-spacing: 1px;
    color: #888888;
}

/* 2-Column x 2-Row Grid on Desktop */
.top-buyers-grid-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
}

.top-buyers-grid-item {
    width: 100%;
    display: flex;
}

.grid-project-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s ease;
}

.grid-project-card:hover {
    transform: translateY(-4px);
    border-color: #000000;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.grid-img-wrap {
    position: relative;
    width: 100%;
    height: 150px;
    min-height: 150px;
    max-height: 150px;
    overflow: hidden;
    background: #111111;
}

.grid-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.5s ease;
}

.grid-project-card:hover .grid-img-wrap img {
    transform: scale(1.05);
}

.grid-pill {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
}

.grid-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.grid-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    color: #000000;
}

.grid-price {
    font-size: 14px;
    font-weight: 800;
    color: #000000;
}

.grid-loc {
    font-size: 12px;
    color: #777777;
    margin: 4px 0 10px;
}

.grid-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f2f2f2;
    padding-top: 10px;
    margin-top: auto;
}

.grid-delivery {
    font-size: 11px;
    color: #888888;
    font-weight: 500;
}

.grid-link {
    font-size: 12px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    transition: 0.2s;
}

.grid-link:hover {
    color: #555555;
}
/* --- INTERACTIVE LUXURY SPOTLIGHT SLIDER (LEFT SIDE) --- */
.lux-spotlight-slider-box {
    background: #0f172a;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    min-height: 480px;
    overflow: hidden;
}

.lux-slider-viewport {
    position: relative;
    width: 100%;
    min-height: 380px;
}

.lux-slide-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    border-radius: 10px;
    overflow: hidden;
}

.lux-slide-item.active {
    opacity: 1;
    visibility: visible;
}

.lux-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 6s ease;
}

.lux-slide-item.active .lux-slide-bg {
    transform: scale(1.06); /* Subtle zoom effect for high-end luxury feel */
}

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

.lux-slider-dots {
    position: relative;
    z-index: 3;
}

.lux-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lux-dot.active {
    background: #ffffff;
    width: 24px;
    border-radius: 4px;
}

/* Custom styling for left slider arrows inside dark box */
.lux-spotlight-slider-box .lux-arrow-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    width: 34px;
    height: 34px;
}

.lux-spotlight-slider-box .lux-arrow-btn:hover {
    background: #ffffff;
    color: #000000;
}
/* --- UNIFIED LUXURY CARD COMPONENT --- */
/* --- UNIFIED LUXURY CARD COMPONENT (BLACK & WHITE THEME) --- */
.lux-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lux-card:hover {
    transform: translateY(-4px);
    border-color: #000000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.lux-card-img-wrap {
    position: relative;
    height: 155px !important; /* Shortened image height to balance right rows */
    min-height: 155px !important;
    max-height: 155px !important;
    overflow: hidden;
    background: #0f172a;
}

.lux-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lux-card:hover .lux-card-img-wrap img {
    transform: scale(1.05);
}

.lux-card-status {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #111111; /* Clean dark chip matching your design */
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lux-card-body {
    padding: 12px 16px !important; /* Compact padding */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.lux-card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.lux-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}

.lux-card-price {
    font-size: 0.85rem;
    font-weight: 800;
    color: #000000;
    white-space: nowrap;
    background: #f8f9fa;
    padding: 1px 4px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.lux-card-loc {
    font-size: 0.78rem;
    color: #666666;
    margin-bottom: 6px !important; /* Tightened margin */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lux-card-loc i {
    color: #000000;
    margin-right: 3px;
}

.lux-specs-strip {
    font-size: 0.75rem;
    color: #444444;
    background: #f9fafb;
    padding: 4px 8px !important; /* Shorter strip height */
    border-radius: 6px;
    border: 1px solid #f1f3f5;
}

.lux-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid #f1f3f5;
    padding-top: 8px !important; /* Tighter footer padding */
    margin-top: auto;
}

.btn-lux-details {
    font-size: 0.8rem;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    transition: opacity 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-lux-details:hover {
    opacity: 0.7;
    color: #000000;
}

.btn-lux-wa {
    width: 32px;
    height: 32px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
}

.btn-lux-wa:hover {
    transform: scale(1.1);
    background: #20ba5a;
    color: #fff;
}

/* Fix container height for left wrapper box */
.spotlight-card-wrapper {
    background: #000000;
    color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
}

/* --- SPOTLIGHT SLIDER FIXES --- */
.spotlight-slider {
    position: relative;
    min-height: 380px;
}

.spotlight-item {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.spotlight-item.active {
    display: block;
    opacity: 1;
}

.spotlight-inner-card {
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.spotlight-nav-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.lux-arrow-btn {
    background: none;
    border: 1px solid #cbd5e1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.lux-arrow-btn:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

/* --- MOBILE AUTO-SLIDE SNAP BEHAVIOR --- */
@media (max-width: 991.98px) {
    .top-buyers-grid-slider {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 10px;
        scrollbar-width: none; /* Hide scrollbars for clean UI */
    }
    
    .top-buyers-grid-slider::-webkit-scrollbar {
        display: none;
    }

    .top-buyers-grid-slider .top-buyers-grid-item {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: start;
    }
}
/* =========================================================================
   8. TOP TIER-1 DEVELOPERS SECTION
========================================================================= */
.dev-lux-section {
    background-color: #fdfdfd;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.dev-filter-container {
    margin-bottom: 28px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.dev-filter-container::-webkit-scrollbar {
    display: none;
}

.dev-filter-track {
    display: inline-flex;
    gap: 8px;
    background: #f0f0f0;
    padding: 5px;
    border-radius: 50px;
}

.dev-filter-btn {
    border: none;
    background: transparent;
    color: #555555;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 40px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.dev-filter-btn:hover {
    color: #000000;
}

.dev-filter-btn.active {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.dev-slider-track {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 15px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.dev-slider-track::-webkit-scrollbar {
    display: none;
}

.dev-lux-card {
    flex: 0 0 330px !important;
    width: 330px !important;
    max-width: 330px !important;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.dev-lux-card:hover {
    transform: translateY(-6px);
    border-color: #111111;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.dev-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    background: #111111;
    overflow: hidden;
}

.dev-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.6s ease;
}

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

.dev-brand-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #000000;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 2;
}

.dev-badge-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #000000;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
}

.dev-card-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.dev-type {
    font-size: 10px;
    font-weight: 800;
    color: #888888;
    letter-spacing: 1px;
}

.dev-project-name {
    font-size: 17px;
    font-weight: 700;
    color: #000000;
    margin: 4px 0 4px;
}

.dev-project-loc {
    font-size: 12px;
    color: #666666;
    margin-bottom: 16px;
}

.dev-stats-row {
    display: flex;
    justify-content: space-between;
    background: #f8f8f8;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    border: 1px solid #ededed;
}

.stat-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    color: #888888;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.stat-value {
    font-size: 13px;
    font-weight: 800;
    color: #000000;
}

.dev-action-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000000;
    color: #ffffff !important;
    padding: 11px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dev-action-btn:hover {
    background: #252525;
}

/* =========================================================================
   9. COMPACT 9:16 VIDEO REELS (MOBILE 2.5 VIEW OPTIMIZED)
========================================================================= */
.reels-lux-section {
    background: #fdfdfd;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.reels-slider-track {
    display: flex !important;
    flex-direction: row !important;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 5px 0 15px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.reels-slider-track::-webkit-scrollbar {
    display: none;
}

.reel-card {
    flex: 0 0 250px !important;
    width: 250px !important;
    max-width: 250px !important;
    height: 350px !important;
    min-height: 350px !important;
    max-height: 440px !important;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    background: #000000;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-sizing: border-box;
}

.reel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    border-color: #000000;
}

.reel-video-box {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000000;
    overflow: hidden;
    cursor: pointer;
}

.reel-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

.reel-top-bar {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 4;
}

.reel-live-tag {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.6px;
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.reel-ctrl-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.reel-play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
    z-index: 3;
}

.reel-card.paused .reel-play-indicator {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.reel-side-actions {
    position: absolute;
    right: 8px;
    bottom: 85px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    z-index: 4;
}

.reel-action-icon {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
}

.reel-action-icon span {
    font-size: 6px;
    font-weight: 700;
}

.reel-content-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 10px 10px;
    background: linear-gradient(0deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 65%, rgba(0,0,0,0) 100%);
    color: #ffffff;
    z-index: 3;
}

.reel-price-pill {
    display: inline-block;
    background: #ffffff;
    color: #000000;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 3px;
    margin-bottom: 3px;
}

.reel-title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reel-loc {
    font-size: 10px;
    color: #bbbbbb;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.reel-cta-strip {
    display: flex;
    gap: 4px;
}

.btn-reel-enquire {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    color: #000000 !important;
    border: none;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

.btn-reel-wa {
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    text-decoration: none;
}

.btn-reel-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    color: #ffffff;
    padding: 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

/* =========================================================================
   10. POSSESSION TIMELINES
========================================================================= */
.possession-lux-section {
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.property-type-switch {
    display: inline-flex;
    background: #f0f0f0;
    padding: 4px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.type-toggle-btn {
    border: none;
    background: transparent;
    color: #555555;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.type-toggle-btn.active {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.possession-tabs-bar {
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.possession-tabs-bar::-webkit-scrollbar {
    display: none;
}

.possession-tabs-track {
    display: inline-flex;
    gap: 10px;
    flex-wrap: nowrap;
}

.poss-tab {
    border: 1px solid #e5e5e5;
    background: #ffffff;
    color: #444444;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.poss-tab:hover {
    border-color: #000000;
    color: #000000;
}

.poss-tab.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.possession-slider {
    display: flex !important;
    flex-direction: row !important;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 10px 0 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.possession-slider::-webkit-scrollbar {
    display: none;
}

.possession-card {
    flex: 0 0 350px !important;
    width: 350px !important;
    max-width: 350px !important;
    scroll-snap-align: start;
    background: #ffffff;
   
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}

.possession-card:hover {
   
}

.poss-img-wrap {
    position: relative;
    width: 100%;
    height: 190px;
    min-height: 190px;
    max-height: 190px;
    background: #111111;
    overflow: hidden;
}

.poss-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.6s ease;
}

.possession-card:hover .poss-img-wrap img {
    transform: scale(1.06);
}

.poss-badge-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}

.poss-badge-tag.ready {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.poss-badge-tag.timeline {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.poss-badge-tag.new-launch {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.poss-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.poss-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.poss-cat {
    font-size: 10px;
    font-weight: 800;
    color: #777777;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.poss-price {
    font-size: 14px;
    font-weight: 800;
    color: #000000;
}

.poss-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 4px;
    line-height: 1.3;
}

.poss-location {
    font-size: 12px;
    color: #666666;
    margin-bottom: 14px;
}

.poss-spec-strip {
    background: #f8f8f8;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #444444;
    margin-bottom: 16px;
    border: 1px solid #eeeeee;
}

.poss-footer {
    border-top: 1px solid #f2f2f2;
    padding-top: 14px;
}

.btn-poss-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000000;
    color: #ffffff !important;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-poss-action:hover {
    background: #222222;
}

/* =========================================================================
   11. PRIME INVESTMENT HUBS / CITIES
========================================================================= */
.city-hubs-section {
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.city-slider-track {
    display: flex !important;
    flex-direction: row !important;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 15px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.city-slider-track::-webkit-scrollbar {
    display: none;
}

.city-hub-card {
    flex: 0 0 320px !important;
    width: 320px !important;
    max-width: 320px !important;
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.city-hub-card:hover {
    transform: translateY(-6px);
    border-color: #000000;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.city-media-box {
    position: relative;
    width: 100%;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    background: #111111;
    overflow: hidden;
}

.city-media-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.6s ease;
}

.city-hub-card:hover .city-media-box img {
    transform: scale(1.08);
}

.city-floating-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
}

.hub-tag {
    background: #000000;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
}

.city-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.city-name-overlay {
    position: absolute;
    bottom: 14px;
    left: 16px;
    right: 16px;
    z-index: 2;
    color: #ffffff;
}

.city-name-overlay h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 2px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.city-name-overlay .sub-loc {
    font-size: 11px;
    color: #d1d1d1;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-city-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
}

/* =========================================================================
   12. SELL / LEASE BANNER
========================================================================= */
.sell-lux-section {
    background: transparent;
}

.sell-lux-card {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 38px 45px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.sell-bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 15% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 35%);
    pointer-events: none;
}

.sell-img-wrapper {
    position: relative;
    display: inline-block;
    max-width: 220px;
}

.sell-img-backdrop {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.sell-main-img {
    position: relative;
    z-index: 1;
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
}

.sell-status-chip {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #000000;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.sell-content-body {
    color: #ffffff;
}

.sell-heading {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 8px 0 10px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.sell-subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    line-height: 1.55;
    max-width: 580px;
}

.sell-perks-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.perk-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
}

.perk-item i {
    color: #ffffff;
    font-size: 12px;
}

.sell-actions-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.btn-sell-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    color: #000000 !important;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 13px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.btn-sell-primary:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.btn-sell-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-sell-wa i {
    font-size: 15px;
    color: #25D366;
}

.btn-sell-wa:hover {
    background: #25D366;
    border-color: #25D366;
    color: #ffffff !important;
}

/* =========================================================================
   13. PRIME LOCALITIES SECTION
========================================================================= */
.locality-lux-section {
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.locality-slider-track {
    display: flex !important;
    flex-direction: row !important;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 5px 0 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.locality-slider-track::-webkit-scrollbar {
    display: none;
}

.locality-lux-card {
    flex: 0 0 330px !important;
    width: 330px !important;
    max-width: 330px !important;
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-sizing: border-box;
}

.locality-lux-card:hover {
    transform: translateY(-6px);
    border-color: #000000;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
}

.loc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.loc-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.loc-growth-pill {
    background: #f4fbf7;
    color: #0a703d;
    border: 1px solid #c7ecd7;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
}

.loc-region-tag {
    font-size: 10px;
    font-weight: 800;
    color: #888888;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.loc-name {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 8px;
    line-height: 1.3;
}

.loc-description {
    font-size: 12px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 16px;
    min-height: 36px;
}

.loc-stats-matrix {
    display: flex;
    justify-content: space-between;
    background: #f8f8f8;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #eeeeee;
    margin-bottom: 16px;
}

.loc-stat-cell small {
    display: block;
    font-size: 9px;
    font-weight: 800;
    color: #888888;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.loc-stat-cell strong {
    font-size: 12px;
    font-weight: 800;
    color: #000000;
}

.loc-actions-strip {
    display: flex;
    gap: 10px;
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
}

.btn-loc-insights {
    flex: 1;
    background: #f4f4f4;
    color: #111111 !important;
    border: 1px solid #e2e2e2;
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-loc-insights:hover {
    background: #e8e8e8;
    border-color: #000000;
}

.btn-loc-explore {
    flex: 1.2;
    background: #000000;
    color: #ffffff !important;
    border: 1px solid #000000;
    padding: 9px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-loc-explore:hover {
    background: #252525;
}

.btn-loc-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
}

/* =========================================================================
   14. ABOUT AGM PRIVATE OFFICE SHOWREEL
========================================================================= */
.agm-about-lux {
    background-color: #0a0a0a;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

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

.agm-about-title {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.agm-about-title span {
    color: #a0a0a0;
    font-weight: 400;
}

.agm-about-lead {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 14px;
    font-weight: 500;
}

.agm-about-subtext {
    font-size: 13px;
    color: #888888;
    line-height: 1.6;
    margin-bottom: 26px;
}

.agm-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pillar-item i {
    font-size: 18px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pillar-item h5 {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 2px;
    color: #ffffff;
}

.pillar-item small {
    font-size: 11px;
    color: #777777;
}

.agm-about-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-agm-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #000000 !important;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.12);
}

.btn-agm-primary:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.btn-agm-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    padding: 13px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-agm-outline i {
    color: #25D366;
    font-size: 15px;
}

.btn-agm-outline:hover {
    background: #25D366;
    border-color: #25D366;
    color: #ffffff !important;
}

.agm-video-composite {
    position: relative;
}

.agm-video-wrapper {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.agm-main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-glass-top {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3;
}

.video-live-badge {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.video-sound-toggle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s;
}

.video-sound-toggle:hover {
    background: #ffffff;
    color: #000000;
}

.video-play-glass {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 3;
}

.agm-video-wrapper.paused .video-play-glass {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.video-brand-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 16px 14px;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
    z-index: 2;
}

.video-brand-footer strong {
    display: block;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #ffffff;
}

.video-brand-footer small {
    font-size: 10px;
    color: #aaaaaa;
}

.agm-stats-ribbon {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 16px;
}

.stat-ribbon-col {
    text-align: center;
    flex: 1;
}

.stat-ribbon-col:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-ribbon-col h3 {
    font-size: 19px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 2px;
}

.stat-ribbon-col small {
    font-size: 10px;
    font-weight: 700;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================================================================
   15. CLIENT TESTIMONIALS SECTION
========================================================================= */
.testi-lux-section {
    background-color: #fdfdfd;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.testi-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f4f4f4;
    border: 1px solid #e5e5e5;
    color: #111111;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.testi-slider-track {
    display: flex !important;
    flex-direction: row !important;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 15px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.testi-slider-track::-webkit-scrollbar {
    display: none;
}

.testi-lux-card {
    flex: 0 0 350px !important;
    width: 350px !important;
    max-width: 350px !important;
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-sizing: border-box;
}

.testi-lux-card:hover {
    transform: translateY(-5px);
    border-color: #000000;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.testi-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.client-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #000000;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.client-name {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.client-role {
    font-size: 11px;
    color: #777777;
    display: block;
    margin-top: 2px;
}

.google-badge {
    background: #f8f8f8;
    border: 1px solid #ededed;
    border-radius: 6px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testi-stars {
    display: flex;
    gap: 3px;
    font-size: 12px;
    color: #000000;
    margin-bottom: 14px;
}

.testi-text {
    font-size: 13px;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.testi-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f2f2f2;
    padding-top: 14px;
}

.testi-tag {
    font-size: 11px;
    font-weight: 700;
    color: #000000;
    background: #f4f4f4;
    padding: 4px 8px;
    border-radius: 4px;
}

.testi-date {
    font-size: 11px;
    color: #888888;
}

.btn-testi-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
}
/* --- EDITORIAL SPOTLIGHT BOX (LEFT COLUMN) --- */
.editorial-spotlight-box {
    background: #0f172a; /* Premium deep charcoal/black background */
    color: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.editorial-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
}

.editorial-title {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
}

.editorial-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-top: 10px;
}

.editorial-counter {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

/* Override arrow button colors specifically for the dark left box background */
.editorial-spotlight-box .lux-arrow-btn {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.editorial-spotlight-box .lux-arrow-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* --- MOBILE HORIZONTAL SNAP SCROLL FOR RIGHT GRID --- */
@media (max-width: 991.98px) {
    .top-buyers-horizontal-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 10px;
        scrollbar-width: none;
    }
    
    .top-buyers-horizontal-grid::-webkit-scrollbar {
        display: none;
    }

    .top-buyers-horizontal-grid .top-buyers-item {
        flex: 0 0 85% !important;
        max-width: 85% !important;
        scroll-snap-align: start;
    }
}
/* =========================================================================
   16. MARKET INSIGHTS & EDITORIAL BLOG SECTION
========================================================================= */
.blog-lux-section {
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.blog-lead-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-lead-card:hover {
    transform: translateY(-5px);
    border-color: #000000;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
}

.blog-lead-media {
    position: relative;
    width: 100%;
    height: 270px;
    min-height: 270px;
    max-height: 270px;
    background: #111111;
    overflow: hidden;
}

.blog-lead-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.6s ease;
}

.blog-lead-card:hover .blog-lead-media img {
    transform: scale(1.05);
}

.blog-cat-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #000000;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-lead-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.blog-meta-top {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #888888;
    margin-bottom: 10px;
}

.badge-sub {
    background: #f0f0f0;
    color: #000000;
    font-weight: 800;
    font-size: 9px;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 3px;
}

.blog-lead-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px;
}

.blog-lead-title a {
    color: #0a0a0a;
    text-decoration: none;
    transition: color 0.25s ease;
}

.blog-lead-title a:hover {
    color: #666666;
}

.blog-lead-excerpt {
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-lead-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f2f2f2;
    padding-top: 16px;
}

.author-info .author-name {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #000000;
}

.author-info small {
    font-size: 10px;
    color: #888888;
}

.btn-read-lead {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000000;
    color: #ffffff !important;
    padding: 9px 16px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-read-lead:hover {
    background: #2b2b2b;
}

.blog-stack-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    justify-content: space-between;
}

.blog-stack-card {
    display: flex;
    gap: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 14px;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-stack-card:hover {
    transform: translateY(-3px);
    border-color: #000000;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.stack-thumb {
    flex: 0 0 120px;
    width: 120px;
    height: 105px;
    border-radius: 8px;
    overflow: hidden;
    background: #111111;
}

.stack-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stack-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stack-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 4px;
}

.stack-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.stack-title a:hover {
    color: #666666;
}

.stack-excerpt {
    font-size: 11px;
    color: #666666;
    line-height: 1.45;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.stack-link {
    font-size: 11px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.stack-link:hover {
    text-decoration: underline;
}

/* =========================================================================
   17. TABBED MEGA FOOTER & MODALS
========================================================================= */
.agm-footer {
    background: #050505;
    padding: 40px 0 20px;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.agm-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    overflow-x: auto;
    scrollbar-width: none;
}

.agm-tabs::-webkit-scrollbar {
    display: none;
}

.agm-tab {
    height: 42px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: #a0a0a0;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
}

.agm-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.agm-tab.active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.agm-content-box {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px 28px;
    background: #0d0d0d;
}

.vw-top-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.vw-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.vw-top-heading h3 {
    font-size: 13.5px;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.agm-content-box hr {
    border-color: rgba(255, 255, 255, 0.08);
    opacity: 1;
    margin: 0 0 22px;
}

.agm-content-box h5 {
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
}

.agm-content-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.agm-content-box li {
    margin-bottom: 9px;
    position: relative;
    padding-left: 14px;
}

.agm-content-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -1px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
}

.agm-content-box a {
    text-decoration: none;
    color: #999999;
    font-size: 13px;
    transition: all 0.2s ease;
}

.agm-content-box a:hover {
    color: #ffffff;
    padding-left: 3px;
}

.agm-tab-content {
    display: none;
    animation: tabFadeIn 0.35s ease;
}

.agm-tab-content.active {
    display: block;
}

@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.agm-right-box {
    padding-left: 10px;
}

.footer-brand-logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
}

.footer-brand-logo span {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    color: #888888;
}

.subscribe-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.vw-btn {
    background: #ffffff;
    height: 42px;
    border: none;
    color: #000000;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
}

.vw-btn:hover {
    background: #dcdcdc;
    color: #000000;
}

.association-box {
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 14px;
    background: #0a0a0a;
}

.association-box h6 {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #777777;
    margin-bottom: 12px;
}

.association-track {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.assoc-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
}

.agm-warning {
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #080808;
    border-radius: 8px;
    padding: 14px 18px;
    color: #777777;
    font-size: 11px;
    line-height: 1.6;
}

.agm-warning strong {
    color: #ffffff;
}

/* Bottom Copyright Strip */
.footer {
    background: #000000;
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: 0.2s;
}

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

.footer-links span {
    color: #666666;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    border: 1px solid #333333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ffffff;
    color: #000000;
}

/* =========================================================================
   18. FIXED FULL-SCREEN POPUP MODALS
========================================================================= */
.enquiry-modal,
.visitModal {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.8) !important;
    display: none !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 999999 !important;
    backdrop-filter: blur(8px);
}

.enquiry-modal.show,
.visitModal.show {
    display: flex !important;
}

.enquiry-box,
.visitModalBox {
    width: 950px;
    max-width: 95%;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.left-panel,
.visitLeft {
    width: 40%;
    position: relative;
    background: url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1200") center/cover;
    min-height: 520px;
}

.overlay,
.visitOverlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.left-content,
.visitContent {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 40px 30px;
}

.left-content h2,
.visitContent h2 {
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

.feature,
.visitContent li {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.9);
    list-style: none;
}

.right-panel,
.visitRight {
    width: 60%;
    padding: 30px 24px;
    background: #ffffff;
}

.right-panel h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #000000;
}

.visitTabs {
    display: flex;
    background: #f2f2f2;
    padding: 4px;
    border-radius: 40px;
    margin-bottom: 20px;
}

.visitTab {
    width: 50%;
    height: 38px;
    border: none;
    background: transparent;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: #555555;
    cursor: pointer;
    transition: all 0.25s ease;
}

.visitTab.active {
    background: #000000;
    color: #ffffff;
}

.visitPane {
    display: none;
}

.visitPane.active {
    display: block;
}

.form-group {
    margin-bottom: 12px;
}

.form-group input, 
.form-group select, 
.form-group textarea, 
.phone-box input, 
.phone-box select,
.visitPane input,
.visitPane select,
.visitPane textarea {
    width: 100%;
    height: 44px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    padding: 0 14px;
    font-size: 13px;
    outline: none;
    color: #000000;
    margin-bottom: 10px;
}

.form-group textarea,
.visitPane textarea {
    height: 70px;
    padding-top: 10px;
}

.phone-box {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.phone-box select {
    width: 110px;
}

.phone-box input {
    flex: 1;
}

.visitRow {
    display: flex;
    gap: 10px;
}

.visitRow input {
    width: 50%;
}

.submit-btn,
.visitBtn {
    width: 100%;
    height: 46px;
    background: #000000;
    color: #ffffff !important;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.submit-btn:hover,
.visitBtn:hover {
    background: #252525;
}

.close-btn,
.visitClose {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #f0f0f0;
    color: #000000;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
}

/* =========================================================================
   19. RESPONSIVE MEDIA QUERIES
========================================================================= */
@media (max-width: 991px) {
    .agm-nav-desktop { display: none; }
    .menu-toggle { display: block; background: none; border: none; color: #ffffff; font-size: 24px; cursor: pointer; }
    .search-wrapper { margin-top: 20px; }
    .hero-main-heading { font-size: 28px; }
    .location-row { flex-direction: column !important; align-items: stretch !important; }
    .search-location-box { flex-direction: column !important; width: 100%!important; }
    .location-select-box {
        width: 100% !important;
        border-right: none !important;
        border-bottom: 1px solid #e5e7eb !important;
        padding: 12px 16px !important;
    }
    .project-search-box {
        width: 100% !important;
        padding: 4px 16px !important;
    }
    .search-btn {
        width: 100% !important;
        margin-top: 8px;
    }
    .ai-strip { flex-direction: column; gap: 8px; text-align: center; }
    .lux-section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .enquiry-box, .visitModalBox { flex-direction: column; width: 95%; max-height: 90vh; overflow-y: auto; }
    .left-panel, .visitLeft, .right-panel, .visitRight { width: 100%; }
    .left-panel, .visitLeft { min-height: 180px; padding: 20px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 767px) {
    .hero-main-heading { font-size: 24px; }
    .asset-premium-card,
    .dev-lux-card,
    .possession-card,
    .city-hub-card,
    .locality-lux-card,
    .testi-lux-card {
        flex: 0 0 85vw !important;
        width: 85vw !important;
        max-width: 320px !important;
    }
    .top-buyers-grid-slider {
        display: flex !important;
        flex-direction: row !important;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding-bottom: 10px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    .top-buyers-grid-slider::-webkit-scrollbar {
        display: none;
    }
    .top-buyers-grid-item {
        flex: 0 0 85vw !important;
        width: 85vw !important;
        max-width: 320px !important;
        scroll-snap-align: start;
    }
   /* 2.5 Video Reels per view on Mobile */
    .reel-card {
        flex: 0 0 145px !important;
        width: 145px !important;
        max-width: 145px !important;
        height: 270px !important;
        min-height: 270px !important;
        max-height: 270px !important;
    }
    .reel-side-actions { bottom: 70px; gap: 6px; }
    .reel-action-icon { width: 24px; height: 24px; font-size: 9px; }
    .reel-title { font-size: 11px; }
    .reel-loc { font-size: 9px; }
    .blog-lead-media { height: 200px; min-height: 200px; }
    .blog-stack-card { flex-direction: column; align-items: flex-start; }
    .stack-thumb { width: 100%; height: 140px; flex: 0 0 auto; }
}
/* E-Commerce Search Suggestion Box styling */
#heroSuggestionsBox {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    border-radius: 8px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
    z-index: 999999 !important; /* Absolute top-most layer */
    max-height: 280px;
    overflow-y: auto;
    text-align: left;
}

#heroSuggestionsBox .dropdown-item {
    font-size: 13px;
    transition: background 0.15s ease;
}

#heroSuggestionsBox .dropdown-item:hover {
    background-color: #f8f9fa !important;
}

.search-category-title {
    background: #f1f3f5;
    letter-spacing: 0.5px;
}
/* --- FULL-SCREEN REEL POPUP PLAYER STYLES --- */
.reel-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000000;
}

.reel-modal-overlay.show {
    display: flex !important;
}

.reel-modal-container {
    position: relative;
    width: 380px;
    height: 720px;
    max-width: 95vw;
    max-height: 90vh;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 60px rgba(0,0,0,0.8);
}

.reel-modal-player-box {
    position: relative;
    width: 100%;
    height: 100%;
}

.reel-modal-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s;
}

.reel-modal-close:hover {
    background: #fff;
    color: #000;
}

.reel-modal-top-bar {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.reel-modal-side-actions {
    position: absolute;
    right: 15px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    z-index: 5;
}

.reel-modal-content-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 70%, transparent 100%);
    color: #fff;
    z-index: 5;
}

.reel-modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s;
}

.reel-modal-nav-btn:hover {
    background: #fff;
    color: #000;
}

.reel-modal-nav-btn.prev { left: -60px; }
.reel-modal-nav-btn.next { right: -60px; }

@media (max-width: 991px) {
    .reel-modal-nav-btn { display: none; }
    .reel-modal-container { width: 100vw; height: 100vh; border-radius: 0; border: none; }
}