


/* =========================
   IMAGE STABILITY
========================= */
.destination-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    /* menjaga layout */
    object-fit: cover;
}

/* =========================
   ROOM CARD STABILITY
========================= */
.room-item {
    min-height: 180px;
}

/* =========================
   TEXT STABILITY
========================= */
.location-text {
    font-size: 12px;
    display: inline-block;
}

/* =========================
   HOVER EFFECT (AMAN)
========================= */
.hover-scale-1-2 {
    transition: transform 0.3s ease;
}

.hover-scale-1-2:hover {
    transform: scale(1.05);
}

#meetings-events-section {
    padding: 50px 0 0 0;
}

.slider-meetings {
    width: 100%;
    overflow: hidden;
}

.slider-meetings .meeting-slide {
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.slider-meetings .meeting-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =================================
   OWL DOT LUXURY STYLE
================================= */

.owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-top: 30px;
}

/* BUTTON */
.owl-dots button.owl-dot {
    min-width: 10px;
    height: 10px;

    align-items: center;
    justify-content: center;

    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;

    cursor: pointer;

    transition: all .35s ease;
}

/* NORMAL DOT */
.owl-theme .owl-dots .owl-dot span {
    width: 10px !important;
    height: 10px !important;

    margin: 0 !important;

    display: block;

    border-radius: 999px;

    background: rgba(255,255,255,.55) !important;

    transition: all .35s ease;
}

/* ACTIVE */
.owl-theme .owl-dots .owl-dot.active {
    min-width: 58px;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 58px !important;
    height: 10px !important;

    border-radius: 999px;

    background: #fff !important;
}

#carousel-rooms .room-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}

#carousel-rooms .room-images {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

#carousel-special-offers .special-offers-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}

#carousel-special-offers .special-offers-images {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.special-offer-content {
    min-height: 90px;
}

/* Mobile */
@media (max-width: 768px) {
    .slider-meetings .meeting-slide {
        height: 500px;
    }

    #carousel-rooms .room-images {
        height: 285px !important;
    }

    #carousel-special-offers .special-offers-images {
        height: 285px !important;
    }
}

