/* ── SECTION WRAPPER ── */
.amenities {
    min-height: 485px;
    position: relative;
    margin: 120px 0;
}

/* ── RIGHT: PANEL ── */
.amenities .panel-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 var(--container-gutter);
    margin: 0 auto;
    max-width: var(--container);
    width: 100%;
    display: flex;
    justify-content: end;
}

.amenities .panel {
    flex: 0 0 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('../images/image_testimonials.png');
    background-position: left top;
    background-size: auto;
    background-repeat: no-repeat;
    background-color: #339a5e;
    color: #FFF;
    padding: 110px 90px;
}

.panel h2 {
    font-size: 31px;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 30px;
    position: relative;
}

.panel .desc-title {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
}

/* ── AMENITY GRID ── */
.panel .grid ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.panel ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px;
    border-radius: 6px;
    transition: background 0.22s ease, transform 0.18s ease;
}

.panel ul li:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(3px);
}

.panel .item .icon {
    display: flex;
}

.panel .item .icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.panel .item .ico img {
    width: 20px !important;
    height: 20px;
    object-fit: contain;
}

.panel .item span {
    font-size: 16px;
    font-weight: 400;
}


@media (max-width: 1100px) {
    .amenities .panel {
        padding: 110px 70px;
    }
}

/* ── TABLET ── */
@media (max-width: 992px) {
    .amenities .panel {
        flex: 0 0 100%;
    }
}

/* ── MOBILE ── */
@media (max-width: 575px) {
    .amenities .panel {
        padding: 40px 20px;
    }

    .amenities {
        margin: 40px 0;
    }
}

.video-hinhanh {
    padding: 40px 0 40px;
    position: relative;
    /* margin-bottom: 40px; */
}

.video-hinhanh::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    opacity: 0.7;
}

.video-hinhanh .section-title__main {
    color: #FFF;
}

.video-hinhanh .video {
    position: relative;
    text-align: center;
    color: #FFF;
    max-width: 700px;
    margin: 0 auto;
}

.video-hinhanh .video iframe {
    width: 100%;
    height: 482px;
}

.video-hinhanh .video .section-title__main {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.video-btnn {
    width: 50px;
    height: 50px;
    line-height: 55px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--ratting-color);
    display: inline-block;
    position: relative;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    opacity: 1;
    margin-bottom: 40px;
}

.video-btnn i {
     color: var(--white-color);
        font-size: 20px;
        position: relative;
        z-index: 2;
}

.video-btnn::before {
    position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 50%;
        background: var(--ratting-color);
        animation: 1.3s linear 0.8s infinite normal none running vide;
        transition: 0.3s;
} 

/* .list-image .item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
} */

.item {
    display: flex;
    gap: 10px;
}

/* Tất cả link */
.item a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Ảnh */
.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Ảnh đầu tiên = ảnh lớn bên trái */
.item a:first-child {
    flex: 2;
}

/* 2 ảnh còn lại = cột bên phải */
.item a:nth-child(2),
.item a:nth-child(3) {
    flex: 1;
}

/* Tạo layout cột cho 2 ảnh nhỏ */
.item {
    align-items: stretch;
}

/* Trick: bọc 2 ảnh nhỏ bằng grid giả */
.item {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

/* Ảnh lớn chiếm 2 hàng */
.item a:first-child {
    grid-row: 1 / 3;
}

/* 2 ảnh nhỏ bên phải */
.item a:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.item a:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

.list-image .slick-slide {
    margin: 0 10px;
}

.list-image .slick-list {
    margin: 0 -10px;
}

.list-image .slick-arrow {
    top: unset;
    bottom: 10px;
    transform: translateY(0%);
    width: 35px;
    height: 35px;
}

.list-image .slick-arrow svg {
    width: 9px;
}

.list-image .slick-prev {
    left: unset;
    right: 45px;
}

.video-hinhanh .section-title {
    margin-bottom: 65px;
}

.list-image .slick-arrow.slick-disabled {
    opacity: .3;
    cursor: not-allowed;
}

@media (max-width: 1400px) {
    .video-hinhanh .video iframe {
        height: auto;
        aspect-ratio: 553 / 415;
    }
}

@media (max-width: 768px) { 
    .video-hinhanh .video {
        margin-top: 15px;
    }

    .section-title__main {
        font-size: 26px;
    }

    .video-hinhanh .section-title {
        margin-bottom: 30px;
    }
}

.subcribe-contact {
    /* padding: 40px 0; */
    position: relative;
}

.form-subcribe .row-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 20px;
    align-items: end;
}

.form-subcribe input, 
.form-subcribe select {
    width: 100%;
    border: none;
    padding: 15px;
    margin-bottom: 20px;
    background: #f7f7f7;
    border-radius: 4px;
    font-size: 15px;
    font-family: unset;
}

.form-subcribe label {
    font-weight: 500;
    display: block;
    font-size: 14px;
    margin-bottom: 0.4em;
}

.form-subcribe button {
    width: 100%;
    padding: 12px;
    background: #339a5e;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
}

.form-subcribe .title-form {
    text-align: center;
    font-size: 34px;
    margin-bottom: 25px;
        font-family: "Old Standard TT", sans-serif;
        font-weight: 400;
}

.form-subcribe {
    padding: 30px;
    margin-top: 30px;
    border-radius: 12px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.hotline-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.hotline-wrap h2 {
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.hotline-wrap .hotline h2::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 1200'%3E%3Cpath fill='%23ff0000' d='M600,0C268.629,0,0,268.629,0,600s268.629,600,600,600 s600-268.629,600-600S931.371,0,600,0z M384.375,238.33c12.362-0.729,23.536,6.66,32.007,19.775l82.031,155.566 c8.637,18.434,3.729,38.172-9.155,51.343l-37.573,37.573c-2.319,3.178-3.845,6.757-3.882,10.693 c14.409,55.775,58.117,107.223,96.681,142.603c38.562,35.38,80.009,83.281,133.812,94.629c6.65,1.855,14.797,2.52,19.556-1.903 l43.652-44.458c15.068-11.421,36.866-16.956,52.954-7.617h0.732l148.021,87.378c21.728,13.619,23.979,39.944,8.423,55.957 L849.683,941.016c-15.056,15.44-35.058,20.631-54.491,20.654c-85.948-2.575-167.158-44.759-233.862-88.11 C451.84,793.907,351.407,695.114,288.355,575.757c-24.182-50.05-52.589-113.91-49.878-169.774 c0.242-21.016,5.928-41.605,20.728-55.151l101.953-101.953C369.1,242.121,376.957,238.768,384.375,238.33z'/%3E%3C/svg%3E") no-repeat center;

    background-size: contain;
}

.hotline-wrap .location h2::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%2322c55e' d='M32,0C18.746,0,8,10.746,8,24c0,5.219,1.711,10.008,4.555,13.93c0.051,0.094,0.059,0.199,0.117,0.289l16,24 C29.414,63.332,30.664,64,32,64s2.586-0.668,3.328-1.781l16-24c0.059-0.09,0.066-0.195,0.117-0.289C54.289,34.008,56,29.219,56,24 C56,10.746,45.254,0,32,0z M32,32c-4.418,0-8-3.582-8-8s3.582-8,8-8s8,3.582,8,8S36.418,32,32,32z'/%3E%3C/svg%3E") no-repeat center;

    background-size: contain;
}

.hotline-wrap .email h2::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
     background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.75 5.25L3 6V18L3.75 18.75H20.25L21 18V6L20.25 5.25H3.75ZM4.5 7.6955V17.25H19.5V7.69525L11.9999 14.5136L4.5 7.6955ZM18.3099 6.75H5.68986L11.9999 12.4864L18.3099 6.75Z' fill='%23080341'/%3E%3C/svg%3E");

    background-size: contain;
}

.hotline-wrap .website h2::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='9' stroke='%23080341' stroke-width='2'/%3E%3Cpath d='M3 12H21' stroke='%23080341' stroke-width='2'/%3E%3Cpath d='M12 3C14.5 5.5 16 8.5 16 12C16 15.5 14.5 18.5 12 21' stroke='%23080341' stroke-width='2'/%3E%3Cpath d='M12 3C9.5 5.5 8 8.5 8 12C8 15.5 9.5 18.5 12 21' stroke='%23080341' stroke-width='2'/%3E%3C/svg%3E");

    background-size: contain;
}

.hotline-wrap .item .label {
    font-size: 20px;
    font-weight: 700;
}

.subcribe-contact .map {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: calc(50vw - 30px);
}

.subcribe-contact .map iframe {
    width: 100%;
    height: 100%;
}

.text-hedding-brackhams {
    color: #FFF;
    top: 50%;
}

.text-hedding-brackhams .desc {
    font-size: 16px;
    margin-top: 10px;
    text-align: center;
    font-weight: 300;
}

.room-card {
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .subcribe-contact .map {
        position: unset;
        width: 100%;
        height: 300px;
        margin-bottom: 20px;
    }

    .images-brackham-details {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .form-subcribe .row-group {
        grid-template-columns: 1fr;
    }

    .Luxury_Rooms {
        padding: 30px 0;
    }

    .hotline-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 990px) {
    .text-hedding-brackhams h1 {
        font-size: 32px;
    }

    .video-hinhanh .video .section-title__main {
        font-size: 20px;
    }

    .form-subcribe {
        margin-top: 10px;
            padding: 24px;
    }

    .form-subcribe .title-form {
        font-size: 32px;
    }
}