.hotel-section {
    padding: 100px 0;
    text-align: center;
    background-color: #fff;
}

/* .hotel-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
} */

.hotel-description {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    color: #333;
}

.hotel-stats {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'SaolDisplay-Light';
    font-size: 2.5rem;
    /* margin-bottom: 0.5rem; */
    margin-bottom: 0;
}

.stat-label {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
}




.section-description {
    font-family: 'SaolDisplay-Light';
    font-size: 2em;
    /* margin-bottom: 4rem; */
    margin-bottom: 0;
}


/* .tab-navigation {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    position: relative;
} */


.tab-navigation {
    margin: 0 auto;
    display: flex
;
    gap: 5rem;
    position: relative;
    justify-content: flex-start;
    align-items: flex-start;
    width: 1200px;
}

.tab-navigation::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0.25px;
    background: rgba(0, 0, 0, 0.2);
}


.plan-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
    /* padding: 0px; */
}

.plan-images {
    width: 100%;
    display: none;
}

.plan-images.hotel-plan-images,
.plan-images.hotelrum-images {
    display: block;
}


/* Amenities section */
.amenities-section {
    padding: 10px 0px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.amenities-section h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: normal;
    letter-spacing: 0.5px;
    margin-bottom: 60px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 5px;
}

.bottom-bar:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: #999;
    width: 150px;
}

.bottom-bar {
    position: relative;
}

.amenities-category li {
    padding-bottom: 0!important;
    margin-bottom: 0!important;
    color: #000!important;
}

.amenities-category h3 {
    color: #000 !important;
    font-size: 18px !important;
}


.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.amenities-category h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 15px;
    color: #333;
    text-align: left;
}

.amenities-category ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.amenities-category li {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
    text-align: left;
}


.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: background-color 0.3s;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.hotel-stats .stat-item:nth-child(2) {
    margin-top: 7px;
}

.plan-images.hotel-plan-images {
    margin-top: -100px;
}

@media (max-width:767px){
    .hotel-stats .stat-item:nth-child(2) {
        margin-top: 5px;
    }
}