.hero-family-bg,
.hero-group-bg {
    position: relative;
    background-image: url(../../assets/images/andaman-group-tour-package/3.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dark overlay */
.hero-family-bg::before,
.hero-group-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
    z-index: 1;
}

/* Keep banner content above overlay */
.hero-family-bg .container,
.hero-group-bg .container {
    position: relative;
    z-index: 2;
}

/* Better text visibility */
.hero-family-bg h1,
.hero-group-bg h1 {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.65);
}

.hero-family-bg p,
.hero-group-bg p {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

/* Package / banner height */
.hero-group-bg {
    min-height: 380px;
    display: flex;
    align-items: center;
}

/* Mobile banner readability */
@media (max-width: 767.98px) {

    .hero-family-bg,
    .hero-group-bg {
        background-position: center center;
        min-height: 360px;
    }

    .hero-family-bg::before,
    .hero-group-bg::before {
        background: rgba(0, 0, 0, 0.58);
    }

    .hero-family-bg h1,
    .hero-group-bg h1 {
        font-size: 2rem;
    }

    .hero-family-bg p,
    .hero-group-bg p {
        font-size: 1rem;
    }
}