a {
    text-decoration: none;
    color: inherit;
}

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

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

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

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

.event-media {
    position: relative;
    height: 460px;
}

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

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

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

/* Gradient overlay */
.event-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.event-title h2 {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    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));
}

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

.description-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

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

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

/* Quote effect */
.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;
}

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

.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);
}

/* Image overlay */
.img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
}

/* =====================================================
   RATING & REVIEWS
===================================================== */
.rating-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.rating-overlay .star {
    color: #31302b;
}

.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
===================================================== */
.homestay-info {
    padding: 16px;
}

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

.location {
    font-size: 14px;
    color: #777;
}

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

/* =====================================================
   SERVICES
===================================================== */
.services .guestlove-img {
    width: 26px;
    height: 26px;
    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 BADGE
===================================================== */
.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d81034, #e4001b8a);
    color: #fff;
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 700;
    text-align: right;
    /* box-shadow: 0 8px 20px rgba(255, 77, 109, 0.4); */
    z-index: 2;
}

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

.offer-price {
    font-size: 17px;
}

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

.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;
}

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

.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);
}

.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;
}

.event-title-box {
    padding: 14px;
    text-align: center;
}

.event-title-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.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);
}


@media (max-width: 768px) {

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

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

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

    .view-event {
        opacity: 1;
        transform: none;
    }
}

/* =====================================================
   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 */
    }
}


.offer-hero {
    background: linear-gradient(135deg, #1e88e5, #42a5f5);
    padding: 20px 0;
    color: #fff;
}

.offer-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.offer-subtitle {
    opacity: 0.9;
    margin-top: 8px;
}

.offer-section {
    background: #f7f9fc;
    padding: 50px 0;
}

.offer-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.offer-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.offer-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-name {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.offer-terms h4 {
    font-weight: 600;
    margin-bottom: 8px;
}

.offer-terms p {
    color: #555;
    line-height: 1.6;
}

.offer-btn {
    margin-top: 20px;
    display: inline-block;
    padding: 12px 28px;
    background: #1e88e5;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.offer-btn:hover {
    background: #1565c0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .offer-card {
        grid-template-columns: 1fr;
    }

    .offer-title {
        font-size: 2rem;
    }

    .offer-content {
        padding: 20px;
    }

    .offer-section {
        padding: 20px 0;
    }

    .offer-subtitle {
        margin: 0;
    }

    .offer-hero {
        padding: 0;
    }
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #444;
    line-height: 1.6;
}

.terms-list li::before {
    content: "✔";
    color: #1e88e5;
    font-weight: bold;
    margin-top: 2px;
}

.terms-list li:last-child {
    border-bottom: none;
}


/* ===== HERO ===== */
.service-hero {
    position: relative;
    height: 540px;
    overflow: hidden;
}

.service-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.service-hero-overlay h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    position: absolute;
    left: 8%;
}

/* ===== SECTION HEADER ===== */
.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
}

.section-header p {
    color: #777;
}

/* ===== HOMESTAY CARD ===== */
.homestay-link {
    text-decoration: none;
    color: inherit;
}

.homestay-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.homestay-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Image */
.homestay-img img {
    width: 260px;
    height: 200px;
    /* height: 100%; */
    object-fit: cover;
}

/* Info */
.homestay-info {
    flex: 1;
    padding: 20px;
}

.homestay-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.room-types .badge {
    background: #f1f1f1;
    color: #333;
    margin-right: 6px;
    padding: 6px 10px;
    border-radius: 20px;
}

.guestlove-icons img {
    width: 28px;
    margin-right: 6px;
    margin-top: 10px;
}

/* Price */
.homestay-price {
    width: 220px;
    padding: 20px;
    text-align: right;
    border-left: 1px solid #eee;
}

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

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


.old-price {
    text-decoration: line-through;
    color: #999;
    margin: 8px 0 0;
}

.new-price {
    font-size: 22px;
    font-weight: 700;
    color: #0d6efd;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .homestay-card {
        flex-direction: column;
    }

    .homestay-img img {
        width: 100%;
        height: 220px;
    }

    .homestay-price {
        width: 100%;
        border-left: none;
        border-top: 1px solid #eee;
        text-align: left;
    }

    .service-hero {
        height: 100%;
    }
}