.hotel-card {
    transition: .35s;
    border: 0;
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12) !important;
}

.hotel-img {
    position: relative;
    overflow: hidden;
}

.hotel-image {
    height: 260px;
    width: 100%;
    object-fit: cover;
    transition: .5s;
}

.hotel-card:hover .hotel-image {
    transform: scale(1.08);
}

.hotel-ribbon {
    position: absolute;
    top: 18px;
    left: -40px;
    width: 150px;
    background: #ff5722;
    color: #fff;
    text-align: center;
    transform: rotate(-45deg);
    font-size: 13px;
    font-weight: 700;
    padding: 7px 0;
    z-index: 5;
}

.hotel-price {
    position: absolute;
    right: 15px;
    bottom: 15px;
    background: #fff;
    color: #0d6efd;
    border-radius: 30px;
    padding: 10px 18px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
}

.hotel-price span {
    display: block;
    font-size: 12px;
    color: #777;
}

.hotel-title a {
    color: #222;
    text-decoration: none;
}

.hotel-title a:hover {
    color: #0d6efd;
}

.hotel-feature {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hotel-feature span {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 13px;
}

.hotel-feature i {
    color: #0d6efd;
    margin-right: 4px;
}

.hotel-gallery {

    position: relative;

}

.gallery-item {

    position: relative;

}

.hotel-main-image {

    width: 100%;

    height: 520px;

    object-fit: cover;

    border-radius: 12px;

}

.hotel-thumb-image {

    width: 100%;

    height: 100px;

    object-fit: cover;

    border-radius: 8px;

    cursor: pointer;

    transition: .3s;

}

.hotel-thumb-image:hover {

    opacity: .8;

    transform: scale(1.03);

}

.featured-badge {

    position: absolute;

    top: 20px;

    left: 20px;

    background: #ff5722;

    color: #fff;

    padding: 8px 18px;

    border-radius: 30px;

    font-weight: 600;

    z-index: 20;

}

.image-price {

    position: absolute;

    bottom: 25px;

    right: 25px;

    background: #ffffff;

    padding: 12px 20px;

    border-radius: 35px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);

    text-align: center;

}

.image-price strong {

    color: #0d6efd;

    display: block;

    font-size: 22px;

}

.image-price small {

    color: #777;

}

.hotel-title {

    font-size: 36px;

    font-weight: 700;

}

.hotel-location {

    color: #666;

    font-size: 16px;

}

.hotel-info-box {

    display: flex;

    align-items: center;

    gap: 18px;

    background: #f8f9fa;

    padding: 20px;

    border-radius: 12px;

    transition: .3s;

}

.hotel-info-box:hover {

    background: #eef6ff;

}

.hotel-info-box i {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: #0d6efd;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

}

.hotel-info-box small {

    color: #888;

}

.hotel-info-box h6 {

    margin-top: 5px;

    margin-bottom: 0;

    font-weight: 600;

}

.hotel-facilities {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;

}

.hotel-facilities span {

    padding: 10px 18px;

    border-radius: 30px;

    background: #f8f9fa;

    font-size: 15px;

}

.hotel-facilities i {

    color: #0d6efd;

    margin-right: 8px;

}

.hotel-description {

    line-height: 1.9;

    color: #666;

}

.hotel-booking-card {

    background: #fff;

    padding: 30px;

    border-radius: 15px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);

}

.booking-price {

    text-align: center;

}

.booking-price h2 {

    color: #0d6efd;

    font-size: 40px;

    margin: 8px 0;

    font-weight: 700;

}

.booking-price span {

    color: #777;

}

.booking-item {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 18px;

}

.booking-item i {

    width: 45px;

    height: 45px;

    background: #0d6efd;

    color: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

}

.booking-item strong {

    display: block;

}

.booking-item p {

    margin: 0;

    color: #777;

}

.booking-facilities ul {

    list-style: none;

    padding: 0;

    margin: 0;

}

.booking-facilities li {

    margin-bottom: 12px;

}

.hotel-booking-card.sticky-top {

    top: 100px;

}