.main-image img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.gallery-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.small-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
}

.more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.hotel-section {
    margin-top: 32px;
}

.hotel-section h4 {
    font-weight: 600;
    margin-bottom: 12px;
}

.amenity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.amenity-tags .tag {
    background: #f1f3f5;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.room-table th {
    background: #f8f9fa;
}

.surrounding-list {
    padding-left: 18px;
}

.surrounding-list li {
    margin-bottom: 6px;
}
/* ===== MODAL GALLERY ===== */
.gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.gallery-modal-content {
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

#galleryMainImg {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 10px;
    margin-bottom: 12px;
}

.close-btn {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.gallery-thumbs .thumb {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
}

.gallery-thumbs .thumb.active {
    opacity: 1;
    border-color: #fff;
}

.gallery-thumbs .thumb:hover {
    opacity: 1;
}
/* ================= SIDEBAR RIGHT ================= */
.sidebar-box {
    background: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ================= WHY CHOOSE ================= */
.sidebar-box h4 {
    color: #dc3545;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #e5e5e5;
}

.why-list li:last-child {
    border-bottom: none;
}

.why-list li::before {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url("/img/check.png");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* ================= SUPPORT 24/7 ================= */
.support-box {
    border: 2px solid #dc3545;
    border-radius: 12px;
    background: #fff;
}

.support-title {
    color: #dc3545;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.support-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 12px;
}

.support-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.support-phone {
    font-size: 20px;
    font-weight: 700;
    color: #0a6847;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .sidebar-box {
        margin-top: 20px;
    }
}