.room-section {
    margin-top: 140px;
}

/* TITLE */
.section-subtitle {
    text-align: center;
    color: #c9a24d;
    letter-spacing: 3px;
    font-size: 20px;
    margin-bottom: 50px;
}

/* LAYOUT */
.room-detail-container {
    display: flex;
    gap: 50px;
    margin: 0 auto 80px auto;
    max-width: 1200px;
    padding: 0 20px;
}

/* LEFT */
.room-left {
    flex: 1.2;
}

/* SLIDER */
.room-slider {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.slides img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slides img.active {
    opacity: 1;
}

/* BUTTON */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 20px;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
}

.slider-btn:hover {
    background: #c9a24d;
    color: #000;
}

.prev { left: 15px; }
.next { right: 15px; }

/* DOTS */
.dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    display: inline-block;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
}

.dot.active {
    background: #c9a24d;
}

/* DIVIDER */
.divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, #c9a24d, transparent);
    opacity: 0.4;
}

/* RIGHT */
.room-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.room-right h2 {
    font-size: 30px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 1px;
}

.room-right h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #c9a24d;
    margin-top: 10px;
}

.room-desc {
    color: #aaa;
    margin: 20px 0;
    line-height: 1.6;
}

/* FEATURES TITLE */
.features-title {
    color: #fff;
    margin: 25px 0 15px 0;
    font-size: 16px;
    letter-spacing: 1px;
}

.features-title::after {
    content: "";
    display: block;
    width: 35px;
    height: 2px;
    background: #c9a24d;
    margin-top: 8px;
}

/* FEATURES */
.room-features {
    list-style: none;
    padding: 0;
}

.room-features li {
    margin-bottom: 10px;
    color: #ddd;
    position: relative;
    padding-left: 20px;
}

.room-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #c9a24d;
    border-radius: 50%;
}

/* BUTTON */
.btn-book {
    margin-top: 25px;
    background: #c9a24d;
    color: #000;
    padding: 12px 25px;
    border: 1px solid #c9a24d;
    cursor: pointer;
    transition: 0.3s;
    width: fit-content;
}

.btn-book:hover {
    background: transparent;
    color: #c9a24d;
}

/* MOBILE */
@media(max-width:900px){
    .room-detail-container {
        flex-direction: column;
    }

    .divider {
        display: none;
    }

    .room-slider {
        height: 280px;
    }
    .section-subtitle {
    font-size: 12px;

}
}