.section-style.blue-bg {
    background-color: #e7f6ff;
    /* light blue background */
}

.related-link {
    text-decoration: none;
}

.related-homestay {
    padding: 16px;
    font-size: 26px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.related-events {
    padding: 16px;
    font-size: 26px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

/* ===== CARD ===== */
.modern-event-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    height: 100%;
}

.modern-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

/* ===== IMAGE ===== */
.event-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modern-event-card:hover img {
    transform: scale(1.15);
}

/* ===== OVERLAY ===== */
.event-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.75));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-event-card:hover .event-overlay {
    opacity: 1;
}

/* ===== TITLE ===== */
.event-title-box {
    padding: 14px;
    text-align: center;
    background: #fff;
    position: relative;
    z-index: 2;
}

.event-title-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

/* CTA reveal */
.view-event {
    font-size: 13px;
    color: #ff4d6d;
    font-weight: 600;
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.35s ease;
}

.modern-event-card:hover .view-event {
    opacity: 1;
    transform: translateY(0);
}

.modern-event-card:hover h4 {
    color: #ff4d6d;
}

/* ===== MOBILE FRIENDLY ===== */
@media (max-width: 768px) {
    .view-event {
        opacity: 1;
        transform: none;
    }

    .related-events {
        margin-bottom: 10px;
    }

    .related-homestay {
        font-size: 20px;
        margin-bottom: 0;
    }
}

/* ===== CARD ===== */
.homestay-card-modern {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
}

.homestay-card-modern:hover {
    transform: translateY(-6px);
}

/* ===== IMAGE ===== */
.img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.homestay-card-modern:hover .img-wrapper img {
    transform: scale(1.12);
}

.img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
}

.rating-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #111;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    z-index: 2;
}

.rating-overlay .star {
    color: #31302b;
    margin-right: 2px;
}

.rating-overlay .star.filled {
    color: #ffc107;
}

.rating-number {
    margin-left: 6px;
    font-weight: 700;
}

.reviews-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgb(171 151 151 / 60%);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.homestay-info {
    padding: 16px;
}

.hotel-name {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.location {
    font-size: 14px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== ROOM TYPE CHIPS ===== */
.room-types {
    margin-top: 10px;
}

.room-types .badge {
    background: #f1f3f5;
    color: #333;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 20px;
    font-weight: 500;
    margin-right: 6px;
}

/* ===== SERVICES ===== */
.services {
    margin-top: 10px;
}

.services .guestlove-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ===== PRICE PILL ===== */
.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d81034, #e4001b8a);
    color: #fff;
    padding: 10px 14px;
    border-radius: 14px;
    text-align: right;
    font-weight: 700;
    /* box-shadow: 0 8px 20px rgba(255, 77, 109, 0.4); */
    z-index: 2;
}

.price-badge .original-price {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    text-decoration: line-through;
}

.starting-text {
    font-size: 12px;
    color: #050505;
    margin-right: 4px;
}

.price-badge .offer-price {
    font-size: 17px;
    line-height: 1.1;
}

/* ===== MODERN DESCRIPTION ===== */
.modern-description {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 26px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    margin-top: 30px;
}

/* Header */
.description-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.description-head h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

/* Content */
.description-content {
    margin-top: 10px;
}

.description-text {
    font-size: 15.5px;
    line-height: 1.8;
    color: #555;
    letter-spacing: 0.2px;
}

/* Optional subtle quote feel */
.description-text::before {
    content: "“";
    font-size: 20px;
    color: #ff4d6d;
    font-weight: 700;
    margin-right: 4px;
}

.description-text::after {
    content: "”";
    font-size: 20px;
    color: #ff4d6d;
    font-weight: 700;
    margin-left: 4px;
}

/* ===== EVENT SECTION ===== */
.event-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    /* box-shadow: 0 25px 60px rgba(0,0,0,0.18); */
}

/* ===== IMAGE ===== */
.event-media {
    position: relative;
    height: 460px;
}

.event-img {
    height: 460px;
    object-fit: cover;
}

/* Smooth zoom */
.carousel-item img {
    transition: transform 0.8s ease;
}

.carousel-item.active img {
    transform: scale(1.05);
}

.event-gradient {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.1),
        rgba(0,0,0,0.75)
    ); */
    z-index: 1;
}

/* ===== TITLE ===== */
.event-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    max-width: 80%;
}

.event-title h2 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

/* ===== CAROUSEL CONTROLS ===== */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    z-index: 2;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 28px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .event-media,
    .event-img {
        height: 320px;
    }

    .event-title h2 {
        font-size: 22px;
    }

    .event-title {
        left: 16px;
        bottom: 16px;
    }
}

/* =====================================================
   CAROUSEL / HERO IMAGE RESPONSIVE
===================================================== */
@media (max-width: 1200px) {

    .event-media,
    .event-img {
        height: 420px;
        /* slightly smaller on large screens */
    }
}

@media (max-width: 992px) {

    .event-media,
    .event-img {
        height: 360px;
        /* medium screens */
    }

    .event-title h2 {
        font-size: 28px;
        /* smaller title */
    }
}

@media (max-width: 768px) {

    .event-media,
    .event-img {
        height: 320px;
        /* tablets & small devices */
    }

    .event-title {
        left: 16px;
        bottom: 16px;
    }

    .event-title h2 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {

    .event-media,
    .event-img {
        height: 240px;
        /* mobile */
    }

    .event-title h2 {
        font-size: 18px;
        /* mobile title smaller */
    }
}