/* input(233,1): run-time error CSS1019: Unexpected token, found '}'
input(2859,1): run-time error CSS1019: Unexpected token, found '}'
input(3171,10): run-time error CSS1030: Expected identifier, found '#mh-offcanvas'
input(3171,28): run-time error CSS1025: Expected comma or open brace, found ')' */
/* File: site.css (Bây giờ đóng vai trò làm File Điều Phối Hub) */
@import url('site/base.css');
@import url('site/table.css');
@import url('site/sidebar.css');
@import url('site/navigation.css');
@import url('site/components.css');

/* THANH HEADER ĐẦU TRANG (QUẢN LÝ TÀI KHOẢN) */
.top-navbar-header {
    background-color: #ffffff;
    height: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Đẩy cụm tài khoản về góc phải */
    padding: 0 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-bottom: 1px solid #e9ecef;
    z-index: 10;
}
/* ==========================================================================
   HỆ THỐNG STYLE TỐI ƯU GIAO DIỆN MOBILE - ONEWAY REAL ESTATE
   ========================================================================== */
@media (max-width: 767.98px) {
    /* Toàn bộ vùng Header cố định phía trên */
    .mobile-header-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1040;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    /* Vùng Banner chính chứa Logo và Cấu hình */
    .oneway-mobile-header {
        background: #111827;
        border-bottom: 1px solid rgba(212, 184, 120, 0.3);
        padding: 8px 12px;
        height: 52px;
    }

    .mobile-brand-logo {
        max-height: 32px;
        width: auto;
        filter: drop-shadow(0px 1px 2px rgba(0,0,0,0.4));
    }

    .mobile-brand-title {
        color: #fff;
        font-weight: 700;
        letter-spacing: -0.2px;
        font-size: 1rem;
    }

        .mobile-brand-title span {
            color: #d4b878;
        }

    /* Cụm tín hiệu Live nằm bên trái biểu tượng cấu hình */
    .mobile-live-indicator {
        background: rgba(22, 163, 74, 0.15);
        border: 1px solid rgba(22, 163, 74, 0.4);
        padding: 4px 8px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .pulse-dot {
        width: 7px;
        height: 7px;
        background-color: #22c55e;
        border-radius: 50%;
        display: inline-block;
        animation: pulse-animation 1.5s infinite;
    }

    @keyframes pulse-animation {
        0% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
        }

        70% {
            transform: scale(1);
            box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
        }

        100% {
            transform: scale(0.95);
            box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
        }
    }

    /* Thanh Menu chức năng phụ ngay dưới banner (Giống thiết kế PC) */
    .mobile-sub-navbar {
        background: #1f2937;
        border-bottom: 2px solid #d4b878;
        padding: 6px 4px;
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        gap: 6px;
        -webkit-overflow-scrolling: touch;
    }

        .mobile-sub-navbar::-webkit-scrollbar {
            display: none; /* Ẩn thanh cuộn để tối ưu thẩm mỹ */
        }

    .mobile-sub-nav-btn {
        background: rgba(255, 255, 255, 0.05);
        color: #e5e7eb;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 5px 12px;
        font-size: 0.75rem;
        font-weight: 600;
        border-radius: 6px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        transition: all 0.2s ease;
    }

        .mobile-sub-nav-btn.active {
            background: #d4b878;
            color: #111827;
            border-color: #d4b878;
        }

    /* Hệ thống nút bấm ảo dạng TRONG SUỐT và TÁCH RIÊNG */
    .oneway-virtual-menu-container {
        background: transparent !important;
        padding: 0 8px;
        margin: 15px 0;
    }

    .virtual-btn-wrapper {
        display: flex;
        justify-content: space-between;
        gap: 10px; /* Tách riêng các nút ra xa nhau */
    }

    .btn-virtual-transparent {
        flex: 1;
        background: rgba(17, 24, 39, 0.4) !important; /* Độ trong suốt cao */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1.5px solid rgba(212, 184, 120, 0.5); /* Viền vàng mảnh nổi bật */
        color: #ffffff;
        font-weight: 700;
        font-size: 0.72rem;
        letter-spacing: 0.3px;
        padding: 14px 6px;
        border-radius: 12px;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

        .btn-virtual-transparent i {
            font-size: 1.25rem;
            margin-bottom: 6px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .btn-virtual-transparent:active {
            background: rgba(212, 184, 120, 0.25) !important;
            border-color: #d4b878;
            transform: scale(0.95);
        }

        .btn-virtual-transparent.active-tab-mobile {
            background: rgba(212, 184, 120, 0.85) !important;
            color: #111827 !important;
            border-color: #d4b878;
        }

            .btn-virtual-transparent.active-tab-mobile i {
                color: #111827 !important;
            }

    /* Menu dọc mở rộng sát cạnh khi bấm nút "KHÁC..." */
    .expanded-side-menu {
        background: rgba(17, 24, 39, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1.5px solid #d4b878;
        border-radius: 14px;
        padding: 10px;
        margin-top: 8px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    }

    .expanded-menu-item {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: #f3f4f6;
        font-size: 0.8rem;
        font-weight: 600;
        padding: 12px 14px;
        border-radius: 10px;
        text-align: left;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: all 0.2s ease;
    }

        .expanded-menu-item i {
            font-size: 1rem;
            width: 22px;
            text-align: center;
        }

        .expanded-menu-item:active {
            background: #d4b878;
            color: #111827;
            padding-left: 20px;
        }

    /* Đẩy vùng nội dung xuống để không bị đè bởi toàn bộ cụm menu header cố định (52px + 40px) */
    .content-area-scrollable {
        padding-top: 94px !important;
    }
}
:root {
    --sidebar-width: 260px;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #f4f6f9;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

.structural-admin-wrapper {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.sidebar {
    width: var(--sidebar-width);
    background: linear-gradient(180deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.main-content-layout {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.content-area-scrollable {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
    background-color: #f8f9fa;
}

.sidebar-logo {
    padding: 15px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

    .sidebar-logo img {
        max-width: 75%;
        height: auto;
    }

.sidebar-menu {
    padding: 15px 10px;
    flex-grow: 1;
    overflow-y: auto;
}
    .sidebar-menu [data-bs-toggle="collapse"].collapsed #iconArrow {
        transform: rotate(-90deg);
    }

#iconArrow {
    transition: transform 0.2s ease;
}
/* ========================================================= */
/* HỆ THỐNG NÚT BẤM DỌC ĐỔ MÀU HƯỚNG 3D                       */
/* ========================================================= */
.btn-glow-3d {
    position: relative;
    border: none;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff !important;
    transition: all 0.15s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

    .btn-glow-3d:active {
        transform: translateY(2px);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

.btn-3d-green {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-bottom: 3px solid #1e7e43;
}

    .btn-3d-green:hover {
        background: linear-gradient(135deg, #40d47e, #2ecc71);
    }

.btn-3d-blue {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-bottom: 3px solid #1f618d;
}

    .btn-3d-blue:hover {
        background: linear-gradient(135deg, #4aa3df, #3498db);
    }

.btn-3d-red {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-bottom: 3px solid #962d22;
}

    .btn-3d-red:hover {
        background: linear-gradient(135deg, #ea6153, #e74c3c);
    }

.btn-3d-purple {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    border-bottom: 3px solid #6c3483;
}

    .btn-3d-purple:hover {
        background: linear-gradient(135deg, #a569bd, #9b59b6);
    }

.btn-3d-orange {
    background: linear-gradient(135deg, #e67e22, #d35400);
    border-bottom: 3px solid #a04000;
}

    .btn-3d-orange:hover {
        background: linear-gradient(135deg, #eb984e, #e67e22);
    }

.btn-3d-yellow {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    border-bottom: 3px solid #b7860b;
}

    .btn-3d-yellow:hover {
        background: linear-gradient(135deg, #f4d03f, #f1c40f);
    }

.btn-3d-cyan {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    border-bottom: 3px solid #117a65;
}

    .btn-3d-cyan:hover {
        background: linear-gradient(135deg, #48c9b0, #1abc9c);
    }

.btn-3d-zalo {
    background: linear-gradient(135deg, #0068ff, #0053cc);
    border-bottom: 3px solid #003da6;
}

    .btn-3d-zalo:hover {
        background: linear-gradient(135deg, #267fff, #0068ff);
    }

/* ==========================================================================
   1. ĐỊNH NGHĨA BIẾN & LỚP CƠ SỞ (COMPACT CHUẨN SANG TRỌNG)
   ========================================================================== */
:root {
    --premium-navy: #0a0a0a;
    --premium-gold: #d4b878;
    --premium-grey: #f7f4f0;
    --premium-text-navy: #1a1a1a;
}

.bg-dark-navy {
    background-color: var(--premium-navy) !important;
}

.text-dark-navy {
    color: var(--premium-navy) !important;
}

.text-purple-light {
    color: #bb86fc !important;
}

.bg-purple {
    background-color: #7d3c98 !important;
}

/* Hệ thống size thu gọn tối đa */
.style-xs {
    font-size: 0.72rem !important;
}

.style-sm {
    font-size: 0.8rem !important;
}

.fw-extrabold {
    font-weight: 800 !important;
}

.card-radius-premium {
    border-radius: 8px !important;
}

.text-line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   2. CẤU TRÚC SIDEBAR: FIX LỖI TRÀN & THU GỌN LOGO
   ========================================================================== */
.sidebar {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.sidebar-logo {
    padding: 1rem 0 !important;
    flex-shrink: 0;
    background-color: rgba(0,0,0,0.1);
}

.sidebar-menu-scrollable {
    flex-grow: 1;
    overflow-y: auto;
    padding: 0.75rem !important;
}

    /* Thanh cuộn siêu mỏng */
    .sidebar-menu-scrollable::-webkit-scrollbar {
        width: 4px;
    }

    .sidebar-menu-scrollable::-webkit-scrollbar-track {
        background: transparent;
    }

    .sidebar-menu-scrollable::-webkit-scrollbar-thumb {
        background: rgba(212, 184, 120, 0.2);
        border-radius: 10px;
    }

        .sidebar-menu-scrollable::-webkit-scrollbar-thumb:hover {
            background: rgba(212, 184, 120, 0.5);
        }

/* ĐỒNG NHẤT NÚT SIDEBAR: CĂN TRÁI TUYỆT ĐỐI + BẰNG KÍCH THƯỚC */
.premium-sidebar-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important; /* Ép toàn bộ icon + chữ lệch trái */
    width: 100% !important; /* Chiều rộng bằng nhau 100% khoang chứa */
    box-sizing: border-box !important;
    background-color: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    color: #e0e0e0 !important;
    padding: 8px 12px !important; /* Padding cân đối, không bị dẹp quá */
    margin-bottom: 5px !important;
    box-shadow: none !important;
    font-size: 0.78rem !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out !important;
}

    .premium-sidebar-btn:hover {
        background-color: rgba(255,255,255,0.1) !important;
        border-color: var(--premium-gold) !important;
        color: #ffffff !important;
        transform: translateX(3px);
    }

    /* Định kích thước cố định cho cột chứa ICON để phần chữ luôn thẳng hàng dọc */
    .premium-sidebar-btn i,
    .premium-sidebar-btn .bi {
        width: 18px !important;
        margin-right: 8px !important;
        text-align: center !important;
        flex-shrink: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

.admin-actions-group {
    padding: 6px !important;
    margin-bottom: 8px !important;
}

/* ==========================================================================
   3. KHÔNG GIAN MAIN CONTENT (INDEX) THU GỌN CHỐNG NGỢP
   ========================================================================== */
.hero-premium {
    min-height: 240px !important;
    padding: 1.5rem 0 !important;
}

.hero-bg {
    background: linear-gradient(rgba(11, 28, 58, 0.91), rgba(11, 28, 58, 0.97)), url('/images/banner_team_oneway.jpg') center/cover no-repeat;
}

.max-w-text-hero {
    max-width: 520px;
}

.hero-premium h1 {
    font-size: 1.45rem !important; /* Nhỏ gọn sắc nét */
    line-height: 1.35;
}

/* Tinh gọn ô tìm kiếm nhanh */
.search-box-premium {
    max-width: 480px;
    padding: 3px 4px !important;
}

    .search-box-premium input {
        font-size: 0.82rem;
    }

/* Thu nhỏ các thẻ chỉ số (Social Proof) */
.stat-icon-circle {
    width: 36px !important;
    height: 36px !important;
}

    .stat-icon-circle i {
        font-size: 0.95rem !important;
    }

.group-hover-glow h3 {
    font-size: 1.4rem !important; /* Hạ kích cỡ số */
}

/* Các thanh điều hướng Tab nhỏ nhắn */
.btn-tab-premium, .btn-tab-core {
    font-size: 0.78rem !important;
    padding: 6px 16px !important;
    border-radius: 4px !important; /* Vuông vắn sang trọng hơn */
}

.btn-search-green {
    font-size: 0.78rem !important;
    padding: 6px 16px !important;
    border-radius: 4px !important;
    background-color: #1e7e34 !important;
    border: none;
    color: white;
}

/* Video và Nhật ký thực chiến thu gọn */
.video-sidebar-card:hover .video-img-hover {
    transform: scale(1.04);
}

.hover-row-stat:hover {
    background-color: rgba(255,255,255,0.04);
}

.timeline-premium .timeline-marker {
    width: 10px;
    height: 10px;
    left: -20px;
    top: 7px;
}

/* Slider zoom bảng */
.premium-slider-control::-webkit-slider-runnable-track {
    background: rgba(255,255,255,0.1);
    height: 3px;
}

/* ==========================================================================
   4. TOP NAVIGATION PHONG CÁCH CAPSULE
   ========================================================================== */
.oneway-top-navigation {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 0;
}

    /* Định dạng Form chung cho mọi Item (Cả thẻ A và Button) */
    .oneway-top-navigation .nav-link-premium {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 600 !important;
        font-size: 13.5px;
        color: #475569 !important; /* Màu chữ trung tính sang trọng */
        background: transparent !important;
        border: 1px solid transparent !important;
        padding: 7px 16px !important;
        border-radius: 50px !important; /* Bo tròn hoàn toàn dạng bong bóng capsule */
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
        position: relative;
        overflow: hidden;
        box-shadow: none !important;
    }

        /* Ép chữ và icon nằm trên lớp hiệu ứng */
        .oneway-top-navigation .nav-link-premium * {
            position: relative;
            z-index: 2;
        }

    /* Mã màu mềm mại cho Icon tạo điểm nhấn tinh tế */
    .oneway-top-navigation .icon-gold {
        color: #d97706;
    }

    .oneway-top-navigation .icon-green {
        color: #16a34a;
    }

    .oneway-top-navigation .icon-blue {
        color: #2563eb;
    }

    .oneway-top-navigation .icon-orange {
        color: #ea580c;
    }

    .oneway-top-navigation .icon-purple {
        color: #7c3aed;
    }

    .oneway-top-navigation .icon-slate {
        color: #64748b;
    }

    /* 🌟 HIỆU ỨNG HOVER CHỦ ĐẠO: NỔI LÊN & BUNG BONG BÓNG MỜ */
    .oneway-top-navigation .nav-link-premium:hover {
        color: #0f172a !important; /* Chữ đậm lên hẳn */
        transform: translateY(-3px) !important; /* Float nổi lên */
        background: rgba(241, 245, 249, 0.8) !important; /* Nền bong bóng ẩn hiện */
        box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08) !important; /* Đổ bóng mịn */
    }

    /* Hiệu ứng hào quang phát sáng ngầm (Glow Effect) */
    .oneway-top-navigation .nav-link-premium::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(241,245,249,0) 70%);
        transform: translate(-50%, -50%);
        transition: width 0.5s ease, height 0.5s ease;
        z-index: 1;
        border-radius: 50%;
    }

    .oneway-top-navigation .nav-link-premium:hover::before {
        width: 220px;
        height: 220px;
    }

    /* Trạng thái Tab đang được kích hoạt (Active) */
    .oneway-top-navigation .nav-link-premium.active-tab {
        background: #0f172a !important; /* Màu đen hoàng gia */
        color: #ffffff !important;
        box-shadow: 0 6px 15px rgba(15, 23, 42, 0.2) !important;
    }

        .oneway-top-navigation .nav-link-premium.active-tab .icon-gold {
            color: #f59e0b !important;
        }

/* Thiết kế riêng nút Zalo PIC đồng bộ độ sang trọng */
.btn-zalo-premium {
    background: #f0fdfa;
    color: #0d9488 !important;
    font-weight: 700;
    font-size: 13px;
    padding: 7px 16px;
    border-radius: 50px;
    border: 1px solid #ccfbf1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

    .btn-zalo-premium:hover {
        background: #0d9488;
        color: #ffffff !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(13, 148, 136, 0.2);
    }

/* ==========================================================================
   5. CẤU TRÚC NỔI LAYER CHATBOT AI CAO CẤP
   ========================================================================== */
.chatbot-toggle-btn {
    position: fixed !important;
    bottom: 25px !important;
    right: 95px !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--premium-navy) 0%, #162a4e 100%) !important;
    color: #ffffff !important;
    border: 1px solid var(--premium-gold) !important;
    box-shadow: 0 4px 18px rgba(11, 28, 58, 0.35) !important;
    cursor: pointer !important;
    z-index: 999999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

    .chatbot-toggle-btn:hover {
        transform: translateY(-4px) scale(1.06) !important;
        border-color: #ffffff !important;
        color: var(--premium-gold) !important;
    }

.chatbot-window {
    position: fixed !important;
    bottom: 95px !important;
    right: 25px !important;
    width: 380px !important;
    height: 560px !important;
    max-height: calc(100vh - 120px) !important;
    background-color: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 35px rgba(11, 28, 58, 0.22) !important;
    border: 1px solid #e6ebf4 !important;
    display: flex !important;
    flex-direction: column !important;
    z-index: 999999 !important;
    overflow: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

    .chatbot-window.chatbot-hidden {
        opacity: 0 !important;
        transform: translateY(30px) scale(0.92) !important;
        pointer-events: none !important;
    }

.chatbot-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 16px !important;
    background: linear-gradient(135deg, var(--premium-navy) 0%, #1c3554 100%) !important;
    color: #ffffff !important;
    border-bottom: 2px solid var(--premium-gold) !important;
    flex-shrink: 0 !important;
}

.chatbot-title {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
}

.chatbot-close-btn {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 22px !important;
    cursor: pointer !important;
    line-height: 1 !important;
    opacity: 0.7 !important;
    transition: all 0.2s !important;
}

    .chatbot-close-btn:hover {
        opacity: 1 !important;
        color: var(--premium-gold) !important;
    }

.chatbot-trust-badge {
    text-align: center !important;
    font-size: 0.74rem !important;
    color: #64748b !important;
    line-height: 1.4 !important;
    padding: 8px 12px !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    border: 1px dashed #cbd5e1 !important;
    margin-bottom: 4px !important;
}

.chatbot-body {
    flex: 1 !important;
    overflow-y: auto !important;
    padding: 14px !important;
    background-color: var(--premium-grey) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

    .chatbot-body::-webkit-scrollbar {
        width: 4px !important;
    }

    .chatbot-body::-webkit-scrollbar-track {
        background: transparent !important;
    }

    .chatbot-body::-webkit-scrollbar-thumb {
        background: rgba(11, 28, 58, 0.1) !important;
        border-radius: 10px !important;
    }

        .chatbot-body::-webkit-scrollbar-thumb:hover {
            background: rgba(212, 184, 120, 0.4) !important;
        }

.chat-msg {
    max-width: 85% !important;
    padding: 10px 14px !important;
    border-radius: 12px !important;
    font-size: 0.82rem !important;
    line-height: 1.45 !important;
    word-wrap: break-word !important;
}

.ai-msg {
    background-color: #ffffff !important;
    color: var(--premium-text-navy) !important;
    align-self: flex-start !important;
    border: 1px solid #e2e8f0 !important;
    border-top-left-radius: 2px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02) !important;
}

.user-msg {
    background-color: var(--premium-navy) !important;
    color: #ffffff !important;
    align-self: flex-end !important;
    border-top-right-radius: 2px !important;
    box-shadow: 0 1px 3px rgba(11, 28, 58, 0.1) !important;
}

.typing-loading {
    color: #64748b !important;
    font-style: italic !important;
    background: rgba(0,0,0,0.03) !important;
}

.chatbot-footer {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 14px !important;
    background: #ffffff !important;
    border-top: 1px solid #e6ebf4 !important;
    flex-shrink: 0 !important;
}

    .chatbot-footer input {
        flex: 1 !important;
        border: 1px solid #cbd5e1 !important;
        padding: 8px 16px !important;
        border-radius: 24px !important;
        font-size: 0.82rem !important;
        outline: none !important;
        transition: all 0.2s !important;
    }

        .chatbot-footer input:focus {
            border-color: var(--premium-navy) !important;
            box-shadow: 0 0 0 2px rgba(11, 28, 58, 0.05) !important;
        }

.btn-send-active {
    background: transparent !important;
    border: none !important;
    color: var(--premium-navy) !important;
    font-size: 20px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: color 0.2s !important;
    padding: 4px !important;
}

    .btn-send-active:hover {
        color: var(--premium-gold) !important;
    }

/* ==========================================================================
   6. MOBILE LAYER (GÔM CHUNG ĐỂ DỄ QUẢN LÝ)
   ========================================================================== */
.style-navbar-mobile {
    background-color: var(--premium-navy);
    border-top: 1px solid var(--premium-gold);
}

.w-33 {
    width: 33.33%;
}

@media (max-width: 767.98px) {
    .hero-premium h1 {
        font-size: 1.2rem !important;
    }

    .search-box-premium {
        border-radius: 8px !important;
        flex-direction: column;
        padding: 8px !important;
    }

        .search-box-premium input {
            text-align: center;
            margin-bottom: 6px;
        }

        .search-box-premium button {
            width: 100%;
            font-size: 0.8rem;
        }

    .chatbot-window {
        width: calc(100% - 30px) !important;
        height: 480px !important;
        right: 15px !important;
        bottom: 95px !important;
    }

    .chatbot-toggle-btn {
        bottom: 25px !important;
        right: 25px !important;
    }
}
/* Style bổ trợ cao cấp tối ưu trải nghiệm Mobile */
.mobile-apartment-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    background: #ffffff;
}

    .mobile-apartment-card:active {
        transform: scale(0.985);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    }

.btn-detail-mobile {
    background-color: #0b1c3a;
    color: #ffffff;
    border: 1px solid #0b1c3a;
    font-size: 13px;
}

    .btn-detail-mobile:hover, .btn-detail-mobile:active {
        background-color: #152e5c;
        color: #ffffff;
        border-color: #152e5c;
    }

.mt-3\.5 {
    margin-top: 1.15rem;
}
/* ==========================================================================
   7. KHẮC PHỤC LỖI HIỂN THỊ NÚT BÁNH RĂNG ADMIN PROFILE 
   ========================================================================== */
.dynamic-gear-btn {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    position: relative;
    z-index: 10;
    padding: 6px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

    .dynamic-gear-btn::before,
    .dynamic-gear-btn::after {
        display: none !important;
        content: none !important;
    }

    .dynamic-gear-btn:hover {
        background: rgba(255, 255, 255, 0.15) !important;
        border-radius: 6px !important;
        transform: rotate(30deg) !important;
    }

        .dynamic-gear-btn:hover .bi-gear-fill,
        .dynamic-gear-btn:hover i {
            color: var(--premium-gold) !important;
        }

/* ==========================================================================
   8. BỘ LỌC NÂNG CAO PREMIUM (ADVANCED FILTER RESYLED) - LUXURY NEO-CLASSIC
   ========================================================================== */
.bg-premium-light {
    background-color: #f4f6f9 !important;
}

.btn-dark-navy {
    background-color: var(--premium-navy) !important;
    color: #ffffff !important;
    border: 1px solid var(--premium-navy) !important;
    transition: all 0.3s ease;
}

    .btn-dark-navy:hover {
        background-color: #162c54 !important;
        border-color: #162c54 !important;
        color: var(--premium-gold) !important;
        box-shadow: 0 4px 15px rgba(11, 28, 58, 0.2) !important;
    }

#advFilterModal .modal-content {
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(11, 28, 58, 0.25) !important;
}

#advFilterModal .modal-header {
    background: linear-gradient(135deg, var(--premium-navy) 0%, #1a2d51 100%) !important;
    border-bottom: 2px solid var(--premium-gold) !important;
}

/* Định vị cấu trúc thẻ tiêu chí lọc phân khu động */
#advFilterBody .card {
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    background-color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

    #advFilterBody .card:hover {
        border-color: var(--premium-gold) !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(11, 28, 58, 0.06) !important;
    }

#advFilterBody .card-header {
    background-color: #ffffff !important;
    border-bottom: 1px solid #f1f5f9 !important;
    color: var(--premium-navy) !important;
    letter-spacing: 0.3px;
    font-size: 12.5px !important;
}

/* Tinh chỉnh thanh cuộn nội dung checkbox */
#advFilterBody .card-body {
    padding: 12px !important;
}

    #advFilterBody .card-body::-webkit-scrollbar {
        width: 4px;
    }

    #advFilterBody .card-body::-webkit-scrollbar-track {
        background: transparent;
    }

    #advFilterBody .card-body::-webkit-scrollbar-thumb {
        background: rgba(11, 28, 58, 0.1);
        border-radius: 10px;
    }

        #advFilterBody .card-body::-webkit-scrollbar-thumb:hover {
            background: var(--premium-gold);
        }

/* Đổi màu Custom cho Checkbox chuẩn phong cách Hoàng Gia */
#advFilterBody .form-check-input {
    border-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.2s;
}

    #advFilterBody .form-check-input:checked {
        background-color: var(--premium-navy) !important;
        border-color: var(--premium-navy) !important;
        box-shadow: 0 0 0 2px rgba(11, 28, 58, 0.15);
    }

#advFilterBody .form-check-label {
    cursor: pointer;
    user-select: none;
    padding-left: 2px;
    transition: color 0.2s;
}

#advFilterBody .form-check-input:checked + .form-check-label {
    color: var(--premium-navy) !important;
    font-weight: 600;
}

/* ── Compare feature ─────────────────────────────────────── */

/* Floating bar at bottom */
.compare-bar {
  position: fixed;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  transition: bottom 0.35s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: none;
}
.compare-bar.visible {
  bottom: 16px;
  pointer-events: auto;
}
.cmp-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0b1c3a;
  border: 1px solid rgba(212,184,120,0.4);
  border-radius: 48px;
  padding: 8px 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
  white-space: nowrap;
}
.cmp-bar-thumbs {
  display: flex;
  gap: 6px;
}
.cmp-thumb {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  overflow: visible;
}
.cmp-thumb img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(212,184,120,0.4);
}
.cmp-thumb-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e53e3e;
  border: none;
  color: #fff;
  font-size: 8px;
  line-height: 16px;
  text-align: center;
  cursor: pointer;
  padding: 0;
}
.cmp-bar-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cmp-bar-count {
  font-size: 11px;
  color: rgba(212,184,120,0.7);
  font-weight: 600;
}
.cmp-bar-btn {
  background: linear-gradient(135deg,#d4b878,#a07820);
  border: none;
  color: #0b1c3a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 7px 16px;
  border-radius: 24px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cmp-bar-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.cmp-bar-clear {
  background: none;
  border: none;
  color: rgba(212,184,120,0.5);
  cursor: pointer;
  font-size: 13px;
  padding: 4px 6px;
  transition: color 0.2s;
}
.cmp-bar-clear:hover { color: #e53e3e; }

/* Compare toggle button active state */
.cmp-toggle-btn.active {
  background: rgba(212,184,120,0.18) !important;
  border-color: #d4b878 !important;
  color: #d4b878 !important;
}
.cmp-toggle-btn.active i { color: #d4b878 !important; }

/* Modal */
.compare-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9500;
  align-items: center;
  justify-content: center;
}
.compare-modal.open {
  display: flex;
}
.cmp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
}
.cmp-modal-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  width: min(96vw, 900px);
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.cmp-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: #0b1c3a;
  color: #d4b878;
  border-radius: 16px 16px 0 0;
}
.cmp-modal-title { font-size: 14px; font-weight: 700; letter-spacing: 0.05em; }
.cmp-modal-close {
  background: none;
  border: none;
  color: rgba(212,184,120,0.7);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.cmp-modal-body {
  overflow-y: auto;
  padding: 20px 24px;
}
.cmp-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.cmp-col {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cmp-col-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.cmp-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #0b1c3a;
  padding: 12px 14px 8px;
}
.cmp-col-table {
  width: 100%;
  font-size: 12px;
  border-collapse: collapse;
  flex: 1;
}
.cmp-col-table th {
  background: rgba(11,28,58,0.04);
  color: #64748b;
  font-weight: 600;
  padding: 7px 12px;
  text-align: left;
  border-top: 1px solid rgba(0,0,0,0.06);
  white-space: nowrap;
}
.cmp-col-table td {
  color: #0b1c3a;
  font-weight: 500;
  padding: 7px 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.cmp-price { color: #a07820 !important; font-weight: 800 !important; }
.cmp-col-remove {
  margin: 10px 12px;
  background: none;
  border: 1px solid #e53e3e;
  color: #e53e3e;
  border-radius: 6px;
  font-size: 11px;
  padding: 5px 10px;
  cursor: pointer;
  transition: background 0.2s;
}
.cmp-col-remove:hover { background: #e53e3e; color: #fff; }

/* Toast */
.cmp-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: #0b1c3a;
  color: #d4b878;
  border: 1px solid rgba(212,184,120,0.3);
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 9900;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.cmp-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Skip-to-content link for keyboard accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 99999;
    background: #d4b878;
    color: #0a0a0a;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 0 0 4px 4px;
    text-decoration: none;
    transition: top 0.15s;
}
.skip-link:focus { top: 0; }

/* ═══════════════════════════════════════════════════════
   OGROUP-INSPIRED LUXURY PALETTE
   Black / White / Warm Gold — no navy, no loud red
═══════════════════════════════════════════════════════ */
:root {
    --ow-black:      #0a0a0a;
    --ow-offwhite:   #f7f4f0;
    --ow-white:      #ffffff;
    --ow-gold:       #d4b878;
    --ow-gold-dark:  #a07820;
    --ow-red-brand:  #a8261d;   /* chỉ dùng cho logo ONE-WAY */
    --ow-text:       #1a1a1a;
    --ow-muted:      #6b6b6b;
}

/* Navbar — transparent over video, black after */
#main-header {
    background-color: transparent !important;
    transition: background-color 0.5s ease, backdrop-filter 0.5s ease !important;
}
#main-header.header-scrolled-black {
    background-color: rgba(10,10,10,0.97) !important;
    backdrop-filter: blur(12px) !important;
}

/* ═══ GIỎ HÀNG PANES — LIGHT STYLE ═══ */
#workspace-cho-thue-pane,
#workspace-tim-thue-pane {
    background: #f8f9fb !important;
}
#workspace-cho-thue-pane .workspace-scroll-container,
#workspace-tim-thue-pane .workspace-scroll-container {
    background: #f8f9fb !important;
}

/* Intro section — warm white left, pure white right */
.intro-float-section { background: var(--ow-white) !important; }
.intro-float-section > .reveal-item:first-child { background: var(--ow-offwhite) !important; }

/* Intro eyebrow labels & lines: red → gold */
.intro-eyebrow-label { color: var(--ow-gold) !important; }
.intro-deco-line     { background: var(--ow-gold) !important; }
.intro-deco-divider  { background: var(--ow-gold) !important; }

/* Core value items border & icon */
.core-value-item { border-top-color: var(--ow-gold) !important; }
.core-value-item .cvi-label { color: var(--ow-gold-dark) !important; }

/* ── Inventory pane scrollbar gold ── */
#workspace-inventory-pane ::-webkit-scrollbar-thumb { background: rgba(212,184,120,0.5) !important; }
#workspace-cho-thue-pane ::-webkit-scrollbar-thumb,
#workspace-tim-thue-pane ::-webkit-scrollbar-thumb { background: rgba(212,184,120,0.35) !important; }
#workspace-cho-thue-pane ::-webkit-scrollbar,
#workspace-tim-thue-pane ::-webkit-scrollbar { background: rgba(255,255,255,0.03) !important; }

/* CTA button black style */
.cta-btn-dark {
    background: var(--ow-black) !important;
    border: 1px solid var(--ow-gold) !important;
    color: var(--ow-white) !important;
    letter-spacing: 0.22em;
}
.cta-btn-dark:hover { background: var(--ow-gold) !important; color: var(--ow-black) !important; }

/* Dark sections: navy → pure black */
.dark-section-navy { background: var(--ow-black) !important; }

/* Contact section heading accent */
.contact-heading-accent { color: var(--ow-gold) !important; }

/* Team cards */
.team-member-card { background: #111111 !important; border-color: rgba(212,184,120,0.15) !important; }

/* Dropdown nav */
.dropdown-menu[style*="0b1c3a"],
ul[style*="0b1c3a"] { background: var(--ow-black) !important; }

/* Featured listings wrapper */
#featured-projects-wrapper { background: #0a0a0a !important; }
.fl-header, .fl-title, .fl-eyebrow { color: var(--ow-white) !important; }

/* Mobile header */
.oneway-mobile-header { background: #0a0a0a !important; }
.mobile-sub-navbar   { background: #111111 !important; }

/* Scrollbar */
.workspace-scroll-container::-webkit-scrollbar-thumb { background: var(--ow-gold) !important; }

/* Team section name colors */
.team-name { color: var(--ow-black) !important; }
.team-col-identity { background: var(--ow-offwhite) !important; }

/* Footer */
footer[style*="0b1c3a"] { background: var(--ow-black) !important; }
.prs-banner, .fp-banner { background: linear-gradient(135deg,#0a0a0a 0%,#1a1a1a 100%) !important; }

/* Avatar placeholder */
.prs-avatar-initials { background: linear-gradient(135deg,#111,#222) !important; }

/* Tags/badges that had navy bg */
.prs-sb-badge-founder { background: var(--ow-black) !important; }
.prs-sb-name, .prs-sb-stat-num, .prs-stat-num,
.prs-main-section-title { color: var(--ow-black) !important; }
.prs-main-section-title { border-bottom-color: var(--ow-gold) !important; }
.prs-service-pill span { color: var(--ow-black) !important; }

/* float-visible legacy class removed — now uses reveal-node / active-reveal */

/* ===== NỀN TOÀN TRANG ĐEN ===== */
html, body {
    background: #000 !important;
}
.oneway-main-viewport {
    background: #000 !important;
}
#workspace-dashboard-pane {
    background: #000 !important;
}
@media (max-width: 767px) {
    #workspace-dashboard-pane {
        padding-top: 100px !important;
    }
}

/* Giỏ hàng — header đen, content không bị header che */
#workspace-inventory-pane {
    background: #0a0a0a !important;
}
#workspace-inventory-pane .workspace-scroll-container {
    padding-top: 80px !important;
    overflow-x: clip !important;
    overflow-y: auto !important;
}
/* Navbar luôn nằm trên tất cả sticky content */
#main-header { z-index: 999 !important; }

/* ── Nav: full-height clickable buttons — TRẮNG ÁNH VÀNG ── */
#main-header .nav-btn {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s, background 0.2s, text-shadow 0.2s;
    white-space: nowrap;
    text-decoration: none;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
#main-header .nav-btn:hover {
    color: #d4b878 !important;
    background: rgba(212,184,120,0.07);
    text-shadow: 0 0 14px rgba(212,184,120,0.5);
}
#main-header .nav-btn.active-nav {
    color: #d4b878 !important;
    border-bottom: 2px solid #d4b878;
    text-shadow: 0 0 12px rgba(212,184,120,0.4);
}

/* ── BẢNG HÀNG: chip / badge đặc biệt ── */
#main-header #subtab-inventory {
    color: #f5f0e8 !important;
    letter-spacing: 0.18em;
    text-shadow: 0 0 16px rgba(212,184,120,0.5);
    background: rgba(212,184,120,0.08) !important;
    border: 2.5px solid rgba(212,184,120,0.9) !important;
    border-radius: 6px;
    padding: 0 14px !important;
    margin: 10px 6px;
    height: calc(100% - 20px) !important;
    position: relative;
    gap: 7px;
}
#main-header #subtab-inventory:hover {
    background: rgba(212,184,120,0.16) !important;
    border-color: rgba(212,184,120,1) !important;
    text-shadow: 0 0 20px rgba(212,184,120,0.7);
}
#main-header #subtab-inventory::before {
    content: '★';
    font-size: 15px;
    opacity: 0.9;
    animation: starBlink 2.2s ease-in-out infinite;
}
@keyframes starBlink {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.35); }
}
/* Badge số lượng trong BẢNG HÀNG */
#main-header #subtab-inventory .bg-accentGold {
    background: rgba(212,184,120,0.18) !important;
    color: #d4b878 !important;
    border: 1px solid rgba(212,184,120,0.5);
    font-size: 9px !important;
    padding: 1px 7px !important;
    border-radius: 20px;
    font-family: monospace;
    font-weight: 900;
    animation: badgePulse 2.2s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { transform: scale(1);    box-shadow: none; }
    50%       { transform: scale(1.12); box-shadow: 0 0 8px rgba(212,184,120,0.6); }
}

/* Dropdown wrapper full-height, show on hover */
#main-header .nav-dropdown { height: 100%; display: flex; align-items: stretch; position: relative; }
#main-header .nav-dropdown .nav-btn { height: 100%; }
#main-header .nav-dropdown:hover > .nav-dropdown-menu { display: block !important; }
#main-header .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #0a0a0a;
    border-top: 2px solid #d4b878;
    z-index: 1050;
    list-style: none;
    padding: 0;
    margin: 0;
}
#main-header .nav-dropdown-menu.menu-end { left: auto; right: 0; }
#main-header .nav-dropdown-menu li a,
#main-header .nav-dropdown-menu li button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 13px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #d4b878;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(212,184,120,0.1);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}
#main-header .nav-dropdown-menu li:last-child a,
#main-header .nav-dropdown-menu li:last-child button { border-bottom: none; }
#main-header .nav-dropdown-menu li a:hover,
#main-header .nav-dropdown-menu li button:hover { background: rgba(212,184,120,0.12); color: #d4b878; }

/* Config gear button */
#main-header .nav-config-btn {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: transparent !important;
    border: none;
    color: #f5f0e8 !important;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
#main-header .nav-config-btn:hover { background: rgba(212,184,120,0.2) !important; color: #d4b878 !important; }

/* LIÊN HỆ dropdown — light bg */
#main-header .nav-lienhé-menu {
    background: #fff;
    min-width: 260px;
    border-radius: 10px;
    border-top: 2px solid #d4b878 !important;
    box-shadow: 0 8px 24px rgba(11,28,58,0.15) !important;
    padding: 8px 0;
}

/* Cho-thuê / Tìm-thuê panes: outside main-viewport, use fixed overlay */
#workspace-cho-thue-pane:not(.view-pane-hidden),
#workspace-tim-thue-pane:not(.view-pane-hidden) {
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 90 !important;
    height: auto !important;
    min-height: unset !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
}
/* Wrapper scroll: cả ngang lẫn dọc trong một hộp cố định */
#tableHorizontalScrollWrapper {
    overflow-x: auto;
    overflow-y: auto;
    max-height: calc(100vh - 280px);
    border-radius: 8px;
}
body.inventory-active #main-header {
    background-color: #000000 !important;
}

/* Header scroll black */
#main-header {
    transition: background-color 0.5s ease !important;
}
#main-header.header-scrolled-black {
    background-color: #000000 !important;
}

/* Container chứa tiêu đề */
.project-header-container {
    position: relative;
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
    text-align: center;
}

/* Tiêu đề dự án */
.project-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: left 0.3s ease-out, transform 0.3s ease-out;
    font-weight: 800;
    font-size: 2rem;
    white-space: nowrap;
    color: #0b1c3a;
}
body {
    background-color: #faf9f6;
    color: #0b1c3a;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* ═══════════════════════════════════════════════════════════════════════════════════
🎯 SCROLL REVEAL ENGINE — FLOAT-IN / FLOAT-OUT hai chiều
   BELOW viewport  → opacity:0  translateY(+50px)   chưa vào
   IN viewport     → opacity:1  translateY(0)        đang hiện
   ABOVE viewport  → opacity:0  translateY(-40px)    đã qua
═══════════════════════════════════════════════════════════════════════════════════ */
.reveal-node {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 2.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 2.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}
.reveal-node.active-reveal {
    opacity: 1;
    transform: translateY(0);
}
/* Float-out hướng lên khi đã kéo qua */
.reveal-node.exit-up {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Staggered children — float-in */
.reveal-item {
    opacity: 0;
    transform: translateY(52px);
    transition: opacity 1.6s cubic-bezier(0.16,1,0.3,1),
                transform 1.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal-node.active-reveal .reveal-item            { opacity: 1; transform: translateY(0); }
.reveal-node.active-reveal .reveal-item:nth-child(1)  { transition-delay: 0.10s; }
.reveal-node.active-reveal .reveal-item:nth-child(2)  { transition-delay: 0.26s; }
.reveal-node.active-reveal .reveal-item:nth-child(3)  { transition-delay: 0.42s; }
.reveal-node.active-reveal .reveal-item:nth-child(4)  { transition-delay: 0.58s; }
.reveal-node.active-reveal .reveal-item:nth-child(5)  { transition-delay: 0.74s; }
.reveal-node.active-reveal .reveal-item:nth-child(6)  { transition-delay: 0.90s; }
.reveal-node.active-reveal .reveal-item:nth-child(7)  { transition-delay: 1.06s; }
.reveal-node.active-reveal .reveal-item:nth-child(8)  { transition-delay: 1.18s; }
.reveal-node.active-reveal .reveal-item:nth-child(n+9){ transition-delay: 1.30s; }

/* Staggered children — float-out (no delay, all at once) */
.reveal-node.exit-up .reveal-item {
    opacity: 0;
    transform: translateY(-28px);
    transition-delay: 0s !important;
}

/* Project directional reveals (left/right/bottom) */
.project-reveal-left, .project-reveal-right, .project-reveal-bottom {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.project-reveal-left   { transform: translateX(-40px); }
.project-reveal-right  { transform: translateX(40px);  }
.project-reveal-bottom { transform: translateY(30px);  }
.project-reveal-left.revealed,
.project-reveal-right.revealed,
.project-reveal-bottom.revealed { opacity:1 !important; transform:none !important; }

/* Thuật toán tiêu điểm làm mờ vệ tinh xung quanh khi tương tác card sản phẩm */
.luxury-focus-grid {
    transition: all 0.5s ease;
}

.luxury-focus-grid:hover .luxury-showcase-card {
    opacity: 0.3;
    filter: blur(5px) scale(0.97);
}

.luxury-focus-grid .luxury-showcase-card:hover {
    opacity: 1 !important;
    filter: blur(0) !important;
    transform: translateY(-10px) scale(1.025) !important;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 40px rgba(196, 164, 104, 0.4);
    border-color: #d4b878 !important;
    z-index: 10;
}

.luxury-showcase-card {
    transition: all 0.5s ease;
    cursor: pointer;
}

.view-pane-hidden {
    display: none !important;
}
@keyframes owPaneIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.ow-pane-in { animation: owPaneIn 0.32s cubic-bezier(0.25,0.46,0.45,0.94) both; }

.oneway-main-viewport {
    display: flex !important;
    flex-direction: column !important;
    height: 100vh !important;
    width: 100% !important;
    overflow: hidden !important;
}

.workspace-scroll-container {
    flex-grow: 1 !important;
    min-width: 0 !important;
    height: 100% !important;
    overflow-y: auto !important;
    overflow-x: clip !important;
    background-color: #faf9f6;
}

.workspace-scroll-container::-webkit-scrollbar {
    width: 4px;
}

.workspace-scroll-container::-webkit-scrollbar-track {
    background: #faf9f6;
}

.workspace-scroll-container::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.text-protection-overlay {
    background: linear-gradient(to top, rgba(4, 9, 19, 0.95) 0%, rgba(4, 9, 19, 0.3) 70%, transparent 100%);
    backdrop-filter: blur(1px);
}

/* KHUNG CHỨA VIDEO CHỐNG TRÔI - ĐÁP ỨNG ĐA NỀN TẢNG THU NHỎ TRÊN MOBILE */
.hero-video-container {
    position: relative;
    width: 100%;
    height: 38vh !important;
    overflow: hidden;
    background-color: #000000;
    padding: 0 !important; /* Xóa padding Tailwind px-4 không muốn */
    box-sizing: border-box;
}
/* Video luôn fill 100% container dù Tailwind không load */
.hero-video-container video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    pointer-events: none;
}
@media (min-width: 768px) {
    .hero-video-container {
        height: 100vh !important;
    }
}


.hero-video-container::after {
    content: '';
    position: absolute; inset: 0; z-index: 5;
    background: linear-gradient(to top,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.28) 35%,
        transparent 65%);
    pointer-events: none;
}

/* ═══ HERO EDITORIAL OVERLAY ═══ */
.hero-editorial-overlay {
    position: absolute; inset: 0; z-index: 10;
    display: flex; flex-direction: column;
    justify-content: flex-end; align-items: flex-start;
    padding: 0 8vw 9vh;
    background: transparent;
    transform-origin: left bottom;
    animation: heroCollapse 1.6s cubic-bezier(0.4, 0, 0.2, 1) 2.8s forwards;
}
@keyframes heroCollapse {
    0%   { transform: scale(1);    opacity: 1; }
    70%  { transform: scale(0.44); opacity: 0.7; }
    100% { transform: scale(0.44); opacity: 0; pointer-events: none; }
}
.hero-eyebrow {
    font-size: 10px; font-weight: 500; letter-spacing: 0.3em;
    text-transform: uppercase; color: rgba(212,184,120,0.8);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 24px; opacity: 0;
}
.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 9vw, 8.5rem);
    font-weight: 300; line-height: 0.95;
    color: #fff; margin: 0 0 32px;
    overflow: hidden;
}
.hero-headline .hw { display: inline-block; opacity: 0; transform: translateY(100%); }
.hero-headline .hw-gold { color: #d4b878; font-weight: 700; font-style: normal; }
.hero-subline {
    font-size: 15px; font-weight: 300; letter-spacing: 0.06em;
    color: rgba(255,255,255,0.7); text-transform: none;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    opacity: 0;
}
.hero-divider {
    display: none; /* removed per user request */
    width: 0; height: 1px; background: #d4b878;
    margin-top: 24px;
}

/* ── HERO SEARCH PILL ── */
.hero-search-pill {
    position: absolute; bottom: 160px; left: 8vw; z-index: 12;
    display: flex; align-items: center; gap: 12px;
    background: rgba(10,10,10,0.55); backdrop-filter: blur(14px);
    border: 1px solid rgba(212,184,120,0.3); border-radius: 50px;
    padding: 10px 10px 10px 20px;
    opacity: 0; animation: heroCTAIn 0.8s ease 2.6s forwards;
    min-width: 300px; max-width: 440px;
}
.hero-search-pill i { color: rgba(212,184,120,0.7); font-size: 13px; flex-shrink:0; }
.hero-search-select {
    flex: 1; background: transparent; border: none; outline: none;
    font-family: 'Montserrat', sans-serif; font-size: 11px;
    font-weight: 500; letter-spacing: 0.12em; color: rgba(255,255,255,0.82);
    cursor: pointer; min-width: 0;
}
.hero-search-select option { background: #111; color: #fff; }
.hero-search-btn {
    background: #d4b878; color: #0a0a0a; border: none; border-radius: 50px;
    padding: 8px 18px; font-family: 'Montserrat', sans-serif;
    font-size: 10px; font-weight: 800; letter-spacing: 0.2em;
    text-transform: uppercase; cursor: pointer; flex-shrink:0;
    transition: background 0.2s;
}
.hero-search-btn:hover { background: #fff; }
@media (max-width: 767px) {
    /* Bổ sung nút tìm kiếm dự án cho mobile — thu gọn kích thước, đặt ngay trên hàng nút CTA để không đè lên nhau */
    .hero-search-pill {
        display: flex;
        bottom: 58px; left: 4vw; right: 4vw;
        min-width: 0; max-width: none; width: auto;
        padding: 7px 8px 7px 14px; gap: 8px;
    }
    .hero-search-select { font-size: 10px; letter-spacing: 0.08em; }
    .hero-search-btn { padding: 7px 12px; font-size: 9px; letter-spacing: 0.12em; }
}

/* ── PARTNER LOGOS STRIP ── */
/* ── PARTNER LOGOS STRIP (PHIÊN BẢN PHÓNG LỚN XẾP CHỒNG DỌC) ── */
.partner-strip {
    background: #0d0d0d;
    border-bottom: 1px solid rgba(212,184,120,0.1);
    padding: 24px 8vw; /* Tăng nhẹ padding dọc để tạo khoảng thở khi phóng lớn logo */
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px; /* Tăng nhẹ size chữ tiêu đề lề trái */
    font-weight: 700;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(212,184,120,0.5);
    flex-shrink: 0;
    white-space: nowrap;
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: 48px; /* Tăng khoảng cách ngang giữa các đối tác */
    flex-wrap: wrap;
}

.partner-logo-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ffffff !important;
    transition: all 0.25s ease;
    cursor: default;
    white-space: nowrap;
    /* 🚀 BƯỚC NGOẶT: Chuyển sang hiển thị dạng khối dọc (Xếp chồng) */
    display: inline-flex;
    flex-direction: column; /* Ép ảnh nằm trên, chữ nằm dưới */
    align-items: center; /* Căn giữa đều cả ảnh và chữ */
    gap: 10px; /* Khoảng cách an toàn giữa đáy logo và đỉnh chữ */
}

    /* Định vị lại kích thước ảnh logo sau khi phóng lớn */
    .partner-logo-item img {
        height: 28px !important; /* Phóng lớn gấp đôi kích cỡ cũ (từ 14px lên 28px) */
        width: auto !important;
        object-fit: contain !important;
        display: block !important;
        /*filter: brightness(0) invert(1); /* Fallback biến logo sang màu trắng đồng bộ luxury */
        opacity: 0.85;
        transition: opacity 0.25s, transform 0.25s;
    }

    /* Hiệu ứng tương tác cao cấp khi di chuột vào (Hover) */
    .partner-logo-item:hover {
        color: #d4b878 !important;
    }

        .partner-logo-item:hover img {
            opacity: 1;
            transform: scale(1.05); /* Nhấc nhẹ logo lên tạo hiệu ứng thị giác */
        }

/* Giữ nguyên vạch ngăn tinh tế */
.partner-divider {
    width: 1px;
    height: 32px; /* Tăng chiều cao vách ngăn cho cân xứng với khối logo dọc mới */
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* 📱 RESPONSIVE: Khi trên màn hình điện thoại nhỏ -> Tự động co bớt chiều cao logo để tránh tràn viền */
@media (max-width: 768px) {
    .partner-logos {
        gap: 24px;
    }

    .partner-logo-item img {
        height: 22px !important;
    }
}

/* ── TESTIMONIALS SECTION — Warm cream with crimson identity ── */
.testi-section {
    background:
        linear-gradient(to right, #faf8f4 0%, #faf8f4 42%, rgba(250,248,244,0.82) 65%, rgba(250,248,244,0.4) 100%),
        url('/uploads/backgrounds/niemtin-khachhang-villa-song.jpg');
    background-size: auto, cover;
    background-position: center, right center;
    background-repeat: no-repeat, no-repeat;
    padding: 80px 8vw 80px;
    position: relative; overflow: hidden;
    border-top: 4px solid #7a1a1a;
}
.testi-section::before {
    content: '"'; position: absolute; top: -20px; right: 6vw;
    font-family: 'Cormorant Garamond', serif; font-size: 18rem;
    font-weight: 700; color: rgba(122,26,26,0.06); line-height: 1;
    pointer-events: none; user-select: none;
}
.testi-header {
    margin-bottom: 52px; position: relative;
    animation: titleFloat 5.5s ease-in-out infinite;
}
@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.testi-eyebrow {
    font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 700;
    letter-spacing: 0.55em; text-transform: uppercase; color: rgba(122,26,26,0.65);
    display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.testi-eyebrow::before { content:''; display:inline-block; width:28px; height:1px; background:rgba(122,26,26,0.5); }

/* ── Neon / highlight cho tiêu đề "Niềm Tin Khách Hàng" ── */
.testi-title {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(2.6rem,5vw,4.8rem);
    font-weight: 300; color: #1a1a1a; margin: 0; line-height: 1.1;
    position: relative; width: fit-content;
    text-shadow: 0 0 2px rgba(122,26,26,0.15), 0 0 22px rgba(122,26,26,0.08);
}
/*.testi-title::before {
    content: '';
    position: absolute; left: -6%; right: -6%; top: 50%; bottom: 0;
    background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(224,85,51,0.16), transparent 72%);
    filter: blur(6px);
    z-index: -1;
    pointer-events: none;
}*/
.testi-title em {
    font-style: italic; font-weight: 700; color: #c0392b;
   /* text-shadow:
        0 0 6px rgba(224,85,51,0.75),
        0 0 16px rgba(192,57,43,0.55),
        0 0 34px rgba(122,26,26,0.4),
        0 0 60px rgba(122,26,26,0.22);*/
    /*animation: testiNeonFlicker 5s ease-in-out infinite;*/
}
@keyframes testiNeonFlicker {
    0%, 92%, 100% { opacity: 1; text-shadow: 0 0 6px rgba(224,85,51,0.75), 0 0 16px rgba(192,57,43,0.55), 0 0 34px rgba(122,26,26,0.4), 0 0 60px rgba(122,26,26,0.22); }
    93% { opacity: 0.82; text-shadow: 0 0 3px rgba(224,85,51,0.4); }
    95% { opacity: 1; }
    96% { opacity: 0.86; text-shadow: 0 0 3px rgba(224,85,51,0.4); }
    97% { opacity: 1; }
}

/* ── Hiệu ứng giống "Niềm Tin Khách Hàng" áp dụng cho For Buyers / About Oneway ── */
.fba-title-block { animation: titleFloat 5.5s ease-in-out infinite; }
.fba-title-block strong {
    color: #c0392b;
    text-shadow:
        0 0 6px rgba(224,85,51,0.75),
        0 0 16px rgba(192,57,43,0.55),
        0 0 34px rgba(122,26,26,0.4),
        0 0 60px rgba(122,26,26,0.22);
    animation: testiNeonFlicker 5s ease-in-out infinite;
}

/* ── Magazine layout — thẻ phản hồi "float" lệch tầng, không đều hàng ── */
.testi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px; align-items: start; padding-top: 8px;
}
.testi-card {
    --mag-y: 0px; --mag-r: 0deg;
    background: #fff; border: 1px solid rgba(122,26,26,0.1);
    border-radius: 8px; padding: 36px 32px; position: relative;
    box-shadow: 0 22px 44px -18px rgba(122,26,26,0.22), 0 6px 16px -6px rgba(0,0,0,0.08);
    opacity: 0; transform: translateY(calc(var(--mag-y) + 34px)) rotate(var(--mag-r));
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
}
.testi-card:nth-child(3n+2) { --mag-y: 30px; --mag-r: -0.6deg; }
.testi-card:nth-child(3n+3) { --mag-y: 12px; --mag-r: 0.8deg; }
.testi-card.testi-visible {
    opacity: 1; transform: translateY(var(--mag-y)) rotate(var(--mag-r));
}
/* Animation float chỉ chạy khi card thực sự trong viewport (xem IntersectionObserver ở
   _DashboardTestimonialsPartial.cshtml) — tránh N card cùng animate vô hạn mãi mãi dù đã
   cuộn qua khỏi màn hình, nguyên nhân gây giật/lag mobile do liên tục repaint/composite. */
.testi-card.testi-visible.testi-float-active {
    animation: testiFloat 6.5s ease-in-out infinite;
    animation-delay: calc(var(--mag-y) * 0.015s);
}
.testi-card:nth-child(2) { transition-delay: 0.1s; }
.testi-card:nth-child(3) { transition-delay: 0.2s; }
@keyframes testiFloat {
    0%, 100% { transform: translateY(var(--mag-y)) rotate(var(--mag-r)); }
    50% { transform: translateY(calc(var(--mag-y) - 12px)) rotate(var(--mag-r)); }
}
.testi-card:hover {
    animation-play-state: paused;
    transform: translateY(calc(var(--mag-y) - 6px)) rotate(0deg) !important;
    box-shadow: 0 30px 56px -16px rgba(122,26,26,0.3), 0 10px 22px -6px rgba(0,0,0,0.1);
}
.testi-card::after { content:''; position:absolute; bottom:0; left:0; width:0; height:2px; background:#7a1a1a; transition:width 0.4s ease; }
.testi-card:hover::after { width:100%; }
.testi-stars { color: #7a1a1a; font-size: 13px; letter-spacing: 3px; margin-bottom: 18px; }
.testi-quote {
    font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic;
    color: #2c2c2c; line-height: 1.9; margin: 0 0 24px;
}
.testi-divider { width: 30px; height: 1px; background: rgba(122,26,26,0.35); margin-bottom: 18px; }
.testi-name { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; color: #1a1a1a; }
.testi-project { font-size: 10px; letter-spacing: 0.1em; color: rgba(44,44,44,0.45); margin-top: 3px; }
@media (max-width: 900px) {
    .testi-grid { grid-template-columns: 1fr; gap: 16px; }
    .testi-card, .testi-card:nth-child(3n+2), .testi-card:nth-child(3n+3) { --mag-y: 0px; --mag-r: 0deg; }
}

/* ── MARKET INSIGHTS STRIP — Dark navy with gold identity ── */
.insights-section {
    background:
        linear-gradient(180deg, rgba(11,21,32,0.88) 0%, rgba(11,21,32,0.94) 55%, #0b1520 100%),
        url('/uploads/backgrounds/tintuc-thitruong-skyline-song.jpg') !important;
    background-size: auto, cover !important;
    background-position: center, center 35% !important;
    background-repeat: no-repeat, no-repeat !important;
    padding: 72px 8vw 64px;
    border-top: none;
    position: relative;
}
.insights-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; flex-wrap: wrap; gap: 16px; }

/* ── Neon / highlight cho tiêu đề "Tin Tức & Thị Trường" ── */
.insights-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem,5vw,4.8rem);
    font-weight: 300;
    color: #f0ece4;
    margin: 0;
    line-height: 1.1;
    position: relative;
    width: fit-content;
    text-shadow: none !important;
    animation: none !important;
}
/*.insights-title::before {
    content: '';
    position: absolute; left: -6%; right: -6%; top: 40%; bottom: -10%;
    background: radial-gradient(ellipse 60% 100% at 50% 60%, rgba(212,184,120,0.22), transparent 72%);
    filter: blur(8px);
    z-index: -1;
    pointer-events: none;
}*/
.insights-title em {
    font-style: italic; font-weight: 700; color: #f5e07a;
}
.insights-link {
    font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700;
    letter-spacing: 0.3em; text-transform: uppercase; color: rgba(212,184,120,0.7);
    text-decoration: none; display: flex; align-items: center; gap: 8px;
    transition: color 0.2s; white-space: nowrap;
}
.insights-link:hover { color: #d4b878; }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(212,184,120,0.08); }
.insight-card {
    background: #0f1d2e; padding: 32px 28px; position: relative; overflow: hidden;
    cursor: pointer; transition: background 0.3s;
    border: none;
}
.insight-card:hover { background: #162540; }
.insight-card:hover .insight-card-title { color: #d4b878; }
.insight-card::before { content:''; position:absolute; top:0; left:0; width:0; height:2px; background:linear-gradient(90deg,#d4b878,#c9a227); transition:width 0.4s ease; }
.insight-card:hover::before { width:100%; }
.insight-tag {
    font-family: 'Montserrat', sans-serif; font-size: 8px; font-weight: 800;
    letter-spacing: 0.4em; text-transform: uppercase;
    color: rgba(212,184,120,0.6); margin-bottom: 14px;
    display: inline-flex; align-items: center; gap: 6px;
}
.insight-tag::before { content:''; display:inline-block; width:16px; height:1px; background:rgba(212,184,120,0.3); }
.insight-card-title {
    font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400;
    color: #f0ece4; line-height: 1.5; margin: 0 0 16px;
    transition: color 0.3s;
}
.insight-card-excerpt {
    font-family: 'Inter', sans-serif; font-size: 12px; color: rgba(240,236,228,0.45);
    line-height: 1.8; margin: 0 0 20px;
}
.insight-card-meta {
    font-size: 9px; letter-spacing: 0.2em; color: rgba(212,184,120,0.5);
    text-transform: uppercase; font-weight: 600;
}
@media (max-width: 900px) { .insights-grid { grid-template-columns: 1fr; } }

/* ── HERO CTA BUTTONS ── */
.hero-cta-row {
    position: absolute; bottom: 80px; left: 8vw; z-index: 12;
    display: flex; align-items: center; gap: 16px;
    opacity: 0;
    animation: heroCTAIn 0.8s ease 3.4s forwards;
}
@keyframes heroCTAIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
.hero-cta-btn {
    display: inline-flex; align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 0.3em;
    text-transform: uppercase; cursor: pointer;
    padding: 14px 30px; border-radius: 0;
    transition: all 0.25s ease; text-decoration: none;
}
.hero-cta-primary {
    background: #d4b878; color: #0a0a0a; border: 1px solid #d4b878;
}
.hero-cta-primary:hover { background: #fff; border-color: #fff; color: #0a0a0a; }
.hero-cta-ghost {
    background: transparent; color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.35);
}
.hero-cta-ghost:hover { border-color: #d4b878; color: #d4b878; }
@keyframes heroGoldShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.hero-gold-text {
    background: linear-gradient(90deg, #d4b878 0%, #f0d99a 30%, #d4b878 50%, #c5a86a 70%, #d4b878 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroGoldShimmer 4s linear infinite;
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,184,120,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(212,184,120,0); }
}
.hero-cta-primary { animation: ctaPulse 2.5s ease-in-out infinite; }

/* ── HERO SCROLL INDICATOR ── */
.hero-scroll-indicator {
    position: absolute; bottom: 32px; right: 8vw; z-index: 11;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; animation: heroCTAIn 0.8s ease 3.6s forwards;
}
.hero-scroll-line {
    width: 1px; height: 52px;
    background: linear-gradient(to bottom, transparent, rgba(212,184,120,0.7));
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.1)} }
.hero-scroll-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px; font-weight: 700; letter-spacing: 0.4em;
    color: rgba(212,184,120,0.6); writing-mode: vertical-rl; text-orientation: mixed;
}

/* ── HERO TRUST BAR — strip độc lập giữa hero và section tiếp theo ── */
.hero-trust-bar {
    display: flex; align-items: center; justify-content: center; gap: 0;
    background: #111; border-bottom: 1px solid rgba(212,184,120,0.15);
    padding: 22px 40px; flex-shrink: 0;
    opacity: 0; animation: heroCTAIn 0.8s ease 3.8s forwards;
}
.htb-item {
    display: flex; flex-direction: column; align-items: center;
    padding: 0 40px;
}
.htb-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 600; line-height: 1;
    color: #d4b878; letter-spacing: 0.02em;
}
.htb-label {
    font-size: 9px; font-weight: 600; letter-spacing: 0.3em;
    text-transform: uppercase; color: rgba(255,255,255,0.5);
    margin-top: 5px;
}
.htb-divider { width: 1px; height: 36px; background: rgba(212,184,120,0.2); flex-shrink:0; }
@media (max-width: 767px) {
    .hero-editorial-overlay { padding: 0 6vw 14vh; }
    .hero-headline { font-size: clamp(2rem, 10vw, 3.5rem); }
    .hero-trust-bar { padding: 12px 16px; gap:0; }
    .htb-item { padding: 0 16px; }
    .htb-num { font-size: 1.3rem; }
    .htb-label { font-size: 8px; letter-spacing: 0.15em; }
    .hero-scroll-indicator { display: none; }
    .hero-cta-row { bottom: 18px; left: 4vw; gap: 6px; }
    .hero-cta-btn { padding: 7px 11px; font-size: 8.5px; letter-spacing: 0.12em; }
    .hero-cta-btn svg { width: 9px; height: 9px; margin-left: 4px !important; }
}

.fab-delete-zone {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 52px;
    background: rgba(217, 4, 41, 0.15);
    border: 2px dashed #d90429;
    color: #d90429;
    border-radius: 40px;
    z-index: 2000;
    font-size: 12px;
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
}

.fab-delete-zone.zone-visible {
    bottom: 75px;
    opacity: 1;
}

.fab-delete-zone.zone-active {
    background: #d90429 !important;
    color: #ffffff !important;
    scale: 1.1;
    box-shadow: 0 0 20px rgba(219, 4, 41, 0.6);
}


/* ═══════════════════════════════════════════════════════
   OGROUP-INSPIRED DESIGN SYSTEM — 5 PRIORITY UPGRADES
   Black / White / Gold — 3 colors only
═══════════════════════════════════════════════════════ */

/* ── 1. NAV HOVER UNDERLINE ANIMATION (::after slide) ── */
#main-header .nav-btn {
    position: relative;
    overflow: visible;
}
#main-header .nav-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #d4b878;
    transition: width 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}
#main-header .nav-btn:hover::after {
    width: calc(100% - 20px);
}
#main-header .nav-btn.active-nav::after {
    width: calc(100% - 20px);
}
/* Ghi đè hover cũ: bỏ background fill, chỉ underline + màu */
#main-header .nav-btn:hover {
    background: transparent !important;
    text-shadow: none !important;
}

/* ── 2. LINE-HEIGHT & LETTER-SPACING BODY TEXT ── */
body {
    line-height: 1.75;
    letter-spacing: 0.01em;
}
p {
    line-height: 1.82;
    letter-spacing: 0.018em;
}
.workspace-scroll-container p,
.workspace-scroll-container li {
    line-height: 1.85;
    letter-spacing: 0.02em;
}
/* Labels / small uppercase — spacing rộng hơn */
.workspace-scroll-container [style*="letter-spacing:0.1"],
.workspace-scroll-container [style*="letter-spacing: 0.1"] {
    letter-spacing: 0.18em !important;
}

/* ── 3. COLOR PALETTE: WHITE / DARK TEXT / GOLD ACCENT ── */
/* 🎯 ĐÃ SỬA: nền trắng + chữ tối tương phản thay cho nền đen/chữ vàng nhạt (khó đọc) */

/* Filter partial card — bên trong onewayCoreFilterWrapper */
#onewayCoreFilterWrapper .card,
#onewayCoreFilterWrapper .layout-search-card {
    background: #ffffff !important;
    border-color: rgba(212,184,120,0.3) !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
}
#onewayCoreFilterWrapper .form-control,
#onewayCoreFilterWrapper .form-select {
    background: #ffffff !important;
    color: #1a1207 !important;
    border-color: rgba(212,184,120,0.35) !important;
}
#onewayCoreFilterWrapper .form-control::placeholder {
    color: rgba(26,18,7,0.45) !important;
}
#onewayCoreFilterWrapper .text-muted,
#onewayCoreFilterWrapper .text-secondary {
    color: rgba(26,18,7,0.55) !important;
}
#onewayCoreFilterWrapper .btn-outline-dark,
#onewayCoreFilterWrapper .btn-outline-secondary {
    border-color: rgba(212,184,120,0.6) !important;
    color: #8a6d1f !important;
    background: transparent !important;
}
#onewayCoreFilterWrapper .btn-outline-dark:hover,
#onewayCoreFilterWrapper .btn-outline-secondary:hover {
    background: rgba(212,184,120,0.1) !important;
}
#onewayCoreFilterWrapper .border-top,
#onewayCoreFilterWrapper .dropdown-divider {
    border-color: rgba(212,184,120,0.2) !important;
}
#onewayCoreFilterWrapper .bg-light {
    background: #f8f6f0 !important;
}
#onewayCoreFilterWrapper .advanced-search-bar {
    background: #ffffff !important;
    border-color: rgba(212,184,120,0.35) !important;
}
#onewayCoreFilterWrapper .adv-search-divider {
    background-color: rgba(212,184,120,0.3) !important;
}
#onewayCoreFilterWrapper .text-dark,
#onewayCoreFilterWrapper h5,
#onewayCoreFilterWrapper h6 {
    color: #1a1207 !important;
}

/* ── 4. HERO SECTION — full-bleed backdrop filter ── */
.hero-editorial-overlay {
    backdrop-filter: blur(0.5px);
    -webkit-backdrop-filter: blur(0.5px);
}
/* Đảm bảo hero overlay luôn visible khi có content */
.hero-editorial-overlay:not(:empty) {
    visibility: visible !important;
    pointer-events: auto;
}

/* ── 5. DIVIDERS — 1px gold hairline thay vì xám ── */
/* Global: bất kỳ border xám nào trong workspace → gold hairline */
.workspace-scroll-container hr {
    border: none;
    border-top: 1px solid rgba(212,184,120,0.15) !important;
    opacity: 1;
}
/* Section borders */
.workspace-scroll-container [style*="border-bottom:1px solid #e8ecf0"],
.workspace-scroll-container [style*="border-bottom: 1px solid #e8ecf0"],
.workspace-scroll-container [style*="border-bottom:2px solid #e2e8f0"],
.workspace-scroll-container [style*="border-bottom: 2px solid #e2e8f0"] {
    border-bottom-color: rgba(212,184,120,0.15) !important;
}
/* Project card border-left strips */
.workspace-scroll-container [style*="border-left: 3px solid"],
.workspace-scroll-container [style*="border-left:3px solid"] {
    /* keep colored per project — gold only for generic ones */
}
/* Table-specific: thead bottom border */
#tableContent thead tr {
    border-bottom-color: rgba(212,184,120,0.2) !important;
}
/* Dropdown dividers in nav */
#main-header .nav-dropdown-menu li a,
#main-header .nav-dropdown-menu li button {
    border-bottom-color: rgba(212,184,120,0.1) !important;
}
/* Contact section list items */
#contactTeamSection .ct-cards-strip::before,
.section-divider,
[class*="border-slate"],
[class*="border-gray"] {
    border-color: rgba(212,184,120,0.15) !important;
}

/* ── FILTER: z-index + contrast ── */
#projectDropdownWrapper { position: relative; z-index: 1060; }
#tableSortDropdownWrapper { position: relative; z-index: 1055; }
.layout-search-card { position: relative; z-index: 50; overflow: visible !important; }
#onewayCoreFilterWrapper .card, #onewayCoreFilterWrapper .layout-search-card { overflow: visible !important; }

/* Search input contrast */
#onewayCoreFilterWrapper .premium-search-input { color: #1a1207 !important; font-weight: 400; background: transparent; border: none; box-shadow: none; }
#onewayCoreFilterWrapper .premium-search-input::placeholder { color: rgba(26,18,7,0.45) !important; }
#onewayCoreFilterWrapper .premium-search-input:focus { background: transparent !important; box-shadow: none !important; }
#onewayCoreFilterWrapper .text-secondary { color: #8a6d1f !important; }
#onewayCoreFilterWrapper .text-muted { color: rgba(26,18,7,0.55) !important; }
#onewayCoreFilterWrapper .form-select option { background: #fff; color: #1a1207; }
/* Dropdown caret & icon */
#onewayCoreFilterWrapper .dropdown-toggle::after { border-top-color: #8a6d1f; }
/* Voice icon */
#onewayCoreFilterWrapper #voiceIcon { color: #8a6d1f !important; }
/* Border-top separator giữa search bar và project row */
#onewayCoreFilterWrapper .border-top { border-color: rgba(212,184,120,0.2) !important; }
/* Phân khu chips */
#onewayCoreFilterWrapper .border-start.border-primary { border-color: rgba(212,184,120,0.4) !important; }
/* Hover cho buttons */
#onewayCoreFilterWrapper .btn:hover { opacity: 0.85; }

/* ── FILTER BUTTONS: nền trắng chữ tối, override toàn bộ Bootstrap ── */
#onewayCoreFilterWrapper .btn,
#onewayCoreFilterWrapper button.btn {
    background: #ffffff !important;
    color: #1a1207 !important;
    border-color: rgba(212,184,120,0.4) !important;
    box-shadow: none !important;
}
/* Khoảng giá dropdown-toggle bên trong search pill — nền trong suốt để hòa vào pill */
#onewayCoreFilterWrapper .advanced-search-bar .btn,
#onewayCoreFilterWrapper .advanced-search-bar button.btn {
    background: transparent !important;
    border: none !important;
    color: #1a1207 !important;
}
/* Card chính toàn bộ trắng */
#onewayCoreFilterWrapper .ow-filter-card,
#onewayCoreFilterWrapper .layout-search-card {
    background: #ffffff !important;
    border: 1px solid rgba(212,184,120,0.3) !important;
}

/* ── SECTION ANIMATIONS — controlled entirely by GSAP engine (ow-animations) ── */
/* CSS fallback: nếu GSAP chưa chạy, mọi thứ vẫn hiển thị bình thường */
#panelForBuyers, #panelAboutOneway,
#contactTeamSection .ct-title-panel,
#contactTeamSection .ct-cards-strip {
    will-change: transform, opacity;
}

/* ═══════════════════════════════════════════════════════
   AESTHETIC IMPROVEMENTS — 2026-06-22
   1. Floating CTA  2. Micro-interactions  3. Mobile
═══════════════════════════════════════════════════════ */

/* ── 1. FLOATING CTA BUTTON ── */
#ow-float-cta {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0a0a0a;
    border: 1.5px solid var(--ow-gold);
    color: var(--ow-gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 14px 22px;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.25s, color 0.25s;
    white-space: nowrap;
}
#ow-float-cta.ow-cta-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
#ow-float-cta:hover {
    background: var(--ow-gold);
    color: #0a0a0a;
}
#ow-float-cta .ow-cta-icon {
    font-size: 13px;
    transition: transform 0.25s;
}
#ow-float-cta:hover .ow-cta-icon {
    transform: rotate(15deg) scale(1.15);
}

/* ── SHIMMER ANIMATED TEXT ── */
@keyframes textShimmer {
    0%   { background-position: -300% center; }
    100% { background-position: 300% center; }
}
.shimmer-gold {
    background: linear-gradient(90deg, #c9a227 0%, #f5e07a 35%, #d4b878 55%, #a07820 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s linear infinite;
    display: inline;
}
.shimmer-crimson {
    background: linear-gradient(90deg, #7a1a1a 0%, #c0392b 30%, #e05533 55%, #7a1a1a 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 4s linear infinite;
    display: inline;
}

/* ── 2. BENTO GRID BASE LAYOUT ── */
.featured-bento-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(3, minmax(200px, 26vh));
    gap: 8px;
}
.featured-bento-grid .bento-card:first-child {
    grid-row: 1 / span 3;
}
.bento-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #111;
}
.bento-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), filter 0.4s;
    filter: brightness(0.82);
}
.bento-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.62);
}
.featured-bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.18) 50%, transparent 100%);
    pointer-events: none;
}
.featured-bento-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    background: rgba(192,57,43,0.92);
    color: #fff;
    padding: 4px 12px;
    border-radius: 2px;
}
.featured-bento-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 20px 20px;
    color: #fff;
}
.bento-info-line {
    display: block;
    width: 32px;
    height: 2px;
    background: #d4b878;
    margin-bottom: 10px;
}
.bento-project {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(212,184,120,0.9);
    margin-bottom: 4px;
}
.bento-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 8px;
}
.bento-price {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #d4b878;
    border: 1px solid rgba(212,184,120,0.5);
    padding: 4px 12px;
    background: rgba(0,0,0,0.4);
}

/* ── 2. BENTO CARD MICRO-INTERACTIONS ── */
.featured-bento-grid .bento-card {
    outline: 1.5px solid transparent;
    transition: transform 0.65s cubic-bezier(0.16,1,0.3,1),
                box-shadow 0.4s,
                outline-color 0.35s;
}
.featured-bento-grid .bento-card:hover {
    outline-color: rgba(212,184,120,0.6);
}
.featured-bento-info .bento-price {
    transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
                background 0.3s,
                border-color 0.3s;
}
.featured-bento-grid .bento-card:hover .bento-price {
    transform: translateY(-3px);
    background: rgba(212,184,120,0.25) !important;
    border-color: rgba(212,184,120,0.9) !important;
}
.featured-bento-tag {
    transition: background 0.3s, color 0.3s;
}
.featured-bento-grid .bento-card:hover .featured-bento-tag {
    background: #fff;
    color: #0a0a0a;
}

/* ── 3. MOBILE RESPONSIVE ── */
@media (max-width: 767px) {
    /* Hero */
    .hero-video-container {
        height: calc(100svh - 56px) !important;
        max-height: none !important;
    }
    .fp-hero-video {
        object-fit: cover !important;
        width: 100% !important;
        height: 100% !important;
    }
    .hero-editorial-overlay {
        padding: 0 6vw 10vw !important;
        animation: heroCollapseMobile 1.4s cubic-bezier(0.4,0,0.2,1) 2.2s forwards !important;
    }
    @keyframes heroCollapseMobile {
        from { transform: scale(1); opacity: 1; }
        to   { transform: scale(0.68); opacity: 0.88; }
    }
    .hero-headline {
        font-size: clamp(1.6rem, 7.5vw, 2.6rem) !important;
    }

    /* Bento grid — stack thành 1 cột trên mobile */
    .featured-bento-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 6px !important;
    }
    .featured-bento-grid .bento-card:nth-child(n) {
        grid-column: 1 !important;
        grid-row: auto !important;
        border-radius: 0 !important;
        min-height: 320px;
    }

    /* For Buyers section */
    #forBuyerAboutSection {
        height: auto !important;
    }
    #panelForBuyers, #panelAboutOneway {
        min-height: 340px;
        padding: 40px 24px !important;
    }

    /* Section whitespace giảm trên mobile */
    #bentoCanhSection {
        padding: 20px 4vw 40px !important;
    }
    .fpw-title-bar {
        padding: 10px 20px 8px !important;
    }

    /* Floating CTA — nhỏ hơn trên mobile */
    #ow-float-cta {
        bottom: 20px;
        right: 16px;
        font-size: 9px;
        padding: 12px 16px;
        letter-spacing: 0.16em;
    }

    /* Tắt animation nặng trên mobile để tránh lag */
    #panelForBuyers, #panelAboutOneway {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ── SECTION RHYTHM — gold hairline separators ── */
#bentoCanhSection {
    border-top: 1px solid rgba(212,184,120,0.12);
}
#forBuyerAboutSection {
    border-top: 1px solid rgba(212,184,120,0.08);
}
#contactTeamSection {
    border-top: 1px solid rgba(212,184,120,0.15);
}

/* ── BRAND INTRO — breathing room ── */
.brand-intro-section {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

/* ── FEATURED PROJECT title bar — compact ── */
.fpw-title-bar {
    padding-top: 36px !important;
    padding-bottom: 24px !important;
}

/* ── BENTO card info — better padding ── */
.featured-bento-info {
    padding: 24px 26px !important;
}

/* ── BENTO GRID MICRO-INTERACTION override from home-dashboard ── */
.featured-bento-grid .bento-card {
    outline: none;
}
.featured-bento-grid .bento-card:hover {
    outline: none;
}

/* ══════════════════════════════════════════════════════
   OW DEPTH SYSTEM — 3D tilt + shine + multi-shadow
   Tạo chiều sâu vật lý cho card ảnh, phong cách ogroup
══════════════════════════════════════════════════════ */

/* Container depth perspective */
.ow-depth-wrap {
    perspective: 1200px;
    perspective-origin: center center;
}

/* Card: slow return transition khi rời chuột */
.ow-depth-card {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.75s cubic-bezier(0.23,1,0.32,1),
                box-shadow 0.55s cubic-bezier(0.23,1,0.32,1) !important;
}

/* Khi chuột hover: transition nhanh theo chuột */
.ow-depth-card.depth-tracking {
    transition: transform 0.08s linear,
                box-shadow 0.08s linear !important;
}

/* Shine layer — ánh sáng phản chiếu theo góc nghiêng */
.ow-depth-shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 8;
    border-radius: inherit;
    opacity: 0;
    /* background-position được cập nhật bằng JS thay vì rebuild toàn bộ gradient */
    background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255,255,255,0.2) 0%, transparent 65%);
    background-size: 200% 200%;
    transition: opacity 0.35s ease;
    mix-blend-mode: screen;
}

/* Bento card: CSS-only, không JS depth */

/* fpw-stage: inner parallax depth */
.fpw-stage {
    transform-origin: center center;
    overflow: hidden;
}
.fpw-stage .fpw-bg-layer {
    transition: transform 0.12s ease-out;
    will-change: transform;
}

/* forBuyerAbout panels: depth hover */
#panelForBuyers, #panelAboutOneway {
    transition: filter 0.3s, box-shadow 0.5s !important;
}
#panelForBuyers:hover, #panelAboutOneway:hover {
    box-shadow: inset 0 -120px 80px -40px rgba(0,0,0,0.6),
                0 20px 60px rgba(0,0,0,0.4) !important;
}

/* fl-card depth */
.fl-card.ow-depth-card:hover {
    transform: none; /* JS quản lý */
}

/* ══════════════════════════════════════════════════════
   MOBILE FULL-SCREEN MENU OVERLAY — Editorial Luxury
══════════════════════════════════════════════════════ */

/* ── Backdrop ── */
#ow-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9900;
}
#ow-mobile-menu.ow-mm-open {
    display: block;
}
#ow-mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: owBackdropIn 0.35s ease forwards;
}
@keyframes owBackdropIn {
    from { opacity: 0; } to { opacity: 1; }
}

/* ── Panel — slides in from right ── */
#ow-mobile-menu-panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: min(85vw, 380px);
    background: #050505;
    border-left: 1px solid rgba(212,184,120,0.15);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    animation: owPanelIn 0.42s cubic-bezier(0.16,1,0.3,1) forwards;
}
#ow-mobile-menu.ow-mm-closing #ow-mobile-menu-panel {
    animation: owPanelOut 0.32s cubic-bezier(0.4,0,1,1) forwards;
}
#ow-mobile-menu.ow-mm-closing #ow-mobile-menu-backdrop {
    animation: owBackdropIn 0.32s ease reverse forwards;
}
@keyframes owPanelIn {
    from { transform: translateX(100%); } to { transform: translateX(0); }
}
@keyframes owPanelOut {
    from { transform: translateX(0); } to { transform: translateX(100%); }
}

/* ── Panel header ── */
#ow-mm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid rgba(212,184,120,0.1);
    flex-shrink: 0;
}
#ow-mm-close {
    background: none; border: none; cursor: pointer;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.65; transition: opacity 0.2s;
}
#ow-mm-close:hover { opacity: 1; }

/* ── Nav list ── */
#ow-mm-list {
    list-style: none;
    padding: 24px 0 16px;
    margin: 0;
    flex: 1;
}
.ow-mm-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ow-mm-item > a {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 18px 28px;
    text-decoration: none;
    transition: background 0.2s;
}
.ow-mm-item > a:hover, .ow-mm-item > a:active {
    background: rgba(212,184,120,0.06);
}
.ow-mm-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: rgba(212,184,120,0.5);
    flex-shrink: 0;
    margin-top: 2px;
}
.ow-mm-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.ow-mm-item > a:hover .ow-mm-label { color: #d4b878; }
.ow-mm-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    background: #d4b878;
    color: #0a0a0a;
    padding: 1px 7px;
    margin-left: 8px;
    vertical-align: middle;
    font-style: normal;
}

/* ── Sub-menu ── */
.ow-mm-sub {
    list-style: none;
    padding: 0 0 12px 52px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ow-mm-sub li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.70);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.2s;
}
.ow-mm-sub li a:hover { color: #d4b878; }

/* ── Footer ── */
#ow-mm-footer {
    padding: 20px 28px 28px;
    border-top: 1px solid rgba(212,184,120,0.1);
    flex-shrink: 0;
}
#ow-mm-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(212,184,120,0.7);
    text-decoration: none;
    margin-bottom: 10px;
}
#ow-mm-phone:hover { color: #d4b878; }
#ow-mm-copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.50);
    margin: 0;
}

/* ── Hamburger button state when open ── */
.ow-mm-open ~ * #ow-mobile-hamburger .ow-ham-line:nth-child(1),
body.ow-mm-active #ow-mobile-hamburger .ow-ham-line:nth-child(1) {
    transform: rotate(-45deg) translateY(3px);
}
body.ow-mm-active #ow-mobile-hamburger .ow-ham-line:nth-child(2) { opacity: 0; }
body.ow-mm-active #ow-mobile-hamburger .ow-ham-line:nth-child(3) {
    transform: rotate(45deg) translateY(-3px);
}

/* ══════════════════════════════════════════════════════
   MOBILE BOTTOM NAV — Editorial 5-item
══════════════════════════════════════════════════════ */

#ow-mobile-bottom-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9800;
    height: 64px;
    background: rgba(5,5,5,0.97);
    border-top: 1px solid rgba(212,184,120,0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

/* 🎯 Bottom nav (z-index 9800) cao hơn modal Bootstrap (1055) nên đè lên footer của mọi
   modal trên mobile — che mất nút "Áp Dụng Bộ Lọc" của bộ lọc nâng cao, nút Lưu của form
   thêm căn, v.v. Ẩn bottom nav khi có modal/offcanvas đang mở (Bootstrap tự gắn class
   modal-open lên body; offcanvas dùng .offcanvas.show). */
body.modal-open #ow-mobile-bottom-nav,
body:has(.offcanvas.show) #ow-mobile-bottom-nav,
body:has(#mh-offcanvas.open) #ow-mobile-bottom-nav {
    display: none;
}

.ow-mbn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    background: transparent !important;
    border: none !important;
    color: rgba(255,255,255,0.88);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
    padding: 8px 4px;
    position: relative;
    cursor: pointer;
}
.ow-mbn-item:active, .ow-mbn-item.active-pane {
    color: #d4b878;
}
.ow-mbn-icon {
    font-size: 15px;
    margin-bottom: 1px;
}
.ow-mbn-label {
    font-size: 8.5px;
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.ow-mbn-badge {
    position: absolute;
    top: 6px;
    right: calc(50% - 18px);
    background: #d4b878;
    color: #0a0a0a;
    font-size: 7px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    padding: 0 4px;
    line-height: 14px;
    min-width: 14px;
    text-align: center;
}

/* CTA button — raised gold circle */
.ow-mbn-cta {
    color: #d4b878;
}
.ow-mbn-cta-inner {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #d4b878;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    box-shadow: 0 0 0 4px rgba(5,5,5,0.97), 0 0 0 5px rgba(212,184,120,0.3);
    margin-top: -14px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.ow-mbn-cta:active .ow-mbn-cta-inner {
    transform: scale(0.92);
}

/* ── Hamburger lines in bottom nav ── */
.ow-mbn-ham {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 2px 0;
}
.ow-mbn-ham span {
    width: 18px;
    height: 1.5px;
    background: currentColor;
    display: block;
    border-radius: 0;
}

/* ── Push content above bottom nav on mobile ── */
@media (max-width: 767px) {
    /* Áp dụng cho TẤT CẢ workspace pane (cả fixed-scroll lẫn workspace-scroll-container)
       để nội dung cuối không bị bottom nav (64px) che khuất. */
    section[id^="workspace-"],
    #workspace-dashboard-pane,
    .workspace-scroll-container {
        padding-bottom: 80px !important;
    }
    /* Ẩn FAB "Đăng ký tư vấn" trên mobile — nút CTA giữa bottom nav đã thay thế chức năng này.
       Nút "Trợ Lý AI" (#onewayMobileFabWrapper) KHÔNG có tương đương trong bottom nav nên vẫn
       giữ hiển thị, chỉ đẩy xuống thấp hơn để nằm gọn phía trên bottom nav (xem bên dưới). */
    #owTuVanFabWrapper,
    #fabDeleteZone {
        display: none !important;
    }
    /* Đặt lại vị trí Trợ Lý AI ngay phía trên bottom nav (cao 64px + safe-area) thay vì
       bottom:140px (giá trị dành cho desktop, không có bottom nav che phía dưới). */
    #onewayMobileFabWrapper {
        bottom: calc(64px + env(safe-area-inset-bottom, 0px) + 14px) !important;
    }
}

/* ── EDITORIAL FOOTER — mobile stack ── */
@media (max-width: 768px) {
    #ow-editorial-footer > div:first-child {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        padding: 40px 6vw 28px !important;
    }
}

/* ── TEAM CARDS — portrait editorial ── */
.ct-card {
    aspect-ratio: unset; /* height driven by parent strip */
}
/* Mobile: team strip scroll horizontally instead of collapsing */
@media (max-width: 640px) {
    .ct-cards-strip {
        height: 420px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
    }
    .ct-track {
        animation: none !important; /* disable marquee on mobile, show static */
        width: auto !important;
        display: flex !important;
    }
    .ct-card {
        flex: 0 0 72vw !important;
        scroll-snap-align: start !important;
    }
}

/* ── FOR BUYERS / ABOUT — eyebrow tighter weight ── */
#panelForBuyers span:first-child,
#panelAboutOneway span:first-child {
    font-weight: 400 !important;
    letter-spacing: 0.42em !important;
}

/* ── SECTION SCROLL SEPARATOR — About Oneway quote panel ── */
#panelAboutOneway blockquote p {
    text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .hero-editorial-overlay {
        animation: none !important;
        transform: scale(0.36) !important;
    }
    .featured-bento-grid .bento-card,
    .featured-bento-grid .bento-card img,
    .featured-bento-info .bento-price,
    .featured-bento-tag {
        transition: none !important;
    }
}



/* ══════════════════════════════════════════════════════════════
   OW LUXURY INTERACTIONS — ogroup.com editorial style
   1. Custom Cursor  2. Magnetic Btn  3. Heading Reveal
   4. Enhanced Bento  5. Stats Counter
══════════════════════════════════════════════════════════════ */

/* ─── 1. CUSTOM CURSOR (đã tắt để giảm lag) ─────────────────── */
#ow-cursor-dot, #ow-cursor-ring { display: none !important; }

#ow-cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 7px; height: 7px;
    background: var(--ow-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    opacity: 0;
    will-change: transform;
    transition: width .22s, height .22s, background .22s, border-radius .22s, opacity .3s;
}
#ow-cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(212,184,120,.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999998;
    opacity: 0;
    will-change: transform;
    transition: width .38s cubic-bezier(.23,1,.32,1),
                height .38s cubic-bezier(.23,1,.32,1),
                border-color .3s, background .3s, opacity .4s;
}

/* Hover interactive elements */
body.cur-hover #ow-cursor-dot {
    width: 13px; height: 13px;
    background: rgba(255,255,255,.9);
}
body.cur-hover #ow-cursor-ring {
    width: 52px; height: 52px;
    border-color: rgba(212,184,120,.35);
    background: rgba(212,184,120,.07);
}
/* Click flash */
body.cur-click #ow-cursor-dot {
    width: 4px; height: 4px;
    background: #fff;
}
body.cur-click #ow-cursor-ring {
    width: 22px; height: 22px;
    border-color: rgba(255,255,255,.7);
}
/* Text input cursor: vertical bar */
body.cur-text #ow-cursor-dot {
    width: 2px; height: 22px;
    border-radius: 1px;
    background: var(--ow-gold);
}
body.cur-text #ow-cursor-ring {
    opacity: 0 !important;
}

/* ─── 2. MAGNETIC BUTTONS ───────────────────────────────────── */
.ow-magnetic {
    position: relative;
    transition: transform .55s cubic-bezier(.23,1,.32,1) !important;
}
/* small glow on hover */
.ow-magnetic:hover {
    box-shadow: 0 0 28px rgba(212,184,120,.22);
}

/* ─── 3. HEADING WORD REVEAL (slide-up from clip) ─────────── */
.ow-reveal-wrap {
    display: block;
    overflow: hidden;
    line-height: 1.05; /* prevent clipping descenders */
    padding-bottom: .06em;
}
.ow-reveal-inner {
    display: block;
    transform: translateY(105%);
    transition: transform 1.05s cubic-bezier(.16,1,.3,1);
}
.ow-reveal-inner.revealed {
    transform: translateY(0);
}
/* staggered children */
.ow-reveal-inner:nth-child(2) { transition-delay: .12s; }
.ow-reveal-inner:nth-child(3) { transition-delay: .22s; }
.ow-reveal-inner:nth-child(4) { transition-delay: .32s; }

/* Eyebrow line slide-in (horizontal, from left) */
.ow-eyebrow-reveal {
    transform: translateX(-30px);
    opacity: 0;
    transition: transform .85s cubic-bezier(.16,1,.3,1),
                opacity .65s ease;
}
.ow-eyebrow-reveal.revealed {
    transform: translateX(0);
    opacity: 1;
}

/* ─── 4. ENHANCED BENTO CARD INFO PANEL ────────────────────── */
.featured-bento-info {
    transition: transform .55s cubic-bezier(.23,1,.32,1),
                opacity .4s ease !important;
}
.featured-bento-grid .bento-card .featured-bento-info {
    transform: translateY(18px);
    opacity: .85;
}
.featured-bento-grid .bento-card:hover .featured-bento-info,
.featured-bento-grid .bento-card.depth-tracking .featured-bento-info {
    transform: translateY(0);
    opacity: 1;
}
/* Shine bar on bento info */
.bento-info-line {
    display: block;
    width: 0;
    height: 1px;
    background: var(--ow-gold);
    margin-bottom: 8px;
    transition: width .6s cubic-bezier(.23,1,.32,1);
}
.featured-bento-grid .bento-card:hover .bento-info-line,
.featured-bento-grid .bento-card.depth-tracking .bento-info-line {
    width: 36px;
}

/* ─── 5. STATS COUNTER ─────────────────────────────────────── */
.bib-stat-num {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

/* ─── 6. PANE HERO — thu gọn padding to-đùng-kích-thước-PC trên mobile ───
   Dùng chung cho các pane: Cho Thuê, Tìm Thuê, Đăng Bán, Đăng Cho Thuê,
   Đăng Tìm Thuê, Tìm Mua, Tin Tức — trước đây padding:52px 40px 36px không
   có override mobile nào, ăn gần 1/4 chiều rộng màn hình 375px chỉ để làm
   khoảng trắng 2 bên. */
@media (max-width: 767.98px) {
    .ow-pane-hero {
        padding: 28px 20px 20px !important;
    }
}


/* Auto-extracted from Razor views — do not edit inline styles in .cshtml */

/* ═══ FEATURED LISTINGS (theo ảnh mẫu Oppenheim) ═══ */
#featured-projects-wrapper {
    background: #000;
    padding-bottom: 0;
}

/* ═══ FL Header ═══ */
.fl-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 72px 40px 36px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.fl-header-left { flex: 1; }
.fl-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.45em;
    color: #c0392b;
    text-transform: uppercase;
    margin-bottom: 6px;
    border-bottom: 2px solid #c0392b;
    padding-bottom: 5px;
    width: fit-content;
}
.fl-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1;
}
.fl-title strong { font-weight: 800; }
.fl-viewall-btn {
    flex-shrink: 0;
    background: #c0392b;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 14px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
    white-space: nowrap;
}
.fl-viewall-btn:hover { background: #a93226; }

/* ═══ FL Card Grid ═══ */
.fl-row {
    display: flex;
    gap: 8px;
    padding: 8px 8px 0;
}
.fl-row:last-of-type { padding-bottom: 8px; }
.fl-row-large .fl-card { height: 50vh; min-height: 300px; }
.fl-row-small .fl-card { height: 34vh; min-height: 220px; }
.fl-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    background: #1a1a1a;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.fl-card:hover { transform: scale(1.015); }
.fl-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), filter 0.4s;
    filter: brightness(0.72);
}
.fl-card:hover .fl-card-img {
    transform: scale(1.06);
    filter: brightness(0.55);
}
.fl-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #e8e8e8;
    color: #bbb;
}
.fl-card-placeholder i { font-size: 48px; }
.fl-card-placeholder span { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; }
.fl-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 28px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.05) 55%, transparent 100%);
}
.fl-card-eyebrow {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.45em;
    color: #c0392b;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.fl-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.2vw, 1.9rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

/* ═══ TEAM SECTION — OPPENHEIM STYLE ═══ */
.team-member-section {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 100vh;
    width: 100%;
    background: #f5f2ee;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.team-member-section.team-member-reverse {
    grid-template-columns: 58% 42%;
    background: #fff;
}
.team-member-section.team-member-reverse .team-col-identity { order: 2; }
.team-member-section.team-member-reverse .team-col-profile { order: 1; border-right: 1px solid rgba(0,0,0,0.08); border-left: none; }
.team-col-identity {
    display: flex;
    flex-direction: column;
    padding: 64px 48px 0;
    overflow: hidden;
}
.team-role-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5em;
    color: var(--ow-gold);
    text-transform: uppercase;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(212,184,120,0.25);
    padding-bottom: 8px;
    width: fit-content;
}
.team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.0;
    letter-spacing: -0.01em;
    margin: 0 0 20px;
}
.team-gold-line { width: 60px; height: 2px; background: #d4b878; margin-bottom: 28px; }
.team-avatar-wrap {
    flex: 1;
    overflow: hidden;
    min-height: 380px;
    margin: 0 -48px;
}
.team-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.team-member-section:hover .team-avatar-img { transform: scale(1.03); }
.team-col-profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
    border-left: 1px solid rgba(0,0,0,0.08);
}
.team-profile-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.4em;
    color: #d4b878;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.team-profile-content { font-size: 15px; line-height: 1.85; color: #374151; }
.team-profile-content p { margin-bottom: 18px; }
.team-contact-btn {
    display: inline-flex;
    align-items: center;
    background: #0a0a0a;
    color: #d4b878;
    border: 1px solid rgba(212,184,120,0.4);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 14px 28px;
    cursor: pointer;
    margin-top: 32px;
    align-self: flex-start;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.team-contact-btn:hover { background: #d4b878; color: #0a0a0a; border-color: #d4b878; }
@media (max-width: 900px) {
    .team-member-section, .team-member-section.team-member-reverse {
        grid-template-columns: 1fr; min-height: auto;
    }
    .team-member-section.team-member-reverse .team-col-identity { order: 0; }
    .team-member-section.team-member-reverse .team-col-profile { order: 1; border-right: none; border-left: none; border-top: 1px solid rgba(0,0,0,0.08); }
    .team-col-identity { padding: 48px 20px 0; }
    .team-avatar-wrap { margin: 0 -20px; min-height: 260px; }
    .team-col-profile { padding: 36px 20px; border-left: none; border-top: 1px solid rgba(0,0,0,0.08); }
    .fl-row { flex-direction: column; gap: 6px; }
    .fl-row-large .fl-card, .fl-row-small .fl-card { height: 52vw; min-height: 200px; }
    .fl-header { padding: 44px 20px 28px; flex-direction: column; align-items: flex-start; gap: 18px; }
    .fl-detail-grid { grid-template-columns: 1fr !important; }
}

/* — Mỗi project section chiếm full viewport — */
.project-full-section {
    display: grid;
    grid-template-columns: 240px 1fr 420px;
    min-height: 100vh;
    width: 100%;
    border-top: 1px solid rgba(212,184,120,0.12);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.project-full-section:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(212,184,120,0.12), 0 8px 24px rgba(0,0,0,0.4);
    z-index: 2;
}
.project-full-section.project-reverse {
    grid-template-columns: 420px 1fr 240px;
}
.project-full-section.project-reverse .proj-col-name { order: 3; border-left: 1px solid rgba(212,184,120,0.12); border-right: none; }
.project-full-section.project-reverse .proj-col-info { order: 1; }

.proj-col {
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.proj-col-name {
    background: #1a0a2e;
    color: #fff;
    border-right: 1px solid rgba(212,184,120,0.2);
    position: sticky;
    top: 0;
    align-self: start;
    min-height: 100vh;
    justify-content: flex-start;
    padding-top: 80px;
}
.proj-col-overview {
    background: #160b30;
    padding: 56px 40px;
    overflow-y: auto;
}
.proj-col-info {
    background: #1e1040;
    border-left: 1px solid rgba(212,184,120,0.12);
}

.proj-eyebrow {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.4em;
    color: #d4b878;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}
.proj-name-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: 0.02em;
    margin: 0 0 20px;
    word-break: break-word;
}
.proj-gold-line {
    width: 48px;
    height: 2px;
    background: #d4b878;
}

.proj-gallery {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}
.proj-gallery-main-wrap {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    background: #1a0a2e;
}
.proj-gallery-main-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.proj-gallery-main-wrap:hover img { transform: scale(1.05); }
.proj-gallery-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    overflow-x: auto;
    padding-bottom: 3px;
}
.proj-gallery-thumbs::-webkit-scrollbar { height: 2px; }
.proj-gallery-thumbs::-webkit-scrollbar-thumb { background: rgba(212,184,120,0.4); border-radius: 2px; }
.proj-gallery-thumb {
    flex: 0 0 64px;
    height: 44px;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
    opacity: 0.55;
    transition: opacity 0.2s, outline 0.2s;
    border: 2px solid transparent;
}
.proj-gallery-thumb:hover { opacity: 0.85; }
.proj-gallery-thumb.active {
    opacity: 1;
    border-color: #d4b878;
}
.proj-gallery-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.proj-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: #1a0a2e;
}
.proj-gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.proj-gallery-item:hover img { transform: scale(1.07); }
.proj-gallery-item.proj-gallery-main { aspect-ratio: auto; }
.proj-gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(11,28,58,0.25);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
    color: #fff; font-size: 20px;
}
.proj-gallery-item:hover .proj-gallery-overlay { opacity: 1; }

.proj-section-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #d4b878;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212,184,120,0.25);
}
.proj-rich-content {
    font-size: 13.5px;
    line-height: 1.75;
    color: #c4b5e8;
}
.proj-rich-content p { margin-bottom: 12px; }
.proj-rich-content ul, .proj-rich-content ol { padding-left: 20px; margin-bottom: 12px; }
.proj-rich-content li { margin-bottom: 6px; }
.proj-rich-content strong { color: #e8d5f5; font-weight: 700; }
.proj-info-content { font-size: 13px; }

@media (max-width: 900px) {
    .project-full-section,
    .project-full-section.project-reverse {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .project-full-section.project-reverse .proj-col-name { order: 0; }
    .project-full-section.project-reverse .proj-col-info { order: 2; }
    .proj-col-name { min-height: auto; position: relative; padding: 36px 24px; }
    .proj-col-overview { padding: 28px 20px; }
    .proj-col { padding: 24px 20px; }
    .proj-gallery-item.proj-gallery-main { aspect-ratio: 4/3; }
    .featured-section-title-bar { padding: 48px 20px 24px; }
}

/* ═══ FEATURED LISTINGS GRID ═══ */
#featured-projects-wrapper {
    background: #0a0a0a;
    padding-bottom: 0;
}
.featured-fl-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 80px 48px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.featured-fl-left { flex:1; }
.featured-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5em;
    color: #d4b878;
    text-transform: uppercase;
    margin-bottom: 10px;
    transform: translateX(38vw);
    transition: transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.featured-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.04em;
    margin: 0;
    line-height: 1;
    transform: translateX(38vw);
    transition: transform 0.9s cubic-bezier(0.16,1,0.3,1) 0.08s;
}
.featured-main-title strong { font-weight: 800; }
.featured-section-title-bar.scrolled .featured-eyebrow,
.featured-section-title-bar.scrolled .featured-main-title,
.featured-fl-header.scrolled .featured-eyebrow,
.featured-fl-header.scrolled .featured-main-title { transform: translateX(0); }
.featured-viewall-btn {
    flex-shrink: 0;
    background: #c0392b;
    color: #fff;
    border: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 14px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background 0.2s;
}
.featured-viewall-btn:hover { background: #a93226; }

/* ─── Footer Chuyên Nghiệp ─── */
.oneway-footer {
    background: #05111f;
    color: #bcc8d8;
    border-top: 1px solid #1c3554;
    margin-top: auto;
    font-size: 13px;
}

.footer-main { padding: 40px 0 24px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 32px;
}

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-main { padding: 28px 0 16px; }
}

.footer-logo { height: 36px; width: auto; filter: brightness(1.1); }
.footer-logo-link { display: inline-block; margin-bottom: 12px; }

.footer-tagline { color: #7f99b2; line-height: 1.6; margin-bottom: 16px; font-size: 12.5px; }

.footer-social { display: flex; gap: 8px; }
.social-btn {
    width: 34px; height: 34px; border-radius: 8px;
    background: #112030; border: 1px solid #1c3554;
    color: #9ab; display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: background 0.2s, color 0.2s;
    font-size: 13px;
}
.social-btn:hover { background: #c8a84b; color: #0b1c3a; border-color: #c8a84b; }

.footer-heading {
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: #c8a84b; margin-bottom: 14px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: #7f99b2; text-decoration: none;
    transition: color 0.2s;
    font-size: 13px;
}
.footer-links a:hover { color: #e0c87a; }

.footer-contact { font-style: normal; margin-bottom: 16px; }
.contact-item {
    display: flex; gap: 10px; align-items: flex-start;
    margin-bottom: 9px; color: #7f99b2;
}
.contact-item i { color: #c8a84b; margin-top: 2px; width: 14px; flex-shrink: 0; }
.contact-item a { color: #7f99b2; text-decoration: none; }
.contact-item a:hover { color: #e0c87a; }

.footer-booking-btn {
    background: linear-gradient(135deg, #c8a84b, #e0c87a);
    color: #0b1c3a; border: none; border-radius: 8px;
    padding: 9px 18px; font-size: 13px; font-weight: 700;
    cursor: pointer; transition: opacity 0.2s; width: 100%;
}
.footer-booking-btn:hover { opacity: 0.88; }
.footer-booking-btn i { margin-right: 6px; }

.footer-bottom {
    border-top: 1px solid #112030;
    padding: 14px 0;
}
.footer-bottom-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 8px;
}
.footer-bottom-inner span, .footer-bottom-inner a { color: #506070; font-size: 12px; }
.footer-bottom-links { display: flex; align-items: center; gap: 8px; }
.footer-bottom-links a { text-decoration: none; }
.footer-bottom-links a:hover { color: #9ab; }
.sep { color: #2a3f54; }
.powered { color: #2a3f54 !important; }

/* ─── Booking Modal ─── */
.booking-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,.75);
    z-index: 10000; align-items: center; justify-content: center;
    padding: 16px;
}

.booking-modal {
    background: #0e1f33; border: 1px solid #1c3554; border-radius: 16px;
    padding: 32px 28px; max-width: 580px; width: 100%;
    position: relative; box-shadow: 0 24px 60px rgba(0,0,0,.6);
    max-height: 92vh; overflow-y: auto;
}

.booking-close {
    position: absolute; top: 16px; right: 18px; background: none; border: none;
    color: #5a7a99; font-size: 24px; cursor: pointer; line-height: 1;
    padding: 4px 8px; border-radius: 6px;
}
.booking-close:hover { color: #fff; background: #1c3554; }

.booking-header { text-align: center; margin-bottom: 24px; }
.booking-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #c8a84b, #e0c87a);
    display: inline-flex; align-items: center; justify-content: center;
    color: #0b1c3a; font-size: 24px; margin-bottom: 12px;
}
.booking-header h2 { color: #e8d89a; font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.booking-header p  { color: #7f99b2; font-size: 13px; }

.booking-form { display: flex; flex-direction: column; gap: 12px; }
.booking-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .booking-row { grid-template-columns: 1fr; } }

.booking-field { display: flex; flex-direction: column; gap: 5px; }
.booking-field label { font-size: 12px; font-weight: 600; color: #9ab2c8; }
.req { color: #e05c5c; }
.booking-field input, .booking-field textarea, .booking-field select {
    background: #07182a; border: 1px solid #1c3554; border-radius: 8px;
    color: #dde8f0; padding: 9px 12px; font-size: 13px;
    transition: border-color 0.2s; outline: none;
}
.booking-field input:focus, .booking-field textarea:focus {
    border-color: #c8a84b;
}
.booking-field textarea { resize: vertical; min-height: 64px; }
.booking-field input[type=datetime-local] { color-scheme: dark; }

.booking-msg {
    padding: 10px 14px; border-radius: 8px; font-size: 13px;
}
.booking-msg-ok  { background: #0a2a0a; color: #6edb6e; border: 1px solid #1a4a1a; }
.booking-msg-err { background: #2a0a0a; color: #e07070; border: 1px solid #4a1a1a; }

.booking-submit {
    background: linear-gradient(135deg, #c8a84b, #e0c87a);
    color: #0b1c3a; border: none; border-radius: 10px;
    padding: 12px 24px; font-size: 14px; font-weight: 700;
    cursor: pointer; transition: opacity 0.2s; margin-top: 4px;
}
.booking-submit:hover { opacity: 0.88; }
.booking-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.booking-submit i { margin-right: 8px; }

/* Floating Action Button */
.booking-fab {
    position: fixed; bottom: 144px; right: 18px; z-index: 9990;
    background: linear-gradient(135deg, #c8a84b, #e0c87a);
    color: #0b1c3a; border: none; border-radius: 50px;
    padding: 10px 16px; font-size: 13px; font-weight: 700;
    cursor: pointer; box-shadow: 0 4px 20px rgba(200,168,75,.4);
    display: flex; align-items: center; gap: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.booking-fab:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(200,168,75,.5); }
.booking-fab i { font-size: 15px; }
@media (max-width: 480px) { .booking-fab-label { display: none; } .booking-fab { border-radius: 50%; padding: 12px; } }

