/* ==================== GLOBAL VARIABLES & RESET ==================== */
        :root {
            --vh-navy: #0F2C59; 
            --gold-dark: #B8860B; 
            --gold-light: #FDF9F1;
            --text-main: #1E293B;
            --text-muted: #64748B;
            --bg-surface: #F8FAFC; 
            --white: #FFFFFF;
            --border-light: #E2E8F0;
            --emerald-green: #059669; 
            --emerald-light: #ECFDF5;
            --alert-red: #E63946;
            --safe-green: #10B981; 
            --dark-bg: #0A192F; 
        }

        html { scroll-behavior: smooth; }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: 'Plus Jakarta Sans', sans-serif; 
            background-color: var(--bg-surface); 
            color: var(--text-main); 
            line-height: 1.6; 
            overflow-x: hidden; 
        }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; transition: all 0.3s ease; }

        /* ==================== COMMON CLASSES ==================== */
        .section-header { text-align: center; margin-bottom: 60px; max-width: 800px; margin-inline: auto; position: relative; z-index: 2; }
        .section-header h2 { font-family: 'Playfair Display', serif; font-size: 42px; color: var(--vh-navy); margin-bottom: 16px; line-height: 1.2; letter-spacing: -0.5px; }
        .section-header p { font-size: 16px; color: var(--text-muted); font-weight: 500; }
        
        .pill-tag {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 700;
            text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
        }
        .pill-tag.gold { background: var(--gold-light); color: var(--gold-dark); border: 1px solid rgba(184, 134, 11, 0.2); }
        .pill-tag.navy { background: rgba(15, 44, 89, 0.05); color: var(--vh-navy); }
        .pill-tag.red { background: rgba(230, 57, 70, 0.1); color: var(--alert-red); animation: pulse-red 2s infinite; }

        /* ==================== HEADER ==================== */
        header { padding: 20px 0; width: 100%; top: 0; z-index: 1000; background: rgba(248, 250, 252, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-light); transition: all 0.3s; }
        header .container { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-family: 'Playfair Display', serif; font-size: 23px; font-weight: 700; color: var(--vh-navy); }
        .logo span { color: var(--gold-dark); }
        .nav-links { display: flex; gap: 24px; list-style: none; }
        .nav-links a { color: var(--text-main); font-weight: 600; font-size: 15px; }
        .nav-links a:hover { color: var(--gold-dark); }
        .btn-call { background: var(--white); color: var(--vh-navy); font-weight: 700; padding: 10px 20px; border-radius: 100px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 8px; font-size: 14px; border: 1px solid var(--border-light); }
        .btn-call:hover { border-color: var(--vh-navy); }

        /* ==================== HERO SECTION ==================== */
        .hero { padding: 120px 0 80px; position: relative; background: var(--bg-surface); }
        .hero::before { content: ''; position: absolute; top: -10%; left: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, transparent 70%); filter: blur(60px); z-index: 0; }
        .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; grid-template-areas: "top right" "bottom right"; gap: 0 60px; position: relative; z-index: 2; }
        .hero-top { grid-area: top; margin-bottom: 40px; }
        .hero-top h1 { font-family: 'Playfair Display', serif; font-size: 56px; line-height: 1.15; margin-bottom: 20px; color: var(--vh-navy); letter-spacing: -1px; }
        .hero-top h1 span { color: var(--gold-dark); font-style: italic; }
        .hero-top p.desc { font-size: 17px; color: var(--text-muted); line-height: 1.6; margin-bottom: 32px; font-weight: 400; max-width: 90%; }
        
        .inline-form { display: flex; gap: 8px; background: var(--white); padding: 8px; border-radius: 100px; box-shadow: 0 15px 35px rgba(15, 44, 89, 0.08); border: 1px solid var(--border-light); margin-bottom: 16px; }
        .inline-form input { flex: 1; border: none; outline: none; background: transparent; padding-left: 20px; font-family: inherit; font-size: 15px; color: var(--text-main); }
        .btn-submit { background: var(--vh-navy); color: var(--white); font-size: 15px; font-weight: 600; padding: 14px 28px; border-radius: 100px; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; animation: pulse-shadow 2.5s infinite; transition: background 0.3s; }
        .btn-submit:hover { background: var(--gold-dark); animation: none; }
        @keyframes pulse-shadow { 0% { box-shadow: 0 0 0 0 rgba(15, 44, 89, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(15, 44, 89, 0); } 100% { box-shadow: 0 0 0 0 rgba(15, 44, 89, 0); } }

        .form-footer { display: flex; align-items: center; justify-content: space-between; max-width: 480px; flex-wrap: wrap; gap: 16px; }
        .social-proof { display: flex; align-items: center; gap: 12px; }
        .avatars { display: flex; }
        .avatars img { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--bg-surface); margin-left: -10px; object-fit: cover; }
        .avatars img:first-child { margin-left: 0; }
        .social-proof span { font-size: 13px; color: var(--text-muted); font-weight: 500; }
        .social-proof span strong { color: var(--text-main); font-weight: 700; }
        .text-link { color: var(--text-muted); font-size: 14px; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; display: inline-flex; align-items: center; gap: 6px; transition: color 0.3s; }
        .text-link:hover { color: var(--vh-navy); }
        .text-link i { color: var(--gold-dark); }

        .hero-bottom { grid-area: bottom; }
        .pain-points-list { display: flex; flex-direction: column; gap: 16px; }
        .pp-item { display: flex; align-items: center; gap: 16px; background: var(--white); padding: 16px 20px; border-radius: 16px; box-shadow: 0 4px 10px rgba(0,0,0,0.02); border: 1px solid var(--border-light); transition: transform 0.3s;}
        .pp-item:hover { transform: translateX(5px); border-color: var(--border-light); }
        .pp-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
        .icon-green { background: var(--emerald-light); color: var(--safe-green); } 
        .icon-red { background: rgba(230,57,70,0.1); color: var(--alert-red); } 
        .icon-gold { background: var(--gold-light); color: var(--gold-dark); } 
        .pp-text { font-size: 15px; font-weight: 700; color: var(--text-main); line-height: 1.3; }
        .pp-text span { font-weight: 400; color: var(--text-muted); display: block; font-size: 13px; margin-top: 4px; }

        .hero-right { grid-area: right; position: relative; height: 600px; display: flex; align-items: center; }
        .hero-right .img-main { width: 90%; height: 500px; object-fit: cover; border-radius: 32px; position: absolute; right: 0; box-shadow: 0 30px 60px rgba(15, 44, 89, 0.1); }
        .hero-right .img-sub { width: 50%; height: 260px; object-fit: cover; border-radius: 24px; position: absolute; bottom: 20px; left: -20px; border: 8px solid var(--bg-surface); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
        .glass-card { position: absolute; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.6); border-radius: 20px; padding: 16px 20px; display: flex; align-items: center; gap: 16px; box-shadow: 0 15px 35px rgba(0,0,0,0.05); animation: float 5s ease-in-out infinite; }
        .gc-1 { top: 20px; left: -10px; animation-delay: 0s; }
        .gc-1 .gc-icon { width: 40px; height: 40px; background: var(--vh-navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; }
        .gc-1 .gc-text strong { display: block; font-size: 18px; font-weight: 800; color: var(--vh-navy); }
        .gc-1 .gc-text span { font-size: 12px; color: var(--text-muted); font-weight: 500; }
        .gc-2 { bottom: 100px; right: -20px; animation-delay: 2s; padding: 12px 20px; border-radius: 100px; background: var(--vh-navy); color: var(--white); border: none; }
        .gc-2 .gc-icon { color: var(--gold-dark); font-size: 18px; }
        .gc-2 .gc-text { font-size: 13px; font-weight: 600; }
        @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-12px); } 100% { transform: translateY(0px); } }

        /* ==================== WHY CHOOSE ==================== */
        .why-choose { padding: 50px 0; background: var(--bg-surface); }
        .usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 40px; }
        .usp-card { background: var(--white); padding: 40px 30px; border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid var(--border-light); transition: all 0.4s ease; }
        .usp-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(15, 44, 89, 0.08); border-color: rgba(184, 134, 11, 0.3); }
        .usp-icon { width: 56px; height: 56px; background: var(--gold-light); color: var(--gold-dark); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 24px; }
        .usp-card h3 { font-size: 20px; color: var(--vh-navy); margin-bottom: 12px; font-weight: 700; }
        .usp-card p { color: var(--text-muted); font-size: 15px; }

        .comparison-wrapper { background: var(--white); border-radius: 32px; padding: 40px; box-shadow: 0 15px 40px rgba(0,0,0,0.04); border: 1px solid var(--border-light); margin-bottom: 60px; }
        .comp-title { text-align: center; font-size: 24px; font-weight: 800; color: var(--vh-navy); margin-bottom: 30px; }
        .comp-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 20px; align-items: center; }
        .comp-item { text-align: center; padding: 30px 20px; border-radius: 20px; background: var(--bg-surface); border: 1px solid var(--border-light); }
        .comp-icon { font-size: 32px; margin-bottom: 16px; }
        .comp-item h4 { font-size: 18px; color: var(--text-main); margin-bottom: 8px; }
        .comp-item p { font-size: 14px; color: var(--text-muted); }
        .comp-item.highlight { background: linear-gradient(135deg, var(--vh-navy) 0%, #1a4280 100%); color: var(--white); transform: scale(1.05); box-shadow: 0 20px 40px rgba(15, 44, 89, 0.2); border: none; position: relative; z-index: 2; padding: 40px 20px; }
        .comp-item.highlight .comp-icon { color: var(--gold-dark); text-shadow: 0 0 20px rgba(184, 134, 11, 0.4); }
        .comp-item.highlight h4 { color: var(--white); font-size: 22px; }
        .comp-item.highlight p { color: rgba(255,255,255,0.9); font-weight: 500; }

        /* ==================== TAB SOLUTIONS ==================== */
        .solutions-wrapper { padding: 40px 0 80px; }
        .tab-nav { display: flex; justify-content: center; background: var(--white); max-width: 900px; margin: 0 auto 40px; border-radius: 16px; padding: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid var(--border-light); }
        .tab-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 24px; font-size: 15px; font-weight: 600; color: var(--text-muted); background: transparent; border: none; border-radius: 12px; cursor: pointer; transition: all 0.3s ease; font-family: inherit; }
        .tab-btn:hover { color: var(--vh-navy); }
        .tab-btn.active { box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
        .tab-btn[data-target="tab-investor"].active { background: var(--gold-dark); color: var(--white); }
        .tab-btn[data-target="tab-retiree"].active { background: var(--emerald-green); color: var(--white); }
        .tab-btn[data-target="tab-vip"].active { background: var(--vh-navy); color: var(--white); }

        .tab-content-container { position: relative; min-height: 550px; }
        .tab-pane { display: none; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: stretch; background: var(--white); border-radius: 32px; padding: 40px; box-shadow: 0 20px 50px rgba(15, 44, 89, 0.05); border: 1px solid var(--gold-dark); animation: fadeIn 0.5s ease-in-out; }
        .tab-pane.active { display: grid; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

        .tp-content { display: flex; flex-direction: column; }
        .tp-header { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
        .tp-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
        .tp-header h3 { font-size: 24px; font-weight: 800; color: var(--text-main); margin-bottom: 4px; line-height: 1.2; }
        .tp-header p { font-size: 14px; font-weight: 600; }
        .feature-list { list-style: none; margin-bottom: 30px; flex-grow: 1; }
        .feature-item { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border-light); }
        .feature-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        .fi-title { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
        .fi-desc { font-size: 14px; color: var(--text-muted); line-height: 1.5; padding-left: 28px; }
        
        .value-box { border-radius: 16px; padding: 24px; margin-bottom: 24px; display: flex; gap: 40px; }
        .vb-item p { font-size: 13px; font-weight: 600; margin-bottom: 4px; opacity: 0.9; }
        .vb-item h4 { font-size: 28px; font-weight: 800; line-height: 1; }
        
        .cta-group { display: flex; gap: 16px; align-items: center; }
        .btn-tab { flex: 1; display: inline-flex; justify-content: center; align-items: center; gap: 8px; padding: 16px 24px; border-radius: 12px; font-size: 15px; font-weight: 700; border: none; cursor: pointer; transition: all 0.3s; text-decoration: none; }
        .tp-image { border-radius: 24px; overflow: hidden; position: relative; }
        .tp-image img { width: 100%; height: 100%;}

        /* Custom Tabs */
        #tab-investor { border-color: rgba(184, 134, 11, 0.3); }
        #tab-investor .tp-icon { background: var(--gold-light); color: var(--gold-dark); }
        #tab-investor .tp-header p, #tab-investor .fi-title i { color: var(--gold-dark); }
        #tab-investor .value-box { background: linear-gradient(135deg, #d4af37 0%, var(--gold-dark) 100%); color: var(--white); }
        #tab-investor .btn-tab.btn-primary { background: var(--gold-dark); color: var(--white); box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3); }
        #tab-investor .btn-tab.btn-outline { background: transparent; border: 1px solid var(--border-light); color: var(--text-main); }
        
        #tab-retiree { border-color: rgba(5, 150, 105, 0.3); }
        #tab-retiree .tp-icon { background: var(--emerald-light); color: var(--emerald-green); }
        #tab-retiree .tp-header p, #tab-retiree .fi-title i { color: var(--emerald-green); }
        #tab-retiree .value-box { display: none; }
        #tab-retiree .btn-tab.btn-primary { background: var(--emerald-green); color: var(--white); box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3); }
        
        #tab-vip { background: var(--vh-navy); border: none; box-shadow: 0 25px 50px rgba(15, 44, 89, 0.3); }
        #tab-vip .tp-header h3, #tab-vip .fi-title { color: var(--white); }
        #tab-vip .fi-desc { color: rgba(255,255,255,0.7); }
        #tab-vip .feature-item { border-bottom-color: rgba(255,255,255,0.1); }
        #tab-vip .tp-icon { background: rgba(184, 134, 11, 0.15); color: var(--gold-dark); }
        #tab-vip .tp-header p, #tab-vip .fi-title i { color: var(--gold-dark); }
        #tab-vip .value-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px); color: var(--white); display: flex; flex-direction: column; gap: 8px; }
        #tab-vip .vb-item p { color: rgba(255,255,255,0.6); margin: 0; }
        #tab-vip .vb-item h4 { font-size: 32px; font-family: 'Playfair Display', serif; color: var(--white); }
        #tab-vip .btn-tab.btn-primary { background: var(--gold-dark); color: var(--white); }

        .trust-card { background: var(--vh-navy); border-radius: 32px; overflow: hidden; display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; box-shadow: 0 25px 50px rgba(15, 44, 89, 0.2); position: relative; }
        .trust-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.05)" stroke-width="2" fill="none"/></svg>') 0 0; background-size: 150px 150px; opacity: 0.5; pointer-events: none; }
        .trust-content { padding: 60px; position: relative; z-index: 2; }
        .trust-content h2 { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--white); margin-bottom: 20px; line-height: 1.3; }
        .trust-content p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 30px; }
        .checklist { display: flex; flex-direction: column; gap: 16px; }
        .check-item { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 12px; }
        .check-item:last-child { border-bottom: none; padding-bottom: 0; }
        .check-left { display: flex; align-items: center; gap: 12px; color: var(--white); font-weight: 600; font-size: 15px; }
        .check-left i { color: var(--safe-green); font-size: 18px; } 
        .check-right { color: var(--gold-dark); font-size: 13px; font-weight: 700; text-transform: uppercase; background: rgba(184, 134, 11, 0.15); padding: 4px 12px; border-radius: 100px; }
        .trust-image { height: 100%; min-height: 400px; position: relative; }
        .trust-image img { width: 100%; height: 100%; object-fit: cover; }
        .trust-image::after { content: ''; position: absolute; top: 0; left: 0; width: 50%; height: 100%; background: linear-gradient(to right, var(--vh-navy) 0%, transparent 100%); }

        /* ==================== OVERVIEW ==================== */
        .project-overview { padding: 100px 0; background: var(--white); position: relative; overflow: hidden; }
        .project-overview::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: linear-gradient(var(--border-light) 1px, transparent 1px), linear-gradient(90deg, var(--border-light) 1px, transparent 1px); background-size: 50px 50px; opacity: 0.3; pointer-events: none; }
        .overview-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
        .overview-content { padding-right: 20px; }
        .overview-content h2 { font-family: 'Playfair Display', serif; font-size: 46px; color: var(--vh-navy); margin-bottom: 20px; line-height: 1.2; letter-spacing: -1px; }
        .overview-content h2 span { color: var(--gold-dark); font-style: italic; }
        .overview-content p.desc { font-size: 16px; color: var(--text-muted); margin-bottom: 40px; }
        .fact-sheet { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
        .fact-item { background: var(--bg-surface); border: 1px solid var(--border-light); padding: 20px; border-radius: 16px; transition: all 0.3s ease; }
        .fact-item:hover { border-color: var(--gold-dark); background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.04); transform: translateY(-3px); }
        .fact-icon { width: 36px; height: 36px; background: rgba(184, 134, 11, 0.1); color: var(--gold-dark); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; margin-bottom: 12px; }
        .fact-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; font-weight: 600; margin-bottom: 4px; }
        .fact-value { font-size: 18px; color: var(--vh-navy); font-weight: 800; font-family: 'Playfair Display', serif; }
        .btn-download { display: inline-flex; align-items: center; gap: 10px; background: var(--vh-navy); color: var(--white); font-size: 15px; font-weight: 600; padding: 16px 32px; border-radius: 100px; box-shadow: 0 10px 25px rgba(15, 44, 89, 0.2); transition: all 0.3s; }
        .btn-download:hover { background: var(--gold-dark); transform: translateY(-2px); }
        .image-wrapper { position: relative; border-radius: 32px; overflow: hidden; box-shadow: 0 30px 60px rgba(15, 44, 89, 0.15); border: 8px solid var(--white); outline: 1px solid var(--border-light); }
.overview-visual { position: relative; }
        
        .image-wrapper { 
            position: relative; border-radius: 32px; overflow: hidden; 
            box-shadow: 0 30px 60px rgba(15, 44, 89, 0.15); 
            border: 8px solid var(--white); outline: 1px solid var(--border-light);
            cursor: pointer; /* Biến con trỏ thành hình bàn tay */
            background: #000; /* Nền đen để hiệu ứng mờ ảnh rõ hơn */
        }
        
        .image-wrapper img.ov-img { 
            width: 100%; height: 600px; object-fit: cover; 
            transition: all 0.5s ease; opacity: 0.85; /* Hạ độ sáng ảnh để nút Play nổi bật */
        }
        
        /* Khi hover: Zoom ảnh và làm tối ảnh đi một chút */
        .image-wrapper:hover img.ov-img { 
            transform: scale(1.05); 
            opacity: 0.6; 
        }
        .pin-tag { position: absolute; bottom: 30px; left: -30px; background: var(--white); padding: 16px 24px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 1px solid var(--border-light); display: flex; align-items: center; gap: 16px; z-index: 5; }
        .pin-icon { width: 48px; height: 48px; background: var(--vh-navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
        .pin-text h4 { font-size: 16px; color: var(--vh-navy); margin-bottom: 2px; }
        .pin-text p { font-size: 13px; color: var(--text-muted); font-weight: 500; margin: 0; }

        /* ==================== LOCATION ==================== */
        .location-section { padding: 100px 0; background: var(--bg-surface); }
        .connect-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
        .connect-card { background: var(--white); padding: 30px 20px; border-radius: 20px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid var(--border-light); transition: transform 0.3s; }
        .connect-card:hover { transform: translateY(-5px); border-color: rgba(184, 134, 11, 0.3); }
        .connect-icon { width: 48px; height: 48px; background: var(--gold-light); color: var(--gold-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; margin: 0 auto 16px; }
        .connect-card h3 { font-size: 24px; color: var(--vh-navy); margin-bottom: 4px; font-weight: 800; }
        .connect-card p { font-size: 14px; color: var(--text-muted); font-weight: 500; margin: 0; }
        
        .map-wrapper { background: var(--white); border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(15, 44, 89, 0.08); border: 1px solid var(--border-light); margin-bottom: 40px; display: flex; flex-direction: column; }
        .map-header { background: var(--vh-navy); color: var(--white); padding: 20px 30px; display: flex; justify-content: space-between; align-items: center; }
        .map-header-left { display: flex; align-items: center; gap: 12px; }
        .map-header-left i { font-size: 20px; color: var(--gold-dark); }
        .map-header-left h3 { font-size: 18px; margin: 0; }
        .map-header-left p { font-size: 13px; color: rgba(255,255,255,0.7); margin: 0; }
        .map-btn { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
        .map-btn:hover { background: var(--white); color: var(--vh-navy); }
        .map-content { position: relative; height: 500px; width: 100%; background: #E5E3DF; }
        .map-content iframe { width: 100%; height: 100%; border: none; }
        .map-footer-info { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 16px; width: 95%; max-width: 900px; }
        .map-info-item { flex: 1; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); padding: 16px 20px; border-radius: 16px; display: flex; align-items: center; gap: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); border: 1px solid rgba(255,255,255,0.5); }
        .mii-icon { width: 40px; height: 40px; background: var(--bg-surface); color: var(--vh-navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
        .mii-text h4 { font-size: 14px; margin-bottom: 2px; color: var(--text-main); }
        .mii-text p { font-size: 12px; color: var(--text-muted); margin: 0; }

        .callout-box { background: linear-gradient(135deg, var(--gold-light) 0%, #FFFDF8 100%); border: 1px solid rgba(184, 134, 11, 0.2); border-radius: 20px; padding: 40px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
        .callout-icon { font-size: 32px; margin-bottom: 16px; }
        .callout-box h3 { font-size: 24px; color: var(--vh-navy); margin-bottom: 12px; font-weight: 800; }
        .callout-box p { font-size: 15px; color: var(--text-main); max-width: 800px; margin: 0 auto 24px; }
        .btn-callout { display: inline-flex; align-items: center; gap: 10px; background: var(--vh-navy); color: var(--white); font-size: 15px; font-weight: 600; padding: 14px 28px; border-radius: 100px; box-shadow: 0 10px 20px rgba(15, 44, 89, 0.15); transition: all 0.3s; }
        .btn-callout:hover { background: var(--gold-dark); transform: translateY(-2px); }

        /* ==================== SUBDIVISIONS (PHÂN KHU) ==================== */
        .subdivisions-section { padding: 100px 0; background: var(--white); }
        
        /* Mega Card Phân Khu 1 */
        .featured-subdivision {
            display: grid; grid-template-columns: 1fr 1.2fr; gap: 0;
            background: var(--bg-surface); border-radius: 32px; overflow: hidden;
            box-shadow: 0 20px 50px rgba(184, 134, 11, 0.15); /* Đổ bóng màu Vàng sang trọng */
            border: 1px solid var(--gold-dark); margin-bottom: 40px;
        }
        .fs-content { padding: 50px 40px; display: flex; flex-direction: column; justify-content: center; }
        
        .fs-badge-pulse {
            display: inline-table; align-self: flex-start;
            background: var(--alert-red); color: var(--white);
            padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 700;
            margin-bottom: 24px; animation: pulse-red-strong 2s infinite;
        }
        @keyframes pulse-red-strong { 0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.6); } 70% { box-shadow: 0 0 0 15px rgba(230, 57, 70, 0); } 100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); } }

        .fs-title-group span { color: var(--gold-dark); font-size: 13px; font-weight: 700; letter-spacing: 1px; display: block; margin-bottom: 4px; }
        .fs-title-group h3 { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--vh-navy); line-height: 1.1; margin-bottom: 16px; }
        .fs-desc { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; }
        
        .fs-stats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; background: var(--white); padding: 20px; border-radius: 16px; border: 1px solid var(--border-light); }
        .fs-stat-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-main); }
        .fs-stat-item i { color: var(--gold-dark); font-size: 18px; width: 24px; text-align: center; }

        .btn-fs-cta {
            display: inline-flex; align-items: center; justify-content: center; gap: 10px;
            background: var(--gold-dark); color: var(--white); font-size: 16px; font-weight: 700;
            padding: 16px 32px; border-radius: 100px; box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3); transition: all 0.3s;
        }
        .btn-fs-cta:hover { background: var(--vh-navy); transform: translateY(-3px); box-shadow: 0 15px 25px rgba(15, 44, 89, 0.3); }

        .fs-image { position: relative; height: 100%; min-height: 400px; }
        .fs-image img { width: 100%; height: 100%; object-fit: cover; }

        /* Grid 3 Cột cho các phân khu chờ */
        .sub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .sub-card {
            background: var(--white); border-radius: 24px; overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid var(--border-light);
            transition: all 0.4s ease; display: flex; flex-direction: column;
        }
        .sub-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(15, 44, 89, 0.08); }
        
        .sc-image { position: relative; overflow: hidden; }
        .sc-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
        .sub-card:hover .sc-image img { transform: scale(1.08); }
        
        .sc-badge { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,0.9); backdrop-filter: blur(4px); color: var(--text-muted); font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 100px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); z-index: 2; }
        .sc-badge.gold { background: var(--gold-dark); color: var(--white); }

        .sc-content { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
        .sc-content span { font-size: 11px; font-weight: 700; color: var(--text-muted); letter-spacing: 1px; margin-bottom: 4px; display: block; }
        .sc-content h4 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--vh-navy); margin-bottom: 8px; line-height: 1.2; }
        .sc-content p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; flex-grow: 1; }
        
        .btn-sc-link { font-size: 14px; font-weight: 700; color: var(--vh-navy); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s; }
        .btn-sc-link:hover { gap: 12px; color: var(--gold-dark); }
        .btn-sc-link.gold { color: var(--gold-dark); }

        /* Phân khu VIP (Phân khu 4) */
        .sub-card.vip-card { background: linear-gradient(145deg, #0F2C59 0%, #0a1f3f 100%); border-color: rgba(184, 134, 11, 0.4); }
        .sub-card.vip-card .sc-content span { color: rgba(255,255,255,0.5); }
        .sub-card.vip-card .sc-content h4, .sub-card.vip-card .sc-content p { color: var(--white); }

        /* Responsive Mobile */
        @media (max-width: 1024px) {
            .featured-subdivision { grid-template-columns: 1fr; }
            .fs-image { min-height: auto; order: -1; } /* Đẩy ảnh lên trên chữ */
            .sub-grid { grid-template-columns: repeat(2, 1fr); }
            .sub-card.vip-card { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
            .sub-card.vip-card .sc-image { height: 100%; }
        }
        @media (max-width: 768px) {
            .subdivisions-section { padding: 60px 0; }
            .fs-content { padding: 30px 20px; }
            .fs-title-group h3 { font-size: 28px; }
            .sub-grid { grid-template-columns: 1fr; gap: 20px; }
            .sub-card.vip-card { grid-column: span 1; display: flex; flex-direction: column; }
            .sub-card.vip-card .sc-image { height: 240px; }
            .btn-fs-cta { width: 100%; font-size: 14px; padding: 14px; }
        }

        /* ==================== AMENITIES ==================== */
        .amenities-section { padding: 100px 0; background: var(--bg-surface); }
        .amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px; }
        .am-card { position: relative; border-radius: 20px; overflow: hidden; height: 260px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); cursor: pointer; transition: all 0.4s ease; }
        .am-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(15, 44, 89, 0.15); }
        .am-image { width: 100%; height: 100%; position: relative; }
        .am-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
        .am-card:hover .am-image img { transform: scale(1.08); }
        .am-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15, 44, 89, 0.9) 0%, rgba(15, 44, 89, 0.4) 50%, transparent 100%); }
        .am-icon { position: absolute; top: 20px; left: 20px; background: var(--white); color: var(--gold-dark); width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; z-index: 2; }
        .am-content { position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2; }
        .am-content h3 { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
        .am-content p { color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 400; line-height: 1.4; margin: 0; }
        
        .desert-island-banner { background: linear-gradient(135deg, var(--vh-navy) 0%, #1a4280 100%); border-radius: 24px; padding: 20px; text-align: center; box-shadow: 0 20px 50px rgba(15, 44, 89, 0.15); position: relative; overflow: hidden; }
        .desert-island-banner::before { content: ''; position: absolute; right: -50px; top: -50px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(184, 134, 11, 0.2) 0%, transparent 70%); }
        .desert-island-banner h3 { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--white); margin-bottom: 16px; position: relative; z-index: 2; }
        .desert-island-banner p.desc { color: rgba(255,255,255,0.8); font-size: 16px; max-width: 800px; margin: 0 auto 32px; position: relative; z-index: 2; }
        .feature-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 40px; position: relative; z-index: 2; }
        .f-pill { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--white); padding: 8px 20px; border-radius: 100px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
        .f-pill i { color: var(--gold-dark); }
        .btn-banner { display: inline-flex; align-items: center; gap: 10px; background: var(--gold-dark); color: var(--white); font-size: 16px; font-weight: 700; padding: 16px 40px; border-radius: 100px; text-transform: uppercase; box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3); transition: all 0.3s; position: relative; z-index: 2; }
        .btn-banner:hover { background: #D4AF37; color: var(--vh-navy); transform: translateY(-3px); }

        /* ==================== TRUST & ROI ==================== */
        .trust-roi-section { padding: 50px 0; background: var(--white); }
        .trust-grid-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: stretch; }
        
        .progress-visual { position: relative; border-radius: 32px; overflow: hidden; box-shadow: 0 20px 50px rgba(15, 44, 89, 0.1); border: 1px solid var(--border-light); display: flex; flex-direction: column; }
        .video-wrapper { position: relative; height: 400px; width: 100%; cursor: pointer; background: #000; }
        .video-wrapper img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity 0.3s; }
        .video-wrapper:hover img { opacity: 0.7; }
        .play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 72px; height: 72px; background: rgba(255,255,255,0.9); backdrop-filter: blur(5px); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--vh-navy); font-size: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); animation: pulse-play 2s infinite; z-index: 2; padding-left: 6px; }
        @keyframes pulse-play { 0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); } 70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); } }
        .status-badge { position: absolute; top: 24px; left: 24px; background: var(--safe-green); color: var(--white); padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 8px; z-index: 2; }
        .status-badge .dot-live { width: 8px; height: 8px; background: var(--white); border-radius: 50%; animation: blink 1s infinite; }
        @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
        
        .progress-info { background: var(--bg-surface); padding: 30px; flex-grow: 1; }
        .progress-info h3 { font-size: 20px; color: var(--vh-navy); margin-bottom: 16px; font-weight: 700; }
        .progress-timeline { list-style: none; }
        .progress-timeline li { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; position: relative; }
        .progress-timeline li:last-child { margin-bottom: 0; }
        .progress-timeline li::before { content: ''; position: absolute; left: 11px; top: 24px; bottom: -16px; width: 2px; background: var(--border-light); z-index: 1; }
        .progress-timeline li:last-child::before { display: none; }
        .pt-icon { width: 24px; height: 24px; background: var(--gold-dark); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; z-index: 2; flex-shrink: 0; margin-top: 2px; }
        .pt-icon.done { background: var(--safe-green); }
        .pt-text h4 { font-size: 15px; color: var(--text-main); margin-bottom: 2px; }
        .pt-text p { font-size: 13px; color: var(--text-muted); margin: 0; }

        .data-dashboard { display: flex; flex-direction: column; gap: 24px; }
        .legal-card { background: var(--white); border-radius: 24px; padding: 32px; border: 1px solid var(--border-light); box-shadow: 0 10px 30px rgba(0,0,0,0.03); display: flex; align-items: flex-start; gap: 20px; }
        .legal-icon { width: 60px; height: 60px; background: rgba(16, 185, 129, 0.1); color: var(--safe-green); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
        .legal-content h3 { font-size: 20px; color: var(--vh-navy); margin-bottom: 12px; }
        .legal-tags { display: flex; flex-wrap: wrap; gap: 10px; }
        .l-tag { background: var(--bg-surface); border: 1px solid var(--border-light); padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
        .l-tag i { color: var(--safe-green); }

        .roi-card { background: linear-gradient(145deg, var(--vh-navy) 0%, #1a4280 100%); border-radius: 24px; padding: 40px 32px; color: var(--white); box-shadow: 0 20px 40px rgba(15, 44, 89, 0.2); position: relative; overflow: hidden; }
        .roi-card::after { content: ''; position: absolute; bottom: -20px; right: -20px; width: 200px; height: 150px; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 50"><path d="M0 50 L20 30 L40 40 L70 10 L100 20" fill="none" stroke="rgba(218,192,163,0.15)" stroke-width="4"/></svg>') no-repeat right bottom; background-size: contain; pointer-events: none; }
        .roi-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; position: relative; z-index: 2; }
        .roi-header h3 { font-size: 22px; font-family: 'Playfair Display', serif; margin: 0; }
        .roi-badge { background: rgba(255,255,255,0.15); backdrop-filter: blur(4px); padding: 6px 16px; border-radius: 100px; font-size: 12px; color: var(--gold-light); }
        .roi-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px; position: relative; z-index: 2; }
        .stat-box { border-left: 2px solid rgba(184, 134, 11, 0.5); padding-left: 16px; }
        .stat-box p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 4px; text-transform: uppercase; }
        .stat-box h4 { font-size: 28px; font-weight: 800; color: var(--gold-dark); line-height: 1; margin: 0; }
        
        .cta-magnet { background: var(--white); border-radius: 16px; padding: 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; position: relative; z-index: 2; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
        .cta-text h4 { font-size: 15px; color: var(--vh-navy); margin-bottom: 4px; }
        .cta-text p { font-size: 13px; color: var(--text-muted); margin: 0; }
        .btn-download-full { background: var(--gold-dark); color: var(--white); font-weight: 700; font-size: 14px; padding: 12px 24px; border-radius: 100px; white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; }
        .btn-download-full:hover { background: #D4AF37; color: var(--vh-navy); transform: translateY(-2px); }

        /* DEEP DIVE TÀI CHÍNH */
        .financial-deep-dive { margin-top: 80px; padding: 80px 20px; background: var(--dark-bg); border-radius: 40px; box-shadow: 0 30px 60px rgba(15, 44, 89, 0.2); position: relative; overflow: hidden; }
        .financial-deep-dive::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
        .fin-header { text-align: center; margin-bottom: 50px; position: relative; z-index: 2; }
        .fin-header h2 { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--white); margin-bottom: 12px; }
        .fin-header p { color: rgba(255,255,255,0.7); font-size: 15px; max-width: 700px; margin: 0 auto; }
        
        .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 50px; position: relative; z-index: 2; }
        .compare-card { border-radius: 24px; padding: 20px; position: relative; overflow: hidden; }
        .cc-header { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
        .cc-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--white); }
        .cc-title h3 { font-size: 20px; color: var(--white); font-weight: 700; line-height: 1.2; margin: 0; }
        .cc-title p { font-size: 13px; opacity: 0.8; margin: 0; color: var(--white); }
        .rate-box { background: rgba(0,0,0,0.2); border-radius: 16px; padding: 20px; margin-bottom: 16px; border: 1px solid rgba(255,255,255,0.05); }
        .rate-box p { font-size: 13px; opacity: 0.8; margin-bottom: 4px; color: var(--white); }
        .rate-box h4 { font-size: 28px; font-weight: 800; color: var(--white); line-height: 1; margin: 0;}
        .rate-box h4 span { font-size: 14px; font-weight: 500; opacity: 0.7; }
        .status-box { padding: 20px; border-radius: 16px; margin-top: 24px; display: flex; gap: 16px; align-items: flex-start; }
        .status-box i { font-size: 20px; margin-top: 2px; }
        .status-box h5 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
        .status-box p { font-size: 13px; line-height: 1.5; margin: 0; opacity: 0.9; }

        .card-danger { background: rgba(239, 68, 68, 0.05); border: 1px solid rgba(239, 68, 68, 0.2); }
        .card-danger .cc-icon { background: var(--alert-red); }
        .card-danger .cc-title h3 { color: #FCA5A5; }
        .card-danger .status-box { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); color: #FCA5A5; }
        .card-safe { background: linear-gradient(145deg, rgba(184, 134, 11, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%); border: 1px solid var(--gold-dark); position: relative; box-shadow: 0 0 30px rgba(184, 134, 11, 0.15); }
        .recommend-badge { position: absolute; top: 0; right: 15px; background: var(--gold-dark); color: var(--white); padding: 6px 16px; border-radius: 0 0 12px 12px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
        .card-safe .cc-icon { background: var(--gold-dark); }
        .card-safe .cc-title h3, .card-safe .rate-box h4 { color: var(--gold-dark); }
        .card-safe .status-box { background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3); color: #6EE7B7; }

        .savings-wrapper { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 32px; padding: 20px; text-align: center; position: relative; z-index: 2; margin-bottom: 30px; }
        .savings-header { font-size: 20px; font-weight: 700; color: var(--gold-dark); margin-bottom: 30px; display: flex; align-items: center; justify-content: center; gap: 10px; }
        .savings-grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 20px; margin-bottom: 30px; }
        .sv-box { background: rgba(0,0,0,0.3); border-radius: 16px; padding: 24px 20px; border: 1px solid rgba(255,255,255,0.05); }
        .sv-box p { font-size: 12px; font-weight: 600; text-transform: uppercase; opacity: 0.7; color: var(--white); margin-bottom: 8px; }
        .sv-box h3 { font-size: 32px; font-family: 'Playfair Display', serif; color: var(--white); margin: 0; }
        .sv-box span { font-size: 12px; opacity: 0.5; color: var(--white); }
        .sv-box.highlight { background: rgba(16, 185, 129, 0.15); border-color: var(--safe-green); transform: scale(1.05); box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2); }
        .sv-box.highlight h3 { color: var(--safe-green); font-size: 36px; }
        .savings-desc { font-size: 15px; color: rgba(255,255,255,0.8); max-width: 800px; margin: 0 auto 30px; }
        .savings-desc strong { color: var(--gold-dark); }
        
        .btn-calc-download { display: inline-flex; align-items: center; gap: 10px; background: var(--gold-dark); color: var(--white); font-size: 16px; font-weight: 700; padding: 16px 40px; border-radius: 100px; text-transform: uppercase; box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3); animation: pulse-gold 2s infinite; }
        @keyframes pulse-gold { 0% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.5); } 70% { box-shadow: 0 0 0 15px rgba(184, 134, 11, 0); } 100% { box-shadow: 0 0 0 0 rgba(184, 134, 11, 0); } }
        .btn-calc-download:hover { background: #D4AF37; color: var(--vh-navy); transform: translateY(-3px); animation: none; }
        
        .shield-badge { background: rgba(15, 44, 89, 0.8); border: 1px solid rgba(255,255,255,0.1); max-width: 700px; margin: 0 auto; padding: 20px; border-radius: 16px; display: flex; align-items: flex-start; gap: 16px; position: relative; z-index: 2; }
        .shield-badge i { color: #60A5FA; font-size: 24px; margin-top: 4px; }
        .shield-badge h4 { color: #93C5FD; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
        .shield-badge p { color: rgba(255,255,255,0.7); font-size: 13px; margin: 0; }

        /* ==================== POLICY ==================== */
        .policy-section { padding: 100px 0; background: var(--bg-surface); position: relative; }
        .policy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 50px; position: relative; z-index: 2; }
        .policy-card { background: var(--white); border-radius: 24px; padding: 32px 24px; text-align: center; border: 1px solid var(--border-light); box-shadow: 0 10px 30px rgba(0,0,0,0.03); position: relative; overflow: hidden; transition: all 0.4s ease; }
        .policy-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(15, 44, 89, 0.08); border-color: rgba(184, 134, 11, 0.3); }
        .policy-card::before, .policy-card::after { content: ''; position: absolute; top: 50%; width: 20px; height: 20px; background: var(--bg-surface); border-radius: 50%; border: 1px solid var(--border-light); transform: translateY(-50%); z-index: 1; }
        .policy-card::before { left: -11px; border-right-color: transparent; border-top-color: transparent; transform: translateY(-50%) rotate(45deg); }
        .policy-card::after { right: -11px; border-left-color: transparent; border-bottom-color: transparent; transform: translateY(-50%) rotate(45deg); }
        .card-divider { width: 100%; border-top: 2px dashed var(--border-light); margin: 24px 0; }
        .policy-icon { width: 56px; height: 56px; background: var(--gold-light); color: var(--gold-dark); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 20px; }
        .policy-number { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 800; color: var(--gold-dark); line-height: 1; margin-bottom: 8px; }
        .policy-number span { font-size: 20px; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; }
        .policy-card h3 { font-size: 18px; color: var(--vh-navy); margin-bottom: 8px; }
        .policy-card p { font-size: 14px; color: var(--text-muted); margin: 0; }

        .premium-offer-box { background: linear-gradient(135deg, var(--vh-navy) 0%, #1a4280 100%); border-radius: 32px; padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 40px; box-shadow: 0 20px 50px rgba(15, 44, 89, 0.2); position: relative; overflow: hidden; }
        .premium-offer-box::after { content: ''; position: absolute; right: -50px; bottom: -50px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
        .offer-content { flex: 1; position: relative; z-index: 2; color: var(--white); }
        .offer-content h3 { font-family: 'Playfair Display', serif; font-size: 32px; margin-bottom: 16px; color: var(--white); }
        .offer-content p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 24px; max-width: 600px; }
        .offer-list { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
        .offer-item { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 100px; font-size: 14px; font-weight: 600; border: 1px solid rgba(255,255,255,0.2); }
        .offer-item i { color: var(--gold-dark); }
        
        .action-box { flex-shrink: 0; position: relative; z-index: 2; background: var(--white); padding: 32px; border-radius: 24px; text-align: center; box-shadow: 0 15px 35px rgba(0,0,0,0.1); width: 380px; }
        .action-box h4 { font-size: 18px; color: var(--vh-navy); margin-bottom: 8px; }
        .action-box p { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
        .btn-download-policy { display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%; background: var(--gold-dark); color: var(--white); font-size: 15px; font-weight: 700; padding: 16px 24px; border-radius: 100px; text-transform: uppercase; box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3); transition: all 0.3s; }
        .btn-download-policy:hover { background: #D4AF37; color: var(--vh-navy); transform: translateY(-3px); }

        /* ==================== FOOTER & FINAL CTA ==================== */
        .final-cta-wrapper { position: relative; margin-bottom: -100px; z-index: 10; }
        .final-cta-box { background: linear-gradient(135deg, var(--gold-dark) 0%, #d4af37 100%); border-radius: 24px; padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 40px; box-shadow: 0 25px 50px rgba(184, 134, 11, 0.3); color: var(--white); }
        .final-cta-content { flex: 1; }
        .final-cta-content h2 { font-family: 'Playfair Display', serif; font-size: 36px; margin-bottom: 12px; line-height: 1.2; }
        .final-cta-content p { font-size: 16px; font-weight: 500; opacity: 0.9; margin: 0; }
        .final-form { background: var(--white); padding: 8px; border-radius: 100px; display: flex; width: 100%; max-width: 500px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
        .final-form input { flex: 1; border: none; outline: none; background: transparent; padding: 12px 24px; font-family: inherit; font-size: 15px; color: var(--text-main); }
        .btn-submit-final { background: var(--vh-navy); color: var(--white); font-weight: 700; font-size: 15px; padding: 14px 32px; border-radius: 100px; border: none; cursor: pointer; transition: all 0.3s; white-space: nowrap; }
        .btn-submit-final:hover { background: #0a1f3f; transform: scale(1.02); }

        footer { background: var(--vh-navy); color: rgba(255,255,255,0.7); padding: 160px 0 40px; font-size: 14px; position: relative; overflow: hidden; }
        footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 30px 30px; pointer-events: none; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; position: relative; z-index: 2; }
        .footer-logo { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 20px; display: block; }
        .footer-logo span { color: var(--gold-dark); }
        .footer-col h4 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 24px; text-transform: uppercase; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: rgba(255,255,255,0.7); display: inline-flex; align-items: center; gap: 8px; }
        .footer-links a:hover { color: var(--gold-dark); }
        .footer-links a::before { content: '›'; font-size: 18px; color: var(--gold-dark); }
        .contact-list { list-style: none; }
        .contact-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; line-height: 1.5; }
        .contact-list i { color: var(--gold-dark); font-size: 16px; margin-top: 4px; }
        .contact-list strong { color: var(--white); display: block; font-weight: 600; margin-bottom: 2px; }
        /* ==================== YÊU CẦU BẮT BUỘC TỪ GOOGLE ADS ==================== */
        .footer-bottom { 
            border-top: 1px solid rgba(255,255,255,0.1); 
            padding-top: 40px; 
            position: relative; 
            z-index: 2; 
            display: flex; 
            flex-direction: column; 
            gap: 30px; 
        }
        
        .disclaimer-box {
            background: rgba(0, 0, 0, 0.2); /* Tạo hộp nền đen mờ để bot dễ đọc nhưng không làm rối mắt người dùng */
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 24px;
            border-radius: 12px;
            font-size: 11px; /* Cỡ chữ nhỏ chuẩn pháp lý */
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.5); /* Trắng mờ 50% */
            text-align: justify;
        }
        
        .disclaimer-box strong { color: rgba(255, 255, 255, 0.7); }
        
        .disclaimer-list { margin-top: 8px; padding-left: 16px; list-style-type: disc; }
        .disclaimer-list li { margin-bottom: 6px; }

        .footer-legal {
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
        }

        .legal-links { display: flex; gap: 20px; }
        .legal-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-weight: 500; transition: color 0.3s; }
        .legal-links a:hover { color: var(--white); text-decoration: underline; }

        /* Responsive Mobile cho Footer Bottom */
        @media (max-width: 768px) {
            .disclaimer-box { padding: 16px; font-size: 10px; }
            .footer-legal { flex-direction: column-reverse; gap: 16px; text-align: center; }
            .legal-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
        }
        .legal-links { display: flex; gap: 20px; }
        .legal-links a { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500; }
        .legal-links a:hover { color: var(--white); text-decoration: underline; }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .hero-right .img-main { width: 100%; height: 450px; }
            .hero-right .img-sub { display: none; }
            .hero-right { height: 500px; }
            .usp-grid, .product-grid, .amenities-grid { grid-template-columns: repeat(2, 1fr); }
            .tab-pane { grid-template-columns: 1fr; padding: 30px; }
            .tp-image { height: 350px; order: -1; margin-bottom: 24px; }
            .trust-grid-wrapper { grid-template-columns: 1fr; }
            .compare-grid { grid-template-columns: 1fr; }
            .policy-grid, .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
            .premium-offer-box, .final-cta-box { flex-direction: column; text-align: center; padding: 40px; }
            .action-box { width: 100%; max-width: 500px; }
            .map-footer-info { flex-wrap: wrap; justify-content: center; }
            .map-info-item { min-width: 250px; }
            .product-card.vip-card { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
            .product-card.vip-card .pc-image { height: 100%; }
        }
        @media (max-width: 768px) {
            .section-header h2 { font-size: 32px; }
            .nav-links { display: none; } /* Add hamburger menu logic if needed */
            .hero-grid { display: flex; flex-direction: column; gap: 40px; }
            .hero-top { order: 1; margin-bottom: 0; }
            .hero-right { order: 2; height: 400px; width: 100%; }
            .hero-bottom { order: 3; }
            .inline-form, .final-form { flex-direction: column; border-radius: 16px; padding: 12px; }
            .inline-form input, .final-form input { padding: 12px; border-bottom: 1px solid #F1F5F9; margin-bottom: 8px; }
            .btn-submit, .btn-submit-final, .btn-download, .btn-banner, .btn-calc-download { width: 100%; justify-content: center; }
            .form-footer { flex-direction: column; align-items: flex-start; }
            .usp-grid, .product-grid, .amenities-grid, .comp-grid { grid-template-columns: 1fr; }
			.policy-grid { grid-template-columns: 2fr 2fr; }
            .tab-nav { 
                flex-direction: row; /* Ép 3 thẻ nằm cùng 1 hàng ngang */
                padding: 6px; 
                gap: 4px; /* Khoảng cách nhỏ giữa các tab */
            }
            .tab-btn { 
                flex-direction: column; /* Đưa Icon lên trên Text */
                padding: 10px 4px; 
                font-size: 11px; /* Thu nhỏ cỡ chữ để vừa vặn chiều ngang */
                gap: 6px;
                border-radius: 10px;
                text-align: center;
                line-height: 1.2;
            }
            .tab-btn i {
                font-size: 18px; /* Tăng nhẹ size Icon để tạo điểm nhấn thị giác */
                margin-bottom: 2px;
            }
            .value-box, .cta-group { flex-direction: column; }
            .btn-tab { width: 100%; }
            .overview-grid { grid-template-columns: 1fr; }
            .fact-sheet { grid-template-columns: 1fr 1fr; }
            .image-wrapper img { height: 400px; }
            .connect-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
            .map-header { flex-direction: column; align-items: flex-start; }
            .map-content { height: 600px; }
            .map-footer-info { flex-direction: column; width: calc(100% - 32px); bottom: 16px; }
            .video-wrapper { height: 280px; }
            .roi-stats, .savings-grid { grid-template-columns: 1fr; }
            .cta-magnet, .shield-badge { flex-direction: column; text-align: center; align-items: center; }
            .product-card.vip-card { grid-column: span 1; display: flex; flex-direction: column; }
            .product-card.vip-card .pc-image { height: 280px; }
            footer { padding-top: 180px; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
            .disclaimer { max-width: 100%; }
        }
        @media (max-width: 480px) {
            .fact-sheet { grid-template-columns: 1fr; }
        }

/* ==================== HIỆU ỨNG VIDEO YOUTUBE HERO ==================== */
        .hero-right { grid-area: right; position: relative; height: 600px; display: flex; align-items: center; justify-content: flex-end; }
        
        .hero-video-wrapper {
            width: 90%; height: 520px; position: relative;
            border-radius: 32px; overflow: hidden;
            box-shadow: 0 30px 60px rgba(15, 44, 89, 0.15);
            border: 6px solid var(--white);
            background: var(--vh-navy);
        }

        /* Thủ thuật CSS ép iframe Youtube tràn đầy (như object-fit: cover) */
        .youtube-frame-wrapper {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            overflow: hidden; pointer-events: none; /* Khóa Click để không mở tab YouTube */
        }
        .youtube-frame-wrapper iframe {
            position: absolute; top: 50%; left: 50%;
            width: 100vw; height: 56.25vw; /* Tỷ lệ 16:9 */
            min-height: 100%; min-width: 177.77vh; /* Đảm bảo lấp đầy mọi kích thước */
            transform: translate(-50%, -50%);
        }

        /* Hiệu ứng Zoom nhẹ */
        .hero-video-wrapper:hover .youtube-frame-wrapper { transform: scale(1.05); transition: transform 3s ease; }

        .video-overlay-ui {
            position: absolute; inset: 0; z-index: 2;
            background: linear-gradient(to top, rgba(15, 44, 89, 0.4) 0%, transparent 40%);
            display: flex; align-items: flex-end; padding: 24px; pointer-events: none; 
        }

        .mute-btn {
            pointer-events: auto; /* Cho phép click lại nút này */
            background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
            color: var(--white); border: 1px solid rgba(255, 255, 255, 0.4);
            padding: 8px 16px; border-radius: 100px; font-size: 12px; font-weight: 600;
            display: flex; align-items: center; gap: 8px; cursor: pointer; transition: all 0.3s;
        }
        .mute-btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }

        .gc-1 { top: 30px; left: -20px; animation-delay: 0s; z-index: 3; }
        .gc-2 { bottom: 80px; right: -20px; animation-delay: 2s; z-index: 3; }

        @media (max-width: 1024px) {
            .hero-video-wrapper { width: 100%; height: 450px; }
        }
        @media (max-width: 768px) {
            .hero-right { height: auto; }
            .hero-video-wrapper { width: 100%; height: 350px; border-width: 4px; }
            .gc-1 { top: -15px; left: 10px; }
            .gc-2 { bottom: 10px; right: 10px; }
            .mute-btn { padding: 6px 12px; font-size: 11px; }
			.trust-card { 
                grid-template-columns: 1fr; /* Ép toàn bộ khối về 1 cột dọc */
            }
            .trust-content { 
                padding: 40px 24px 20px; /* Tối ưu lại khoảng trống bao quanh chữ */
            }
            .trust-image { 
                min-height: 280px; /* Đảm bảo ảnh đủ không gian hiển thị */
            }
            /* Chuyển hướng lớp sương mù (Gradient) từ ngang sang dọc để tạo hiệu ứng chuyển cảnh mượt mà từ chữ xuống ảnh */
            .trust-image::after { 
                width: 100%; 
                height: 50%; 
                background: linear-gradient(to bottom, var(--vh-navy) 0%, transparent 100%); 
            }
        }
/* =======================================================
   HIỆU ỨNG NGỌN LỬA KÍCH THÍCH CHUYỂN ĐỔI (FOMO EFFECT) 
   ======================================================= */
.icon-fire-animated {
    /* 1. Tạo màu Gradient Lửa (Đỏ -> Cam/Vàng) sang trọng */
    background: linear-gradient(135deg, #E63946 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Fallback cho các trình duyệt cũ */
    color: #E63946; 
    
    /* 2. Bắt buộc phải có display: inline-block để hiệu ứng Transform hoạt động trên Icon */
    display: inline-block; 
    
    /* 3. Gọi hiệu ứng chuyển động lặp lại liên tục */
    animation: fire-burn-pulse 1.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Keyframes định nghĩa nhịp đập và độ tỏa sáng */
@keyframes fire-burn-pulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 2px rgba(230, 57, 70, 0.4));
    }
    50% {
        transform: scale(1.25); /* Phóng to lên 25% đập vào mắt người xem */
        filter: drop-shadow(0 0 10px rgba(230, 57, 70, 0.9)); /* Tỏa vầng sáng đỏ rực */
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 2px rgba(230, 57, 70, 0.4));
    }
}
/* ==================== MODAL VIDEO POPUP ==================== */
        .video-modal {
            display: flex;
            position: fixed;
            z-index: 99999;
            inset: 0;
            background: rgba(15, 44, 89, 0.9); /* Màu Navy tối mờ sang trọng */
            backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
            align-items: center; justify-content: center;
            opacity: 0; visibility: hidden;
            transition: all 0.3s ease;
        }
        .video-modal.active {
            opacity: 1; visibility: visible;
        }
        .video-modal-content {
            position: relative;
            width: 90%; max-width: 1000px;
            aspect-ratio: 16/9; /* Giữ chuẩn tỷ lệ màn hình Youtube */
            background: #000;
            border-radius: 16px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
            transform: scale(0.9);
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .video-modal.active .video-modal-content {
            transform: scale(1);
        }
        #youtube-embed-container {
            width: 100%; height: 100%; border-radius: 16px; overflow: hidden;
        }
        #youtube-embed-container iframe {
            width: 100%; height: 100%; border: none;
        }
        .video-modal-close {
            position: absolute;
            top: -50px; right: 0;
            background: transparent; border: none;
            color: var(--white); font-size: 32px;
            cursor: pointer; transition: color 0.3s;
        }
        .video-modal-close:hover { color: var(--gold-dark); }
        
        @media (max-width: 768px) {
            .video-modal-content { width: 95%; }
            .video-modal-close { top: -40px; font-size: 28px; }
        }
/* ======= CẬP NHẬT: LÀM NỔI BẬT THẺ ƯU ĐÃI TÀI CHÍNH ======= */
        .fin-badge {
            display: inline-block; 
            /* Dùng dải màu vàng sáng rực rỡ để nổi bật trên nền tối */
            background: linear-gradient(135deg, #F59E0B 0%, var(--gold-dark) 100%); 
            /* Ép chữ màu trắng tinh khiết, in đậm */
            color: var(--white); 
            padding: 8px 24px; 
            border-radius: 100px; 
            font-size: 13px; 
            font-weight: 800; 
            text-transform: uppercase; 
            letter-spacing: 1px; 
            margin-bottom: 24px;
            border: none; /* Xóa viền mờ cũ */
            /* Thêm hiệu ứng tỏa sáng (Glow) màu vàng xung quanh thẻ */
            box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4); 
        }
        /* ========================================================== */

    /* Kế thừa hệ màu đồng bộ từ trang chủ */
    :root {
        --vh-navy: #0F2C59; 
        --gold-dark: #B8860B; 
        --text-main: #1E293B;
        --text-muted: #64748B;
        --bg-surface: #F8FAFC; 
        --white: #FFFFFF;
        --border-light: #E2E8F0;
    }

    .privacy-page {
        background-color: var(--bg-surface);
        font-family: 'Plus Jakarta Sans', sans-serif;
        color: var(--text-main);
        line-height: 1.7;
        padding-bottom: 80px;
    }

    /* Hero Banner Mini */
    .privacy-hero {
        background: linear-gradient(135deg, var(--vh-navy) 0%, #1a4280 100%);
        padding: 80px 20px 60px;
        text-align: center;
        color: var(--white);
        position: relative;
        overflow: hidden;
    }
    .privacy-hero::before {
        content: ''; position: absolute; inset: 0;
        background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
        background-size: 20px 20px; pointer-events: none;
    }
    .privacy-hero h1 {
        font-family: 'Playfair Display', serif;
        font-size: 40px;
        margin-bottom: 16px;
        position: relative;
        z-index: 2;
    }
    .privacy-hero p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
        position: relative;
        z-index: 2;
    }

    /* Khối Nội Dung Chính */
    .privacy-container {
        max-width: 900px; /* Thu hẹp lại để văn bản dễ đọc hơn */
        margin: -30px auto 0;
        background: var(--white);
        border-radius: 24px;
        padding: 60px 50px;
        box-shadow: 0 20px 40px rgba(15, 44, 89, 0.05);
        position: relative;
        z-index: 5;
        border: 1px solid var(--border-light);
    }

    .privacy-section {
        margin-bottom: 40px;
    }
    .privacy-section:last-child { margin-bottom: 0; }

    .privacy-section h2 {
        font-size: 20px;
        color: var(--vh-navy);
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 12px;
    }
    .privacy-section h2 i {
        color: var(--gold-dark);
        font-size: 24px;
    }
    .privacy-section p {
        margin-bottom: 16px;
        font-size: 15px;
    }
    .privacy-section ul {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 16px;
    }
    .privacy-section ul li {
        position: relative;
        padding-left: 24px;
        margin-bottom: 10px;
        font-size: 15px;
    }
    .privacy-section ul li::before {
        content: '■';
        position: absolute;
        left: 0;
        top: -2px;
        color: var(--gold-dark);
        font-size: 12px;
    }

    /* Hộp Cảnh Báo/Miễn Trừ */
    .privacy-alert {
        background: rgba(184, 134, 11, 0.05);
        border-left: 4px solid var(--gold-dark);
        padding: 20px;
        border-radius: 0 12px 12px 0;
        margin-top: 40px;
    }
    .privacy-alert strong { color: var(--vh-navy); }

    /* Nút quay lại */
    .btn-back-home {
        display: inline-flex; align-items: center; gap: 8px;
        margin-bottom: 30px; font-weight: 600; font-size: 14px;
        color: var(--text-muted); text-decoration: none; transition: color 0.3s;
    }
    .btn-back-home:hover { color: var(--vh-navy); }

    /* Responsive */
    @media (max-width: 768px) {
        .privacy-hero { padding: 60px 20px 40px; }
        .privacy-hero h1 { font-size: 32px; }
        .privacy-container { margin: -20px 16px 0; padding: 40px 24px; }
        .privacy-section h2 { font-size: 18px; }
        .privacy-section p, .privacy-section ul li { font-size: 14px; }
    }
/* ================= BẢN FIX CUỐI CÙNG CHO CONTACT FORM 7 ================= */
        
        /* 1. Nếu CF7 sinh ra thẻ <form> hay <p>, ép chúng chiếm 100% và trở thành Flexbox */
        .inline-form form,
        .inline-form p {
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            width: 100% !important;
            margin: 0 !important;
            padding: 0 !important;
            gap: 8px !important;
        }

        /* 2. Ép thẻ span bọc ngoài input giãn ra chiếm hết khoảng trống */
        .inline-form .wpcf7-form-control-wrap {
            flex: 1 !important;
            width: 100% !important;
            display: block !important;
            position: static !important;
        }

        /* 3. Lột sạch viền, nền của ô input mặc định và ép nó lấp đầy thẻ span */
        .inline-form input.wpcf7-form-control {
            width: 100% !important;
            border: none !important;
            outline: none !important;
            background: transparent !important;
            box-shadow: none !important;
            padding: 12px 10px 12px 20px !important;
            font-family: inherit !important;
            font-size: 15px !important;
            color: var(--text-main) !important;
            margin: 0 !important;
        }

        /* 4. Giữ cho nút bấm không bị co dúm lại */
        .inline-form .btn-submit {
            flex-shrink: 0 !important;
            margin: 0 !important;
        }

        /* 5. Ẩn icon loading xoay xoay làm méo form */
        .inline-form .wpcf7-spinner {
            display: none !important;
        }

        /* 6. Đưa thông báo lỗi (màu đỏ) xuống dưới form để không vỡ khung */
        .inline-form .wpcf7-not-valid-tip {
            position: absolute;
            bottom: -22px;
            left: 20px;
            font-size: 12px;
            color: #E63946 !important;
            font-weight: 600;
        }
        
        /* Ẩn hộp báo lỗi to ở dưới cùng của form */
        .wpcf7 form.invalid .wpcf7-response-output,
        .wpcf7 form.sent .wpcf7-response-output {
            display: none !important;
        }

        /* 7. FIX TRÊN GIAO DIỆN MOBILE (TRỞ VỀ 1 CỘT) */
        @media (max-width: 768px) {
            .inline-form p, .inline-form form {
                flex-direction: column !important;
            }
            .inline-form input.wpcf7-form-control {
                padding: 12px !important;
                border-bottom: 1px solid #E2E8F0 !important; /* Tạo đường gạch chân mờ để phân cách */
                margin-bottom: 8px !important;
            }
            .inline-form .btn-submit {
                width: 100% !important;
                justify-content: center !important;
            }
            .inline-form .wpcf7-not-valid-tip {
                bottom: -20px; left: 50%; transform: translateX(-50%);
            }
        }
        /* ======================================================================== */

/* CSS DÀNH RIÊNG CHO KHỐI BOOKING */
        .booking-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--vh-navy) 0%, #0a1f3f 100%);
            position: relative;
            overflow: hidden;
        }
        
        /* Họa tiết lưới mờ sang trọng phía sau */
        .booking-section::before {
            content: ''; position: absolute; inset: 0;
            background-image: radial-gradient(rgba(184, 134, 11, 0.15) 1px, transparent 1px);
            background-size: 30px 30px; pointer-events: none;
        }

        /* Vệt sáng glow góc trái */
        .booking-section::after {
            content: ''; position: absolute; top: -100px; left: -100px; width: 400px; height: 400px;
            background: radial-gradient(circle, rgba(184, 134, 11, 0.2) 0%, transparent 70%);
            border-radius: 50%; pointer-events: none; filter: blur(40px);
        }

        .booking-grid {
            display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px;
            align-items: center; position: relative; z-index: 2;
        }

        /* --- CỘT TRÁI: CONTENT & LỢI ÍCH --- */
        .booking-content { color: var(--white); }
        
        .booking-badge {
            display: inline-flex; align-items: center; gap: 8px;
            background: rgba(230, 57, 70, 0.15); border: 1px solid rgba(230, 57, 70, 0.3);
            color: #ff4d4f; padding: 8px 20px; border-radius: 100px;
            font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
            margin-bottom: 24px; animation: pulse-red-booking 2s infinite;
        }
        @keyframes pulse-red-booking { 0% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.5); } 70% { box-shadow: 0 0 0 15px rgba(230, 57, 70, 0); } 100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); } }

        .booking-content h2 {
            font-family: 'Playfair Display', serif; font-size: 46px; line-height: 1.2;
            margin-bottom: 16px; color: var(--white);
        }
        .booking-content h2 span { color: var(--gold-dark); }
        
        .booking-price {
            font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700;
            color: var(--gold-light); margin-bottom: 8px;
            background: rgba(255,255,255,0.05); display: inline-block; padding: 12px 24px; border-radius: 16px;
            border-left: 4px solid var(--gold-dark);
        }
        .booking-price span { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 500; opacity: 0.8; display: block; margin-top: 4px; }

        .booking-desc { font-size: 16px; color: rgba(255,255,255,0.8); margin: 24px 0 32px; line-height: 1.6; }

        .booking-benefits { list-style: none; display: flex; flex-direction: column; gap: 16px; }
        .booking-benefits li {
            display: flex; align-items: center; gap: 16px;
            background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
            padding: 16px 20px; border-radius: 16px; transition: transform 0.3s;
        }
        .booking-benefits li:hover { transform: translateX(10px); background: rgba(255,255,255,0.08); border-color: rgba(184, 134, 11, 0.3); }
        .booking-benefits li i { color: var(--gold-dark); font-size: 20px; width: 24px; text-align: center; }
        .booking-benefits li span { font-size: 15px; font-weight: 600; color: var(--white); }

        /* --- CỘT PHẢI: FORM CHỐT LEAD VIP --- */
        .booking-form-box {
            background: var(--white); border-radius: 24px; padding: 40px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.2); position: relative;
            border-top: 6px solid var(--gold-dark);
        }
        .booking-form-header { text-align: center; margin-bottom: 24px; }
        .booking-form-header h3 { font-size: 24px; color: var(--vh-navy); margin-bottom: 8px; font-weight: 800; }
        .booking-form-header p { font-size: 14px; color: var(--text-muted); }

        /* Style cho Form (Tương thích Contact Form 7) */
        .booking-form .wpcf7-form-control-wrap { display: block; margin-bottom: 16px; }
        .booking-form input, .booking-form select {
            width: 100%; padding: 14px 20px; border-radius: 12px;
            border: 1px solid var(--border-light); background: #F8FAFC;
            font-family: inherit; font-size: 14px; color: var(--text-main); transition: all 0.3s;
        }
        .booking-form input:focus, .booking-form select:focus { border-color: var(--gold-dark); background: var(--white); outline: none; box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1); }
        
        .booking-form .btn-submit-booking {
            width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
            background: linear-gradient(135deg, var(--gold-dark) 0%, #D4AF37 100%);
            color: var(--white); font-size: 16px; font-weight: 700;
            padding: 18px; border-radius: 12px; border: none; cursor: pointer;
            text-transform: uppercase; box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3); transition: all 0.3s;
            margin-top: 10px;
        }
        .booking-form .btn-submit-booking:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(184, 134, 11, 0.4); }

        .secure-note { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 12px; color: var(--text-muted); }
        .secure-note i { color: var(--safe-green); }

        /* Cố định layout form CF7 nếu dùng shortcode */
        .booking-form p { margin-bottom: 0; }
        .booking-form .wpcf7-spinner { display: none !important; }
        .booking-form .wpcf7-not-valid-tip { font-size: 12px; color: var(--alert-red); margin-top: 4px; display: block; }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .booking-grid { grid-template-columns: 1fr; gap: 40px; }
            .booking-content { text-align: center; }
            .booking-badge { margin: 0 auto 24px; }
            .booking-price { border-left: none; border-bottom: 4px solid var(--gold-dark); text-align: center; }
            .booking-benefits li { text-align: left; }
        }
        @media (max-width: 768px) {
            .booking-section { padding: 60px 0; }
            .booking-content h2 { font-size: 32px; }
            .booking-price { font-size: 28px; padding: 12px 16px; }
            .booking-form-box { padding: 30px 20px; }
        }
/* ==================== MODAL ĐĂNG KÝ SỚM (NHÀ ĐẦU TƯ) ==================== */
        .investor-modal {
            position: fixed; inset: 0; z-index: 999999;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden; transition: all 0.4s ease;
        }
        .investor-modal.active { opacity: 1; visibility: visible; }
        
        .im-overlay {
            position: absolute; inset: 0;
            background: rgba(15, 44, 89, 0.85);
            backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
        }

        .im-content-box {
            position: relative; z-index: 2;
            width: 90%; max-width: 900px;
            background: var(--white); border-radius: 24px; overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            transform: translateY(30px) scale(0.95); transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .investor-modal.active .im-content-box { transform: translateY(0) scale(1); }

        .im-close-btn {
            position: absolute; top: 16px; right: 16px; z-index: 10;
            width: 40px; height: 40px; border-radius: 50%;
            background: var(--bg-surface); border: 1px solid var(--border-light);
            color: var(--vh-navy); font-size: 20px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: all 0.3s;
        }
        .im-close-btn:hover { background: var(--alert-red); color: var(--white); border-color: var(--alert-red); transform: rotate(90deg); }

        .im-grid { display: grid; grid-template-columns: 1fr 1fr; }

        /* Cột trái Modal */
        .im-left { position: relative; padding: 40px; display: flex; align-items: flex-end; min-height: 450px; }
        .im-left::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(15, 44, 89, 0.95) 0%, rgba(15, 44, 89, 0.2) 100%);
        }
        .im-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
        
        .im-left-content { position: relative; z-index: 2; color: var(--white); }
        .im-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--gold-dark); color: var(--white); padding: 6px 16px; border-radius: 100px; font-size: 12px; font-weight: 700; text-transform: uppercase; margin-bottom: 16px; }
        .im-left-content h3 { font-family: 'Playfair Display', serif; font-size: 32px; line-height: 1.2; margin-bottom: 12px; }
        .im-left-content h3 span { color: var(--gold-dark); }
        .im-left-content p { font-size: 14px; color: rgba(255,255,255,0.85); margin: 0; }

        /* Cột phải Modal */
        .im-right { padding: 40px; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
        .im-form-header { text-align: center; margin-bottom: 24px; }
        .im-form-header h4 { font-size: 24px; color: var(--vh-navy); margin-bottom: 8px; font-weight: 800; }
        .im-form-header p { font-size: 14px; color: var(--safe-green); font-weight: 600; margin: 0; }

       /* Ép khung CF7 trong Popup dàn dọc */
        .im-form-wrapper form, .im-form-wrapper p { flex-direction: column !important; align-items: stretch !important; gap: 16px !important; margin: 0 !important; }
        
        /* 1. FIX Ô INPUT & SELECT (Dropdown) ĐỒNG BỘ */
        .im-form-wrapper input.wpcf7-form-control,
        .im-form-wrapper select.wpcf7-form-control { 
            width: 100% !important;
            padding: 14px 20px !important;
            border: 1px solid var(--border-light) !important; 
            border-radius: 12px !important; 
            background: #F8FAFC !important; 
            font-family: inherit !important;
            font-size: 14px !important;
            color: var(--text-main) !important;
            height: auto !important;
            box-shadow: none !important;
            margin: 0 !important;
        }

        /* Thêm mũi tên Custom cho thẻ Select để xóa mũi tên xấu của trình duyệt */
        .im-form-wrapper select.wpcf7-form-control {
            appearance: none; -webkit-appearance: none; -moz-appearance: none;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2364748B" width="18px" height="18px"><path d="M7 10l5 5 5-5z"/></svg>') !important;
            background-repeat: no-repeat !important;
            background-position: right 15px center !important;
            padding-right: 40px !important;
        }
        
        .im-form-wrapper input.wpcf7-form-control:focus,
        .im-form-wrapper select.wpcf7-form-control:focus { 
            border-color: var(--gold-dark) !important; 
            background: var(--white) !important; 
            outline: none !important;
            box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1) !important;
        }

        /* 2. FIX NÚT BUTTON SUBMIT CHUẨN MÀU VÀNG GOLD */
        .im-form-wrapper button[type="submit"],
        .im-form-wrapper .wpcf7-submit { 
            width: 100% !important; 
            display: flex !important;
            align-items: center !important;
            justify-content: center !important; 
            gap: 10px !important;
            padding: 16px !important; 
            border-radius: 12px !important; 
            background: linear-gradient(135deg, var(--gold-dark) 0%, #D4AF37 100%) !important;
            color: var(--white) !important;
            font-size: 16px !important;
            font-weight: 700 !important;
            border: none !important;
            cursor: pointer !important;
            text-transform: uppercase !important;
            box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3) !important;
            transition: all 0.3s !important;
            margin-top: 8px !important;
        }
        
        .im-form-wrapper button[type="submit"]:hover,
        .im-form-wrapper .wpcf7-submit:hover {
            transform: translateY(-3px) !important; 
            box-shadow: 0 15px 25px rgba(184, 134, 11, 0.4) !important;
        }

        /* 3. Ẩn các thành phần thừa của CF7 trong Popup */
        .im-form-wrapper .wpcf7-spinner { display: none !important; }
        .im-form-wrapper .wpcf7-not-valid-tip { font-size: 12px !important; color: var(--alert-red) !important; margin-top: 4px !important; display: block !important; }
        .im-form-wrapper form.invalid .wpcf7-response-output,
        .im-form-wrapper form.sent .wpcf7-response-output { display: none !important; }

        .im-secure { text-align: center; margin-top: 20px; font-size: 12px; color: var(--text-muted); }
        .im-secure i { color: var(--safe-green); margin-right: 4px; }

        /* Responsive Mobile */
        @media (max-width: 768px) {
            .im-grid { grid-template-columns: 1fr; }
            .im-left { min-height: 200px; padding: 24px; }
            .im-left-content h3 { font-size: 24px; }
            .im-right { padding: 30px 24px; }
            .im-close-btn { top: 5x; right: 5px; background: var(--white); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
        }
/* ==================== MODAL VIP (SIÊU GIÀU - DARK MODE) ==================== */
        .vip-modal {
            position: fixed; inset: 0; z-index: 999999;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden; transition: all 0.4s ease;
        }
        .vip-modal.active { opacity: 1; visibility: visible; }
        
        /* Box Dark Mode */
        .vip-content-box {
            position: relative; z-index: 2;
            width: 90%; max-width: 900px;
            background: var(--vh-navy); /* Nền Navy thay vì trắng */
            border: 1px solid rgba(184, 134, 11, 0.4); /* Viền Vàng */
            border-radius: 24px; overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(184, 134, 11, 0.1); /* Glow Vàng Tỏa Ra */
            transform: translateY(30px) scale(0.95); transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .vip-modal.active .vip-content-box { transform: translateY(0) scale(1); }

        /* Nút Tắt Popup VIP */
        .vip-content-box .im-close-btn { background: rgba(255,255,255,0.1); color: var(--white); border: none; backdrop-filter: blur(4px); }
        .vip-content-box .im-close-btn:hover { background: var(--alert-red); color: var(--white); transform: rotate(90deg); }

        /* Cột Trái VIP */
        .vip-left::after { background: linear-gradient(to top, var(--vh-navy) 0%, rgba(15, 44, 89, 0.2) 100%); }
        .vip-badge {border: 1px solid var(--gold-dark); backdrop-filter: blur(4px); }
        
        /* Cột Phải VIP (Form) */
        .vip-right { background: var(--vh-navy); color: var(--white); }
        .vip-right .im-form-header h4 { color: var(--gold-light); font-family: 'Playfair Display', serif; font-size: 28px; }
        .vip-right .im-form-header p { color: rgba(255,255,255,0.6); font-weight: 400; }
        
        /* Ép giao diện Input/Select thành Glassmorphism trong nền tối */
        .vip-form-wrapper form, .vip-form-wrapper p { flex-direction: column !important; align-items: stretch !important; gap: 16px !important; margin: 0 !important; padding-bottom: 15px;}
        .vip-form-wrapper input.wpcf7-form-control,
        .vip-form-wrapper select.wpcf7-form-control { 
            background: rgba(255,255,255,0.05) !important; /* Nền kính mờ */
            border: 1px solid rgba(255,255,255,0.1) !important;
            color: var(--white) !important;
            padding: 14px 20px !important;
            border-radius: 12px !important; 
            font-family: inherit !important; font-size: 14px !important;
            height: auto !important; box-shadow: none !important; margin: 0 !important;
            width: 100% !important;
        }
        .vip-form-wrapper input.wpcf7-form-control::placeholder { color: rgba(255,255,255,0.5) !important; }
        .vip-form-wrapper input.wpcf7-form-control:focus,
        .vip-form-wrapper select.wpcf7-form-control:focus {
            border-color: var(--gold-dark) !important;
            background: rgba(0,0,0,0.3) !important;
            outline: none !important; box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.15) !important;
        }

        /* Nút Submit VIP (Kế thừa màu Vàng) */
        .vip-form-wrapper button[type="submit"],
        .vip-form-wrapper .wpcf7-submit { 
            width: 100% !important; display: flex !important; align-items: center !important; justify-content: center !important; gap: 10px !important;
            padding: 16px !important; border-radius: 12px !important; 
            background: linear-gradient(135deg, var(--gold-dark) 0%, #D4AF37 100%) !important;
            color: var(--white) !important; font-size: 16px !important; font-weight: 700 !important;
            border: none !important; cursor: pointer !important; text-transform: uppercase !important;
            box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3) !important; transition: all 0.3s !important; margin-top: 8px !important;
        }
        .vip-form-wrapper button[type="submit"]:hover,
        .vip-form-wrapper .wpcf7-submit:hover { transform: translateY(-3px) !important; box-shadow: 0 15px 25px rgba(184, 134, 11, 0.4) !important; }

        /* Mũi tên Select màu trắng */
        .vip-form-wrapper select.wpcf7-form-control {
            appearance: none; -webkit-appearance: none; -moz-appearance: none;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFFFFF" width="18px" height="18px"><path d="M7 10l5 5 5-5z"/></svg>') !important;
            background-repeat: no-repeat !important; background-position: right 15px center !important; padding-right: 40px !important;
        }

        /* Dòng chữ bảo mật */
        .vip-secure { color: rgba(255,255,255,0.5); font-size: 12px; text-align: center; margin-top: 20px; }
        .vip-secure i { color: var(--gold-dark); margin-right: 4px; }
        
        .vip-form-wrapper .wpcf7-spinner { display: none !important; }
        .vip-form-wrapper .wpcf7-not-valid-tip { font-size: 12px !important; color: #ff4d4f !important; margin-top: 4px !important; display: block !important; }
        .vip-form-wrapper form.invalid .wpcf7-response-output, .vip-form-wrapper form.sent .wpcf7-response-output { display: none !important; }
/* ==================== MODAL TẢI BẢN ĐỒ 1/500 ==================== */
        .map-modal {
            position: fixed; inset: 0; z-index: 999999;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden; transition: all 0.4s ease;
        }
        .map-modal.active { opacity: 1; visibility: visible; }
        
        .map-content-box {
            position: relative; z-index: 2; width: 90%; max-width: 900px;
            background: var(--white); border-radius: 24px; overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            transform: translateY(30px) scale(0.95); transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .map-modal.active .map-content-box { transform: translateY(0) scale(1); }

        /* Lớp phủ cột trái */
        .map-left::after { background: linear-gradient(to top, rgba(15, 44, 89, 0.95) 0%, rgba(15, 44, 89, 0.4) 100%); }

        /* Style Form CF7 tải bản đồ */
        .map-form-wrapper form, .map-form-wrapper p { flex-direction: column !important; align-items: stretch !important; gap: 16px !important; margin: 0 !important; }
        
        .map-form-wrapper input.wpcf7-form-control { 
            width: 100% !important; padding: 14px 20px !important;
            border: 1px solid var(--border-light) !important; border-radius: 12px !important; 
            background: #F8FAFC !important; font-family: inherit !important;
            font-size: 14px !important; color: var(--text-main) !important; box-shadow: none !important; margin: 0 !important; margin-bottom: 15px !important; }
        
        .map-form-wrapper input.wpcf7-form-control:focus { 
            border-color: var(--gold-dark) !important; background: var(--white) !important; 
            outline: none !important; box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1) !important;
        }

        .map-form-wrapper button[type="submit"], .map-form-wrapper .wpcf7-submit { 
            width: 100% !important; display: flex !important; align-items: center !important; justify-content: center !important; gap: 10px !important;
            padding: 16px !important; border-radius: 12px !important; 
            background: linear-gradient(135deg, var(--gold-dark) 0%, #D4AF37 100%) !important;
            color: var(--white) !important; font-size: 16px !important; font-weight: 700 !important;
            border: none !important; cursor: pointer !important; text-transform: uppercase !important;
            box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3) !important; transition: all 0.3s !important; margin-top: 8px !important;
        }
        
        .map-form-wrapper button[type="submit"]:hover, .map-form-wrapper .wpcf7-submit:hover { 
            transform: translateY(-3px) !important; box-shadow: 0 15px 25px rgba(184, 134, 11, 0.4) !important; 
        }

        .map-form-wrapper .wpcf7-spinner { display: none !important; }
        .map-form-wrapper .wpcf7-not-valid-tip { font-size: 12px !important; color: var(--alert-red) !important; margin-top: 4px !important; display: block !important; }
        .map-form-wrapper form.invalid .wpcf7-response-output, .map-form-wrapper form.sent .wpcf7-response-output { display: none !important; }
/* ==================== MODAL BẢN ĐỒ LIÊN KẾT VÙNG ==================== */
        .region-modal {
            position: fixed; inset: 0; z-index: 999999;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden; transition: all 0.4s ease;
        }
        .region-modal.active { opacity: 1; visibility: visible; }
        
        .region-content-box {
            position: relative; z-index: 2; width: 90%; max-width: 900px;
            background: var(--white); border-radius: 24px; overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            transform: translateY(30px) scale(0.95); transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .region-modal.active .region-content-box { transform: translateY(0) scale(1); }

        .region-left::after { background: linear-gradient(to top, rgba(15, 44, 89, 0.95) 0%, rgba(15, 44, 89, 0.4) 100%); }

        /* Style Form CF7 */
        .region-form-wrapper form, .region-form-wrapper p { flex-direction: column !important; align-items: stretch !important; gap: 16px !important; margin: 0 !important; }
        
        .region-form-wrapper input.wpcf7-form-control { 
            width: 100% !important; padding: 14px 20px !important;
            border: 1px solid var(--border-light) !important; border-radius: 12px !important; 
            background: #F8FAFC !important; font-family: inherit !important;
            font-size: 14px !important; color: var(--text-main) !important; box-shadow: none !important; margin-bottom: 15px !important;}        
        .region-form-wrapper input.wpcf7-form-control:focus { 
            border-color: var(--gold-dark) !important; background: var(--white) !important; 
            outline: none !important; box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1) !important;
        }

        .region-form-wrapper button[type="submit"], .region-form-wrapper .wpcf7-submit { 
            width: 100% !important; display: flex !important; align-items: center !important; justify-content: center !important; gap: 10px !important;
            padding: 16px !important; border-radius: 12px !important; 
            background: linear-gradient(135deg, var(--gold-dark) 0%, #D4AF37 100%) !important;
            color: var(--white) !important; font-size: 16px !important; font-weight: 700 !important;
            border: none !important; cursor: pointer !important; text-transform: uppercase !important;
            box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3) !important; transition: all 0.3s !important; margin-top: 8px !important;
        }
        
        .region-form-wrapper button[type="submit"]:hover, .region-form-wrapper .wpcf7-submit:hover { 
            transform: translateY(-3px) !important; box-shadow: 0 15px 25px rgba(184, 134, 11, 0.4) !important; 
        }

        .region-form-wrapper .wpcf7-spinner { display: none !important; }
        .region-form-wrapper .wpcf7-not-valid-tip { font-size: 12px !important; color: var(--alert-red) !important; margin-top: 4px !important; display: block !important; }
        .region-form-wrapper form.invalid .wpcf7-response-output, .region-form-wrapper form.sent .wpcf7-response-output { display: none !important; }
/* ==================== MODAL THÔNG TIN NỘI BỘ ==================== */
        .internal-modal {
            position: fixed; inset: 0; z-index: 999999;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden; transition: all 0.4s ease;
        }
        .internal-modal.active { opacity: 1; visibility: visible; }
        
        .internal-content-box {
            position: relative; z-index: 2; width: 90%; max-width: 900px;
            background: var(--white); border-radius: 24px; overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            transform: translateY(30px) scale(0.95); transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .internal-modal.active .internal-content-box { transform: translateY(0) scale(1); }

        .internal-left::after { background: linear-gradient(to top, rgba(15, 44, 89, 0.95) 0%, rgba(15, 44, 89, 0.4) 100%); }

        /* Style Form CF7 */
        .internal-form-wrapper form, .internal-form-wrapper p { flex-direction: column !important; align-items: stretch !important; gap: 16px !important; margin: 0 !important; }
        
        .internal-form-wrapper input.wpcf7-form-control { 
            width: 100% !important; padding: 14px 20px !important;
            border: 1px solid var(--border-light) !important; border-radius: 12px !important; 
            background: #F8FAFC !important; font-family: inherit !important;
            font-size: 14px !important; color: var(--text-main) !important; box-shadow: none !important; margin: 0 !important; margin-bottom: 15px !important;}
        
        .internal-form-wrapper input.wpcf7-form-control:focus { 
            border-color: var(--gold-dark) !important; background: var(--white) !important; 
            outline: none !important; box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1) !important;
        }

        .internal-form-wrapper button[type="submit"], .internal-form-wrapper .wpcf7-submit { 
            width: 100% !important; display: flex !important; align-items: center !important; justify-content: center !important; gap: 10px !important;
            padding: 16px !important; border-radius: 12px !important; 
            background: linear-gradient(135deg, var(--gold-dark) 0%, #D4AF37 100%) !important;
            color: var(--white) !important; font-size: 16px !important; font-weight: 700 !important;
            border: none !important; cursor: pointer !important; text-transform: uppercase !important;
            box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3) !important; transition: all 0.3s !important; margin-top: 8px !important;
        }
        
        .internal-form-wrapper button[type="submit"]:hover, .internal-form-wrapper .wpcf7-submit:hover { 
            transform: translateY(-3px) !important; box-shadow: 0 15px 25px rgba(184, 134, 11, 0.4) !important; 
        }

        .internal-form-wrapper .wpcf7-spinner { display: none !important; }
        .internal-form-wrapper .wpcf7-not-valid-tip { font-size: 12px !important; color: var(--alert-red) !important; margin-top: 4px !important; display: block !important; }
        .internal-form-wrapper form.invalid .wpcf7-response-output, .internal-form-wrapper form.sent .wpcf7-response-output { display: none !important; }
/* ==================== MODAL BẢN ĐỒ TIỆN ÍCH ==================== */
        .utility-modal {
            position: fixed; inset: 0; z-index: 999999;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden; transition: all 0.4s ease;
        }
        .utility-modal.active { opacity: 1; visibility: visible; }
        
        .utility-content-box {
            position: relative; z-index: 2; width: 90%; max-width: 900px;
            background: var(--white); border-radius: 24px; overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            transform: translateY(30px) scale(0.95); transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .utility-modal.active .utility-content-box { transform: translateY(0) scale(1); }

        .utility-left::after { background: linear-gradient(to top, rgba(15, 44, 89, 0.95) 0%, rgba(15, 44, 89, 0.4) 100%); }

        /* Style Form CF7 */
        .utility-form-wrapper form, .utility-form-wrapper p { flex-direction: column !important; align-items: stretch !important; gap: 16px !important; margin: 0 !important; }
        
        .utility-form-wrapper input.wpcf7-form-control { 
            width: 100% !important; padding: 14px 20px !important;
            border: 1px solid var(--border-light) !important; border-radius: 12px !important; 
            background: #F8FAFC !important; font-family: inherit !important;
            font-size: 14px !important; color: var(--text-main) !important; box-shadow: none !important; margin: 0 !important; margin-bottom: 15px;}
        
        .utility-form-wrapper input.wpcf7-form-control:focus { 
            border-color: var(--gold-dark) !important; background: var(--white) !important; 
            outline: none !important; box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1) !important;
        }

        .utility-form-wrapper button[type="submit"], .utility-form-wrapper .wpcf7-submit { 
            width: 100% !important; display: flex !important; align-items: center !important; justify-content: center !important; gap: 10px !important;
            padding: 16px !important; border-radius: 12px !important; 
            background: linear-gradient(135deg, var(--gold-dark) 0%, #D4AF37 100%) !important;
            color: var(--white) !important; font-size: 16px !important; font-weight: 700 !important;
            border: none !important; cursor: pointer !important; text-transform: uppercase !important;
            box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3) !important; transition: all 0.3s !important; margin-top: 8px !important;
        }
        
        .utility-form-wrapper button[type="submit"]:hover, .utility-form-wrapper .wpcf7-submit:hover { 
            transform: translateY(-3px) !important; box-shadow: 0 15px 25px rgba(184, 134, 11, 0.4) !important; 
        }

        .utility-form-wrapper .wpcf7-spinner { display: none !important; }
        .utility-form-wrapper .wpcf7-not-valid-tip { font-size: 12px !important; color: var(--alert-red) !important; margin-top: 4px !important; display: block !important; }
        .utility-form-wrapper form.invalid .wpcf7-response-output, .utility-form-wrapper form.sent .wpcf7-response-output { display: none !important; }
/* ==================== MODAL BẢNG TÍNH DÒNG TIỀN (ROI) ==================== */
        .roi-modal {
            position: fixed; inset: 0; z-index: 999999;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden; transition: all 0.4s ease;
        }
        .roi-modal.active { opacity: 1; visibility: visible; }
        
        .roi-content-box {
            position: relative; z-index: 2; width: 90%; max-width: 900px;
            background: var(--white); border-radius: 24px; overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            transform: translateY(30px) scale(0.95); transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .roi-modal.active .roi-content-box { transform: translateY(0) scale(1); }

        .roi-left::after { background: linear-gradient(to top, rgba(15, 44, 89, 0.95) 0%, rgba(15, 44, 89, 0.4) 100%); }

        /* Style Form CF7 */
        .roi-form-wrapper form, .roi-form-wrapper p { flex-direction: column !important; align-items: stretch !important; gap: 16px !important; margin: 0 !important; }
        
        .roi-form-wrapper input.wpcf7-form-control { 
            width: 100% !important; padding: 14px 20px !important;
            border: 1px solid var(--border-light) !important; border-radius: 12px !important; 
            background: #F8FAFC !important; font-family: inherit !important;
            font-size: 14px !important; color: var(--text-main) !important; box-shadow: none !important; margin: 0 !important; margin-bottom: 15px !important;}
        
        .roi-form-wrapper input.wpcf7-form-control:focus { 
            border-color: var(--gold-dark) !important; background: var(--white) !important; 
            outline: none !important; box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1) !important;
        }

        .roi-form-wrapper button[type="submit"], .roi-form-wrapper .wpcf7-submit { 
            width: 100% !important; display: flex !important; align-items: center !important; justify-content: center !important; gap: 10px !important;
            padding: 16px !important; border-radius: 12px !important; 
            background: linear-gradient(135deg, var(--gold-dark) 0%, #D4AF37 100%) !important;
            color: var(--white) !important; font-size: 16px !important; font-weight: 700 !important;
            border: none !important; cursor: pointer !important; text-transform: uppercase !important;
            box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3) !important; transition: all 0.3s !important; margin-top: 8px !important;
        }
        
        .roi-form-wrapper button[type="submit"]:hover, .roi-form-wrapper .wpcf7-submit:hover { 
            transform: translateY(-3px) !important; box-shadow: 0 15px 25px rgba(184, 134, 11, 0.4) !important; 
        }

        .roi-form-wrapper .wpcf7-spinner { display: none !important; }
        .roi-form-wrapper .wpcf7-not-valid-tip { font-size: 12px !important; color: var(--alert-red) !important; margin-top: 4px !important; display: block !important; }
        .roi-form-wrapper form.invalid .wpcf7-response-output, .roi-form-wrapper form.sent .wpcf7-response-output { display: none !important; }
/* ==================== MODAL BẢNG TÍNH LÃI GỐC ==================== */
        .finance-modal {
            position: fixed; inset: 0; z-index: 999999;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden; transition: all 0.4s ease;
        }
        .finance-modal.active { opacity: 1; visibility: visible; }
        
        .finance-content-box {
            position: relative; z-index: 2; width: 90%; max-width: 900px;
            background: var(--white); border-radius: 24px; overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            transform: translateY(30px) scale(0.95); transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .finance-modal.active .finance-content-box { transform: translateY(0) scale(1); }

        .finance-left::after { background: linear-gradient(to top, rgba(15, 44, 89, 0.95) 0%, rgba(15, 44, 89, 0.4) 100%); }

        /* Style Form CF7 */
        .finance-form-wrapper form, .finance-form-wrapper p { flex-direction: column !important; align-items: stretch !important; gap: 16px !important; margin: 0 !important; }
        
        .finance-form-wrapper input.wpcf7-form-control,
        .finance-form-wrapper select.wpcf7-form-control { 
            width: 100% !important; padding: 14px 20px !important;
            border: 1px solid var(--border-light) !important; border-radius: 12px !important; 
            background: #F8FAFC !important; font-family: inherit !important;
            font-size: 14px !important; color: var(--text-main) !important; box-shadow: none !important; margin: 0 !important; height: auto !important; margin-bottom: 15px !important;}

        .finance-form-wrapper select.wpcf7-form-control {
            appearance: none; -webkit-appearance: none; -moz-appearance: none;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2364748B" width="18px" height="18px"><path d="M7 10l5 5 5-5z"/></svg>') !important;
            background-repeat: no-repeat !important; background-position: right 15px center !important; padding-right: 40px !important; margin-bottom: 15px !important;}
        
        .finance-form-wrapper input.wpcf7-form-control:focus,
        .finance-form-wrapper select.wpcf7-form-control:focus { 
            border-color: var(--gold-dark) !important; background: var(--white) !important; 
            outline: none !important; box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1) !important;
        }

        .finance-form-wrapper button[type="submit"], .finance-form-wrapper .wpcf7-submit { 
            width: 100% !important; display: flex !important; align-items: center !important; justify-content: center !important; gap: 10px !important;
            padding: 16px !important; border-radius: 12px !important; 
            background: linear-gradient(135deg, var(--gold-dark) 0%, #D4AF37 100%) !important;
            color: var(--white) !important; font-size: 16px !important; font-weight: 700 !important;
            border: none !important; cursor: pointer !important; text-transform: uppercase !important;
            box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3) !important; transition: all 0.3s !important; margin-top: 8px !important;
        }
        
        .finance-form-wrapper button[type="submit"]:hover, .finance-form-wrapper .wpcf7-submit:hover { 
            transform: translateY(-3px) !important; box-shadow: 0 15px 25px rgba(184, 134, 11, 0.4) !important; 
        }

        .finance-form-wrapper .wpcf7-spinner { display: none !important; }
        .finance-form-wrapper .wpcf7-not-valid-tip { font-size: 12px !important; color: var(--alert-red) !important; margin-top: 4px !important; display: block !important; }
        .finance-form-wrapper form.invalid .wpcf7-response-output, .finance-form-wrapper form.sent .wpcf7-response-output { display: none !important; }
/* ==================== MODAL BẢNG GIÁ & LỊCH THANH TOÁN ==================== */
        .payment-modal {
            position: fixed; inset: 0; z-index: 999999;
            display: flex; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden; transition: all 0.4s ease;
        }
        .payment-modal.active { opacity: 1; visibility: visible; }
        
        .payment-content-box {
            position: relative; z-index: 2; width: 90%; max-width: 900px;
            background: var(--white); border-radius: 24px; overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            transform: translateY(30px) scale(0.95); transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
        .payment-modal.active .payment-content-box { transform: translateY(0) scale(1); }

        .payment-left::after { background: linear-gradient(to top, rgba(15, 44, 89, 0.95) 0%, rgba(15, 44, 89, 0.4) 100%); }

        /* Style Form CF7 */
        .payment-form-wrapper form, .payment-form-wrapper p { flex-direction: column !important; align-items: stretch !important; gap: 16px !important; margin: 0 !important; }
        
        .payment-form-wrapper input.wpcf7-form-control,
        .payment-form-wrapper select.wpcf7-form-control { 
            width: 100% !important; padding: 14px 20px !important;
            border: 1px solid var(--border-light) !important; border-radius: 12px !important; 
            background: #F8FAFC !important; font-family: inherit !important;
            font-size: 14px !important; color: var(--text-main) !important; box-shadow: none !important; margin: 0 !important; height: auto !important; margin-bottom: 15px !important;}

        .payment-form-wrapper select.wpcf7-form-control {
            appearance: none; -webkit-appearance: none; -moz-appearance: none;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2364748B" width="18px" height="18px"><path d="M7 10l5 5 5-5z"/></svg>') !important;
            background-repeat: no-repeat !important; background-position: right 15px center !important; padding-right: 40px !important; margin-bottom: 15px !important;}
        
        .payment-form-wrapper input.wpcf7-form-control:focus,
        .payment-form-wrapper select.wpcf7-form-control:focus { 
            border-color: var(--gold-dark) !important; background: var(--white) !important; 
            outline: none !important; box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1) !important;
        }

        .payment-form-wrapper button[type="submit"], .payment-form-wrapper .wpcf7-submit { 
            width: 100% !important; display: flex !important; align-items: center !important; justify-content: center !important; gap: 10px !important;
            padding: 16px !important; border-radius: 12px !important; 
            background: linear-gradient(135deg, var(--gold-dark) 0%, #D4AF37 100%) !important;
            color: var(--white) !important; font-size: 16px !important; font-weight: 700 !important;
            border: none !important; cursor: pointer !important; text-transform: uppercase !important;
            box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3) !important; transition: all 0.3s !important; margin-top: 8px !important;
        }
        
        .payment-form-wrapper button[type="submit"]:hover, .payment-form-wrapper .wpcf7-submit:hover { 
            transform: translateY(-3px) !important; box-shadow: 0 15px 25px rgba(184, 134, 11, 0.4) !important; 
        }

        .payment-form-wrapper .wpcf7-spinner { display: none !important; }
        .payment-form-wrapper .wpcf7-not-valid-tip { font-size: 12px !important; color: var(--alert-red) !important; margin-top: 4px !important; display: block !important; }
        .payment-form-wrapper form.invalid .wpcf7-response-output, .payment-form-wrapper form.sent .wpcf7-response-output { display: none !important; }
/* ==================== SECTION GIÁ BÁN & CHÍNH SÁCH RUMOR ==================== */
        .rumor-policy-section { padding: 100px 0; background: var(--bg-surface); position: relative; overflow: hidden; }
        .rumor-policy-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 400px; background: linear-gradient(180deg, rgba(15, 44, 89, 0.03) 0%, rgba(248, 250, 252, 0) 100%); pointer-events: none; }
        
        .section-header.text-center { text-align: center; margin-bottom: 50px; position: relative; z-index: 2; }
        .badge-hot { 
            display: inline-flex; align-items: center; gap: 8px; 
            background: linear-gradient(135deg, #E63946 0%, #ff4d4f 100%); color: var(--white); 
            padding: 8px 24px; border-radius: 100px; font-size: 14px; font-weight: 800; 
            text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
            animation: pulse-hot 2s infinite; box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
        }
        .rumor-policy-section h2 { font-family: 'Playfair Display', serif; font-size: 42px; line-height: 1.2; margin-bottom: 16px; }
        .rumor-policy-section h2 span { color: var(--gold-dark); }
        .rumor-policy-section p { font-size: 13px; max-width: 800px; margin: 0 auto; }

        .rumor-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 30px; position: relative; z-index: 2; align-items: stretch; }

        /* Cột Trái: Box Giá Bán */
        .rumor-price-box { background: var(--white); border-radius: 24px; padding: 40px; box-shadow: 0 20px 40px rgba(15, 44, 89, 0.08); border: 1px solid var(--border-light); display: flex; flex-direction: column; justify-content: space-between; }
        .rpb-header { font-size: 20px; font-weight: 800; color: var(--vh-navy); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; border-bottom: 2px solid var(--border-light); padding-bottom: 16px; }
        .rpb-header i { color: var(--gold-dark); font-size: 24px; }
        
        .rpb-main-price { background: linear-gradient(135deg, rgba(15, 44, 89, 0.03) 0%, rgba(15, 44, 89, 0.08) 100%); padding: 24px; border-radius: 16px; text-align: center; margin-bottom: 24px; border: 1px dashed rgba(15, 44, 89, 0.2); }
        .rpb-main-price .label { font-size: 14px; color: var(--text-muted); text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; display: block; margin-bottom: 8px; }
        .rpb-main-price .price { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--vh-navy); line-height: 1; }
        .rpb-main-price .price span { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 600; color: var(--text-muted); }

        .rpb-leverage { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
        .leverage-item { display: flex; align-items: center; gap: 16px; padding: 16px; background: var(--bg-surface); border-radius: 12px; border: 1px solid var(--border-light); transition: transform 0.3s; }
        .leverage-item:hover { transform: translateX(5px); }
        .leverage-item.highlight { background: rgba(230, 57, 70, 0.05); border-color: rgba(230, 57, 70, 0.2); }
        .leverage-item.highlight .icon { background: var(--alert-red); color: var(--white); }
        .leverage-item.highlight strong { color: var(--alert-red); font-size: 20px; }
        
        .leverage-item .icon { width: 48px; height: 48px; background: var(--white); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--vh-navy); box-shadow: 0 4px 10px rgba(0,0,0,0.05); flex-shrink: 0; }
        .leverage-item .info { display: flex; flex-direction: column; }
        .leverage-item .info span { font-size: 13px; color: var(--text-muted); }
        .leverage-item .info strong { font-size: 16px; color: var(--vh-navy); font-weight: 800; }

        .rpb-note { font-size: 13px; color: var(--text-muted); font-style: italic; margin: 0; line-height: 1.6; }

        /* Cột Phải: Box Đặc Quyền */
        .rumor-perks-box { background: linear-gradient(145deg, var(--vh-navy) 0%, #0a1f3f 100%); border-radius: 24px; padding: 40px; box-shadow: 0 25px 50px rgba(15, 44, 89, 0.2); color: var(--white); display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
        .rumor-perks-box::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(184, 134, 11, 0.15) 1px, transparent 1px); background-size: 20px 20px; pointer-events: none; }
        
        .rumor-perks-box .rpb-header.gold { color: var(--gold-light); border-bottom-color: rgba(255,255,255,0.1); position: relative; z-index: 2; }
        
        .perks-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; position: relative; z-index: 2; }
        .perk-item { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.05); padding: 14px 20px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s; }
        .perk-item:hover { background: rgba(255,255,255,0.1); border-color: rgba(184, 134, 11, 0.3); transform: translateX(8px); }
        .perk-item i { font-size: 20px; color: var(--gold-dark); width: 24px; text-align: center; flex-shrink: 0; }
        .perk-item span { font-size: 15px; color: rgba(255,255,255,0.9); line-height: 1.5; }
        .perk-item strong { color: var(--gold-light); font-weight: 800; }

        .btn-rumor-cta { 
            display: flex; align-items: center; justify-content: center; gap: 10px; 
            background: linear-gradient(135deg, var(--gold-dark) 0%, #D4AF37 100%); color: var(--white); 
            padding: 20px; border-radius: 16px; font-size: 16px; font-weight: 800; 
            text-transform: uppercase; text-decoration: none; position: relative; z-index: 2;
            box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3); transition: all 0.3s;
        }
        .btn-rumor-cta:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(184, 134, 11, 0.5); background: linear-gradient(135deg, #D4AF37 0%, #f4d068 100%); }

        /* Responsive */
        @media (max-width: 1024px) {
            .rumor-grid { grid-template-columns: 1fr; }
            .rpb-main-price .price { font-size: 40px; }
        }
        @media (max-width: 768px) {
            .rumor-policy-section { padding: 60px 0; }
            .rumor-policy-section h2 { font-size: 30px; }
            .rumor-price-box, .rumor-perks-box { padding: 30px 20px; }
            .perk-item span { font-size: 14px; }
            .btn-rumor-cta { font-size: 14px; padding: 16px; text-align: center; }
        }
/* ==================== 1. GIAO DIỆN DESKTOP (VÒNG TRÒN TỎA SÓNG) ==================== */
        .contact-widget-hybrid {
            position: fixed;
            bottom: 30px;
            left: 20px;
            z-index: 999999;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .cwh-item {
            position: relative;
            display: flex;
            align-items: center;
            width: 220px; 
            height: 60px;
            text-decoration: none;
        }

        /* Vòng tròn lan tỏa */
        .cwh-ring {
            position: absolute;
            width: 60px; height: 60px;
            border: 2px solid transparent; border-radius: 50%;
            animation: cwh-ring-anim 1.5s infinite ease-in-out;
            left: 0; top: 0;
        }

        /* Vòng nhấp nháy bên trong */
        .cwh-ring-fill {
            position: absolute;
            width: 40px; height: 40px;
            border-radius: 50%;
            animation: cwh-ring-fill-anim 1.5s infinite ease-in-out;
            left: 10px; top: 10px;
        }

        /* Icon rung lắc */
        .cwh-icon {
            position: absolute;
            width: 36px; height: 36px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            left: 12px; top: 12px;
            animation: cwh-icon-anim 1s infinite ease-in-out;
            z-index: 3; color: #fff; font-size: 18px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .cwh-icon img { width: 65%; height: auto; object-fit: contain; }

        /* Khối hiển thị chữ */
        .cwh-text {
            position: absolute;
            left: 30px; top: 13px;
            height: 34px; border-radius: 0 17px 17px 0;
            display: flex; align-items: center;
            padding: 0 20px 0 30px; z-index: 2;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            color: #fff; font-size: 14px; font-weight: 700;
            white-space: nowrap;
        }

        /* Set màu sắc theo Brand cho Desktop */
        .cwh-phone .cwh-ring { border-color: #E63946; }
        .cwh-phone .cwh-ring-fill { background-color: rgba(230, 57, 70, 0.5); }
        .cwh-phone .cwh-icon, .cwh-phone .cwh-text { background-color: #E63946; }

        .cwh-zalo .cwh-ring { border-color: #0068FF; }
        .cwh-zalo .cwh-ring-fill { background-color: rgba(0, 104, 255, 0.5); }
        .cwh-zalo .cwh-icon, .cwh-zalo .cwh-text { background-color: #0068FF; }

        .cwh-form .cwh-ring { border-color: #B8860B; }
        .cwh-form .cwh-ring-fill { background-color: rgba(184, 134, 11, 0.5); }
        .cwh-form .cwh-icon, .cwh-form .cwh-text { background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%); }

        /* Animation */
        @keyframes cwh-ring-anim {
            0% { transform: scale(0.5); opacity: 0.1; }
            50% { transform: scale(1); opacity: 0.6; }
            100% { transform: scale(1.3); opacity: 0; }
        }
        @keyframes cwh-ring-fill-anim {
            0% { transform: scale(0.6); opacity: 0; }
            50% { transform: scale(1.1); opacity: 0.6; }
            100% { transform: scale(0.6); opacity: 0; }
        }
        @keyframes cwh-icon-anim {
            0% { transform: rotate(0); }
            10% { transform: rotate(-25deg); }
            20% { transform: rotate(25deg); }
            30% { transform: rotate(-25deg); }
            40% { transform: rotate(25deg); }
            50% { transform: rotate(0); }
            100% { transform: rotate(0); }
        }


        /* ==================== 2. GIAO DIỆN MOBILE (THANH ĐÁY CHUYÊN NGHIỆP) ==================== */
        @media (max-width: 768px) {
            body { padding-bottom: 70px !important; }

            .contact-widget-hybrid {
                bottom: 0; left: 0; right: 0;
                flex-direction: row; gap: 0;
                background: var(--white);
                border-top: 1px solid var(--border-light);
                box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
            }

            .cwh-item {
                width: 33.333%; height: 65px;
                flex-direction: column; justify-content: center;
                border-right: 1px solid var(--border-light);
            }
            .cwh-item:last-child { border-right: none; }

            /* Tắt sạch hiệu ứng tỏa sóng & rung lắc trên Mobile */
            .cwh-ring, .cwh-ring-fill { display: none !important; }

            /* Tái cấu trúc Icon */
            .cwh-icon {
                position: static; width: auto; height: 30px;
                background: none !important; box-shadow: none; animation: none !important;
                color: inherit; border-radius: 0; margin-bottom: 4px;
            }
            .cwh-icon i { font-size: 22px; }
            .cwh-icon img { width: 28px; height: 28px; }

            /* Tái cấu trúc Chữ */
            .cwh-text {
                position: static; background: none !important; box-shadow: none; height: auto; padding: 0;
                font-size: 11px; text-transform: uppercase; font-weight: 700; color: var(--text-muted);
            }

            /* Đổ màu Brand cho Mobile */
            .cwh-phone .cwh-icon, .cwh-phone .cwh-text { color: #E63946 !important; }
            .cwh-zalo .cwh-text { color: #0068FF !important; }
            
            /* Nút Báo Giá VIP màu Navy & Vàng */
            .cwh-form { background: linear-gradient(135deg, var(--vh-navy) 0%, #0a1f3f 100%) !important; }
            .cwh-form .cwh-icon, .cwh-form .cwh-text { color: var(--gold-light) !important; }
        }
/* Tạo hiệu ứng rung lắc (Ringing Animation) */
@keyframes phoneRinging {
    0% { transform: rotate(0) scale(1) skew(1deg); }
    10% { transform: rotate(-25deg) scale(1) skew(1deg); }
    20% { transform: rotate(25deg) scale(1) skew(1deg); }
    30% { transform: rotate(-25deg) scale(1) skew(1deg); }
    40% { transform: rotate(25deg) scale(1) skew(1deg); }
    50% { transform: rotate(0) scale(1) skew(1deg); }
    100% { transform: rotate(0) scale(1) skew(1deg); }
}

/* Áp dụng hiệu ứng cho icon trên thiết bị di động */
@media (max-width: 768px) {
    .icon-rung-lac {
        display: inline-block; /* Bắt buộc phải có display này để transform hoạt động */
        animation: phoneRinging 1.5s ease-in-out infinite;
        transform-origin: 50% 50%; /* Đặt tâm xoay ở chính giữa icon */
    }
}