#inner_pages{
    padding: 60px 0;
}
.room-detail-hero {
    position: relative;
    margin-bottom: 2rem;
}
.book-now-btn:hover{
    color: white !important;
}
.room-gallery {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.room-gallery-main {
    position: relative;
    height: fit-content;
    overflow: hidden;
}

.room-gallery-main img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.room-thumbnails {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.room-thumbnail {
    height: 100px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.room-thumbnail:hover,
.room-thumbnail.active {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.room-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-content-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.room-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.room-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #BF9948;
}

.room-highlights {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.room-highlight {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.room-highlight-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #BF9948;
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
}

.room-highlight-content h4 {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
}

.room-highlight-content p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.amenity-icon {
    color: #BF9948;
    font-size: 1.2rem;
    width: 24px;
}

.booking-widget {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: sticky;
    top: 2rem;
}

.booking-widget-header {
    text-align: center;
    margin-bottom: 1.5rem;

}

.booking-widget-header i{
    margin-right: 10px;

}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #BF9948;
    margin: 0.5rem 0;
}

.price-note {
    color: #6b7280;
    font-size: 0.9rem;
}

.book-now-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #BF9948;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.book-now-btn:hover {
    background: #a8853d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(191, 153, 72, 0.3);
}

.sidebar-menu {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.sidebar-title {
    background: #BF9948;
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.sidebar-menu ul {
    padding: 1rem 0;
}

.sidebar-menu li {
    border-bottom: 1px solid #f1f1f1;
}

.sidebar-menu li:last-child {
    border-bottom: none;
}

.sidebar-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-menu a:hover {
    background: #f8f9fa;
    color: #BF9948;
    padding-left: 1.8rem;
}

.virtual-tour-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #4b5563;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.virtual-tour-btn:hover {
    background: #374151;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .room-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }
    .room-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
    .booking-widget {
        position: static;
        margin-bottom: 2rem;
    }
}
