/* ==========================================================================
   SC-SECTION-HEADER — Tiêu đề section tái sử dụng
   Dùng chung cho các section: Thư viện ảnh, Tin tức, Phòng nghỉ, v.v.
   ========================================================================== */
.sc-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.sc-section-title {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.3;
    position: relative;
}

.sc-btn-viewall {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 25px;
    border: 2px solid var(--color-2);
    color: var(--color-4);
    font-size: 13px;
    font-weight: 700;
    /* letter-spacing: 0.5px; */
    text-decoration: none;
    border-radius: 16px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.25s, color 0.25s;
}

.sc-btn-viewall:hover {
    background: var(--color-2);
    color: var(--color-1);
}

/* ==========================================================================
   SC-GALLERY-NEWS — Section Thư viện ảnh + Tin tức
   ========================================================================== */
.sc-gallery-news {
    padding: 50px 0;
    background: #fff;
}

/* 2 cột 50/50 */
.sc-gallery-news__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* ---- Gallery grid ---- */
/* Layout: 1 ảnh to bên trái + cột phải gồm 1 ảnh trên & 2 ảnh nhỏ dưới */
.sc-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* chia 2 hàng đều nhau cho cột phải */
    gap: 15px;
    /* chiều cao cố định khớp với thiết kế */
}

.sc-gallery-grid__main img {
    height: 330px;
}

.sc-gallery-grid__side {
    display: grid;
    /* grid-template-rows: 1fr 1fr; */
    /* ảnh trên và hàng dưới bằng nhau */
    gap: 15px;
}

.sc-gallery-grid__side .second img {
    height: 165px;
}

.sc-gallery-grid__side-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.sc-gallery-grid__side-row .sc-gallery-item img {
    height: 150px;
}

.sc-gallery-item {
    display: block;
    width: 100%;
    /* height: 100%; */
    overflow: hidden;
    border-radius: 8px;

}

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

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

/* ---- News list ---- */
.sc-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sc-news-link {
    display: flex;
    gap: 14px;

}

.sc-news-thumb {
    width: 140px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.sc-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.sc-news-link:hover .sc-news-thumb img {
    transform: scale(1.07);
}

.sc-news-item:not(:last-child) .sc-news-link {
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #f0ebe4;
}

.sc-news-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sc-news-title {
    font-size: 17px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sc-news-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.sc-news-date svg {
    width: 16px;
    height: 16px;
    color: var(--color-4);
    flex-shrink: 0;
}

/* ==========================================================================
   SC-AMENITIES — Section Dịch vụ tiện ích
   ========================================================================== */
.sc-amenities {
    padding: 50px 0 10px;
    background: #fff;
    text-align: center;
}

.sc-amenities-header {
    margin-bottom: 40px;
}

.sc-amenities-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    line-height: 1.2;
}

.sc-amenities-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.sc-amenities-divider-line {
    flex: 1;
    height: 1px;
    max-width: 400px;
}

.sc-amenities-divider-line.left {
    background: linear-gradient(to right, transparent, #e8e0d6);
}

.sc-amenities-divider-line.right {
    background: linear-gradient(to right, #e8e0d6, transparent);
}

.sc-amenities-divider-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sc-amenities-list:not(.slick-initialized) {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px 40px;
}

.sc-amenities-list.slick-initialized {
    margin: 0 -15px;
}

.sc-amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.sc-amenities-list:not(.slick-initialized) .sc-amenity-item {
    flex: 1 1 16%;
    min-width: 170px;
    max-width: 220px;
}

.sc-amenities-list.slick-initialized .sc-amenity-item {
    padding: 0 15px;
    outline: none;
}

.sc-amenity-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: transform 0.3s ease;
}

.sc-amenity-item:hover .sc-amenity-icon {
    transform: scale(1.1);
}

.sc-amenity-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.sc-amenity-desc {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.45;
}

/* ==========================================================================
   SLIDER HOME — Slider chính trang chủ
   ========================================================================== */

.slider-home-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide-home {
    height: 100%;
}

.item-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #000;
}

.item-slide .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.item-slide .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
}

/* Slide Content Overlay */
.slide-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
}

.slide-content-left {
    max-width: 55%;
    color: #fff;
    padding-bottom: 40px;
}

.slide-welcome {
    font-family: "Dancing Script", cursive;
    font-size: 36px;
    color: #fff;
    margin-bottom: 5px;
    display: block;
}

.slide-main-title {
    font-size: clamp(30px, 4vw, 60px);
    font-weight: 700;
    color: var(--color-2);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.slide-sub-title h2 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.35;
}

.slide-sub-title p {
    font-size: 14.5px;
    color: #fff;
    line-height: 1.6;
    margin: 0 0 32px 0;
    max-width: 440px;
    margin-top: 20px;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-2);
    color: #1a1a1a;
    padding: 12px 28px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.3s;
    text-decoration: none;
}

.slide-btn:hover {
    background: var(--color-3);
    color: #1a1a1a;
    transform: translateY(-2px);

}

.slide-btn-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-btn-icon svg {
    width: 10px;
    height: 10px;
}

/* Floating Booking Card */
.slide-booking-card-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.slide-booking-card-wrap .ctnr {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.slide-booking-card {
    width: 500px;
    max-width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    padding: 30px 24px;
    pointer-events: auto;
}

.booking-card-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px 0;
}

.booking-card-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.booking-card-divider::before,
.booking-card-divider::after {
    content: '';
    width: 50px;
    height: 1px;
    background: #e8e0d6;
}

.booking-card-divider::before {
    margin-right: 10px;
}

.booking-card-divider::after {
    margin-left: 10px;
}

.booking-form .form-group {
    margin-bottom: 16px;
}

.booking-form label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.booking-form .input-icon-wrap {
    position: relative;
    width: 100%;
}

.booking-form input[type="text"],
.booking-form select {
    width: 100%;
    height: 40px;
    background: #fbf9f6;
    border: 1px solid #ebdcc5;
    border-radius: 6px;
    padding: 0 16px;
    font-size: 13.5px;
    color: #1a1a1a;
    font-weight: 500;
    transition: border-color 0.25s, background 0.25s;
    appearance: none;
    -webkit-appearance: none;
}

.booking-form input[type="text"]:focus,
.booking-form select:focus {
    border-color: var(--color-4);
    background: #fff;
}

.booking-form .input-icon {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #999;
    pointer-events: none;
}

.booking-form .form-row {
    display: flex;
    gap: 15px;
}

.booking-form .col-half {
    width: 50%;
}

.booking-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    padding-right: 36px;
}

.booking-submit-btn {
    width: 100%;
    height: 44px;
    background: var(--color-2);
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    margin-top: 10px;
}

.booking-submit-btn:hover {
    background: var(--color-3);
}

/* Features Bar */
.slide-features-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    background: rgba(0, 0, 0, 0.3) !important;
    padding: 20px 0;
}

.slide-features-wrap:not(.slick-initialized) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.slide-features-wrap.slick-initialized {
    margin: 0 -15px;
}

.slide-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.slide-features-wrap.slick-initialized .slide-feature-item {
    padding: 0 15px;
    outline: none;
}

.slide-feature-item .feature-icon {
    width: 36px;
    height: 36px;
    /* background: rgba(223, 172, 64, 0.1); */
    /* border: 1px solid rgba(223, 172, 64, 0.3); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: var(--color-4); */
    flex-shrink: 0;
}

.slide-feature-item .feature-icon svg {
    width: 18px;
    height: 18px;
}

.slide-feature-item .feature-text {
    display: flex;
    flex-direction: column;
}

.slide-feature-item .feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.slide-feature-item .feature-desc {
    font-size: 14px;
    color: #fff;
    font-weight: 300;
}

/* Custom Dots */
.slick-dots-custom-container {
    position: absolute;
    bottom: 90px;
    left: 50px;
    z-index: 5;
    display: flex;
}

.slick-dots-custom-container .slick-dots {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.slick-dots-custom-container .slick-dots li {
    display: block;
    margin: 0;
}

.slick-dots-custom-container .slick-dots li button {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    padding: 0 0 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.slick-dots-custom-container .slick-dots li.slick-active button {
    color: #fcd444;
    border-bottom: 2px solid #fcd444;
}

/* ==========================================================================
   SC-ABOUT — Section Về chúng tôi
   ========================================================================== */
.sc-about-section {
    padding: 60px 0 10px;
    background: #fff;
}

.sc-about-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.sc-about-col {
    flex: 1;
}

.sc-about-col.images-col {
    max-width: 50%;
}

.sc-about-col.text-col {
    max-width: 50%;
}

/* Overlapping Images styling */
.sc-about-images {
    position: relative;
}

.sc-about-img-main {
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.sc-about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sc-about-img-main:hover img {
    transform: scale(1.04);
}

.sc-about-img-sub-wrap {
    display: flex;
    gap: 16px;
    margin-top: -70px;
    position: relative;
    z-index: 2;
    width: 100%;
    padding-left: 30px;
    justify-content: end;
}

.sc-about-img-sub {
    width: calc(45% - 8px);
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border: 4px solid #fff;
}

.sc-about-img-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sc-about-img-sub:hover img {
    transform: scale(1.05);
}

/* Right Content */
.sc-about-subtitle {
    color: var(--color-4);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    display: block;
}

.sc-about-title {
    /* color: #1a1a1a; */
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.sc-about-desc {
    /* color: #666; */
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.sc-about-desc p {
    margin: 0 0 12px 0;
}

.sc-about-desc p:last-child {
    margin: 0;
}

/* Stats Row */
.sc-about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 35px;
    /* padding-top: 20px; */
    /* border-top: 1px solid #f2e9de; */
}

.sc-about-stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sc-about-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-4);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sc-about-stat-value img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.sc-about-stat-label {
    font-size: 16px;
    font-weight: 400;
    /* color: #888; */
    line-height: 1.3;
}

/* Button Detail */
.sc-about-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid var(--color-2);
    color: var(--color-4);
    background: transparent;
    padding: 10px 24px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: max-content;
}

.sc-about-btn:hover {
    background: var(--color-2);
    color: #000;
}

.sc-about-btn-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--color-4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: inherit;
}

.sc-about-btn:hover .sc-about-btn-icon {
    border-color: #fff;
    color: var(--color-4);
    background: #fff;
}

.sc-about-btn-icon svg {
    width: 10px;
    height: 10px;
}

/* ==========================================================================
   SC-ROOMS — Section Phòng nghỉ nổi bật
   ========================================================================== */
.sc-rooms-section {
    padding: 50px 0 30px;
    background: #fffdf9;
}

.sc-section-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sc-slider-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sc-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--color-4);
    background: transparent;
    color: var(--color-4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    padding: 0;
    cursor: pointer;
    position: unset;
    opacity: 1;
    transform: unset;
}

.sc-nav-btn:hover {
    background: var(--color-2);
    color: #000;
    border-color: var(--color-2);
}

.sc-nav-btn svg {
    width: 16px;
    height: 16px;
}

.sc-rooms-slider {
    margin: 0 -10px;
}

.sc-room-slide {
    padding: 10px;
}

/* ==========================================================================
   SC-SAPA-COMBO — Section Sapa Combo
   ========================================================================== */
.sc-sapa-combo {
    padding: 40px 0;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.sc-sapa-combo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.sc-sapa-combo .ctnr {
    z-index: 2;
    position: relative;
}

.sc-sapa-combo__row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.sc-sapa-combo__left {
    width: 30%;
    flex-shrink: 0;
}

.sc-sapa-combo__right {
    width: 70%;
    flex-grow: 1;
    overflow: hidden;
}

.sc-sapa-combo__subtitle {
    color: var(--color-2);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    display: block;
}

.sc-sapa-combo__title {
    color: #fff;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.35;
    margin: 0 0 28px 0;
}

.sc-sapa-combo__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-2);
    /* color: #1a1a1a; */
    padding: 12px 28px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.3s;
}

.sc-sapa-combo__btn:hover {
    background: var(--color-3);
    color: #1a1a1a;
    transform: translateY(-2px);
}

.sc-sapa-combo__btn-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-sapa-combo__btn-icon svg {
    width: 10px;
    height: 10px;
}

.sc-combo-slider {
    margin: 0 -10px;
}

.sc-combo-slide {
    padding: 0 10px;
}

.sc-combo-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    padding-bottom: 100%;
}


.sc-combo-card:hover img {
    transform: scale(1.05);
}

.sc-combo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.sc-combo-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.sc-combo-card__info {
    width: 100%;
}

.sc-combo-card__name {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.sc-combo-card__duration {
    color: #ddd;
    font-size: 13px;
    font-weight: 500;
}

.sc-combo-card__arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--color-4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-4);
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.sc-combo-card:hover .sc-combo-card__arrow {
    background: var(--color-2);
    border-color: var(--color-2);
    color: #1a1a1a;
}

.sc-combo-card__arrow svg {
    width: 14px;
    height: 14px;
}

.sc-combo-card__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    width: 36px;
    height: 36px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet: ≤ 1023px — thu nhỏ gap, height gallery */
@media (max-width: 1023px) {
    .sc-gallery-news__grid {
        gap: 36px;
    }

    .sc-amenities {
        padding: 50px 0 0;
    }

    .sc-amenities-list {
        gap: 30px 20px;
    }

    .sc-amenity-item {
        min-width: 160px;
    }

    .sc-sapa-combo {
        padding: 60px 0;
    }

    .sc-sapa-combo__row {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    .sc-sapa-combo__left {
        width: 100%;
        text-align: center;
    }

    .sc-sapa-combo__right {
        width: 100%;
    }

    .sc-sapa-combo__title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .sc-rooms-section {
        padding: 40px 0 20px;
    }

    .sc-about-section {
        padding: 60px 0 0;
    }

    .sc-about-row {
        flex-direction: column;
        gap: 25px;
    }

    .sc-about-col.images-col,
    .sc-about-col.text-col {
        max-width: 100%;
    }

    .sc-about-images {
        max-width: 550px;
        margin: 0 auto;
    }

    .sc-about-title {
        font-size: 28px;
    }

    /* .slider-home-wrapper,
    .item-slide {
        height: 800px;
    } */

    .slide-content-left {
        max-width: 100%;
        text-align: center;
    }

    .slide-desc {
        margin: 0 auto 28px;
    }

    .slide-booking-card-wrap {
        align-items: flex-end;
        padding-bottom: 100px;
    }

    .slide-booking-card-wrap .ctnr {
        justify-content: center;
    }

    .slide-booking-card {
        width: 100%;
        max-width: 480px;
        margin-bottom: 0;
        display: none;
    }

    .slide-sub-title p {
        margin: 20px auto 32px;
    }

    .slide-features-wrap:not(.slick-initialized) {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .slide-features-wrap:not(.slick-initialized) .slide-feature-item {
        width: calc(50% - 10px);
        justify-content: flex-start;
    }

    .slide-features-wrap.slick-initialized {
        margin: 0 -10px;
    }

    .slide-features-wrap.slick-initialized .slide-feature-item {
        padding: 0 10px;
    }

    .slick-dots-custom-container {
        left: 50%;
        transform: translateX(-50%);
        bottom: 480px;
    }
}

/* Tablet nhỏ / Mobile lớn: ≤ 767px — 1 cột dọc */
@media (max-width: 767px) {
    .sc-gallery-news {
        padding: 40px 0;
    }

    .sc-gallery-news__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sc-amenities {
        padding: 40px 0 0;
    }

    .sc-amenities-title {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .sc-amenities-header {
        margin-bottom: 30px;
    }

    .sc-amenities-list {
        gap: 24px 15px;
    }

    .sc-amenity-item {
        width: calc(50% - 10px);
        max-width: 100%;
        min-width: 140px;
    }

    .sc-amenity-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 12px;
    }

    .sc-sapa-combo {
        padding: 40px 0;
    }

    .sc-rooms-section {
        padding: 40px 0 10px;
    }

    .sc-room-card__body {
        padding: 15px;
    }

    .sc-about-section {
        padding: 30px 0 0;
    }

    .sc-about-img-main {
        height: 260px;
    }

    .sc-about-img-sub-wrap {
        margin-top: -50px;
        padding-left: 20px;
    }

    .sc-about-img-sub {
        height: 140px;
    }

    .sc-about-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .sc-about-desc {
        font-size: 13.5px;
        margin-bottom: 24px;
    }

    .sc-about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 25px;
    }

    /* .slider-home-wrapper,
    .item-slide {
        height: 750px;
    } */

    .slide-content-overlay {
        padding-top: 60px;
    }

    .slide-welcome {
        font-size: 26px;
    }

    .slide-sub-title {
        font-size: 18px;
    }

    .slide-desc {
        font-size: 13px;
    }

    .slide-booking-card {
        padding: 20px;
    }

    .slide-booking-card-wrap {
        padding-bottom: 140px;
    }

    .slide-features-wrap:not(.slick-initialized) {
        gap: 12px;
    }

    .slide-features-wrap:not(.slick-initialized) .slide-feature-item {
        width: 100%;
    }

    .slide-feature-item {
        justify-content: center;
        text-align: center;
    }

    .slide-feature-item .feature-text {
        text-align: left;
    }

    .slick-dots-custom-container {
        bottom: 450px;
    }

    .sc-amenities-list.slick-initialized {
        margin: 0 -10px;
    }

    .sc-amenities-list.slick-initialized .sc-amenity-item {
        padding: 0 10px;
    }

    .sc-about-btn {
        margin: 0 auto;
    }
}

/* Mobile: ≤ 480px */
@media (max-width: 480px) {

    .sc-section-title {
        font-size: 20px;
    }

    .sc-news-thumb {
        width: 100px;
        height: 72px;
    }

    .sc-news-title {
        font-size: 15px;
    }

    .sc-amenity-item {
        min-width: 130px;
    }

    .sc-sapa-combo__title {
        font-size: 24px;
    }

    .sc-room-card__body {
        padding: 12px;
    }

    .sc-about-img-main {
        height: 220px;
    }

    .sc-about-img-sub {
        height: 110px;
    }

    .sc-about-title {
        font-size: 20px;
    }

    .slider-home-wrapper,
    .item-slide {
        height: 600px;
    }

    .slide-sub-title {
        font-size: 16px;
    }

    .slide-booking-card-wrap {
        padding-bottom: 160px;
    }

    .slick-dots-custom-container {
        bottom: 430px;
    }

    .sc-gallery-grid__main img {
        height: 260px;
    }

    .sc-gallery-grid__side .second img {
        height: 130px;
    }

    .sc-gallery-grid__side-row .sc-gallery-item img {
        height: 115px;
    }

    .sc-combo-slide {
        padding: 0 5px;
    }

    .sc-combo-card__name {
        font-size: 16px;
    }

    .sc-section-header {
        justify-content: center;
        margin-bottom: 15px;
    }
}

@media (max-width: 375px) {
    .sc-section-title {
        font-size: 16px;
    }
}

.sc-gallery-item {
    position: relative;
}

.sc-gallery-item .video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 11, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.sc-gallery-item:hover .video-play-overlay {
    background: rgba(11, 11, 11, 0.7);
}

.sc-gallery-item .video-play-btn {
    width: 50px;
    height: 50px;
    background: rgba(223, 172, 64, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0b0b0b;
    box-shadow: 0 0 20px rgba(223, 172, 64, 0.4);
    transition: all 0.3s ease;
}

.sc-gallery-item .video-play-btn svg {
    margin-left: 4px;
}

.sc-gallery-item:hover .video-play-btn {
    background: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
}

/* Booking Form Styles on Home */
.booking-form input[type="tel"],
.booking-form input[type="email"],
.booking-form input[type="number"] {
    width: 100%;
    height: 40px;
    background: #fbf9f6;
    border: 1px solid #ebdcc5;
    border-radius: 6px;
    padding: 0 16px;
    font-size: 13.5px;
    color: #1a1a1a;
    font-weight: 500;
    transition: border-color 0.25s, background 0.25s;
    appearance: none;
    -webkit-appearance: none;
}

.booking-form input[type="tel"]:focus,
.booking-form input[type="email"]:focus,
.booking-form input[type="number"]:focus {
    border-color: var(--color-4);
    background: #fff;
}

.booking-form .guests-row {
    align-items: center;
}

.booking-form .flex-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.booking-form .flex-center label {
    margin-bottom: 0;
    white-space: nowrap;
}

.booking-form .flex-center input[type="number"] {
    width: 70px;
    text-align: right;
    padding: 0 10px;
}

.booking-form .select2-container--default .select2-selection--single {
    height: 42px;
    background: #fbf9f6;
    border: 1px solid #ebdcc5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    outline: none;
    width: 100%;
}

.booking-form .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #1a1a1a;
    font-size: 13.5px;
    font-weight: 500;
    padding-left: 16px;
    padding-right: 16px;
    line-height: 42px;
    text-align: left;
    width: 100%;
}

.booking-form .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999;
}

.booking-form .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
    right: 12px;
}

.booking-form .select2-container {
    margin-bottom: 0px;
}

.booking-form .form-group.select2-room-wrap {
    margin-bottom: 16px;
}