@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');


/* --- Quy tắc chung --- */
body, html {
/*    margin: 0;*/
/*    padding: 0;*/
font-size: 16px;
font-family: 'Google Sans Flex', sans-serif;
/*overflow-x: hidden;*/
}

/* --- Quy tắc chung --- */

a
{
    text-decoration: none;
}

.fixed-top
{

}

/* --- Giao diện Header Mới (Nền trắng cố định, chữ tối màu) --- */
.main-header {
    background-color: #ffffff; /* Nền trắng hoàn toàn theo ảnh */
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Đổ bóng nhẹ dưới header */
    transition: all 0.3s ease;
    z-index: 1030;
}

/* Khi cuộn chuột xuống - Giữ nền trắng, chỉ tăng độ đậm của bóng đổ để tạo chiều sâu */
.main-header.scrolled {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 0; /* Xóa padding mặc định để căn đều theo chiều cao nav-link */
}

/* Căn chỉnh các item menu */
.header-nav-list .nav-item {
    padding: 0 15px;
}

.header-nav-list .nav-link {
    font-weight: 500;
    font-size: 17px;
    color: #000  !important; /* Đổi thành màu xanh teal/xanh đậm theo ảnh thực tế */
    text-transform: none; /* Giữ nguyên chữ thường chữ hoa theo ảnh */
    position: relative;
    padding: 22px 0 !important; /* Tăng padding để tạo chiều cao cân bằng cho header */
    transition: all 0.2s ease;
}

.header-nav-list .nav-link:hover,
.header-nav-list .nav-link.active {
    color: #a68641  !important; /* Màu xanh sáng hơn chút khi hover hoặc active */
    font-weight: 600;
}

/* Đường gạch chân khi hover hiệu ứng mượt (đổi sang màu xanh đồng bộ) */
.header-nav-list .nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #a68641 ;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.header-nav-list .nav-link:hover::after,
.header-nav-list .nav-link.active::after {
    width: 100%;
}

/* Khối chia đôi Split-Menu trên Desktop */
@media (min-width: 992px) {
    .logic-split-menu {
        display: flex !important;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .logic-split-menu .navbar-nav {
        flex: 1 1 0%; /* Chia đều 2 vế menu trái phải bằng nhau tuyệt đối */
    }
    .navbar-brand-wrapper {
        flex: 0 0 auto;
        padding: 0 30px;
        position: relative;
        width: auto; /* Để chiều rộng tự động co giãn theo padding */
        z-index: 10;
    }
}

/* Khối bo tròn bọc Logo chính giữa - Ăn lún sâu xuống phần banner */
.navbar-brand-wrapper .logo-img {
    max-height: 105px; /* Tăng kích thước để phủ xuống dưới mượt mà */
    width: auto;
    background: #ffffff;
    padding: 12px 18px;
    border-radius: 0 0 35px 35px; /* Bo góc cạnh dưới tạo hình chữ U ôm trọn logo */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08); /* Đổ bóng sâu xuống dưới tạo độ nổi */
    border: 1px solid #e5e5e5;
    border-top: none; /* Giấu viền phía trên giao với header */
    position: relative;
    transition: all 0.3s ease;
}
.navbar-brand-wrapper .logo-img:hover {
    transform: scale(1.02);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.hero-content {
    z-index: 3;
    padding-top: 120px; /* Tránh đè chữ dưới header trắng */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Button tinh chỉnh theo bản vẽ gốc */
.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background-color: #fff;
    color: #031b33 !important;
    box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

/* --- Responsive thiết bị di động --- */
@media (max-width: 991.98px) {
    .main-header {
        padding: 8px 0;
    }
    
    .navbar-toggler {
        margin-left: auto; /* Đẩy nút gạch menu về bên phải */
        border-color: #004d40;
    }
    
    /* Custom icon hamburger màu tối cho tiệp với nền trắng */
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 77, 64, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-collapse {
        background-color: #ffffff; /* Đổi sang nền trắng đồng nhất trên mobile */
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .header-nav-list .nav-link {
        text-align: center;
        padding: 10px 0 !important;
        border-bottom: 1px solid #f5f5f5;
    }
    
    .header-nav-list .nav-link::after {
        display: none;
    }
    
    .navbar-brand-wrapper {
        width: auto;
        margin: 0 !important;
        position: absolute;
        left: 15px; /* Đẩy logo về góc trái trên mobile */
        top: -5px;
    }
    
    .navbar-brand-wrapper .logo-img {
        max-height: 60px;
        padding: 6px 10px;
        border-radius: 0 0 15px 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}


/* CSS tùy biến để đạt độ chính xác cao theo hình ảnh mẫu */
.about-banner {
    position: relative;
    min-height: 380px;
    /* Thay thế đường dẫn bằng ảnh thực tế phòng của bạn khi deploy */

    overflow: hidden;
}

/* Lớp phủ Gradient Xanh Navy đặc trưng đi từ trái sang phải */
.banner-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Đậm ở bên trái (chứa text) và trong suốt dần về bên phải (lộ hoàn toàn ảnh phòng) */
    background: linear-gradient(90deg, rgb(214 202 175 / 74%) 0%, rgb(166 134 65 / 88%) 25%, rgb(166 134 65 / 76%) 45%, rgba(15, 43, 102, 0.2) 70%, rgba(15, 43, 102, 0) 100%);
    z-index: 1;
}

/* Khung bọc text để căn chỉnh phân lớp z-index */
.banner-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 540px; /* Khống chế chiều rộng khối chữ y hệt ảnh gốc */
}

/* Đường gạch chân màu cam thương hiệu */
.custom-orange-line {
    width: 110px;
    height: 4px;
    background-color: #fff;
    margin-top: 12px;
    margin-bottom: 26px;
}

/* Định dạng đoạn văn chữ mỏng mượt */
.banner-description {
    font-size: 0.925rem;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    text-align: justify;
}

/* Tối ưu hiển thị cho thiết bị di động */
@media (max-width: 767.98px) {
    .banner-gradient-overlay {
        /* Trên mobile phủ đều toàn màn hình để chữ không bị lấn vào nền ảnh gây khó đọc */
        background: rgba(165, 133, 64, 0.9);
    }
    .custom-orange-line {
        margin-bottom: 18px;
    }
}



/* CSS Tùy biến bổ sung cho phần Khách Sạn Nổi Bật */
.section-hotel {
    background-color: #fafafa;
}

/* Định dạng thanh tab lọc dữ liệu */
.filter-btn {
    background-color: #f1f3f7;
    color: #495057;
    border: none;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.filter-btn:hover, .filter-btn.active {
    background-color: #a68641;
    color: #ffffff;
}

/* Thiết kế thẻ Card Khách sạn */
.hotel-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.hotel-img-wrapper {
    position: relative;
    height: 190px;
    overflow: hidden;
}
.hotel-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Chi tiết text bên trong thẻ */
.hotel-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 8px;
}
.hotel-location {
    font-size: 0.8rem;
    color: #8c949c;
    margin-bottom: 10px;
}

/* Nhãn tiện ích (màu xám nhạt) */
.badge-amenity {
    background-color: #f1f3f5;
    color: #495057;
    font-size: 0.725rem;
    font-weight: 400;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 5px;
    margin-right: 4px;
}

/* Nhãn hạng phòng (màu vàng) */
.badge-class {
    background-color: #fff4cc;
    color: #997400;
    font-size: 0.725rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* Khu vực giá cả */
.hotel-price-box {
    border-top: 1px dashed #e9ecef;
    padding-top: 10px;
    font-size: 0.8rem;
    color: #8c949c;
}
.hotel-price {
    font-size: .9rem;
    font-weight: 700;
    color: #a68641;
}

/* CSS Khối Gallery tinh chỉnh chuẩn theo ảnh mẫu */
.section-gallery {
    background-color: #ffffff;
    padding-top: 50px;
    padding-bottom: 60px;
}

.gallery-title {
/*    font-family: 'Playfair Display', 'Times New Roman', serif;*/
font-size: 28px;
letter-spacing: 4px;
color: #0f2b66;
text-transform: uppercase;
margin-bottom: 35px;
}

/* Định dạng khung chứa ảnh */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 12px; /* Khoảng cách hàng dọc */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* Thiết lập chiều cao đồng bộ chuẩn khớp các hàng ngang với nhau */
.h-310 { height: 310px; }
.h-270 { height: 270px; }
.h-592 { height: 592px; } /* Đúng bằng h-310 + h-270 + 12px khoảng cách */
.h-400 { height: 400px; }
.h-180 { height: 180px; }

/* Nút "XEM TẤT CẢ" màu cam ở giữa */
.btn-gallery-more {
    background-color: #a68641;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 28px;
    border: none;
    border-radius: 3px;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}
.btn-gallery-more:hover {
    background-color: #bc4314;
    color: #ffffff;
}
.btn-gallery-more a
{
    color: #fff ;
}

/* CSS Tùy biến cho phần Tin Tức Sự Kiện */
.section-news {
    background-color: #ffffff;
    padding-top: 40px;
    padding-bottom: 60px;
}

.news-main-title {
    font-size: 28px;
    font-weight: 600;
    color: #333333;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* Thanh danh mục / Nav tabs */
.news-nav-scroll {
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 8px;
    margin-bottom: 30px;
}
.news-nav-scroll::-webkit-scrollbar {
    height: 4px;
}
.news-nav-scroll::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 4px;
}

.news-tab-btn {
    background: none;
    border: none;
    color: #888888;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 12px 10px 12px;
    position: relative;
    transition: color 0.2s ease;
}
.news-tab-btn:hover, .news-tab-btn.active {
    color: #d93939; /* Màu đỏ chủ đạo của mẫu tin tức */
}
.news-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #d93939;
}

/* Thẻ Card bài viết */
.news-card {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 24px;
    transition: opacity 0.2s ease;
}
.news-card:hover {
    color: inherit;
    opacity: 0.9;
}

.news-img-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background-color: #f8f9fa;
}
.news-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Kích thước ảnh theo layout gốc */
.h-main-news { height: 380px; }
.h-sub-news { height: 210px; }

/* Nội dung đè lên ảnh của bài viết lớn bên trái */
.news-main-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.92);
    padding: 15px;
    border-radius: 2px;
    max-width: 85%;
}

/* Chi tiết chữ */
.news-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: #d93939;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}
.news-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    color: #111111;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-date {
    font-size: 0.75rem;
    color: #999999;
}

/* Tinh chỉnh cỡ chữ riêng cho bài lớn */
.news-main-overlay .news-title {
    font-size: 1.1rem;
    margin-bottom: 0;
}
.news-dess
{
    font-size: 0.75rem;
    color: #999999;
    font-weight: 400;
}




/* CSS Khối Đánh giá khách sạn */
.section-reviews {
    background-color: #f8fafe; /* Nền xanh xám cực nhẹ giúp nổi bật thẻ card màu trắng */
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
}

.review-main-title {
    color: #006687; /* Màu xanh teal đậm chuẩn mẫu */
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.review-subtitle {
    color: #666666;
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 50px;
}

/* Khung trượt bao quanh thẻ */
.review-slider-container {
    position: relative;
    padding: 0 45px;
}

/* Định dạng thẻ Card Đánh giá */
.review-card {
    background: #ffffff;
    border-radius: 24px; /* Bo góc tròn lớn theo ảnh */
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 102, 135, 0.04); /* Đổ bóng nhẹ tone xanh */
    border: none;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease;
}
.review-card:hover {
    transform: translateY(-3px);
}

/* Khu vực User Info */
.avatar-wrapper {
    position: relative;
    width: 65px;
    height: 65px;
}
.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
/* Dấu tích vàng xác thực trên avatar */
.verified-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background-color: #f3a63b;
    color: white;
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.user-name {
    color: #006687;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}
.icon-bag {
    color: #f3a63b;
    font-size: 0.85rem;
}

/* Icon Nháy kép trang trí góc phải */
.quote-icon {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2.2rem;
    color: #fdf1e1; /* Màu cam sữa nhạt */
    font-family: 'Georgia', serif;
    font-weight: bold;
    line-height: 1;
}

/* Nội dung nhận xét */
.review-text {
    font-size: 0.9rem;
    color: #444444;
    font-style: italic;
    line-height: 1.6;
    min-height: 55px; /* Giữ các card đều nhau */
}

/* Ngôi sao */
.star-rating {
    color: #f3a63b; /* Màu vàng cam tinh tế */
    font-size: 0.9rem;
}

/* Định dạng nút điều hướng Mũi tên trái/phải tròn */
.nav-circle-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #eef2f7;
    color: #006687;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
}
.nav-circle-btn:hover {
    background: #006687;
    color: #ffffff;
}
.nav-btn-left { left: 0; }
.nav-btn-right { right: 0; }

/* Thanh Chỉ báo chấm tròn (Dots indicator) phía dưới */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ced4da;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    width: 28px; /* Khối dẹt dài màu cam khi active */
    border-radius: 4px;
    background-color: #f3a63b;
}




:root {
    --brand-color: #A68641;
    --brand-hover: #8e7135;
}

.main-footer {
    background-color: var(--brand-color);
    color: #ffffff;
    padding-top: 0; /* Để khung Đăng ký đè lên góc trên */
    padding-bottom: 20px;
/*    font-size: 0.85rem;*/
}

/* 1. Khối đăng ký nhận ưu đãi (Hộp màu trắng bo góc nổi lên trên) */
.newsletter-wrapper {
    transform: translateY(-50%); /* Đẩy hộp nhô lên nửa trên của footer */
    margin-bottom: -30px;
}
.newsletter-box {
    background: #ffffff;
    border: 1px solid var(--brand-color);
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.newsletter-title {
    color: var(--brand-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 4px;
}
.newsletter-title span {
    font-size: 1.6rem;
}
.newsletter-desc {
    color: #555555;
    font-size: 0.85rem;
    margin: 0;
}

/* Ô Input & Nút Đăng ký nhận tin */
.newsletter-box .form-control {
    background-color: #f5f6f8;
    border: none;
    font-size: 0.85rem;
    padding: 12px 15px;
    border-radius: 6px;
}
.newsletter-box .form-control:focus {
    box-shadow: none;
    background-color: #ebedf0;
}
.btn-register-now {
    background-color: #fff1e6;
    color: var(--brand-color);
    font-weight: 700;
    font-size: 0.85rem;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    width: 100%;
    transition: all 0.2s ease;
}
.btn-register-now:hover {
    background-color: var(--brand-color);
    color: #ffffff;
}

/* 2. Nội dung thông tin Footer */
.footer-content {
    padding-top: 20px;
}
.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.footer-company-name {
/*    font-size: 1.05rem;*/
font-weight: 700;
letter-spacing: 0.5px;
}
.footer-info-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 8px;
}
.footer-info-text i {
    width: 20px;
    opacity: 0.85;
}

/* Liên kết Menu bên phải */
.footer-link-col h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-list li {
    margin-bottom: 12px;
}
.footer-links-list a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}
.footer-links-list a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Đường vạch ngăn cách mỏng */
.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin-top: 40px;
    margin-bottom: 25px;
}

/* 3. Dòng Brand Group thành viên */
.brand-group-title {
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.9;
}
.brand-item {
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
}
.brand-item i {
    font-size: 1.15rem;
}

/* 4. Thanh bản quyền & Mạng xã hội ngoài cùng (Nền trắng) */
.bottom-bar {
    background-color: #ffffff;
    padding: 10px 0;
}
.certification-img {
    height: 28px;
    object-fit: contain;
}
.social-icons-box {
    display: flex;
    gap: 10px;
}
.social-btn {
    width: 32px;
    height: 32px;
    background-color: #f0f2f5;
    color: #65676b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.social-btn:hover {
    background-color: var(--brand-color);
    color: #ffffff;
}

/* Responsive xử lý khoảng lệch hộp nhận tin trên Mobile */
@media (max-width: 767.98px) {
    .newsletter-wrapper {
        transform: translateY(0);
        margin-bottom: 30px;
        padding-top: 30px;
    }
    .main-footer {
        padding-top: 20px;
    }
    .footer-link-col {
        margin-top: 30px;
    }
}




/* Định dạng tổng thể khối theo phong cách mới */
.section-testimonial {
    background-color: #A68641; /* Đổi sang mã màu thương hiệu #A68641 */
    padding-top: 80px;
    padding-bottom: 80px;
    color: #ffffff;
    overflow: hidden;
}

.testimonial-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.testimonial-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 450px;
    margin-bottom: 45px;
}

/* Khối thông số dữ liệu */
.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}
.stat-stars {
    color: #ffffff;
    font-size: 0.75rem;
    margin-top: 5px;
}

/* --- HIỆU ỨNG THẺ CHỒNG LÊN NHAU (STACKED CARDS) --- */
.stacked-cards-container {
    position: relative;
    height: 270px; /* Khống chế chiều cao vùng chứa thẻ */
    width: 100%;
    display: flex;
    justify-content: center;
}

.testimonial-card-stack {
    position: absolute;
    background: #ffffff;
    color: #333333;
    border-radius: 4px; /* Bo góc vuông vắn nhẹ nhàng giống mẫu */
    padding: 35px;
    width: 88%;
    max-width: 440px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, z-index 0.4s;
}

/* Thẻ chính nằm trên cùng hiển thị rõ nét */
.card-pos-1 {
    z-index: 3;
    transform: translate(0, 0) scale(1);
    opacity: 1;
}

/* Thẻ thứ 2 lót phía sau - dịch sang phải và hơi thu nhỏ */
.card-pos-2 {
    z-index: 2;
    transform: translate(20px, 10px) scale(0.96);
    opacity: 0.85;
}

/* Thẻ thứ 3 lót sâu nhất - dịch tiếp sang phải và thu nhỏ hơn */
.card-pos-3 {
    z-index: 1;
    transform: translate(40px, 20px) scale(0.92);
    opacity: 0.5;
}

/* Chi tiết bên trong thẻ card đánh giá */
.card-comment {
    font-size: 0.92rem;
    color: #444444;
    line-height: 1.7;
    margin-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 25px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.client-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
}

.client-job {
    font-size: 0.8rem;
    color: #777777;
    margin: 0;
}

/* --- THANH ĐIỀU HƯỚNG SLIDER (NAVIGATION) --- */
.slider-controls-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    justify-content:center;
/*    padding-left: 10px;*/
}

.control-arrow {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease, transform 0.2s ease;
    padding: 5px;
}
.control-arrow:hover {
    opacity: 1;
    transform: scale(1.1);
}

.indicator-dots {
    display: flex;
    gap: 6px;
}
.indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transition: background-color 0.3s ease;
}
.indicator-dot.active {
    background-color: #ffffff;
}

/* Responsive cho màn hình thiết bị di động */
@media (max-width: 767.98px) {
    .stacked-cards-container {
        height: 380px;
        margin-top: 20px;
    }
    .testimonial-card-stack {
        width: 92%;
        padding: 25px;
    }
    .card-pos-2 { transform: translate(10px, 10px) scale(0.96); }
    .card-pos-3 { transform: translate(20px, 20px) scale(0.92); }
    .slider-controls-wrapper {
        justify-content: center;
        padding-left: 0;
    }
}





/* CSS Khối Cam kết dịch vụ */
.section-commitments {
    background-color: #ffffff;
    padding-top: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #f0f0f0;
}

/* Khung chứa từng mục cam kết */
.commitment-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
}

/* Icon nét mảnh định dạng chuẩn màu thương hiệu #A68641 */
.commitment-icon-box {
    font-size: 2.5rem;
    color: #A68641; /* Màu thương hiệu mới */
    line-height: 1;
    flex-shrink: 0;
}

/* Tiêu đề mục */
.commitment-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #A68641; /* Màu thương hiệu mới */
    margin-bottom: 4px;
}

/* Mô tả ngắn phía dưới */
.commitment-text {
    font-size: 0.88rem;
    color: #555555;
    margin: 0;
}

/* Responsive căn chỉnh tâm trên màn hình Mobile nhỏ */
@media (max-width: 767.98px) {
    .commitment-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        margin-bottom: 25px;
    }
}





/* CSS Khối Bạn cần tư vấn */
.section-consultation {
    position: relative;
    /* Thay bằng đường dẫn ảnh thực tế của bạn hoặc dùng ảnh nền tối */
    background: url('https://images.unsplash.com/photo-1566665797739-1674de7a421a?q=80&w=1600') no-repeat center center;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
    color: #ffffff;
}

/* Lớp phủ tối mờ (Overlay) chuẩn theo ảnh mẫu giúp nổi bật chữ */
.section-consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65); /* Độ mờ vừa phải */
    z-index: 1;
}

/* Đưa nội dung lên trên lớp phủ */
.consultation-container {
    position: relative;
    z-index: 2;
}

/* Cột bên trái */
.consult-title {
/*    font-family: 'Playfair Display', 'Times New Roman', serif;*/
font-size: 28px;
font-weight: 400;
margin-bottom: 20px;
}

.consult-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 460px;
}

/* Định dạng thiết kế ô Input dạng đường gạch dưới (Underline) nét mảnh */
.consult-form .form-group {
    position: relative;
    margin-bottom: 25px;
}

.consult-form .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0;
    color: #ffffff;
    font-size: 0.9rem;
    padding: 8px 0;
    box-shadow: none;
    transition: border-color 0.3s ease;
}

/* Đổi màu văn bản gợi ý (Placeholder) */
.consult-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Hiệu ứng khi nhấn chuột vào ô nhập liệu - Đổi sang màu vàng thương hiệu #A68641 */
.consult-form .form-control:focus {
    background: transparent;
    color: #ffffff;
    border-bottom: 1px solid #A68641;
}

/* Định dạng riêng cho ô Nhập lời nhắn (Textarea) */
.consult-form textarea.form-control {
    min-height: 40px;
    resize: none;
}

/* Nút "Gửi" viền mảnh tinh tế ở giữa dưới form */
.btn-submit-consult {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    font-size: 0.9rem;
    padding: 8px 50px;
    transition: all 0.3s ease;
}

.btn-submit-consult:hover {
    background-color: #A68641; /* Đổi sang nền màu thương hiệu khi Hover */
    border-color: #A68641;
    color: #ffffff;
}

.section-gallery {
    background-color: #ffffff;
    padding-top: 50px;
    padding-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 12px;
    display: block; /* Đảm bảo thẻ thẻ bọc ngoài co giãn tốt */
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.03);
}
.h-310 { height: 310px; }
.h-270 { height: 270px; }
.h-592 { height: 592px; }
.h-400 { height: 400px; }
.h-180 { height: 180px; }

.btn-gallery-more {
    background-color: #A68641; /* Màu chủ đạo đã đổi theo yêu cầu trước */
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 28px;
    border: none;
    border-radius: 3px;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}
.btn-gallery-more:hover {
    background-color: #8e7135;
    color: #ffffff;
}

.btn_chung_xt
{
    border-color: #a68641;
    color: #a68641;
}
.btn_chung_xt:hover
{
    background-color: #a68641;
    border-color: #a68641;
}

.catchuoi4
{
    overflow: hidden;
    text-overflow: ellipsis;
/*    line-height: 25px;*/
-webkit-line-clamp: 4;
height: 105px;
display: -webkit-box;
-webkit-box-orient: vertical;
}
.commitment-icon-box img {
    height: 50px;
}
.social-icons-box img {
    height: 24px;
}
.pd_height
{
    margin-top: 116px;
}



/* ==========================================================================
   1. CSS CHO BREADCRUMB BANNER
   ========================================================================== */
   .breadcrumb-wrapper {
    position: relative;
    min-height: 250px; /* Chiều cao tối thiểu của banner */
    background-image: url('../images/banner-breadcrumb.jpg'); /* Thay bằng đường dẫn ảnh nền của bạn */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Lớp phủ tối màu (Overlay) giúp text màu trắng dễ đọc hơn */
.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgb(167 135 67 / 68%);
    z-index: 1;
}

/* Đảm bảo nội dung nằm trên lớp overlay */
.z-index-2 {
    z-index: 2;
}

/* Định dạng tiêu đề lớn */
.breadcrumb-title {
    font-size: 32px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Tạo bóng cho chữ sắc nét hơn */
}

/* Tùy chỉnh thanh điều hướng Breadcrumb của Bootstrap */
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7) !important; /* Đổi màu dấu gạch chéo phân cách (/) sang màu trắng mờ */
    content: var(--bs-breadcrumb-divider, "/");
}

.breadcrumb-item a {
    transition: all 0.3s ease;
}

/* Hiệu ứng khi rê chuột vào chữ Trang Chủ */
.breadcrumb-item a:hover {
    opacity: 1 !important;
    color: #A68641 !important; /* Đổi màu vàng đồng giống tone icon của bạn khi hover */
}


/* ==========================================================================
   2. CSS CHO NỘI DUNG CHI TIẾT (Đọc từ Database)
   ========================================================================== */
   .box_mainss {
    background-color: #ffffff;
}

.chitiet_post {
/*    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;*/
font-size: 16px;
line-height: 1.8; /* Giãn dòng vừa phải, đọc lâu không bị mỏi mắt */
color: #333333;
text-align: justify; /* Căn đều hai bên cho văn bản đẹp hơn */
}

/* Định dạng các đoạn văn bên trong */
.chitiet_post p {
    margin-bottom: 1.25rem;
}

/* QUAN TRỌNG: Chống tràn khung đối với hình ảnh do khách chèn từ CKEditor/v.v. */
.chitiet_post img {
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover;
    margin: 15px auto;
    display: block; /* Căn giữa hình ảnh */
    border-radius: 4px; /* Bo góc nhẹ cho ảnh trong bài viết */
}

/* Định dạng các tiêu đề h2, h3, h4 nếu có trong bài viết */
.chitiet_post h2, .chitiet_post h3, .chitiet_post h4 {
    color: #111111;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

/* Tùy chỉnh bảng (Table) nếu có trong nội dung bài viết không bị vỡ trên mobile */
.chitiet_post table {
    width: 100% !important;
    max-width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}

.chitiet_post table td, .chitiet_post table th {
    padding: 8px;
    border: 1px solid #dee2e6;
}

/* Responsive cho màn hình nhỏ (Mobile) */
@media (max-width: 768px) {
    .breadcrumb-wrapper {
        min-height: 180px; /* Thu nhỏ chiều cao banner trên điện thoại */
    }
    .breadcrumb-title {
        font-size: 1.5rem; /* Thu nhỏ cỡ chữ tiêu đề */
    }
    .chitiet_post {
        font-size: 15px; /* Giảm nhẹ size chữ để dễ đọc trên mobile */
    }
}

.khung_cthethong {
    margin-bottom: 3rem;
}
.khung_cthethong .content-block {
    text-align: center;
}
.khung_cthethong .flex-box {
 display: grid;
 grid-template-columns: 1fr 1fr;
 grid-gap: 30px;
}
.khung_cthethong .flex-box .wrap-content {
    position: relative;
    overflow: hidden;
/*    padding: 0 1rem;*/
}
.khung_cthethong .flex-box .wrap-content .rs-image {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.khung_cthethong .flex-box .wrap-content .overlay {
    background:rgb(166 134 65 / 39%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}
.khung_cthethong .flex-box .wrap-content .rs-image img {
    width: 100%;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
.khung_cthethong .flex-box .wrap-content .overlay:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 100%;
    opacity: 0;
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    border: 5px solid #fff;
    border-bottom: 0;
    border-right: 0;
    -webkit-transition: all 0.5s ease 0.2s;
    transition: all 0.5s ease 0.2s;
}
.khung_cthethong .flex-box .wrap-content .content-title {
    position: absolute;
    left: 0;
    bottom: 3.5rem;
    width: 100%;
    text-align: center;
    font-size: 32px;
/*    font-family: "Times New Roman", sans-serif;*/
padding: 0 1rem;
color: #fff;
-webkit-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
z-index: 2;
text-shadow: 0px 0px 10px #000;
background: #a6864185;
}
.khung_cthethong .flex-box .wrap-content:hover .overlay {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.khung_cthethong .flex-box .wrap-content:hover .rs-image img {
    -webkit-animation: zoomslow 5s linear infinite;
    animation: zoomslow 5s linear infinite;
    opacity: 0.9;
}
.khung_cthethong .flex-box .wrap-content:hover .content-title {
    bottom: 50%;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

.khung_cthethong .flex-box .wrap-content:hover .overlay:before {
    bottom: 10px;
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

/*Zoom image slow*/
@keyframes zoomslow
{
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1); 
    }
    50%{
        -webkit-transform: scale(1.3, 1.3);
        transform: scale(1.3, 1.3); 
    }
    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1); } 
    }
    @-webkit-keyframes zoomslow 
    {
        0% {
            transform: scale(1, 1);
            -webkit-transform: scale(1, 1); 
        }
        0% {
           transform: scale(1.3, 1.3);
           -webkit-transform: scale(1.3, 1.3); 
       }
       100% {
        transform: scale(1, 1);
        -webkit-transform: scale(1, 1); 
    }
}


.list_products {
    grid-template-columns: repeat(4, 1fr);
    display: grid;
    grid-gap: 20px;
}
#js_product_list__item {
    margin-bottom: 30px;
}
.items_details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2em 0;
}

.motas_details h2 {
    font-size: 28px;
}


/*chitiet*/
.products-detail .social-block {
    margin: 10px 0;
}
.products-detail .social-block .social-btns .btn {
    display: inline-block;
    background-color: #fff;
    width: 40px;
    height: 40px;
    line-height: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, .1);
    opacity: .99;
    padding: 5px;
    border: 1px solid #f0f1f4;
}
.products-detail .social-block .social-btns .btn:before {
    content: '';
    width: 150%;
    height: 150%;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 90%;
    left: -120%;
}
.products-detail .social-block .social-btns .btn.facebook:before {
    background-color: #3b5998;
}
.products-detail .social-block .social-btns .btn .fab {
    font-size: 20px;
    vertical-align: middle;
    -webkit-transform: scale(.8);
    transform: scale(.8);
}
.products-detail .social-block .social-btns .btn.facebook .fab {
    color: #3b5998;
}
.products-detail .social-block img {
    width: 30px;
    margin-right: 10px;
    position: relative;
    z-index: 9;
}
.products-detail .social-block .social-btns .btn .fab {
    font-size: 20px;
    vertical-align: middle;
    -webkit-transform: scale(.8);
    transform: scale(.8)
}

.products-detail .social-block .social-btns .btn.facebook:before {
    background-color: #3b5998
}

.products-detail .social-block .social-btns .btn.facebook .fab {
    color: #3b5998
}

.products-detail .social-block .social-btns .btn.twitter:before {
    background-color: #3cf
}

.products-detail .social-block .social-btns .btn.twitter .fab {
    color: #3cf
}

.products-detail .social-block .social-btns .btn.google:before {
    background-color: #dc4a38
}

.products-detail .social-block .social-btns .btn.google .fab {
    color: #dc4a38
}

.products-detail .social-block .social-btns .btn.dribbble:before {
    background-color: #f26798
}

.products-detail .social-block .social-btns .btn.dribbble .fab {
    color: #f26798
}

.products-detail .social-block .social-btns .btn.skype:before {
    background-color: #00aff0
}

.products-detail .social-block .social-btns .btn.skype .fab {
    color: #00aff0
}

.products-detail .social-block .social-btns .btn:focus:before,.products-detail .social-block .social-btns .btn:hover:before {
    top: -25%;
    left: -25%
}

.products-detail .social-block .social-btns .btn:focus .fab,.products-detail .social-block .social-btns .btn:hover .fab {
    color: #fff;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.products-detail .social-block .social-btns .btn:hover img {
    filter: saturate(8)
}

.products-detail .social-block .social-btns .btn, .products-detail .social-block .social-btns .btn:before, .products-detail .social-block .social-btns .btn .fab
{
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    -webkit-transition-timing-function: cubic-bezier(.31, -.105, .43, 1.59);
    transition-timing-function: cubic-bezier(.31, -.105, .43, 1.59);
}
.lienhe_details a {
    padding: 10px 30px;
    border: solid 1px #a68641;
    color: #a68641;
    font-size: 16px;
    border-radius: 12px;
}

.lienhe_details a:hover {
    color: #fff;
    border: solid 1px #a68641;
    background: #a68641;
}
.box_total_hinhanh {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

/* Thêm đoạn này để xử lý thẻ a bọc ngoài hình ảnh */
.box_total_hinhanh a {
    display: block;
    width: 100%;
}

/* Cập nhật lại CSS cho hình ảnh */
.box_total_hinhanh img {
    width: 100%;
    max-width: 100%;
    
    /* Cố định tỷ lệ khung hình (Ví dụ: 1/1 là hình vuông) */
/*    aspect-ratio: 1 / 1; */

/* Hoặc nếu bạn muốn cố định chiều cao bằng px thì dùng dòng dưới thay cho aspect-ratio: */
height: 270px; 

/* Giúp hình ảnh tự động cắt cúp vừa khung mà không bị méo */
object-fit: cover; 

/* Giữ ảnh luôn căn giữa khung hình */
object-position: center; 
}
.box_total_hinhanh img {
    border-radius: 12px;
}
.total_tienich {
    padding: 2em 0;
    background: #fbfbfb;
    margin: 2em 0;
}
.title_rooms {
    font-size: 23px;
    letter-spacing: 0px;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.title_rooms:before {
    position: absolute;
    content: "";
    height: 3px;
    width: 7%;
    bottom: 0;
    background: #c7b792;
}
.amenities-list {
    display: flex;
    flex-wrap: wrap;       /* Cho phép xuống hàng */
    justify-content: center; /* CĂN GIỮA các phần tử (đặc biệt là hàng cuối) */
    gap: 10px;             /* Khoảng cách giữa các icon */
}

.icon_tieuchuan {
    /* Tính toán để có 8 icon trên 1 hàng: (100% - tổng_khoảng_cách) / 8 */
    width: calc((100% - 70px) / 8); 
    text-align: center;
    box-sizing: border-box;
}

.amenities-list img {
    width: 100%;           /* Để hình ảnh co giãn theo width của icon_tieuchuan */
    height: 80px;          /* Giữ nguyên chiều cao bạn muốn */
    object-fit: contain;   /* Giúp icon không bị méo khi co giãn */
}

.name_icontieuchuan {
    font-size: 14px;
    margin-top: 5px;
    /* Giới hạn tên trên 1 dòng để không làm lệch hàng nếu tên quá dài */
/*    white-space: nowrap;*/
/*    overflow: hidden;*/
/*    text-overflow: ellipsis;*/
}
.khungproduct_khac {
    margin-bottom: 40px;
}
.titlechung_spkhac h3 {
    font-size: 28px;
}

.titlechung_spkhac {
    margin-bottom: 30px;
}
.khung_totalspkhac {
    margin-bottom: 3em;
}

/*chitiet*/
/*hinhanh*/

.section-gallery-albums {
    background-color: #ffffff;
    padding-top: 3em;
    padding-bottom: 6em;
}

.gallery-main-title {
/*        font-family: 'Playfair Display', 'Times New Roman', serif;*/
font-size: 2.2rem;
color: #0f2b66;
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 40px;
}

/* Thiết kế thẻ Card Album đại diện */
.album-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    cursor: pointer;
    display: block;
}

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

/* Lớp phủ tối mờ tạo chiều sâu */
.album-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0.2) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: background 0.3s ease;
}

/* Tên Album */
.album-name {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

/* Số lượng ảnh bên trong */
.album-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Hiệu ứng khi di chuột qua card */
.album-card:hover img {
    transform: scale(1.05);
}
.album-card:hover .album-overlay {
    background: linear-gradient(to top, rgba(166, 134, 65, 0.85) 20%, rgba(0, 0, 0, 0.3) 70%); /* Đổi sang màu thương hiệu #A68641 */
}

/*hinhanh*/





/* CSS TÙY BIẾN KHỐI TIN TỨC - TONE MÀU THƯƠNG HIỆU #A68641 */
.news-section {
    background-color: #f8fafc; /* Nền xám nhạt giúp nổi bật card màu trắng */
}

/* Định dạng thẻ Card tin tức chính */
.news-card1 {
    background: #ffffff;
    border: 1px solid #eef2f5;
    border-radius: 8px; /* Bo góc nhẹ tinh tế */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

/* Hiệu ứng nhấc khung và đổ bóng khi hover chuột vào Card */
.news-card1:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(166, 134, 61, 0.12); /* Đổ bóng nhẹ tone màu thương hiệu */
    border-color: rgba(166, 134, 61, 0.2);
}

/* Khung chứa ảnh */
.news-img {
    position: relative;
    width: 100%;
    height: 220px; /* Khống chế chiều cao ảnh cố định */
    overflow: hidden;
    background-color: #f1f5f9;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hiệu ứng phóng to nhẹ hình ảnh khi hover vào card */
.news-card:hover .news-img img {
    transform: scale(1.06);
}

/* Phần nội dung chữ */
.news-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Đẩy phần nút bấm luôn nằm sát đáy nếu thẻ cao thấp khác nhau */
}

/* Ngày tháng đăng bài */
.news-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888888;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.news-meta::before {
    content: '';
    width: 12px;
    height: 1px;
    background-color: #A68641; /* Vạch ngang nhỏ trang trí */
}

/* Tiêu đề tin tức */
.news-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.45;
    margin-bottom: 12px;
}
.news-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;

    /* Khống chế tiêu đề tối đa 2 dòng, quá 2 dòng tự hiện dấu ... */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card:hover .news-title a {
    color: #A68641; /* Đổi sang màu vàng gold khi hover */
}

/* Mô tả ngắn tin tức */
.news-desc {
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;

    /* Khống chế mô tả tối đa 3 dòng, giúp các khung card luôn đều nhau */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Link "XEM THÊM" */
.news-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: #A68641;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto; /* Đẩy xuống đáy phần content */
    transition: gap 0.2s ease;
}

/* Hiệu ứng mũi tên dịch chuyển nhẹ sang phải khi hover */
.news-card:hover .news-link {
    color: #8e7135;
    gap: 12px;
}


/* 1. Thanh điều hướng Breadcrumb */
.custom-breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}
.custom-breadcrumb .breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.custom-breadcrumb .breadcrumb-item a:hover {
    color: #A68641;
}
.custom-breadcrumb .breadcrumb-item.active {
    color: #A68641;
    font-weight: 500;
    font-size: 0.9rem;
}
/* Đổi màu dấu phân cách / */
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #ccc;
}

/* 2. Cột bên trái - Nội dung bài viết chính */
.news-detail .news-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.35;
    margin-bottom: 15px;
}

.news-detail .news-meta {
    font-size: 0.88rem;
    color: #777777;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #eedfdf;
    padding-bottom: 15px;
}
.news-detail .news-meta .date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.news-detail .news-meta .date::before {
    content: '\f017'; /* Icon đồng hồ FontAwesome nếu có */
    font-family: 'Font Awesome 6 Pro';
    font-weight: 400;
    color: #A68641;
}

/* Định dạng bài viết chi tiết đổ từ CKEditor/Admin ra */
.news-detail .news-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333333;
    text-align: justify;
}
.news-detail .news-content p {
    margin-bottom: 20px;
}
/* Tự động tối ưu ảnh do Admin chèn vào nội dung không bị tràn khung */
.news-detail .news-content img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 6px;
    margin: 15px auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.news-detail .news-content h2, 
.news-detail .news-content h3, 
.news-detail .news-content h4 {
    color: #111111;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}
.news-detail .news-content h2 { font-size: 1.5rem; border-left: 4px solid #A68641; padding-left: 12px; }
.news-detail .news-content h3 { font-size: 1.3rem; }





/* 3. Cột bên phải - Sidebar Bài viết liên quan */
.news-detail .sidebar {
    background: #ffffff;
    border: 1px solid #f0f2f5;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    position: sticky; /* Giúp sidebar trượt dọc cố định khi cuộn trang dài trên PC */
    top: 130px;
}

.news-detail .sidebar h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111111;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px !important;
    border-bottom: 2px solid #f0f2f5;
}
/* Thanh gạch chân nhỏ trang trí dưới tiêu đề sidebar */
.news-detail .sidebar h5::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #A68641;
}

/* Từng item bài viết liên quan */
.news-detail .related-item {
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eef0f2;
    transition: all 0.2s ease;
}
.news-detail .related-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0 !important;
}

/* Khung ảnh bài viết liên quan */
.news-detail .related-img-wrapper {
    width: 90px;
    height: 70px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
    background-color: #f5f6f8;
}
.news-detail .related-item img {
/*    width: 100%;*/
width: 26%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.news-detail .related-item:hover img {
    transform: scale(1.08);
}






/* Khối text bài liên quan */
.news-detail .related-item a {
    color: #222222;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.4;
    text-decoration: none;

    /* Khống chế text tối đa 2 dòng */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    transition: color 0.2s ease;
}
.news-detail .related-item:hover a {
    color: #A68641;
}

.news-detail .related-item .date {
    font-size: 0.8rem;
    color: #888888;
    margin-top: 5px;
}

/* Tối ưu hiển thị responsive cho các thiết bị nhỏ */
@media (max-width: 991.98px) {
    .news-detail .news-title {
        font-size: 1.75rem;
    }
    .news-detail .sidebar {
        margin-top: 40px;
        position: static;
    }
}

#tintuc_page {
    padding-bottom: 6em!important;
}

/*lienhe*/

/* ===== CSS CUSTOM CONTACT FORM ===== */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-top: 50px;
    margin-bottom: 50px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
    display: block;
}
.header-contact h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f2b66;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.header-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px; height: 3px;
    background-color: #A68641; /* Màu vàng thương hiệu */
}
.contact-info {
    color: #555555;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Style các ô Input */
.contact-form .form-control {
    border: 1px solid #e1e8ed;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #333333;
    background-color: #f8fafc;
    transition: all 0.2s ease;
}
.contact-form .form-control:focus {
    background-color: #ffffff;
    border-color: #A68641;
    box-shadow: 0 0 0 3px rgba(166, 134, 65, 0.15);
}
.contact-form .form-group {
    margin-bottom: 20px;
}

/* ===== STYLE KHỐI CAPTCHA HÌNH ẢNH ===== */
.captcha-container {
    background: #f1f5f9;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}
.captcha-image-box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.captcha-image-box img {
    height: 42px;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    cursor: pointer;
}
.btn-refresh-captcha {
    background: none;
    border: none;
    color: #64748b;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
}
.btn-refresh-captcha:hover {
    color: #A68641;
}

/* Style nút bấm */
.btn-contact-custom {
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
}
.btn-submit-form {
    background-color: #A68641;
    color: #ffffff;
}
.btn-submit-form:hover {
    background-color: #8e7135;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 134, 65, 0.3);
}
.btn-reset-form {
    background-color: #eaedf1;
    color: #4a5568;
    margin-left: 10px;
}
.btn-reset-form:hover {
    background-color: #dcdee2;
    color: #2d3748;
}

.layout {
    padding-bottom: 3em;
}
@media (min-width: 992px) {
    .border-end-desktop {
        border-end: 1px dashed #e2e8f0; /* Hoặc dùng border-right tùy phiên bản CSS */
        border-right: 1px dashed #e2e8f0; 
        padding-right: 3rem !important; /* Tạo thêm khoảng trống an toàn */
    }
}
/*lienhe*/
.menu_top_mobile
{
    display:none;
}

@media only screen and (min-width: 1px) and (max-width: 1199px)
{

}

@media only screen and (min-width: 1px) and (max-width: 992px)
{
    .menu_top_mobile
    {
        display:block;
    }
    .total_topmobile {
        text-align: center;
        position: relative;
    }

    .total_topmobile img {
        height: 150px;
    }

    .menu_phai_mb {
        position: absolute;
        right: 10px;
        top: 40%;
    }

}
@media only screen and (min-width: 1px) and (max-width: 768px)
{

    .fixed-top
    {
        position: sticky;
    }
    .pd_height
    {
        margin-top:0;
    }

    .amenities-list {
        gap: 10px;
    }
    .icon_tieuchuan {
        width: calc((100% - (10px * 2)) / 3);
    }
    .amenities-list img {
        height: 50px; /* Giảm chiều cao ảnh trên mobile */
    }
    .name_icontieuchuan {
        font-size: 12px;
    }
    .total_tienich
    {
        padding:1em 0;
    }
    .khungproduct_khac
    {
       margin-bottom: 10px;
    }
    .layout
    {
        padding: 0;
    }
    .section-consultation
    {
        overflow: hidden;
    }


}
@media only screen and (min-width: 1px) and (max-width: 500px)

{  

    .total_topmobile img {
        height: 70px;
    }
    .testimonial-title
    {
        font-size: 28px;
    }
    .stacked-cards-container 
    {
        height: 300px;
    }
    .khung_cthethong .flex-box,.list_products
    {
        grid-template-columns:1fr;
    }
    .box_total_hinhanh
    {
        grid-template-columns:1fr 1fr;
    }
    .box_total_hinhanh img
    {
        height: 200px;
    }




}