/*
Theme Name: Vinhomes
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0.1
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

/* ==========================================================================
   0. Thiết lập biến màu sắc & Font chữ chung
   ========================================================================== */
.entry-content {
	padding-top: 0!important;
}
.entry-header-text {
	padding-bottom:0!important;
}
:root {
    --vh-primary-color: #0b302c; /* Màu xanh lục đậm */
    --vh-secondary-color: #081a24; /* Màu Navy đậm */
    --vh-accent-color: #c59b27; /* Màu Gold/Orange */
    --vh-accent-hover: #b28a1e;
    --vh-bg-cream: #faf5ef; /* Màu kem nhạt */
    --vh-text-dark: #333333;
    --vh-text-muted: #666666;
    --vh-border-radius: 12px;
    --vh-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --vh-transition: all 0.3s ease;
}

/* Cấu trúc Layout Single Post */
.single-post #main {
    background-color: #f7f9fa;
    padding-top: 20px;
    padding-bottom: 50px;
}

/* ==========================================================================
   1. Breadcrumbs & Phần Đầu Bài Viết (Header)
   ========================================================================== */
.vinhomes-breadcrumbs {
    font-size: 13px;
    color: var(--vh-text-muted);
    margin-bottom: 15px;
    padding: 0;
}
.vinhomes-breadcrumbs a {
    color: var(--vh-text-muted);
    transition: var(--vh-transition);
}
.vinhomes-breadcrumbs a:hover {
    color: var(--vh-accent-color);
}
.vinhomes-breadcrumbs span {
    margin: 0 8px;
    color: #ccc;
}

.single-post-header {
    text-align: left;
    margin-bottom: 25px;
}
.single-post-header h1.entry-title {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
    color: #111;
    margin: 10px 0 15px 0;
    text-transform: none;
}
.single-post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: var(--vh-text-muted);
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
.single-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.single-post-meta i, .single-post-meta svg {
    color: var(--vh-accent-color);
    font-size: 15px;
}

/* Featured Image */
.single-post .entry-image img {
    border-radius: var(--vh-border-radius);
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: var(--vh-shadow);
}

/* ==========================================================================
   2. Các Hộp CTA và Form trong nội dung bài viết
   ========================================================================== */

/* --- CTA Khảo Sát Đầu Bài Viết [vinhomes_top_cta] --- */
.vh-top-cta {
    background: #ffffff;
    border: 1px solid #eef2f5;
    border-radius: var(--vh-border-radius);
    padding: 24px;
    margin: 30px 0;
    box-shadow: var(--vh-shadow);
    display: flex;
    gap: 24px;
    align-items: center;
    transition: var(--vh-transition);
}
.vh-top-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.vh-top-cta-img {
    flex: 0 0 40%;
    max-width: 40%;
}
.vh-top-cta-img img {
    border-radius: 8px;
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.vh-top-cta-content {
    flex: 0 0 60%;
    max-width: 60%;
}
.vh-top-cta-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--vh-secondary-color);
}
.vh-top-cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.vh-top-cta-list li {
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
    color: #444;
}
.vh-top-cta-list li::before {
    content: "✔";
    color: var(--vh-accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}
.vh-top-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.vh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--vh-transition);
    cursor: pointer;
    text-align: center;
}
.vh-btn-primary {
    background-color: var(--vh-accent-color);
    color: #ffffff !important;
    border: 1px solid var(--vh-accent-color);
}
.vh-btn-primary:hover {
    background-color: var(--vh-accent-hover);
    border-color: var(--vh-accent-hover);
}
.vh-btn-secondary {
    background-color: #ffffff;
    color: #333333 !important;
    border: 1px solid #cccccc;
}
.vh-btn-secondary:hover {
    background-color: #f5f5f5;
    border-color: #999999;
}
.vh-top-cta-note {
    font-size: 12px;
    color: var(--vh-text-muted);
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- Form Đăng Ký Xanh Lục Lớn [vinhomes_lead_form] --- */
.vh-lead-form-box {
    background-color: var(--vh-primary-color);
    color: #ffffff;
    border-radius: var(--vh-border-radius);
    padding: 40px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(11, 48, 44, 0.3);
}
.vh-lead-form-box::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(197, 155, 39, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.vh-lead-form-header {
    margin-bottom: 30px;
}
.vh-lead-form-header h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.vh-lead-form-header p {
    color: #a4c2be;
    font-size: 14px;
    margin: 0;
}
.vh-lead-form-cols {
    display: flex;
    gap: 40px;
}
.vh-lead-form-left {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.vh-lead-feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.vh-lead-feature-icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    background-color: rgba(197, 155, 39, 0.2);
    border: 1px solid var(--vh-accent-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--vh-accent-color);
    font-weight: bold;
    font-size: 14px;
}
.vh-lead-feature-text {
    font-size: 14px;
    line-height: 1.4;
    color: #e2eeec;
}
.vh-lead-form-right {
    flex: 0 0 55%;
    max-width: 55%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 24px;
    position: relative;
    z-index: 2;
}
.vh-form-group {
    margin-bottom: 15px;
}
.vh-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #e2eeec;
}
.vh-form-group input, .vh-form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.95);
    color: #333333;
    border-radius: 6px;
    font-size: 14px;
    transition: var(--vh-transition);
}
.vh-form-group input:focus, .vh-form-group select:focus {
    outline: none;
    border-color: var(--vh-accent-color);
    box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.25);
}
.vh-form-submit-btn {
    width: 100%;
    background-color: var(--vh-accent-color);
    color: #ffffff;
    border: none;
    padding: 12px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--vh-transition);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.vh-form-submit-btn:hover {
    background-color: var(--vh-accent-hover);
}
.vh-form-secure-note {
    text-align: center;
    font-size: 12px;
    color: #a4c2be;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* --- Banner Kêu Gọi Hành Động Cuối Bài Viết [vinhomes_bottom_cta] --- */
.vh-bottom-cta {
    background-color: var(--vh-bg-cream);
    border: 1px solid #f2e7db;
    border-radius: var(--vh-border-radius);
    padding: 30px;
    margin: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--vh-shadow);
}
.vh-bottom-cta-left {
    flex: 0 0 65%;
    max-width: 65%;
}
.vh-bottom-cta-left h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--vh-secondary-color);
    margin-bottom: 10px;
}
.vh-bottom-cta-left p {
    font-size: 14px;
    color: var(--vh-text-muted);
    margin-bottom: 20px;
}
.vh-bottom-cta-right {
    flex: 0 0 30%;
    max-width: 30%;
    text-align: right;
}
.vh-bottom-cta-right img {
    border-radius: 8px;
    max-height: 120px;
    object-fit: cover;
}

/* ==========================================================================
   3. Khối Bài Viết Liên Quan [vinhomes_related_posts]
   ========================================================================== */
.vh-related-section {
    margin-top: 20px;
    border-top: 1px solid #eeeeee;
    padding-top: 24px;
}
.vh-related-section h3.vh-related-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--vh-secondary-color);
    margin-bottom: 25px;
    position: relative;
    padding-left: 15px;
}
.vh-related-section h3.vh-related-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 20px;
    background-color: var(--vh-accent-color);
    border-radius: 2px;
}
.vh-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.vh-related-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: var(--vh-transition);
}
.vh-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.vh-related-thumb {
    position: relative;
    padding-top: 60%; /* Tỉ lệ vàng 16:10 */
    overflow: hidden;
}
.vh-related-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--vh-transition);
}
.vh-related-card:hover .vh-related-thumb img {
    transform: scale(1.08);
}
.vh-related-info {
    padding: 15px;
}
.vh-related-card-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.vh-related-card-title a {
    color: var(--vh-secondary-color);
    transition: var(--vh-transition);
}
.vh-related-card-title a:hover {
    color: var(--vh-accent-color);
}

/* ==========================================================================
   4. Cột Sidebar & Các Widget Cao Cấp Tự Động
   ========================================================================== */
.post-sidebar {
    padding-left: 10px;
}
.vh-sidebar-widget {
    background-color: #ffffff;
    border-radius: var(--vh-border-radius);
    padding: 24px;
    margin-bottom: 25px;
    box-shadow: var(--vh-shadow);
    overflow: hidden;
}

/* --- Widget 1: Profile Đức Thiện --- */
.vh-sidebar-widget.widget-profile-thien {
    background: linear-gradient(135deg, var(--vh-secondary-color) 0%, #0d2836 100%);
    color: #ffffff;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.vh-profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
.vh-profile-header img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(197, 155, 39, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 12px;
}
.vh-profile-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--vh-accent-color);
    margin: 0 0 4px 0;
}
.vh-profile-header p {
    font-size: 13px;
    color: #a1b5c1;
    margin: 0;
}
.vh-profile-body {
    text-align: left;
    margin-bottom: 20px;
}
.vh-profile-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.vh-profile-body li {
    font-size: 13px;
    color: #e1e9ed;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.vh-profile-body li::before {
    content: "✓";
    color: var(--vh-accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.vh-profile-btn {
    width: 100%;
    background: linear-gradient(90deg, var(--vh-accent-color) 0%, #e5b945 100%);
    color: #ffffff !important;
    border: none;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--vh-transition);
    box-shadow: 0 4px 15px rgba(197, 155, 39, 0.2);
    display: block;
    text-align: center;
}
.vh-profile-btn:hover {
    background: linear-gradient(90deg, #e5b945 0%, var(--vh-accent-color) 100%);
    box-shadow: 0 6px 20px rgba(197, 155, 39, 0.4);
}

/* --- Widget 2: Danh Mục Kiến Thức --- */
.vh-sidebar-widget.widget-kb-categories {
    background-color: var(--vh-secondary-color);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.vh-sidebar-widget.widget-kb-categories h3.widget-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(197, 155, 39, 0.5);
    padding-bottom: 10px;
    text-transform: none;
}
.vh-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.vh-cat-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.vh-cat-list li:last-child {
    border-bottom: none;
}
.vh-cat-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #c9d5de;
    font-size: 14px;
    transition: var(--vh-transition);
}
.vh-cat-list a::after {
    content: "➔";
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    transition: var(--vh-transition);
}
.vh-cat-list a:hover {
    color: var(--vh-accent-color);
    padding-left: 6px;
}
.vh-cat-list a:hover::after {
    color: var(--vh-accent-color);
    transform: translateX(4px);
}

/* --- Widget 3: Bài Viết Nổi Bật --- */
.vh-sidebar-widget.widget-featured-posts {
    background-color: #ffffff;
    border: 1px solid #eef2f5;
}
.vh-sidebar-widget.widget-featured-posts h3.widget-title {
    color: var(--vh-secondary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--vh-accent-color);
    padding-bottom: 10px;
    text-transform: none;
}
.vh-feat-post-item {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f2f5f7;
}
.vh-feat-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.vh-feat-post-thumb {
    flex: 0 0 70px;
    width: 70px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
}
.vh-feat-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--vh-transition);
}
.vh-feat-post-item:hover .vh-feat-post-thumb img {
    transform: scale(1.1);
}
.vh-feat-post-info {
    flex-grow: 1;
}
.vh-feat-post-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 4px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vh-feat-post-title a {
    color: var(--vh-secondary-color);
    transition: var(--vh-transition);
}
.vh-feat-post-title a:hover {
    color: var(--vh-accent-color);
}
.vh-feat-post-date {
    font-size: 11px;
    color: var(--vh-text-muted);
}

/* --- Widget 4: Banner Bảng Giá & Đăng Ký --- */
.vh-sidebar-widget.widget-banner-sidebar {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 30px 24px;
    color: #ffffff;
    text-align: center;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: none;
}
.vh-sidebar-widget.widget-banner-sidebar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(8, 26, 36, 0.95) 0%, rgba(8, 26, 36, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
    border-radius: var(--vh-border-radius);
    z-index: 1;
}
.vh-banner-content {
    position: relative;
    z-index: 2;
}
.vh-banner-content h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}
.vh-banner-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
    display: inline-block;
}
.vh-banner-features li {
    font-size: 13px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}
.vh-banner-features li::before {
    content: "✓";
    color: var(--vh-accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}
.vh-banner-btn {
    width: 100%;
    background-color: var(--vh-accent-color);
    color: #ffffff !important;
    border: none;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--vh-transition);
    display: block;
    text-align: center;
}
.vh-banner-btn:hover {
    background-color: var(--vh-accent-hover);
}

/* ==========================================================================
   5. Nút Floating Liên Hệ Nhanh Bên Phải
   ========================================================================== */
.vh-floating-contact {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.vh-float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: var(--vh-transition);
    cursor: pointer;
    position: relative;
}
.vh-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.vh-float-btn img, .vh-float-btn svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}
.vh-float-zalo {
    background-color: #0068ff;
}
.vh-float-phone {
    background-color: #c59b27;
}
.vh-float-messenger {
    background-color: #0084ff;
}
.vh-float-totop {
    background-color: #666666;
    opacity: 0;
    visibility: hidden;
}
.vh-float-totop.show {
    opacity: 1;
    visibility: visible;
}
.vh-float-btn .vh-tooltip {
    position: absolute;
    right: 60px;
    background-color: #333333;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--vh-transition);
    pointer-events: none;
}
.vh-float-btn .vh-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #333333;
}
.vh-float-btn:hover .vh-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   7. Giao Diện Grid 3 Cột Cao Bằng Nhau Cho Trang Danh Mục / Archive
   ========================================================================== */
.vinhomes-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.vh-archive-card {
    height: 100%;
}
.vh-archive-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #ffffff;
    border: 1px solid #eef2f5;
    border-radius: var(--vh-border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: var(--vh-transition);
}
.vh-archive-card-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(8, 26, 36, 0.1);
    border-color: rgba(197, 155, 39, 0.2);
}
.vh-archive-card-thumb {
    position: relative;
    padding-top: 60%; /* Tỉ lệ vàng 16:10 */
    overflow: hidden;
    background-color: #eee;
}
.vh-archive-card-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--vh-transition);
}
.vh-archive-card-inner:hover .vh-archive-card-thumb img {
    transform: scale(1.06);
}
.vh-archive-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
}
.vh-archive-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    margin-bottom: 12px;
}
.vh-archive-card-cat {
    background-color: rgba(11, 48, 44, 0.08);
    color: var(--vh-primary-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
}
.vh-archive-card-date {
    color: var(--vh-text-muted);
}
.vh-archive-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 12px 0;
    height: 44px; /* Giới hạn chiều cao tiêu đề tối đa 2 dòng */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.vh-archive-card-title a {
    color: var(--vh-secondary-color);
    transition: var(--vh-transition);
}
.vh-archive-card-title a:hover {
    color: var(--vh-accent-color);
}
.vh-archive-card-excerpt {
    font-size: 13px;
    color: var(--vh-text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
    flex-grow: 1; /* Đảm bảo ô trích dẫn chiếm hết khoảng trống để đẩy footer xuống dưới cùng */
}
.vh-archive-card-footer {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f0f3f5;
}
.vh-archive-card-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--vh-primary-color) !important;
    transition: var(--vh-transition);
    display: inline-block;
}
.vh-archive-card-more:hover {
    color: var(--vh-accent-color) !important;
    transform: translateX(3px);
}

/* Phân trang */
.vinhomes-archive-pagination {
    margin-top: 40px;
    text-align: center;
}

/* ==========================================================================
   8. Hỗ Trợ Đa Thiết Bị (Responsive CSS)
   ========================================================================== */
@media only screen and (max-width: 992px) {
    .vinhomes-archive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .single-post-header h1.entry-title {
        font-size: 26px;
    }
    .vh-top-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .vh-top-cta-img {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .vh-top-cta-img img {
        height: 200px;
    }
    .vh-top-cta-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .vh-lead-form-cols {
        flex-direction: column;
        gap: 30px;
    }
    .vh-lead-form-left {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .vh-lead-form-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .vh-bottom-cta {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .vh-bottom-cta-left {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .vh-bottom-cta-right {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    .vh-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .post-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media only screen and (max-width: 576px) {
    .vinhomes-archive-grid {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 480px) {
    .vh-related-grid {
        grid-template-columns: 1fr;
    }
    .vh-top-cta-buttons {
        flex-direction: column;
    }
    .vh-btn {
        width: 100%;
    }
    .vh-lead-form-box {
        padding: 20px;
    }
    .vh-floating-contact {
        right: 15px;
        bottom: 20px;
    }
}

.pagination-loop li a,
.pagination-loop li span,
.pagination li a,
.pagination li span,
.page-numbers li a,
.page-numbers li span,
.page-numbers a,
.page-numbers span,
.vinhomes-archive-pagination .page-numbers a,
.vinhomes-archive-pagination .page-numbers span {
    border-radius: 5px !important;
}

/* ==========================================================================
   10. Tùy Biến Section Hero Trang Chủ (Homepage Hero Section)
   ========================================================================== */
.homehero {
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
}
.homehero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(8, 26, 36, 0.88) 0%, rgba(8, 26, 36, 0.6) 55%, rgba(8, 26, 36, 0.75) 100%);
    z-index: 1;
}
.homehero > .row,
.homehero > div > .row {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1370px;
    margin: 0 auto;
    padding: 0 15px;
}
.homehero .row.align-middle {
    align-items: center;
}
.homehero .col-inner.heroinner {
    padding: 0;
    padding-right: 40px;
}
.homehero .row-small > .col {
    padding: 0 15px;
}

/* Cột Trái: Nội dung Hero */
.heroinner .title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
}
.heroinner .title span.gold,
.heroinner .title strong,
.heroinner .title font[color] {
    color: var(--vh-accent-color) !important;
}
.heroinner .subtitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #e8e8e8;
    margin-bottom: 40px;
    font-family: "Montserrat", "Outfit", "Inter", sans-serif;
    border-left: 3px solid var(--vh-accent-color);
    padding-left: 15px;
}

/* Các Cột Đặc Điểm Nổi Bật (3 Cột) */
.heroinner .featuretitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--vh-accent-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.heroinner .featuretitle img {
    width: 25px;
    height: 25px;
    object-fit: contain;
/*     filter: brightness(0) saturate(100%) invert(69%) sepia(50%) saturate(601%) hue-rotate(5deg) brightness(91%) contrast(90%); */
}
/* Thiết lập hiển thị icon hình tròn fallback */
.vh-fallback-icon {
    font-size: 16px;
    color: var(--vh-accent-color);
    margin-right: 2px;
    line-height: 1;
}
.heroinner .featurecontent {
    font-size: 12.5px;
    line-height: 1.6;
    color: #c5d5de;
    margin: 0;
}

/* Cột Phải: Card Form Đăng Ký Nhận Bảng Giá */
.forminner {
    background-color: rgba(8, 26, 36, 0.92);
    border: 2px solid var(--vh-accent-color);
    border-radius: 14px;
    padding: 30px 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 10;
}
.forminner.dark {
    background-color: rgba(8, 26, 36, 0.95);
}
.forminner h3,
.forminner .form-title,
.forminner .wpcf7-form > p.title {
    color: var(--vh-accent-color);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
    margin: 0 0 8px 0 !important;
    letter-spacing: 0.3px;
}
.forminner p.form-subtitle,
.forminner .form-desc,
.forminner .wpcf7-form > p.subtitle {
    color: #c9d5de;
    font-size: 13px;
    text-align: center;
    margin: 0 0 20px 0 !important;
}
.forminner .wpcf7-form > p.note {
    text-align: center;
    color: var(--vh-accent-color);
    font-size: 12px;
    margin-top: -30px !important;
    margin-bottom: -20px !important;
    opacity: 0.9;
}

/* Tùy biến input của Form trong Hero */
.forminner .wpcf7-form p {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}
.forminner .wpcf7-form p br {
    display: none;
}
.forminner .wpcf7-form .wpcf7-response-output {
    margin: 10px 0 0 0 !important;
    padding: 8px !important;
    font-size: 12px;
}
.forminner input[type="text"],
.forminner input[type="tel"],
.forminner input[type="email"],
.forminner select,
.forminner textarea {
    width: 100%;
    height: 48px;
    border-radius: 6px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background-color: #ffffff !important;
    color: #333333 !important;
    font-size: 14px !important;
    padding: 12px 16px !important;
    margin-bottom: 14px !important;
    margin-top: 0 !important;
    box-shadow: none !important;
    transition: var(--vh-transition);
}
.forminner input[type="text"]:focus,
.forminner input[type="tel"]:focus,
.forminner input[type="email"]:focus {
    border-color: var(--vh-accent-color) !important;
    box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.25) !important;
    outline: none !important;
}

/* Nút Gửi của Form (Submit button) */
.forminner input[type="submit"],
.forminner button[type="submit"],
.forminner .wpcf7-submit {
    width: 100% !important;
    height: 48px !important;
    background: linear-gradient(90deg, var(--vh-accent-color) 0%, #e5b945 100%) !important;
    color: var(--vh-secondary-color) !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: var(--vh-transition) !important;
    box-shadow: 0 4px 15px rgba(197, 155, 39, 0.2) !important;
    margin-top: 6px !important;
    letter-spacing: 1px !important;
    padding: 0 !important;
}
.forminner input[type="submit"]:hover,
.forminner button[type="submit"]:hover,
.forminner .wpcf7-submit:hover {
    background: linear-gradient(90deg, #e5b945 0%, var(--vh-accent-color) 100%) !important;
    box-shadow: 0 6px 20px rgba(197, 155, 39, 0.4) !important;
}

/* ==========================================================================
   11. Section Thống Kê (Stats Bar)
   ========================================================================== */
.homestats {
    background-color: var(--vh-secondary-color);
    padding: 40px 0;
}
.homestats .row {
    max-width: 1370px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.homestats .row::-webkit-scrollbar {
    display: none;
}
.homestats .row > .col {
    flex: 0 0 20% !important;
    max-width: 20% !important;
    min-width: 160px;
}
.homestats .stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    text-align: left;
}
.homestats .stat-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
/*     filter: brightness(0) saturate(100%) invert(69%) sepia(50%) saturate(601%) hue-rotate(5deg) brightness(91%) contrast(90%); */
}
.homestats .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--vh-accent-color);
    margin: 0;
    line-height: 1.2;
}
.homestats .stat-unit {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
}
.homestats .stat-label {
    font-size: 13px;
    color: #c9d5de;
    margin: 4px 0 0 0;
    letter-spacing: 0.3px;
}

/* ==========================================================================
   12. Section Lý Do Chọn
   ========================================================================== */
.homelydo {
    padding: 80px 0;
    background-color: #f8f9fa;
}
.homelydo .row {
    max-width: 1370px;
    margin: 0 auto;
    justify-content: center;
}
.homelydo-grid {
    justify-content: center;
}
.homelydo-grid > .col {
    flex: 0 0 20% !important;
    max-width: 20% !important;
}
.homelydo .section-title {
    font-size: 32px;
    margin-bottom: 30px;
}
.lydo-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--vh-border-radius);
    transition: var(--vh-transition);
    height: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.lydo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.lydo-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
/*     background-color: rgba(197, 155, 39, 0.1); */
    border-radius: 50%;
}
.lydo-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.lydo-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--vh-secondary-color);
    margin-bottom: 10px;
}
.lydo-desc {
    font-size: 14px;
    color: var(--vh-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   13. Section Không Gian Sống (Slider)
   ========================================================================== */
.homekhonggian {
    padding: 0 0 70px 0;
    background-color: #f9fafb;
}
.homekhonggian .row {
    max-width: 1370px;
    margin: 0 auto;
}
.homekhonggian .section-title {
    margin-bottom: 30px;
}
.khonggian-wrapper {
    position: relative;
    max-width: 1370px;
    margin: 0 auto;
}
.slider-btn {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff !important;
    border: none !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    transition: var(--vh-transition);
    color: #e53935 !important;
    overflow: visible !important;
    padding: 0 !important;
    line-height: 1 !important;
    font-size: 0 !important;
}
.slider-btn svg {
    stroke: #e53935 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 16px !important;
    height: 16px !important;
    overflow: visible !important;
}
.slider-btn svg polyline {
    stroke: #e53935 !important;
}
.slider-btn:hover {
    background: #f5f5f5 !important;
}
.slider-prev {
    left: -10px;
}
.slider-next {
    right: -15px;
}
.khonggian-slider {
    overflow-x: auto;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0 !important;
    padding: 0 !important;
}
.khonggian-slider::-webkit-scrollbar {
    display: none;
}
.khonggian-slider > .col {
    flex: 0 0 calc(100% / 4.5) !important;
    max-width: calc(100% / 4.5) !important;
    padding: 0 8px;
}
.khonggian-card {
    text-align: center;
    padding: 0;
}
.khonggian-thumb {
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
}
.khonggian-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--vh-transition);
}
.khonggian-card:hover .khonggian-thumb img {
    transform: scale(1.05);
}
.khonggian-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--vh-secondary-color);
    margin: 0 0 4px 0;
}
.khonggian-desc {
    font-size: 12px;
    color: var(--vh-text-muted);
    margin: 0;
}

/* ==========================================================================
   14. Section Đầu Tư
   ========================================================================== */
.homedautu {
    padding: 70px 0;
    background-color: #ffffff;
}
.homedautu .row {
    max-width: 1370px;
    margin: 0 auto;
}
.dautu-content {
    padding-right: 30px;
}
.dautu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dautu-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--vh-text-dark);
}
.dautu-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--vh-accent-color);
    font-weight: 700;
    font-size: 16px;
}
.dautu-content ul li strong {
    color: var(--vh-secondary-color);
}
.dautu-image img {
    width: 100%;
    height: auto;
    border-radius: var(--vh-border-radius);
}

/* ==========================================================================
   15. Section Bằng Chứng Uy Tín
   ========================================================================== */
.homebangchung {
    padding: 70px 0 70px;
    background-color: #f9fafb;
}
.homebangchung .row {
    max-width: 1370px;
    margin: 0 auto;
}
.bangchung-card {
    background: #ffffff;
    border-radius: var(--vh-border-radius);
    padding: 28px 24px;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: none;
}
.bangchung-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--vh-secondary-color);
    margin: 0 0 10px 0;
    text-transform: uppercase;
}
.bangchung-card-desc {
    font-size: 13px;
    color: var(--vh-text-muted);
    margin: 0 0 16px 0;
    line-height: 1.6;
}
.bangchung-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 75%;
}
.bangchung-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.bangchung-link {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    background: var(--vh-accent-color);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    z-index: 2;
    transition: var(--vh-transition);
}
.bangchung-link:hover {
    background: var(--vh-secondary-color);
}
.baochi-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: center;
}
.baochi-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: var(--vh-transition);
}
.baochi-logo:hover {
    opacity: 1;
}
.khachhang-slider {
    position: relative;
    overflow: hidden;
}
.khachhang-slide {
    display: none;
}
.khachhang-slide.active {
    display: block;
}
.khachhang-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}
.khachhang-item:last-child {
    margin-bottom: 0;
}
.khachhang-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.khachhang-quote {
    font-size: 13px;
    color: var(--vh-text-dark);
    line-height: 1.5;
    margin: 0 0 4px 0;
    font-style: italic;
}
.khachhang-name {
    font-size: 12px;
    color: var(--vh-text-muted);
    font-weight: 600;
    margin: 0;
}
.khachhang-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}
.kh-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: var(--vh-transition);
}
.kh-dot.active {
    background: var(--vh-accent-color);
}

/* Nổi bật bar */
.noibat-bar {
    margin-top: 30px;
    margin-bottom: 60px;
    background: var(--vh-secondary-color);
    border-radius: var(--vh-border-radius);
    padding: 20px 0 0;
    box-shadow: none;
    border: none;
    max-width: 1340px !important;
    margin-left: auto;
    margin-right: auto;
}
.noibat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
}
.noibat-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
/*     filter: brightness(0) saturate(100%) invert(69%) sepia(50%) saturate(601%) hue-rotate(5deg) brightness(91%) contrast(90%); */
}
.noibat-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2px 0;
}
.noibat-desc {
    font-size: 12px;
    color: #c9d5de;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   16. Section CTA
   ========================================================================== */
.homecta {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 70px 0;
}
.homecta::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(11, 48, 44, 0.95) 0%, rgba(11, 48, 44, 0.85) 60%, rgba(11, 48, 44, 0.7) 100%);
    z-index: 1;
}
.homecta > .row {
    position: relative;
    z-index: 2;
    max-width: 1370px;
    margin: 0 auto;
}
.cta-content {
    color: #ffffff;
    padding-right: 40px;
}
.cta-content strong {
    display: block;
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.3;
}
.cta-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}
.cta-content ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    font-size: 14px;
    color: #e2eeec;
}
.cta-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--vh-accent-color);
    font-weight: 700;
}
.cta-content .vh-btn,
.cta-content a.btn,
.cta-content input[type="submit"] {
    display: inline-block;
    background: var(--vh-accent-color);
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

/* ==========================================================================
   17. Section Bài Viết
   ========================================================================== */
.homebaiviet {
    padding: 70px 0;
    background-color: #ffffff;
}
.homebaiviet .row {
    max-width: 1370px;
    margin: 0 auto;
}
.baiviet-wrapper {
    position: relative;
    max-width: 1370px;
    margin: 0 auto;
}
.baiviet-slider {
    overflow-x: auto;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0 !important;
}
.baiviet-slider::-webkit-scrollbar {
    display: none;
}
.baiviet-slider > .col {
    flex: 0 0 calc(100% / 5) !important;
    max-width: calc(100% / 5) !important;
    padding: 0 8px;
}
.baiviet-card {
    padding: 0;
    height: 100%;
}
.baiviet-thumb {
    display: block;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
}
.baiviet-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--vh-transition);
}
.baiviet-card:hover .baiviet-thumb img {
    transform: scale(1.05);
}
.baiviet-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.baiviet-title a {
    color: var(--vh-secondary-color);
    transition: var(--vh-transition);
}
.baiviet-title a:hover {
    color: var(--vh-accent-color);
}
.baiviet-excerpt {
    font-size: 12px;
    color: var(--vh-text-muted);
    line-height: 1.5;
    margin: 0 0 8px 0;
}
.baiviet-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--vh-primary-color) !important;
}
.baiviet-wrapper .slider-prev {
    left: -14px;
}
.baiviet-wrapper .slider-next {
    right: -10px;
}

/* ==========================================================================
   18. Section FAQs
   ========================================================================== */
.homefaqs {
    padding: 70px 0;
    background-color: #f9fafb;
}
.homefaqs .row {
    max-width: 1370px;
    margin: 0 auto;
}
.faqs-grid {
    columns: 2;
    column-gap: 12px;
}
.faq-item {
    background: #ffffff;
    border: 1px solid #eef2f5;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--vh-transition);
    break-inside: avoid;
    margin-bottom: 12px;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--vh-secondary-color);
    transition: var(--vh-transition);
}
.faq-question:hover {
    color: var(--vh-accent-color);
}
.faq-question svg {
    flex-shrink: 0;
    transition: var(--vh-transition);
}
.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    font-size: 13px;
    color: var(--vh-text-muted);
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 16px;
}
.customfooter {
    
    border-bottom: 1px solid #ccc;
}
.customfooter p {
    margin-bottom: 10px;
}
/* Section chung - title */
.section-title {
    text-align: center !important;
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 28px;
    font-weight: 700;
    color: var(--vh-secondary-color);
    margin-bottom: 40px;
    line-height: 1.3;
    text-transform: uppercase;
}

/* Hỗ trợ đa thiết bị */
@media only screen and (max-width: 992px) {
    .homehero {
        padding: 60px 0;
        min-height: 480px;
    }
    .heroinner {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    .heroinner .title {
        font-size: 36px;
    }
    .heroinner .subtitle {
        font-size: 14px;
        border-left: none;
        padding-left: 0;
    }
    .heroinner .featuretitle {
        justify-content: center;
    }
    .khonggian-slider > .col {
        flex: 0 0 calc(100% / 3.5) !important;
        max-width: calc(100% / 3.5) !important;
    }
    .baiviet-slider > .col {
        flex: 0 0 calc(100% / 4) !important;
        max-width: calc(100% / 4) !important;
    }
}

@media only screen and (max-width: 576px) {
    .homehero {
        min-height: auto;
        padding: 50px 0;
    }
    .heroinner .title {
        font-size: 30px;
    }
    .forminner {
        padding: 22px 16px;
    }
    .khonggian-slider > .col {
        flex: 0 0 calc(100% / 1.2) !important;
        max-width: calc(100% / 1.2) !important;
    }
    .baiviet-slider > .col {
        flex: 0 0 calc(100% / 1.2) !important;
        max-width: calc(100% / 1.2) !important;
    }
}

@media only screen and (max-width: 768px) {
    .homestats .stat-number {
        font-size: 24px;
    }
    .homelydo, .homekhonggian, .homedautu, .homebangchung, .homecta, .homebaiviet, .homefaqs {
        padding: 50px 0;
    }
    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    .faqs-grid {
        columns: 1;
    }
    .homelydo-grid > .col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .dautu-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .cta-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    .cta-content strong {
        font-size: 20px;
    }
    .homestats {
        padding-bottom: 30px;
    }
    .homestats .row > .col {
        flex: 0 0 60%!important;
        max-width: 60% !important;
        min-width: 250px;
    }
    .homestats .row {
        justify-content: left;
    }
    .homebangchung {
        padding-bottom: 0!important;
    }
    .homebangchung .row {
        padding: 30px 0!important;
        border-radius: 0!important;
    }
}

/* ==========================================================================
   Mobile Menu Fullscreen
   ========================================================================== */
.off-canvas-left .mfp-content,
.off-canvas-right .mfp-content {
    --drawer-width: 100vw !important;
    width: 100vw !important;
}
.mobile-sidebar {
    background: #a11e24 !important;
    width: 100vw !important;
    max-width: 100vw !important;
}
.mobile-sidebar .nav-sidebar li a,
.mobile-sidebar .nav-sidebar li a span,
.mobile-sidebar .nav-vertical li a,
.mobile-sidebar .nav-vertical li a span {
    color: #ffffff !important;
}
.mobile-sidebar .nav-sidebar li a:hover,
.mobile-sidebar .nav-vertical li a:hover {
    color: var(--vh-accent-color) !important;
}
.mobile-sidebar .nav-sidebar > li > a,
.mobile-sidebar .nav-vertical > li > a {
    border-color: rgba(255,255,255,0.15) !important;
}
.mobile-sidebar .nav-sidebar .icon-angle-down,
.mobile-sidebar .nav-vertical .icon-angle-down {
    color: #ffffff !important;
}

/* ==========================================================================
   UX Block: CTA-02
   ========================================================================== */
.cta02 .section {
    border-radius: var(--vh-border-radius);
    overflow: hidden;
    padding-top: 30px !important;
}
.cta02 .section p strong {
    color: var(--vh-accent-color);
    font-size: 22px;
    display: block;
    margin-bottom: 5px;
}
.cta02 .section > p:nth-child(2) {
    color: #c9d5de;
    font-size: 14px;
    margin-bottom: 20px;
}
.cta02 .section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.cta02 .section ul li {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
}
.cta02 .section ul li::before {
    content: "✓";
    color: var(--vh-accent-color);
    position: absolute;
    left: 0;
    font-weight: 700;
}
.cta02 .section .wpcf7 {
    background: rgba(8, 26, 36, 0.9);
    border: 2px solid var(--vh-accent-color);
    border-radius: 12px;
    padding: 20px;
}
.cta02 .section .wpcf7 input[type="text"],
.cta02 .section .wpcf7 input[type="tel"],
.cta02 .section .wpcf7 input[type="email"] {
    width: 100%;
    height: 44px;
    border-radius: 6px !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    background: #ffffff !important;
    color: #333 !important;
    font-size: 14px !important;
    padding: 10px 14px !important;
    margin-bottom: 12px !important;
}
.cta02 .section .wpcf7 input[type="submit"],
.cta02 .section .wpcf7 .wpcf7-submit {
    width: 100% !important;
    height: 44px !important;
    background: linear-gradient(90deg, var(--vh-accent-color) 0%, #e5b945 100%) !important;
    color: var(--vh-secondary-color) !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    letter-spacing: 1px !important;
}
.cta02 .section .wpcf7 p {
    margin: 0 !important;
}

/* ==========================================================================
   Popup Form Đăng Ký
   ========================================================================== */
.formpopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}
.formpopup.active {
    display: flex;
}
.formpopup .wpcf7 {
    background: rgba(8, 26, 36, 0.95);
    border: 2px solid var(--vh-accent-color);
    border-radius: 14px;
    padding: 30px 28px;
    max-width: 420px;
    width: 90%;
    position: relative;
}
.formpopup .wpcf7 input[type="text"],
.formpopup .wpcf7 input[type="tel"],
.formpopup .wpcf7 input[type="email"] {
    width: 100%;
    height: 48px;
    border-radius: 6px !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    background: #ffffff !important;
    color: #333 !important;
    font-size: 14px !important;
    padding: 12px 16px !important;
    margin-bottom: 14px !important;
}
.formpopup .wpcf7 input[type="submit"],
.formpopup .wpcf7 .wpcf7-submit {
    width: 100% !important;
    height: 48px !important;
    background: linear-gradient(90deg, var(--vh-accent-color) 0%, #e5b945 100%) !important;
    color: var(--vh-secondary-color) !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
}
.formpopup .wpcf7 p {
    margin: 0 !important;
}
.formpopup .wpcf7 p.title {
    color: var(--vh-accent-color) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 8px !important;
}
.formpopup .wpcf7 p.subtitle {
    color: #c9d5de !important;
    font-size: 13px !important;
    text-align: center;
    margin-bottom: 20px !important;
}
.formpopup .wpcf7 p.note, .cta02 .note {
    text-align: center;
    color: var(--vh-accent-color);
    font-size: 12px;
    margin-top: -30px !important;
	margin-bottom:-20px!important
    opacity: 0.9;
}