:root {
--green-dark: #0a3d2c;
--gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
--white: #ffffff;
--text-gray: #444;
--radius: 20px;
--transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: var(--text-gray); line-height: 1.8; overflow-x: hidden; background: #fff; }

h1, h2, h3, h4, .logo-text { font-family: 'Playfair Display', serif; color: var(--green-dark); }

/* --- HEADER & NAVIGATION (Fix Logo & Menu 1 Line) --- */
header {
background: var(--green-dark);
position: fixed;
width: 100%;
top: 0;
z-index: 999999999;
padding: 10px 0;
box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-container {
max-width: 1500px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo-box { display: flex; align-items: center; text-decoration: none; white-space: nowrap; }
.logo-text { color: #f9dfa1; font-size: 20px; font-weight: 700; font-style: italic; }

.nav-menu { display: flex; list-style: none; gap: 8px; align-items: center; }
.nav-menu li a {
background: var(--gold-gradient);
color: var(--green-dark) !important;
text-decoration: none;
font-size: 10px; /* Small font size as requested */
font-weight: 700;
padding: 8px 15px;
border-radius: 50px;
text-transform: uppercase;
transition: var(--transition);
display: inline-block;
box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.nav-menu li a:hover {
transform: translateY(-3px) scale(1.05);
box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Burger Menu (Mobile Fix) */
.burger { display: none; color: #f9dfa1; font-size: 26px; cursor: pointer; }

/* --- SECTIONS --- */
section { padding: 80px 0; width: 100%; border-bottom: 1px solid #f0f0f0; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 25px; }
.sec-title { text-align: center; margin-bottom: 60px; }
.sec-title h2 { font-size: 45px; margin-bottom: 15px; font-style: italic; position: relative; display: inline-block; }
.sec-title h2::after { content: ''; width: 100px; height: 3px; background: var(--gold-gradient); position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); border-radius: 10px; }

.content-flex { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; }
.text-box { flex: 1; min-width: 400px; text-align: justify; font-size: 16px; }
.img-box { flex: 1; min-width: 400px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 5px solid #fff; }
.img-box img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); display: block; }
.img-box:hover img { transform: scale(1.08); }

/* Hero Full Screen */
.hero {
height: 100vh;
background: linear-gradient(rgba(10, 61, 44, 0.4), rgba(10, 61, 44, 0.4)), url('images/vinhomecangio.webp') center/cover;
display: flex; align-items: center; justify-content: center; text-align: center; color: white;background-size: 100% 100%;
animation: moveAndZoom 15s ease-in-out infinite alternate;
}
@keyframes moveAndZoom {
0% {
background-size: 100%;
background-position: 0% 50%;
}
100% {
background-size: 120%; /* Phóng to lên 120% */
background-position: 100% 50%; /* Di chuyển từ trái sang phải */
}
}
.hero-content h1 { font-size: clamp(35px, 6vw, 70px); color: #f9dfa1; margin-bottom: 20px; font-style: italic; }

/* --- AMENITIES TABS --- */
.tabs-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.tab-btn {
padding: 12px 25px;
background: var(--white);
border: 2px solid #d4af37;
color: var(--green-dark);
cursor: pointer;
border-radius: 50px;
font-weight: 700;
font-family: inherit;
transition: var(--transition);
text-transform: uppercase;
font-size: 12px;
}
.tab-btn.active, .tab-btn:hover { background: var(--gold-gradient); border-color: transparent; box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); }
.tab-content { display: none; animation: fadeIn 0.8s ease forwards; }
.tab-content.active { display: block; }

/* --- PRODUCT MENU --- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; margin-top: 40px; }
.product-card { background: #fdfdfd; border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.05); transition: var(--transition); border: 1px solid #eee; }
.product-card:hover { transform: translateY(-10px); }
.p-info { padding: 25px; }
.p-info h4 { margin-bottom: 15px; font-size: 22px; }
.p-list { list-style: none; font-size: 14px; color: #555; }
.p-list li { margin-bottom: 8px; border-bottom: 1px dashed #ddd; padding-bottom: 5px; }

/* --- GALLERY LIGHTBOX --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
.gallery-item { height: 200px; border-radius: 15px; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-item:hover img { transform: scale(1.15); filter: brightness(0.8); }

#lightbox {
position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95);
display: none; justify-content: center; align-items: center; z-index: 10000; padding: 40px;
}
#lightbox img { max-width: 100%; max-height: 100%; border-radius: 10px; border: 3px solid #f9dfa1; }
.close-lb { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 50px; cursor: pointer; }

/* --- VR360 --- */
#vr-viewer { width: 100%; height: 600px; background: #000; border-radius: var(--radius); margin-top: 30px; }

/* --- FORM --- */
.form-wrap {
max-width: 900px; margin: 0 auto; background: #fff; padding: 50px;
border-radius: 40px; box-shadow: 0 30px 60px rgba(0,0,0,0.1); border: 1px solid rgba(212, 175, 55, 0.2);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
input, textarea {
width: 100%; padding: 15px 20px; border: 1px solid #eee; border-radius: 12px;
background: #fdfdfd; font-family: inherit; outline: none; transition: var(--transition);
}
input:focus, textarea:focus { border-color: #d4af37; box-shadow: 0 0 15px rgba(212, 175, 55, 0.1); }
.submit-btn {
width: 100%; padding: 18px; border: none; border-radius: 50px;
background: var(--gold-gradient); color: var(--green-dark);
font-weight: 700; text-transform: uppercase; cursor: pointer; transition: var(--transition);
margin-top: 20px; font-size: 16px;
}
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4); }

/* --- FOOTER --- */
footer { background: var(--green-dark); color: #ecf0f1; padding: 80px 0 40px; }
.footer-line { border-top: 1px solid rgba(255,255,255,0.3); margin: 40px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 50px; }
.footer-col h4 { color: #f9dfa1; font-size: 22px; margin-bottom: 20px; }
.footer-col p, .footer-col li { font-size: 14px; margin-bottom: 12px; list-style: none; }
.contact-info i { color: #f9dfa1; margin-right: 12px; width: 20px; }
.footer-col a { font-size: 14px; margin-bottom: 12px; list-style: none;color:#fff;text-decoration:none; }
/* Mobile Menu Animation */
@media (max-width: 1200px) {
.nav-menu {
position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
background: var(--green-dark); flex-direction: column; padding: 100px 20px;
transition: 0.5s; box-shadow: -5px 0 20px rgba(0,0,0,0.5);
}
.nav-menu.active { right: 0; }
.nav-menu li { width: 100%; }
.nav-menu li a { width: 100%; text-align: center; font-size: 14px; }
.burger { display: block; }
.hero-content h1 { font-size: 35px; }
.content-flex { flex-direction: column; }
.form-grid { grid-template-columns: 1fr; }
.footer-grid { grid-template-columns: 1fr; }
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
:root {
--primary-gold: #d4af37;
--light-gold: #f9f295;
--dark-bg: #0a0a0b;
--glass-bg: rgba(255, 255, 255, 0.05);
--transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-wrapper {
position: relative;
display: inline-block;
margin-top: 15px;
}
.btn-wrapper a 
{
text-decoration: none;
display: block;
}
.glow-button {
position: relative;
padding: 8px 45px;
font-size: 18px;
font-weight: 700;
color: #fff;
text-transform: uppercase;
letter-spacing: 2px;
background: #00000087;
border: 2px solid var(--primary-gold);
border-radius: 50px;
cursor: pointer;
z-index: 1;
overflow: hidden;
transition: var(--transition);
}

/* Hiệu ứng tia sáng chạy qua */
.glow-button::before {
content: '';
position: absolute;
top: 0; left: -100%;
width: 100%; height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
transition: 0.5s;
}

.glow-button:hover::before {
left: 100%;
}

.glow-button:hover {
color: #000;
background: var(--primary-gold);
box-shadow: 0 0 30px var(--primary-gold);
transform: scale(1.05);
}

/* Hào quang tỏa ra xung quanh nút */
.glow-effect {
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
border-radius: 50px;
background: var(--primary-gold);
filter: blur(20px);
opacity: 0.6;
z-index: -1;
animation: pulse 2s infinite;
}

@keyframes pulse {
0% { transform: scale(0.9); opacity: 0.6; }
50% { transform: scale(1.2); opacity: 0.3; }
100% { transform: scale(0.9); opacity: 0.6; }
}

/* --- 3. POPUP SANG TRỌNG --- */
.overlay {
position: fixed;
top: 0; left: 0;
width: 100%; height: 100%;
background: rgba(0, 0, 0, 0.85);
backdrop-filter: blur(10px);
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
visibility: hidden;
transition: var(--transition);
z-index: 9999;
}

.overlay.active {
opacity: 1;
visibility: visible;
}

.popup-card {
position: relative;
width: 100%;
max-width: 100%;
background: var(--glass-bg);
border: 1px solid rgba(212, 175, 55, 0.3);
text-align: center;
color: white;
transform: translateY(50px) scale(0.8);
transition: var(--transition);
box-shadow: 0 25px 50px rgba(0,0,0,0.5);
height: 100%;
}

.overlay.active .popup-card {
transform: translateY(0) scale(1);
}


:root {
--gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
--vinhomes-green: #0a3d2c;
--white: #ffffff;
}


/* Lớp phủ Popup */
.popup-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.85);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
/* Ban đầu ẩn đi */
opacity: 0;
visibility: hidden;
transition: all 0.5s ease;
}

/* Trạng thái khi popup hiển thị */
.popup-overlay.active {
opacity: 1;
visibility: visible;
}

/* Container Form (Contact Card) */
.contact-card {
background: var(--vinhomes-green);
width: 90%;
max-width: 500px;
padding: 50px 40px;
border-radius: 5px;
border: 1px solid rgba(212, 175, 55, 0.3);
box-shadow: 0 25px 50px rgba(0,0,0,0.6);
position: relative;
transform: scale(0.7);
transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-overlay.active .contact-card {
transform: scale(1);
}

/* Nút tắt Popup */
.close-popup {
position: absolute;
top: 15px;
right: 15px;
color: #f9dfa1;
font-size: 24px;
cursor: pointer;
transition: 0.3s;
z-index: 1001;
}

.close-popup:hover {
transform: rotate(90deg);
color: white;
}

/* Hiệu ứng viền vàng trên cùng */
.contact-card::before {
content: '';
position: absolute;
top: 0; left: 0; width: 100%; height: 4px;
background: var(--gold-gradient);
}

.header-box {
text-align: center;
margin-bottom: 30px;
}

.header-box h2 {
color: #f9dfa1;
font-size: 1.8rem;
text-transform: uppercase;
letter-spacing: 3px;
margin-bottom: 10px;
}

.header-box p {
color: #ffffff;
font-weight: 300;
font-size: 0.95rem;
}

/* Input Styles */
.form-group {
position: relative;
margin-bottom: 20px;
}

.form-group i {
position: absolute;
left: 15px;
top: 15px;
color: #d4af37;
}

.form-control {
width: 100%;
padding: 12px 15px 12px 45px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(212, 175, 55, 0.2);
border-radius: 4px;
color: white;
font-size: 1rem;
transition: all 0.4s;
}

.form-control:focus {
outline: none;
border-color: #f9dfa1;
background: rgba(255, 255, 255, 0.1);
box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Nút bấm nổi bật (CTA) */
.btn-submit {
width: 100%;
padding: 16px;
border: none;
border-radius: 4px;
background: var(--gold-gradient);
color: #0a3d2c;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 2px;
cursor: pointer;
position: relative;
overflow: hidden;
transition: all 0.3s;
font-size: 1rem;
margin-top: 10px;
}

.btn-submit:hover {
transform: scale(1.02);
box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* Hiệu ứng Shimmer */
.btn-submit::after {
content: '';
position: absolute;
top: -50%;
left: -60%;
width: 20%;
height: 200%;
background: rgba(255, 255, 255, 0.4);
transform: rotate(30deg);
animation: shimmer 3s infinite;
}

@keyframes shimmer {
0% { left: -60%; }
20% { left: 120%; }
100% { left: 120%; }
}

.checkbox-group {
display: flex;
align-items: center;
margin-bottom: 20px;
color: #eee;
font-size: 0.8rem;
}

.checkbox-group input {
margin-right: 10px;
accent-color: #d4af37;
}

@media (max-width: 600px) {
.contact-card {
padding: 40px 25px;
}
.header-box h2 { font-size: 1.4rem; }
}
@media (max-width: 603px) {
.img-box
{
min-width: 100%;
}
.text-box
{
 min-width: 100%;
}
.hero
{
background-size: cover !important;
}
.tab-btn
{
width: 100%;
}
.sec-title h2 {
font-size: 32px;
}
}
:root {
--vinhomes-green: #0a3d2c;
--gold-primary: #d4af37;
--gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
--bg-light: #f4f7f6;
--text-dark: #333;
}



.table-header {
text-align: center;
margin-bottom: 30px;
}

.table-header h2 {
color: var(--vinhomes-green);
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 10px;
font-size: 1.8rem;
}

.table-header p {
color: #666;
font-style: italic;
}

/* Table Styling */
table {
width: 100%;
border-collapse: collapse;

overflow: hidden;
border-radius: 8px;
}

thead {
background-color: #0a3d2c !important;
color: white;
}

th {
padding: 15px;
text-align: left;
text-transform: uppercase;
font-size: 0.9rem;
letter-spacing: 1px;
}

td {
padding: 15px;
border-bottom: 1px solid #eee;
vertical-align: middle;
}

tbody tr:hover {
background-color: #f9fbf9;
}

/* Progress Bar */
.progress-container {
width: 100%;
background: #e0e0e0;
border-radius: 10px;
height: 8px;
position: relative;
margin-top: 5px;
}

.progress-bar {
height: 100%;
border-radius: 10px;
background: var(--gold-gradient);
transition: width 1s ease-in-out;
}

.percent-text {
font-size: 0.85rem;
font-weight: bold;
color: var(--vinhomes-green);
display: block;
margin-bottom: 4px;
}

/* Status Badges */
.badge {
padding: 5px 12px;
border-radius: 20px;
font-size: 0.75rem;
font-weight: bold;
text-transform: uppercase;
}

.status-done { background: #d4edda; color: #155724; }
.status-doing { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; display: block;font-size: 13px;
min-width: 179px;    text-align: center;}
.status-plan { background: #e2e3e5; color: #383d41; }

/* Icon styling */
.item-name {
font-weight: 600;
color: var(--vinhomes-green);
display: flex;
align-items: center;
gap: 10px;
}

.item-name i {
color: var(--gold-primary);
width: 20px;
}

/* Mobile Responsive (Card View) */
@media screen and (max-width: 768px) {
.container { padding: 15px; }

thead { display: none; } /* Ẩn tiêu đề bảng trên mobile */

table, tbody, tr, td {
display: block;
width: 100%;
}

tr {
margin-bottom: 20px;
border: 1px solid var(--gold-primary);
border-radius: 10px;
background: #fff;
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

td {
text-align: right;
padding-left: 50%;
position: relative;
border-bottom: 1px inset #eee;
}

td:last-child { border-bottom: none; }

/* Tạo nhãn tiêu đề giả bằng pseudo-element */
td::before {
content: attr(data-label);
position: absolute;
left: 15px;
width: 45%;
text-align: left;
font-weight: bold;
color: var(--vinhomes-green);
text-transform: uppercase;
font-size: 0.8rem;
}

}
:root {
--vinhomes-green: #0a3d2c;
--gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
--gold-dark: #b8860b;
--bg-glass: rgba(255, 255, 255, 0.95);
}
.item-name { justify-content: flex-end; }
.progress-container { margin-left: auto; width: 100%; }
.legal-container {
max-width: 1300px;
margin: 40px auto;
background: var(--bg-glass);
border-radius: 15px;
box-shadow: 0 15px 35px rgba(0,0,0,0.15);
overflow: hidden;
border: 1px solid rgba(212, 175, 55, 0.3);
}

.legal-header {
background: var(--vinhomes-green);
color: white;
padding: 30px;
text-align: center;
position: relative;
}

.legal-header h2 {
margin: 0;
text-transform: uppercase;
letter-spacing: 3px;
background: var(--gold-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 1.8rem;
}

.legal-header p {
margin-top: 10px;
opacity: 0.8;
font-weight: 300;
}

/* Table Style */
.legal-table {
width: 100%;
border-collapse: collapse;
background: white;
}

.legal-table thead {
background: #f8fcfb !important;
}

.legal-table th {
padding: 18px 15px;
text-align: left;
color: var(--vinhomes-green);
font-weight: 700;
text-transform: uppercase;
font-size: 0.85rem;
border-bottom: 2px solid #e9ecef;
}

.legal-table td {
padding: 20px 15px;
border-bottom: 1px solid #eee;
color: #444;
font-size: 0.95rem;
line-height: 1.5;
}

.legal-table tr:last-child td {
border-bottom: none;
}

.legal-table tr:hover {
background-color: #fdfbf4;
}

/* Badge Status */
.status-badge {
display: inline-flex;
align-items: center;
padding: 5px 12px;
border-radius: 50px;
font-size: 0.75rem;
font-weight: 700;
background: #e8f5e9;
color: #2e7d32;
border: 1px solid #c8e6c9;
}

.status-badge i {
margin-right: 5px;
}

/* Document Link */
.doc-link {
color: var(--gold-dark);
text-decoration: none;
font-weight: 600;
transition: 0.3s;
}

.doc-link:hover {
text-decoration: underline;
color: var(--vinhomes-green);
}

/* Icon styling */
.icon-box {
color: var(--gold-dark);
margin-right: 10px;
width: 20px;
text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
.legal-table thead {
    display: none; /* Ẩn tiêu đề bảng */
}

.legal-table, .legal-table tbody, .legal-table tr, .legal-table td {
    display: block;
    width: 100%;
}

.legal-table tr {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.legal-table td {
    text-align: right;
    padding: 12px 15px;
    position: relative;
    border-bottom: 1px dashed #eee;
}

.legal-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: 45%;
    text-align: left;
    font-weight: 700;
    color: var(--vinhomes-green);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.legal-table td:last-child {
    border-bottom: none;
}
}
/* Toàn bộ CSS được đóng gói với class riêng biệt để tránh trùng lặp */
.xyz-premium-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px;
font-family: 'Segoe UI', Roboto, sans-serif;
}

/* Hiệu ứng nút bấm tỏa sáng */
.xyz-premium-button {
position: relative;
padding: 16px 45px;
font-size: 18px;
font-weight: 700;
color: #ffffff;
background: linear-gradient(45deg, #ff3d00, #ffeb3b);
background-size: 200% 200%;
border: none;
border-radius: 12px;
cursor: pointer;
outline: none;
text-transform: uppercase;
letter-spacing: 1px;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(255, 61, 0, 0.4);
animation: xyz-premium-gradient-animation 3s ease infinite;
}

/* Hiệu ứng hào quang tỏa sáng xung quanh nút */
.xyz-premium-button::after {
content: "";
position: absolute;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
z-index: -1;
background: linear-gradient(45deg, #ff3d00, #ffeb3b, #ff3d00);
background-size: 400%;
border-radius: 15px;
opacity: 0.7;
filter: blur(12px);
animation: xyz-premium-glow-animation 20s linear infinite;
}

/* Hiệu ứng khi đang chạy đếm ngược (vô hiệu hóa nút) */
.xyz-premium-button:disabled {
background: #555 !important;
cursor: not-allowed;
box-shadow: none;
}
.xyz-premium-button:disabled::after {
display: none;
}

.xyz-premium-button:hover:not(:disabled) {
transform: scale(1.05);
box-shadow: 0 6px 20px rgba(255, 61, 0, 0.6);
}

/* Khu vực hiển thị mã code sau khi xong */
.xyz-premium-result-box {
margin-top: 25px;
padding: 15px 30px;
border: 2px dashed #ff3d00;
background-color: #fff4f1;
color: #d32f2f;
font-size: 22px;
font-weight: bold;
border-radius: 8px;
display: none; /* Ẩn mặc định */
animation: xyz-premium-fade-in 0.5s ease-out;
}

/* Các Keyframes hiệu ứng */
@keyframes xyz-premium-gradient-animation {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}

@keyframes xyz-premium-glow-animation {
0% { background-position: 0 0; }
50% { background-position: 400% 0; }
100% { background-position: 0 0; }
}

@keyframes xyz-premium-fade-in {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
}
:root {
--vgp-deep-green: #0a3d2c;
--vgp-gold-grad: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
--vgp-white: #ffffff;
--vgp-soft-bg: #f4f7f6;
--vgp-text-dark: #2d3436;
}

/* Hiệu ứng trượt khi cuộn trang */
.vgp-invest-reveal {
opacity: 0;
transform: translateY(40px);
transition: all 0.8s ease-out;
}

.vgp-invest-reveal.active {
opacity: 1;
transform: translateY(0);
}

/* Điểm nhấn ánh sáng nền */
.vgp-invest-bg-light {
position: fixed;
top: -10%;
right: -5%;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
z-index: -1;
}

/* --- HERO HEADER --- */
#vgp-invest-header {
background: linear-gradient(rgba(10, 61, 44, 0.92), rgba(10, 61, 44, 0.92)), 
    url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?auto=format&fit=crop&q=80&w=1500');
background-size: cover;
background-position: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: var(--vgp-white);
border-bottom: 5px solid transparent;
border-image: var(--vgp-gold-grad);
border-image-slice: 1;
padding: 30px 0px;
}

.vgp-invest-logo-text {
font-family: 'Playfair Display', serif;
font-size: 3rem;
letter-spacing: 2px;
background: var(--vgp-gold-grad);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 10px;
}

.vgp-invest-subtitle {
font-weight: 300;
text-transform: uppercase;
letter-spacing: 5px;
font-size: 1rem;
}

/* --- CHUNG --- */
.vgp-invest-container {
max-width: 1250px;
margin: 0 auto;
padding-top: 80px;
}

.vgp-invest-section-title {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
color: var(--vgp-deep-green);
margin-bottom: 50px;
position: relative;
padding-bottom: 15px;
}

.vgp-invest-section-title::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 80px;
height: 4px;
background: var(--vgp-gold-grad);
}

/* --- 1. CHIẾN LƯỢC 2026 --- */
.vgp-invest-strategy-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}

.vgp-invest-card {
background: #fff;
padding: 40px;
border: 1px solid #f1f1f1;
box-shadow: 0 10px 30px rgba(0,0,0,0.03);
border-top: 4px solid var(--vgp-deep-green);
transition: all 0.3s ease;
}

.vgp-invest-card:hover {
transform: translateY(-10px);
border-top-color: #d4af37;
box-shadow: 0 15px 40px rgba(10, 61, 44, 0.1);
}

.vgp-invest-card i {
font-size: 2.5rem;
margin-bottom: 20px;
color: var(--vgp-deep-green);
}

.vgp-invest-card h3 {
font-size: 1.3rem;
color: var(--vgp-deep-green);
margin-bottom: 15px;
}

/* --- 2. DIỄN BIẾN GIÁ TRỊ (Timeline) --- */
.vgp-invest-timeline {
position: relative;
margin-top: 50px;
}

.vgp-invest-timeline::before {
content: "";
position: absolute;
left: 20px;
height: 100%;
width: 2px;
background: #eee;
}

.vgp-invest-time-item {
position: relative;
padding-left: 60px;
margin-bottom: 40px;
}

.vgp-invest-time-dot {
position: absolute;
left: 11px;
top: 5px;
width: 20px;
height: 20px;
background: var(--vgp-gold-grad);
border-radius: 50%;
border: 4px solid #fff;
box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.vgp-invest-time-box {
background: var(--vgp-soft-bg);
padding: 25px;
border-radius: 4px;
}

.vgp-invest-time-year {
font-weight: 700;
color: var(--vgp-deep-green);
font-size: 1.2rem;
display: block;
}

/* --- 3. SO SÁNH THỊ TRƯỜNG --- */
.vgp-invest-table-wrapper {
overflow-x: auto;
border-radius: 8px;
box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.vgp-invest-table {
width: 100%;
border-collapse: collapse;
background: #fff;
min-width: 100%;
}

.vgp-invest-table th {
background: var(--vgp-deep-green);
color: white;
padding: 20px;
text-align: left;
}

.vgp-invest-table td {
padding: 18px 20px;
border-bottom: 1px solid #eee;
}

.vgp-invest-tag-gold {
background: var(--vgp-gold-grad);
padding: 5px 12px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
color: var(--vgp-deep-green);
}

/* --- 4. LỜI KHUYÊN ĐẦU TƯ --- */
.vgp-invest-advice-section {
background: var(--vgp-deep-green);
color: #fff;
padding: 60px;
border-radius: 15px;
position: relative;
overflow: hidden;
}

.vgp-invest-advice-section::before {
content: "\f0eb";
font-family: "Font Awesome 6 Free";
font-weight: 900;
position: absolute;
right: -20px;
bottom: -20px;
font-size: 15rem;
color: rgba(255, 255, 255, 0.03);
}

.vgp-invest-advice-list {
list-style: none;
margin-top: 30px;
}

.vgp-invest-advice-list li {
margin-bottom: 25px;
display: flex;
align-items: flex-start;
}

.vgp-invest-advice-list i {
color: #f9dfa1;
margin-right: 20px;
margin-top: 5px;
font-size: 1.2rem;
}

/* Footer */
.vgp-invest-footer {
text-align: center;
padding: 40px;
background: #f1f1f1;
font-size: 0.9rem;
color: #666;
}

/* Responsive */
@media (max-width: 768px) {
.vgp-invest-logo-text { font-size: 2rem; }
.vgp-invest-advice-section { padding: 30px; }
}
:root {
--vgp-primary: #0a3d2c;
--vgp-gold: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
--vgp-text: #333;
--vgp-bg: #f4f7f6;
}

.vgp-body-wrapper {
background-color: var(--vgp-bg);
color: var(--vgp-text);
line-height: 1.6;
font-family: 'Montserrat', sans-serif;
margin: 0;
padding: 0;
padding-bottom: 60px;
}

.vgp-header-section {
background-color: var(--vgp-primary);
color: white;
text-align: center;
padding: 60px 20px;
border-bottom: 5px solid #d4af37;
}

.vgp-header-section h2 {
font-size: 2.2rem;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 10px;
color: #fff;
}

.vgp-main-container {
max-width: 1200px;
margin: 40px auto;
padding: 0 20px;
}

.vgp-search-wrapper {
text-align: center;
margin-bottom: 40px;
}

#vgp-search-input {
padding: 15px 25px;
width: 100%;
max-width: 600px;
border: 2px solid #ddd;
border-radius: 30px;
outline: none;
font-size: 1rem;
transition: all 0.3s;
box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

#vgp-search-input:focus {
border-color: #d4af37;
box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.vgp-questions-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 20px;
}

.vgp-q-card {
background: white;
border-left: 6px solid var(--vgp-primary);
padding: 10px 20px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: space-between;
min-height: 100px;
}

.vgp-q-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 20px rgba(0,0,0,0.1);
background-color: #fffdf5;
}

.vgp-q-card span {
font-weight: 600;
color: var(--vgp-primary);
font-size: 0.95rem;
padding-right: 10px;
}

.vgp-btn-open {
background: var(--vgp-gold);
border: none;
padding: 10px 18px;
border-radius: 25px;
font-size: 0.75rem;
font-weight: 700;
color: var(--vgp-primary);
text-transform: uppercase;
white-space: nowrap;
cursor: pointer;
}

/* Modal Custom Classes */
.vgp-modal-overlay {
display: none;
position: fixed;
z-index: 9999;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(10, 61, 44, 0.85);
backdrop-filter: blur(8px);
}

.vgp-modal-box {
background-color: white;
margin: 8% auto;
padding: 0;
border-radius: 20px;
width: 90%;
max-width: 700px;
position: relative;
overflow: hidden;
box-shadow: 0 25px 50px rgba(0,0,0,0.4);
animation: vgpFadeIn 0.4s ease;
}

@keyframes vgpFadeIn {
from { transform: scale(0.8); opacity: 0; }
to { transform: scale(1); opacity: 1; }
}

.vgp-modal-header {
background: var(--vgp-gold);
padding: 25px 40px;
color: var(--vgp-primary);
font-weight: 700;
font-size: 1.3rem;
}

.vgp-modal-body {
padding: 40px;
font-size: 1.1rem;
color: #444;
line-height: 1.8;
max-height: 60vh;
overflow-y: auto;
}

.vgp-close-x {
position: absolute;
top: 15px;
right: 20px;
font-size: 35px;
cursor: pointer;
color: var(--vgp-primary);
font-weight: bold;
z-index: 10;
}

.vgp-footer {
text-align: center;
padding: 50px;
color: #888;
font-size: 0.9rem;
background: #eee;
margin-top: 50px;
}

@media (max-width: 768px) {
.vgp-questions-grid { grid-template-columns: 1fr; }
.vgp-header-section h1 { font-size: 1.6rem; }
}
.vgp-schema-section {
max-width: 900px;
margin: 50px auto;
padding: 20px;
font-family: 'Montserrat', sans-serif;
}

.vgp-schema-title {
color: #0a3d2c;
text-align: center;
text-transform: uppercase;
margin-bottom: 30px;
font-weight: 700;
font-size: 1.8rem;
}

.vgp-schema-item {
background: #fff;
border: 2px solid #0a3d2c;
border-radius: 15px;
margin-bottom: 20px;
padding: 25px;
display: flex;
align-items: center;
justify-content: space-between;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.vgp-schema-item:hover {
border-color: #d4af37;
}

.vgp-schema-text {
font-weight: 600;
color: #0a3d2c;
font-size: 1.1rem;
flex: 1;
}

.vgp-schema-btn {
background: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
border: none;
padding: 12px 25px;
border-radius: 30px;
color: #0a3d2c;
font-weight: 700;
cursor: pointer;
text-transform: uppercase;
font-size: 0.85rem;
white-space: nowrap;
margin-left: 15px;
box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
transition: transform 0.2s;
}

.vgp-schema-btn:hover {
transform: scale(1.05);
}

/* Popup Styling */
.vgp-pop-overlay {
display: none;
position: fixed;
z-index: 10000;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(5px);
}

.vgp-pop-box {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: white;
width: 90%;
max-width: 550px;
border-radius: 20px;
overflow: hidden;
border-top: 8px solid #0a3d2c;
}

.vgp-pop-header {
padding: 20px 30px;
background: #f9f9f9;
color: #0a3d2c;
font-weight: 700;
font-size: 1.2rem;
border-bottom: 1px solid #eee;
}

.vgp-pop-content {
padding: 30px;
color: #444;
line-height: 1.8;
font-size: 1.05rem;
}

.vgp-pop-close {
display: block;
width: 100%;
background: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
border: none;
padding: 15px;
color: #0a3d2c;
font-weight: 700;
cursor: pointer;
text-transform: uppercase;
}
:root {
--vgp-deep-green: #0a3d2c;
--vgp-gold-grad: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
}

.vgp-rev-section {
background-color: #f4f7f6;
padding: 80px 20px;
font-family: 'Montserrat', sans-serif;
}

.vgp-rev-container {
max-width: 1200px;
margin: 0 auto;
}

.vgp-rev-header {
text-align: center;
margin-bottom: 50px;
}

.vgp-rev-header h2 {
color: var(--vgp-deep-green);
font-size: 2.2rem;
text-transform: uppercase;
font-weight: 700;
margin-bottom: 15px;
}

.vgp-rev-header .vgp-rev-line {
width: 80px;
height: 4px;
background: var(--vgp-gold-grad);
margin: 0 auto;
}

.vgp-rev-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 30px;
}

.vgp-rev-card {
background: white;
padding: 30px;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
transition: all 0.3s ease;
border-bottom: 5px solid transparent;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.vgp-rev-card:hover {
transform: translateY(-10px);
border-bottom: 5px solid #d4af37;
box-shadow: 0 15px 40px rgba(10, 61, 44, 0.15);
}

.vgp-rev-stars {
background: var(--vgp-gold-grad);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 1.2rem;
margin-bottom: 15px;
}

.vgp-rev-content {
color: #555;
font-style: italic;
line-height: 1.7;
margin-bottom: 20px;
font-size: 0.95rem;
text-align: justify;
}

.vgp-rev-info {
display: flex;
align-items: center;
border-top: 1px solid #eee;
padding-top: 20px;
}

.vgp-rev-avatar {
width: 50px;
height: 50px;
background: var(--vgp-deep-green);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
margin-right: 15px;
flex-shrink: 0;
border: 2px solid #d4af37;
}

.vgp-rev-user-name {
font-weight: 700;
color: var(--vgp-deep-green);
display: block;
}

.vgp-rev-user-desc {
font-size: 0.8rem;
color: #888;
}

.vgp-rev-btn-wrap {
text-align: center;
margin-top: 50px;
}

.vgp-rev-btn-more {
background: var(--vgp-gold-grad);
color: var(--vgp-deep-green);
padding: 15px 40px;
border-radius: 35px;
text-decoration: none;
font-weight: 700;
text-transform: uppercase;
font-size: 0.9rem;
box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
display: inline-block;
transition: all 0.3s;
}

.vgp-rev-btn-more:hover {
transform: scale(1.05);
box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
.vgp-rev-grid { grid-template-columns: 1fr; }
}
:root {
--vgp-v3-dark: #0a3d2c;
--vgp-v3-gold: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
--vgp-v3-white: #ffffff;
}

/* SECTION LIÊN HỆ */
#vgp-v3-contact {
background: var(--vgp-v3-dark);
padding: 80px 20px;
font-family: 'Montserrat', sans-serif;
}

.vgp-v3-container {
max-width: 1100px;
margin: 0 auto;
}

.vgp-v3-sec-title h2 {
color: #f9dfa1;
text-align: center;
font-size: 2.2rem;
text-transform: uppercase;
font-weight: 700;
margin-bottom: 40px;
}

/* FORM INPUTS - THIẾT KẾ LẠI ĐỂ NỔI BẬT */
.vgp-v3-form-wrap {
background: rgba(255, 255, 255, 0.05);
padding: 40px;
border-radius: 20px;
border: 1px solid rgba(212, 175, 55, 0.3);
}

.vgp-v3-form-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}

.vgp-v3-input-field {
width: 100%;
padding: 18px 20px;
background: var(--vgp-v3-white); /* Nền trắng nổi bật */
border: 3px solid #ced4da; /* Viền xám đậm rõ ràng */
border-radius: 12px;
font-size: 1rem;
color: #333;
font-weight: 600;
transition: all 0.3s ease;
outline: none;
}

.vgp-v3-input-field:focus {
border-color: #d4af37;
box-shadow: 0 0 15px rgba(212, 175, 55, 0.5); /* Hiệu ứng phát sáng khi nhập */
}

.vgp-v3-textarea {
grid-column: span 2;
min-height: 120px;
margin-top: 20px;
}

/* NÚT BẤM */
.vgp-v3-btn-flex {
display: flex;
gap: 20px;
margin-top: 30px;
}

.vgp-v3-submit-btn {
flex: 2;
background: var(--vgp-v3-gold);
border: none;
padding: 20px;
border-radius: 12px;
font-weight: 700;
text-transform: uppercase;
color: var(--vgp-v3-dark);
cursor: pointer;
font-size: 1rem;
transition: 0.3s;
margin: 10px auto;
}

.vgp-v3-calc-trigger {
flex: 1;
background: transparent;
border: 2px solid #d4af37;
color: #f9dfa1;
padding: 20px;
border-radius: 12px;
font-weight: 700;
text-transform: uppercase;
cursor: pointer;
transition: 0.3s;
}

.vgp-v3-submit-btn:hover, .vgp-v3-calc-trigger:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* MODAL POPUP */
.vgp-v3-modal {
display: none;
position: fixed;
z-index: 99999;
top: 4%; left: 0; width: 100%; height: 100%;
background: rgba(0,0,0,0.9);
backdrop-filter: blur(8px);
}

.vgp-v3-modal-content {
background: #fff;
width: 95%;
max-width: 1200px;
height: 90vh;
margin: 2% auto;
border-radius: 20px;
display: flex;
flex-direction: column;
overflow: hidden;
animation: vgpV3SlideUp 0.4s ease;
}

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

.vgp-v3-modal-header {
background: var(--vgp-v3-dark);
padding: 20px 40px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 4px solid #d4af37;
}

.vgp-v3-modal-header h3 { color: #f9dfa1; margin: 0; text-transform: uppercase; }

.vgp-v3-modal-body {
padding: 30px;
overflow-y: auto;
flex: 1;
}

/* INPUT TRONG POPUP */
.vgp-v3-calc-inputs {
display: grid; grid-template-columns: repeat(3, 1fr);
gap: 20px; margin-bottom: 30px; padding: 20px;
background: #f8f9fa; border-radius: 15px; border: 1px solid #eee;
}

.vgp-v3-calc-inputs label { font-weight: 700; color: #333; display: block; margin-bottom: 8px; font-size: 0.9rem;}

/* 2 CỘT TÍNH TOÁN */
.vgp-v3-calc-grid {
display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
}

.vgp-v3-calc-card {
background: white; border: 2px solid #eee; border-radius: 15px; padding: 20px;
}

.vgp-v3-calc-card h4 {
color: var(--vgp-v3-dark); border-bottom: 3px solid #d4af37;
padding-bottom: 10px; margin-bottom: 20px; text-align: center; font-weight: 700;
}

/* BẢNG DỮ LIỆU */
.vgp-v3-table-wrap {
max-height: 400px; overflow-y: auto; border: 1px solid #eee; border-radius: 8px;
}

.vgp-v3-table {
width: 100%; border-collapse: collapse; font-size: 0.85rem;
}

.vgp-v3-table th {
background: #0a3d2c; position: sticky; top: 0; padding: 12px; font-weight: 700; text-align: left;
}

.vgp-v3-table td { padding: 10px; border-bottom: 1px solid #eee; }

.vgp-v3-summary {
background: #fffdf5; padding: 15px; border-radius: 10px; margin-bottom: 15px; border: 1px dashed #d4af37;
}

.vgp-v3-close { color: #fff; font-size: 40px; cursor: pointer; line-height: 1; }

@media (max-width: 768px) {
.vgp-v3-form-grid, .vgp-v3-calc-inputs, .vgp-v3-calc-grid { grid-template-columns: 1fr; display: block;}
.vgp-v3-btn-flex { flex-direction: column; }
.vgp-invest-section-title
{
font-size: 1.8rem;
text-align: center;
}
.legal-header h2
{
 font-size: 1.5rem;
}
.vgp-invest-section-title::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 80px;
height: 4px;
background: var(--vgp-gold-grad);
right: 0px;
margin: auto;
}
}
:root {
--vgp-dark: #0a3d2c;
--vgp-gold-grad: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
--vgp-white: #ffffff;
--vgp-light-bg: #f4f7f6;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Montserrat', sans-serif; }

.vgp-infra-section {
background-color: var(--vgp-light-bg);
padding: 80px 20px;
color: #333;
}

.vgp-infra-container {
max-width: 1200px;
margin: 0 auto;
}

/* Header Title */
.vgp-infra-header {
text-align: center;
margin-bottom: 60px;
}

.vgp-infra-header span {
display: inline-block;
background: var(--vgp-gold-grad);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 10px;
}

.vgp-infra-header h2 {
color: var(--vgp-dark);
font-size: 2.5rem;
font-weight: 700;
text-transform: uppercase;
}

.vgp-infra-header p {
max-width: 800px;
margin: 20px auto 0;
font-size: 1.1rem;
line-height: 1.6;
color: #666;
}

/* Cards Grid */
.vgp-infra-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.vgp-infra-card {
background: var(--vgp-white);
border-radius: 20px;
overflow: hidden;
box-shadow: 0 15px 40px rgba(0,0,0,0.05);
transition: all 0.3s ease;
border: 1px solid #eee;
display: flex;
flex-direction: column;
}

.vgp-infra-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(10, 61, 44, 0.15);
}

.vgp-infra-img-box {
height: 200px;
background: var(--vgp-dark);
display: flex;
align-items: center;
justify-content: center;
position: relative;
}

/* Icon SVG giả lập */
.vgp-infra-icon {
width: 80px;
height: 80px;
opacity: 0.9;
}

.vgp-infra-content {
padding: 30px;
flex-grow: 1;
display: flex;
flex-direction: column;
}

.vgp-infra-content h3 {
color: var(--vgp-dark);
font-size: 1.4rem;
margin-bottom: 15px;
position: relative;
padding-bottom: 10px;
}

.vgp-infra-content h3::after {
content: '';
position: absolute;
bottom: 0; left: 0;
width: 50px; height: 3px;
background: var(--vgp-gold-grad);
}

.vgp-infra-content p {
font-size: 0.95rem;
color: #555;
line-height: 1.7;
margin-bottom: 20px;
text-align: justify;
}

/* Timeline Info cho Cầu Cần Giờ */
.vgp-timeline-box {
background: #f9f9f9;
padding: 15px;
border-radius: 10px;
margin-top: auto;
border-left: 4px solid #d4af37;
}

.vgp-timeline-item {
display: flex;
justify-content: space-between;
margin-bottom: 5px;
font-size: 0.85rem;
}

.vgp-timeline-label { font-weight: 600; color: var(--vgp-dark); }
.vgp-timeline-year { font-weight: 700; color: #d4af37; }

/* Highlight Badge */
.vgp-badge {
display: inline-block;
background: var(--vgp-gold-grad);
color: var(--vgp-dark);
padding: 10px 15px;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 700;
margin-bottom: 10px;
text-align: center;
}

.vgp-cta-btn {
display: block;
text-align: center;
background: var(--vgp-gold-grad);
color: var(--vgp-dark);
text-decoration: none;
padding: 15px;
border-radius: 10px;
font-weight: 700;
margin-top: 50px;
text-transform: uppercase;
transition: 0.3s;
}

.vgp-cta-btn:hover {
box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 992px) {
.vgp-infra-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
.vgp-infra-grid { grid-template-columns: 1fr; }
.vgp-infra-header h2 { font-size: 1.8rem; }
}
:root {
--vgp-dark: #0a3d2c;
--vgp-gold-grad: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
--vgp-white: #ffffff;
--vgp-soft-bg: #fdfdfd;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Montserrat', sans-serif; }

.vgp-legal-section {
background-color: var(--vgp-white);
padding: 90px 20px;
color: #333;
background-image: radial-gradient(#eee 1px, transparent 1px);
background-size: 30px 30px; /* Tạo họa tiết nền nhẹ nhàng chuyên nghiệp */
}

.vgp-legal-container {
max-width: 1250px;
margin: 0 auto;
}

/* Header Title */
.vgp-legal-header {
text-align: center;
margin-bottom: 70px;
}

.vgp-legal-header h2 {
color: var(--vgp-dark);
font-size: 2.2rem;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 20px;
}

.vgp-legal-header .vgp-divider {
width: 100px;
height: 4px;
background: var(--vgp-gold-grad);
margin: 0 auto 25px;
}

.vgp-legal-header p {
max-width: 850px;
margin: 0 auto;
font-size: 1.1rem;
line-height: 1.8;
color: #444;
}

/* Legal Highlight Box (2.870 ha) */
.vgp-scale-box {
background: var(--vgp-dark);
color: #fff;
padding: 30px;
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
margin-bottom: 50px;
border: 2px solid #d4af37;
}

.vgp-scale-number {
font-size: 3rem;
font-weight: 800;
background: var(--vgp-gold-grad);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

/* Grid Layout */
.vgp-legal-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 25px;
}

.vgp-legal-card {
background: var(--vgp-soft-bg);
padding: 40px 30px;
border-radius: 5px; /* Vuông vức tạo cảm giác vững chãi */
border: 1px solid #eee;
position: relative;
transition: all 0.4s ease;
box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.vgp-legal-card:hover {
border-color: #d4af37;
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(10, 61, 44, 0.1);
}

.vgp-legal-card::before {
content: '';
position: absolute;
top: 0; left: 0; width: 100%; height: 5px;
background: var(--vgp-gold-grad);
opacity: 0;
transition: 0.3s;
}

.vgp-legal-card:hover::before {
opacity: 1;
}

.vgp-icon-circle {
width: 70px;
height: 70px;
background: var(--vgp-dark);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 25px;
}

.vgp-icon-circle svg {
width: 35px;
height: 35px;
fill: #f9dfa1;
}

.vgp-legal-card h3 {
color: var(--vgp-dark);
font-size: 1.25rem;
margin-bottom: 15px;
font-weight: 700;
}

.vgp-legal-card p {
font-size: 0.95rem;
color: #555;
line-height: 1.7;
}

/* CTA Button */
.vgp-legal-cta {
text-align: center;
margin-top: 60px;
}

.vgp-btn-gold {
background: var(--vgp-gold-grad);
color: var(--vgp-dark);
text-decoration: none;
padding: 18px 45px;
border-radius: 50px;
font-weight: 700;
display: inline-block;
text-transform: uppercase;
font-size: 0.9rem;
letter-spacing: 1px;
transition: 0.3s;
box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.vgp-btn-gold:hover {
transform: scale(1.05);
box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
}

@media (max-width: 992px) {
.vgp-legal-grid { grid-template-columns: 1fr; }
.vgp-scale-box { flex-direction: column; text-align: center; }
}
:root {
--vgp-dark: #0a3d2c;
--vgp-gold-grad: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
--vgp-white: #ffffff;
--vgp-bg-light: #f4f7f6;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Montserrat', sans-serif; }

.vgp-sales-section {
background-color: var(--vgp-dark);
padding: 100px 20px;
color: var(--vgp-white);
overflow: hidden;
position: relative;
margin-top: 80px;
}

/* Phông nền mờ họa tiết sang trọng */
.vgp-sales-section::before {
content: "V";
position: absolute;
top: -50px; left: -50px;
font-size: 500px;
font-weight: 800;
color: rgba(255,255,255,0.03);
line-height: 1;
}

.vgp-sales-container {
max-width: 1250px;
margin: 0 auto;
position: relative;
z-index: 1;
}

/* Header */
.vgp-sales-header {
text-align: center;
margin-bottom: 60px;
}

.vgp-sales-header h2 {
font-size: 2.5rem;
text-transform: uppercase;
font-weight: 700;
margin-bottom: 15px;
background: var(--vgp-gold-grad);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.vgp-sales-header p {
font-size: 1.2rem;
opacity: 0.9;
max-width: 700px;
margin: 0 auto;
}

/* Golden Principle Box */
.vgp-f0-badge {
background: var(--vgp-gold-grad);
color: var(--vgp-dark);
display: inline-block;
padding: 10px 30px;
border-radius: 50px;
font-weight: 700;
font-size: 1.1rem;
margin-bottom: 40px;
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Grid Content */
.vgp-sales-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.vgp-sales-card {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(212, 175, 55, 0.3);
padding: 40px 30px;
border-radius: 20px;
backdrop-filter: blur(10px);
transition: all 0.3s ease;
text-align: center;
}

.vgp-sales-card:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateY(-10px);
border-color: #f9dfa1;
}

.vgp-icon-box {
width: 80px;
height: 80px;
background: var(--vgp-gold-grad);
border-radius: 50%;
margin: 0 auto 25px;
display: flex;
align-items: center;
justify-content: center;
}

.vgp-icon-box svg {
width: 40px;
height: 40px;
fill: var(--vgp-dark);
}

.vgp-sales-card h3 {
color: #f9dfa1;
font-size: 1.4rem;
margin-bottom: 15px;
text-transform: uppercase;
}

.vgp-sales-card p {
font-size: 0.95rem;
line-height: 1.7;
color: rgba(255,255,255,0.8);
}

/* Comparison Tag */
.vgp-compare-list {
margin-top: 15px;
font-size: 0.85rem;
text-align: left;
background: rgba(0,0,0,0.2);
padding: 10px;
border-radius: 10px;
}

.vgp-compare-item {
display: flex;
justify-content: space-between;
margin-bottom: 5px;
border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Financial Highlight */
.vgp-finance-highlight {
margin-top: 60px;
background: var(--vgp-gold-grad);
padding: 40px;
border-radius: 25px;
color: var(--vgp-dark);
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
}

.vgp-finance-text { flex: 2; }
.vgp-finance-text h4 { font-size: 1.8rem; font-weight: 700; margin-bottom: 10px; }
.vgp-finance-text p { font-weight: 600; font-size: 1.1rem; }

.vgp-cta-wrap { flex: 1; text-align: right; }

.vgp-btn-dark {
background: var(--vgp-dark);
color: #fff;
text-decoration: none;
padding: 18px 40px;
border-radius: 50px;
font-weight: 700;
display: inline-block;
text-transform: uppercase;
transition: 0.3s;
}

.vgp-btn-dark:hover {
transform: scale(1.05);
background: #0e563e;
}

@media (max-width: 992px) {
.vgp-sales-grid { grid-template-columns: 1fr; }
.vgp-finance-highlight { flex-direction: column; text-align: center; }
.vgp-cta-wrap { text-align: center; }
}
:root {
--vhp-dark: #0a3d2c;
--vhp-gold: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
--vhp-bg: #f9fbfb;
}

.vhp-zones-section {
padding: 80px 25px;
max-width: 1300px;
margin: 0 auto;
}

/* Header */
.vhp-zones-header {
text-align: center;
margin-bottom: 60px;
}

.vhp-zones-header h2 {
color: var(--vhp-dark);
font-size: 2.2rem;
text-transform: uppercase;
font-weight: 700;
margin-bottom: 15px;
}

.vhp-zones-header p {
font-size: 1.1rem;
color: #666;
max-width: 800px;
margin: 0 auto;
line-height: 1.6;
}

/* Grid Layout */
.vhp-zones-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.vhp-zone-card {
background: #fff;
border-radius: 20px;
overflow: hidden;
display: flex;
flex-direction: column;
box-shadow: 0 10px 30px rgba(10, 61, 44, 0.05);
transition: all 0.3s ease;
border: 1px solid #eee;
}

.vhp-zone-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(10, 61, 44, 0.12);
}

/* Card Top Decor */
.vhp-card-top {
background: var(--vhp-dark);
padding: 30px;
text-align: center;
position: relative;
}

.vhp-card-top::after {
content: '';
position: absolute;
bottom: 0; left: 0; width: 100%; height: 5px;
background: var(--vhp-gold);
}

.vhp-zone-label {
color: #f9dfa1;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 600;
margin-bottom: 5px;
display: block;
}

.vhp-zone-name {
color: #fff;
font-size: 1.5rem;
font-weight: 700;
}

/* Card Content */
.vhp-card-body {
padding: 30px;
flex-grow: 1;
display: flex;
flex-direction: column;
}

.vhp-feature-list {
list-style: none;
margin-bottom: 25px;
}

.vhp-feature-list li {
padding-left: 25px;
position: relative;
margin-bottom: 12px;
font-size: 0.95rem;
line-height: 1.5;
color: #555;
}

.vhp-feature-list li::before {
content: '✓';
position: absolute;
left: 0;
color: #d4af37;
font-weight: bold;
}

/* Investment Advice Box */
.vhp-advice-box {
background: #fffdf5;
border: 1px dashed #d4af37;
padding: 20px;
border-radius: 12px;
margin-top: auto;
}

.vhp-advice-title {
display: flex;
align-items: center;
gap: 8px;
font-weight: 700;
color: var(--vhp-dark);
font-size: 0.9rem;
margin-bottom: 10px;
text-transform: uppercase;
}

.vhp-advice-title svg {
width: 18px;
fill: #d4af37;
}

.vhp-advice-tag {
background: var(--vhp-gold);
color: var(--vhp-dark);
padding: 6px 12px;
border-radius: 6px;
font-size: 0.85rem;
font-weight: 700;
display: inline-block;
}

/* Action Button */
.vhp-zones-footer {
text-align: center;
margin-top: 50px;
}

.vhp-btn-gold {
background: var(--vhp-gold);
color: var(--vhp-dark);
padding: 18px 40px;
border-radius: 50px;
font-weight: 700;
text-decoration: none;
text-transform: uppercase;
display: inline-block;
transition: 0.3s;
box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.vhp-btn-gold:hover {
transform: scale(1.05);
box-shadow: 0 15px 30px rgba(212, 175, 55, 0.5);
}

@media (max-width: 992px) {
.vhp-zones-grid { grid-template-columns: 1fr; }
.vhp-zone-card { max-width: 500px; margin: 0 auto; width: 100%; }
}
:root {
--vhp-primary: #0a3d2c;
--vhp-gold: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
--vhp-text: #333;
--vhp-white: #ffffff;
}

.vhp-yield-section {
padding: 80px 25px;
max-width: 1300px;
margin: 0 auto;
}

/* Title Area */
.vhp-yield-header {
text-align: center;
margin-bottom: 50px;
}

.vhp-yield-header h2 {
color: var(--vhp-primary);
font-size: 2.2rem;
text-transform: uppercase;
font-weight: 700;
margin-bottom: 15px;
}

.vhp-yield-header p {
font-size: 1.1rem;
color: #555;
max-width: 800px;
margin: 0 auto;
}

/* Yield Summary Box */
.vhp-yield-intro {
background: var(--vhp-primary);
color: var(--vhp-white);
padding: 40px;
border-radius: 20px;
display: flex;
align-items: center;
gap: 30px;
margin-bottom: 40px;
box-shadow: 0 15px 35px rgba(10, 61, 44, 0.2);
border: 1px solid #d4af37;
}

.vhp-yield-icon-main {
background: var(--vhp-gold);
width: 80px;
height: 80px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.vhp-yield-icon-main svg { width: 40px; fill: var(--vhp-primary); }

.vhp-yield-intro-text h3 {
color: #f9dfa1;
font-size: 1.4rem;
margin-bottom: 10px;
}

/* Metrics Grid */
.vhp-metrics-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
margin-bottom: 10px;
}

.vhp-metric-card {
background: var(--vhp-white);
padding: 35px;
border-radius: 15px;
box-shadow: 0 10px 25px rgba(0,0,0,0.05);
border-top: 5px solid #d4af37;
transition: transform 0.3s;
}

.vhp-metric-card:hover { transform: translateY(-10px); }

.vhp-metric-card h4 {
color: var(--vhp-primary);
font-size: 1.2rem;
margin-bottom: 15px;
display: flex;
align-items: center;
gap: 10px;
}

.vhp-metric-card h4 span {
width: 30px; height: 30px;
background: var(--vhp-gold);
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 0.8rem;
color: var(--vhp-primary);
}

/* Magnet Amenities List */
.vhp-magnet-list {
list-style: none;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
margin-top: 20px;
}

.vhp-magnet-item {
background: #f9fbfb;
padding: 12px 15px;
border-radius: 8px;
border-left: 3px solid #d4af37;
font-size: 0.9rem;
font-weight: 600;
color: var(--vhp-primary);
}

/* Highlight Ribbon */
.vhp-yield-ribbon {
color: var(--vhp-primary);
text-align: center;
font-weight: 700;
font-size: 1.1rem;
text-transform: uppercase;
}

.vhp-yield-btn {
display: block;
width: fit-content;
margin: 20px auto 0;
background: var(--vhp-gold);
color: var(--vhp-primary);
padding: 18px 45px;
border-radius: 35px;
text-decoration: none;
font-weight: 700;
text-transform: uppercase;
transition: 0.3s;
box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.vhp-yield-btn:hover { transform: scale(1.05); }

@media (max-width: 768px) {
.vhp-metrics-grid, .vhp-yield-intro, .vhp-magnet-list { grid-template-columns: 1fr; }
.vhp-yield-intro { text-align: center; flex-direction: column; }
.vhp-zones-section
{
padding: 80px 5px;
}
.vhp-btn-gold
{
padding: 18px 20px;
}
}
/* CSS NÀY DÙNG TÊN CLASS RIÊNG BIỆT ĐỂ TRÁNH TRÙNG LẶP */
.vgp-main-container_tq {
display: flex;
justify-content: center;
padding: 20px;
}

/* Nút bấm kích hoạt */
.vgp-trigger-button {
background: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
color: #0a3d2c;
padding: 15px 35px;
border: none;
border-radius: 8px;
font-size: 18px;
font-weight: bold;
text-transform: uppercase;
cursor: pointer;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
transition: all 0.3s ease;
letter-spacing: 1px;
}

.vgp-trigger-button:hover {
transform: scale(1.05);
box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Lớp nền mờ Popup */
.vgp-popup-overlay {
position: fixed;
top: 40px;
left: 0;
width: 100%;
height: calc(100% - 40px);
background: rgba(0, 0, 0, 0.85);
display: none;
justify-content: center;
align-items: center;
z-index: 999999;
backdrop-filter: blur(5px);
}

/* Khung nội dung Popup */
.vgp-popup-card {
background: #ffffff;
width: 95%;
max-width: 900px;
max-height: 90vh;
border-radius: 12px;
position: relative;
overflow-y: auto;
padding: 0;
box-shadow: 0 20px 50px rgba(0,0,0,0.5);
animation: vgpFadeIn 0.4s ease;
}

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

/* Nút đóng Popup */
.vgp-close-btn {
position: sticky;
top: 15px;
right: 15px;
float: right;
background: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
border: none;
width: 35px;
height: 35px;
border-radius: 50%;
font-size: 22px;
font-weight: bold;
color: #0a3d2c;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
z-index: 100;
margin-right: 15px;
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Nội dung văn bản bên trong */
.vgp-text-body {
padding: 20px 30px 40px 30px;
line-height: 1.8; /* Khoảng cách dòng thuận mắt */
color: #333333;
text-align: justify;
}
.vgp-text-body h2
{
padding: 10px 20px;
border-radius: 5px;
text-align: left;
font-family: 'Montserrat', sans-serif;
font-size: 30px !important;
}

/* Tối ưu mobile */
@media (max-width: 768px) {
.vgp-text-body {
padding: 15px 20px 30px 20px;
line-height: 1.7;
font-size: 15px;
}
.vgp-popup-card {
width: 98%;
max-height: 95vh;
}
}

/* Điểm nhấn thông tin quan trọng */
.vgp-important-highlight {
background: rgba(212, 175, 55, 0.1);
border-left: 4px solid #d4af37;
padding: 10px 15px;
margin: 15px 0;
display: block;
border-radius: 0 8px 8px 0;
color: #0a3d2c;
font-weight: 500;
}

/* Thanh cuộn tùy chỉnh */
.vgp-popup-card::-webkit-scrollbar {
width: 6px;
}
.vgp-popup-card::-webkit-scrollbar-thumb {
background: #d4af37;
border-radius: 10px;
}
/* Hệ thống Class riêng biệt: vgp-bk-2026- (Vinhomes Green Paradise Booking) */
.vgp-bk-2026-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.8;
    color: #1a202c;
    max-width: 1250px;
    margin: 20px auto;
    padding: 0px;
    background-color: #f7fafc;
    box-sizing: border-box;
    margin-bottom: 0px;
}

.vgp-bk-2026-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(10, 61, 44, 0.15); /* Shadow pha màu xanh */
    border: 1px solid #e2e8f0;
}

/* Redesign Banner with Deep Green (#0a3d2c) */
.vgp-bk-2026-banner {
    background-color: #0a3d2c; /* Màu xanh chủ đạo */
    color: #ffffff;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    border-bottom: 5px solid #d4af37; /* Viền vàng dưới banner */
}

/* Redesign Banner H1 with Gold Gradient */
.vgp-bk-2026-banner h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.3));
}

.vgp-bk-2026-banner p {
    margin-top: 15px;
    font-size: 1.15rem;
    opacity: 0.9;
    font-weight: 500;
    color: #e2e8f0;
}

.vgp-bk-2026-content {
    padding: 40px;
}

/* Redesign Section Title with Deep Green (#0a3d2c) and Gold */
.vgp-bk-2026-section-title {
    color: #0a3d2c;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    border-left: 5px solid #d4af37; /* Viền vàng trái */
    padding-left: 15px;
    display: block;
    text-transform: uppercase;
}

.vgp-bk-2026-list {
    margin: 0 0 35px 0;
    padding: 0;
    list-style: none;
}

.vgp-bk-2026-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
}

/* Redesign List Icon with Deep Green */
.vgp-bk-2026-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37; /* Icon màu vàng */
    font-weight: bold;
    font-size: 1.2rem;
}

/* Redesign Info Box with Green and Gold */
.vgp-bk-2026-info-box {
    background-color: #e6f0ed; /* Xanh nhạt pha */
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    border: 2px dashed #0a3d2c; /* Viền dashed xanh */
}

.vgp-bk-2026-info-box h3 {
    margin-top: 0;
    color: #0a3d2c;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.vgp-bk-2026-info-box p {
    margin: 10px 0;
    font-size: 1.05rem;
}

/* Redesign CTA Button with vibrant Gold Gradient */
.vgp-bk-2026-cta {
    background: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
    color: #0a3d2c; /* Chữ màu xanh lục bảo cho rực rỡ và dễ đọc */
    text-align: center;
    padding: 20px;
    border-radius: 50px; /* Bo tròn mạnh hơn */
    display: block;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    border: 2px solid #d4af37;
}

.vgp-bk-2026-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f9dfa1 0%, #d4af37 50%, #f9dfa1 100%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .vgp-bk-2026-wrapper { margin: 10px; }
    .vgp-bk-2026-banner { padding: 35px 20px; }
    .vgp-bk-2026-banner h1 { font-size: 1.5rem; letter-spacing: 1px; }
    .vgp-bk-2026-content { padding: 25px; }
    .vgp-bk-2026-section-title { font-size: 1.2rem; }
    .vgp-bk-2026-cta { font-size: 1.2rem; padding: 15px; }
}
/* Container chính */
.igp-v4-wrapper {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    max-width: 1250px;
    margin: 30px auto;
    padding: 0px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    overflow: hidden; /* Cắt góc bo tròn cho các mảng màu bên trong */
    line-height: 1.6;
    color: #333333;
}

/* Mảng màu Header */
.igp-v4-hero {
    background-color: #0a3d2c;
    background-image: linear-gradient(135deg, #0a3d2c 0%, #115740 100%);
    padding: 50px 20px;
    text-align: center;
    border-bottom: 5px solid #d4af37;
}
.igp-v4-hero-title {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
}
.igp-v4-hero-subtitle {
    color: #f9dfa1;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
}

/* Vùng nội dung Body */
.igp-v4-body {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Tiêu đề mục */
.igp-v4-heading {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    color: #0a3d2c;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 25px;
}
.igp-v4-heading::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #d4af37 0%, #f9dfa1 100%);
    border-radius: 4px;
    margin-right: 12px;
}

/* Điểm nhấn Timeline */
.igp-v4-timeline {
    position: relative;
    padding-left: 30px;
    margin-bottom: 40px;
}
.igp-v4-timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 7px;
    width: 2px;
    background: #e0e0e0;
}
.igp-v4-tl-item {
    position: relative;
    margin-bottom: 30px;
}
.igp-v4-tl-item:last-child { margin-bottom: 0; }
.igp-v4-tl-item::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: #d4af37;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #ffffff;
}
.igp-v4-tl-time {
    display: inline-block;
    background: #0a3d2c;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.95rem;
    margin-bottom: 8px;
}
.igp-v4-tl-text {
    font-size: 0.95rem;
    color: #444;
    margin: 0;
}

/* Thông tin cơ bản (Card lưới) */
.igp-v4-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}
.igp-v4-info-card {
    background: #f9fbf9;
    border: 1px solid #e8eee8;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}
.igp-v4-info-card.igp-v4-highlight {
    background: #fffdf5;
    border-color: #f9dfa1;
    border-left: 4px solid #d4af37;
}
.igp-v4-info-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #888;
    font-weight: 700;
    margin-bottom: 4px;
}
.igp-v4-info-val {
    font-size: 1rem;
    color: #111;
    font-weight: 500;
}

/* Điểm nhấn Căn hộ (Pills lớn) */
.igp-v4-apt-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}
.igp-v4-apt-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s;
}
.igp-v4-apt-box:hover {
    border-color: #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}
.igp-v4-apt-type {
    font-weight: 800;
    color: #0a3d2c;
    font-size: 1.05rem;
}
.igp-v4-apt-size {
    background: linear-gradient(135deg, #d4af37 0%, #b89326 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 1.05rem;
}

/* Điểm nhấn Đầu tư (Khối màu) */
.igp-v4-selling-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.igp-v4-sp-item {
    position: relative;
    padding: 18px 20px 18px 25px;
    background: #f4f6f5;
    border-radius: 8px;
    overflow: hidden;
}
.igp-v4-sp-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0; width: 5px;
    background: #0a3d2c;
}
.igp-v4-sp-title {
    color: #d4af37;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 5px;
}
.igp-v4-sp-desc {
    font-size: 0.95rem;
    margin: 0;
    color: #444;
}

/* CTA Banner cuối trang */
.igp-v4-cta {
    background: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
    text-align: center;
    padding: 40px 20px;
}
.igp-v4-cta-text {
    font-size: 1.2rem;
    color: #0a3d2c;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.igp-v4-cta-price {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    background: #0a3d2c;
    display: inline-block;
    padding: 10px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(10, 61, 44, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .igp-v4-body { grid-template-columns: 1fr; gap: 40px; padding: 30px; }
    .igp-v4-hero-title { font-size: 2.2rem; }
}
@media (max-width: 600px) {
    .igp-v4-apt-container { grid-template-columns: 1fr; }
    .igp-v4-cta-price { font-size: 2rem; padding: 10px 20px; }
}
.maa-vpg-container {
    font-family: 'Montserrat', sans-serif;
    max-width: 1300px;
    margin: 20px auto;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    color: #333;
    line-height: 1.6;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.maa-vpg-header {
    background-color: #0a3d2c;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

.maa-vpg-header h2 {
    margin: 0;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.maa-vpg-content {
    padding: 25px;
    background-color: #ffffff;
}

.maa-vpg-greeting {
    margin-bottom: 15px;
    font-weight: 500;
}

.maa-vpg-highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #ccaa2b;
    padding: 15px;
    margin: 20px 0;
}

.maa-vpg-list {
    list-style-type: none;
    padding: 0;
}

.maa-vpg-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.maa-vpg-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0a3d2c;
    font-weight: bold;
}

.maa-vpg-badge {
    display: inline-block;
    background-color: #e8f0fe;
    color: #0a3d2c;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

.maa-vpg-footer {
    background-color: #0a3d2c;
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #eeeeee;
}

.maa-vpg-important {
    color: #0a3d2c;
    font-weight: bold;
}

hr.maa-vpg-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0;
}
.csbh-v2-wrapper {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    max-width: 1300px;
    margin: 0 auto;
    line-height: 1.6;
    background-color: #f4f6f5;

    border-radius: 12px;
}

/* Typography & Colors */
.csbh-v2-primary-color { color: #0a3d2c; }
.csbh-v2-gradient-text {
    background: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
.csbh-v2-gradient-bg {
    background: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
    color: #0a3d2c;
}

/* Main Title */
.csbh-v2-main-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 15px;
    display: inline-block;
}
.csbh-v2-header-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

/* Cards Structure */
.csbh-v2-section {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-top: 5px solid #0a3d2c;
}
.csbh-v2-section-title {
    font-size: 1.4rem;
    color: #0a3d2c;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
.csbh-v2-section-title::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 24px;
    background: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
    border-radius: 4px;
}

/* General Info Grid */
.csbh-v2-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 20px;
}
  @media (max-width: 603px) {
     .csbh-v2-info-grid {
        display: block;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 20px;
    }
  }
.csbh-v2-info-box {
    background: #f9fbf9;
    border: 1px solid #e2e8e5;
    border-left: 4px solid #0a3d2c;
    padding: 15px;
    border-radius: 6px;
}
.csbh-v2-info-box h4 {
    margin: 0 0 10px 0;
    color: #0a3d2c;
}

/* Tables */
.csbh-v2-table-wrapper {
    overflow-x: auto;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.csbh-v2-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.csbh-v2-table th {
    background-color: #0a3d2c;
    color: #ffffff;
    padding: 15px;
    text-align: left;
    font-size: 0.95rem;
}
.csbh-v2-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    vertical-align: middle;
}
.csbh-v2-table tr:last-child td { border-bottom: none; }
.csbh-v2-table td:last-child { border-right: none; }
.csbh-v2-table tr:hover { background-color: #f4f6f5; }

.csbh-v2-highlight-row {
    background: rgba(212, 175, 55, 0.1);
    font-weight: bold;
}

/* Payment Methods Tabs/Cards */
.csbh-v2-method-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 25px;
    overflow: hidden;
}
.csbh-v2-method-header {
    background: #0a3d2c;
    color: white;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.csbh-v2-method-badge {
    background: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
    color: #0a3d2c;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}
.csbh-v2-method-content {
    padding: 20px;
}

/* Steps */
.csbh-v2-steps-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.csbh-v2-step {
    display: flex;
    background: #f9fbf9;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #eee;
    align-items: flex-start;
}
.csbh-v2-step-number {
    background: #0a3d2c;
    color: #d4af37;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 15px;
}
.csbh-v2-step-content { flex: 1; }

/* Notes & Alerts */
.csbh-v2-alert {
    background-color: #fff8e1;
    border-left: 4px solid #d4af37;
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 6px 6px 0;
    font-size: 0.95rem;
}
.csbh-v2-alert ul {
    margin: 5px 0 0;
    padding-left: 20px;
}

.csbh-v2-bold { font-weight: bold; }
.csbh-v2-text-gold { color: #d4af37; }
.csbh-hdcn-wrapper {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    max-width: 1300px;
    margin: 0 auto;
    line-height: 1.6;
    background-color: #f4f6f5;
    padding: 0px;
    border-radius: 12px;
}

/* Typography & Colors */
.csbh-hdcn-gradient-text {
    background: #0a3d2c;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* Main Title */
.csbh-hdcn-main-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 3px solid #0a3d2c;
    padding-bottom: 5px;
    display: inline-block;
}
.csbh-hdcn-header-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

/* Cards Structure */
.csbh-hdcn-section {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-top: 5px solid #0a3d2c;
}
.csbh-hdcn-section-title {
    font-size: 1.4rem;
    color: #0a3d2c;
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
.csbh-hdcn-section-title::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 24px;
    background: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
    border-radius: 4px;
}

/* General Info Grid */
.csbh-hdcn-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.csbh-hdcn-info-box {
    background: #f9fbf9;
    border: 1px solid #e2e8e5;
    border-left: 4px solid #0a3d2c;
    padding: 15px;
    border-radius: 6px;
}
.csbh-hdcn-info-box h4 {
    margin: 0 0 10px 0;
    color: #0a3d2c;
}

/* Tables */
.csbh-hdcn-table-wrapper {
    overflow-x: auto;
    margin: 15px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.csbh-hdcn-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.csbh-hdcn-table th {
    background-color: #0a3d2c;
    color: #ffffff;
    padding: 12px 15px;
    text-align: left;
    font-size: 0.95rem;
}
.csbh-hdcn-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    vertical-align: middle;
}
.csbh-hdcn-table tr:last-child td { border-bottom: none; }
.csbh-hdcn-table td:last-child { border-right: none; }
.csbh-hdcn-table tr:hover { background-color: #f4f6f5; }

.csbh-hdcn-subheader {
    background-color: #e8eee8;
    color: #0a3d2c;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.csbh-hdcn-highlight-row {
    background: rgba(212, 175, 55, 0.1);
    font-weight: bold;
}

/* Payment Methods Tabs/Cards */
.csbh-hdcn-method-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 25px;
    overflow: hidden;
}
.csbh-hdcn-method-header {
    background: #0a3d2c;
    color: white;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.csbh-hdcn-method-badge {
    background: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
    color: #0a3d2c;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}
.csbh-hdcn-method-content {
    padding: 20px;
}

/* Notes & Alerts */
.csbh-hdcn-alert {
    background-color: #fff8e1;
    border-left: 4px solid #d4af37;
    padding: 15px;
    margin: 15px 0;
    border-radius: 0 6px 6px 0;
    font-size: 0.95rem;
}
.csbh-hdcn-alert ul {
    margin: 5px 0 0;
    padding-left: 20px;
}

.csbh-hdcn-bold { font-weight: bold; }
/* CSS Giao diện Phân khu - 2 cột */
.xnt-pk-v1-container {
    width: 100%;
    max-width: 1000px; /* Độ rộng vừa phải cho 2 cột */
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.xnt-pk-v1-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Chia đúng 2 cột */
    gap: 24px;
    margin-bottom: 20px;
}

.xnt-pk-v1-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.xnt-pk-v1-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 86, 179, 0.15);
    border-color: #cce0ff;
}

.xnt-pk-v1-img-box {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
}

.xnt-pk-v1-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.xnt-pk-v1-card:hover .xnt-pk-v1-img-box img {
    transform: scale(1.06); /* Hiệu ứng zoom ảnh khi hover */
}

.xnt-pk-v1-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0056b3;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.xnt-pk-v1-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.xnt-pk-v1-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 0 0 15px 0;
}

.xnt-pk-v1-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
    font-size: 14px;
    margin-top: auto;
}

.xnt-pk-v1-label {
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

.xnt-pk-v1-val {
    font-weight: 600;
    color: #d32f2f; /* Nhấn mạnh thông tin cập nhật */
    background: #fff1f0;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 13px;
}

/* Responsive cho màn hình điện thoại (chuyển về 1 cột) */
@media (max-width: 768px) {
    .xnt-pk-v1-grid { grid-template-columns: 1fr; gap: 16px; }
    .xnt-pk-v1-img-box { height: 200px; }
}
.vgp-rental-2025-body {
    padding: 25px;
    overflow-x: auto;
}

.vgp-rental-2025-table {
    width: 100%;
    border-collapse: collapse;
}

.vgp-rental-2025-table thead th {
    background: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
    color: #0a3d2c;
    padding: 15px;
    text-align: left;
    font-size: 14px;
    text-transform: uppercase;
}

.vgp-rental-2025-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    color: #333;
}

.vgp-rental-2025-type {
    font-weight: 700;
    color: #0a3d2c;
}

.vgp-rental-2025-price-range {
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
    color: #b38b00;
}

.vgp-rental-2025-roi-tag {
    background: #eafaf1;
    color: #27ae60;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 13px;
}

/* Expert Analysis Box */
.vgp-rental-2025-analysis {
    margin: 20px;
    padding: 20px;
    background: #fdfaf0;
    border-left: 5px solid #d4af37;
    border-radius: 4px;
}

.vgp-rental-2025-analysis h4 {
    margin: 0 0 10px 0;
    color: #0a3d2c;
    font-size: 17px;
}

.vgp-rental-2025-analysis p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* CTA Section */
.vgp-rental-2025-footer {
    padding: 25px;
    text-align: center;
    background: #f9f9f9;
}

.vgp-rental-2025-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #0a3d2c;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #0a3d2c;
}

.vgp-rental-2025-btn:hover {
    background: transparent;
    color: #0a3d2c;
}
.vgp-rental-2025-roi-tag {
    background: #eafaf1;
    color: #27ae60;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 13px;
}
/* Responsive */
@media (max-width: 768px) {
    .vgp-rental-2025-stats {
        grid-template-columns: 1fr;
    }
    .vgp-rental-2025-header h2 {
        font-size: 20px;
    }
}

.vgp-2025-btn {
display: block;
padding: 10px 20px;
background: linear-gradient(135deg, #d4af37 0%, #f9dfa1 50%, #d4af37 100%);
color: #0a3d2c;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
text-align: center;
transition: transform 0.2s;
border: none;
cursor: pointer;
width: 100%;
}
.xnt-doc-v2-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.xnt-doc-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cột trên Desktop */
    gap: 20px;
    padding: 10px 0;
}

.xnt-doc-v2-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.xnt-doc-v2-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.12);
    border-color: #b8daff;
    background: #f4f9ff;
}

.xnt-doc-v2-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #0056b3;
    color: #ffffff;
    font-weight: bold;
    font-size: 15px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0,86,179,0.3);
}

.xnt-doc-v2-title {
    color: #333;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.2s;
    text-transform: uppercase;
}

.xnt-doc-v2-item:hover .xnt-doc-v2-title {
    color: #0056b3;
}

.xnt-doc-v2-icon {
    margin-left: auto;
    color: #adb5bd;
    font-size: 18px;
    transition: color 0.3s;
}

.xnt-doc-v2-item:hover .xnt-doc-v2-icon {
    color: #0056b3;
}

/* Responsive cho Tablet và Mobile */
@media (max-width: 992px) {
    .xnt-doc-v2-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

@media (max-width: 600px) {
    .xnt-doc-v2-grid { grid-template-columns: 1fr; gap: 14px; }
}

.doc-container {
    background-color: #f8f9fa;
    border-bottom: 2px solid #eeeeee;
}

.doc-list {
    list-style-type: none;
    margin: 0;
    padding: 20px;
}

.doc-list li {
    margin-bottom: 12px;
}

/* Ứng dụng màu sắc thương hiệu chuyên nghiệp */
.pdf-link {
    text-decoration: none;
    color: #1976d2; /* Xanh dương chuyên nghiệp */
    font-weight: 600;
    transition: color 0.2s ease-in-out;
    cursor: pointer;
}

.pdf-link:hover {
    color: #00a350; /* Xanh lá nổi bật khi hover */
    text-decoration: underline;
}