/* ==========================================
   INNER PAGES - PREMIUM STYLES
   ========================================== */

/* Page Banner */
.page-banner {
    position: relative;
    padding: 100px 0 70px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 55%, #0f3460 100%);
}

.page-banner-content {
    text-align: center;
    color: #fff;
}

.page-banner-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.breadcrumb-custom {
    justify-content: center;
    margin: 0;
}

.breadcrumb-custom .breadcrumb-item a {
    color: #d4af37;
}

.breadcrumb-custom .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* About Page */
.about-story-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mv-card {
    border: none;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #d4af37;
    background: #fff;
}

.mv-card i {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.facility-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 30px;
    padding: 8px 18px;
    margin: 0 8px 10px 0;
    font-size: 0.9rem;
}

.facility-chip i {
    color: #d4af37;
}

.staff-box {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Room Details Page */
.room-gallery-main {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.room-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.room-thumbs img {
    width: 92px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.65;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.room-thumbs img:hover {
    opacity: 1;
}

.room-thumbs img.active-thumb {
    opacity: 1;
    border-color: #d4af37;
}

.price-box {
    background: #1a1a2e;
    color: #fff;
    border-radius: 15px;
    padding: 28px;
    position: sticky;
    top: 110px;
}

.price-box .price-big {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
}

.price-box .price-original {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
}

.price-box ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.price-box ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.92rem;
}

.price-box ul li i {
    color: #d4af37;
    margin-right: 8px;
}

/* Video Gallery */
.video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.4s ease;
    height: 100%;
    background: #fff;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-card-thumb {
    position: relative;
    height: 220px;
}

.video-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-card-thumb img {
    transform: scale(1.08);
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 46, 0.35);
    transition: all 0.4s ease;
}

.video-play-overlay .play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #d4af37;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    padding-left: 4px;
    transition: all 0.4s ease;
}

.video-card:hover .play-btn {
    transform: scale(1.1);
    background: #fff;
}

.video-card-body {
    padding: 20px;
}

.video-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.video-card-desc {
    color: #6c757d;
    font-size: 0.88rem;
    margin: 0;
}

/* Lightbox */
.lightbox-img {
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 767px) {
    .page-banner {
        padding: 70px 0 50px;
    }

    .page-banner-title {
        font-size: 2rem;
    }

    .room-gallery-main {
        height: 260px;
    }

    .price-box {
        position: static;
    }

    .about-story-img {
        height: 260px;
    }

    .video-card-thumb {
        height: 180px;
    }
}