

.content-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.right-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 250px;
    /* adjust as needed */
    height: 100%;
    background-image: url('https://mlqqvsi21e7s.i.optimole.com/w:222/h:360/q:mauto/f:best/https://challengerooms.in/wp-content/uploads/2023/10/steel-optimized.png');
    /* your fence/mesh pattern */
    background-repeat: repeat-y;
    background-size: contain;
    z-index: 0;
    /* ensure it's behind content */
    opacity: 1;
    pointer-events: none;
    /* allows clicking through */
}

@media screen and (max-width: 768px) {
    .right-overlay {
        display: none;
        /* optional: hide on small screens */
    }
}


/* header close */

.hero-section-group {
    width: 100%;
    height: 300px;
    margin-top: 50px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-section-group h1 {
    font-size: 3.3rem;
    color: white;
    padding-bottom: 10px;
}

.hero-section-group p {
    font-size: 1.4rem;
    color: white;
}

.hero-section-group button {
    border: none;
    background-color: #aa1b44;
    padding: 15px;
    margin-top: 20px;
    border-radius: 5px;
    font-size: 26px;
    color: white;
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero-section-group h1 {
        font-size: 1.8rem;
    }

    .hero-section-group p {
        font-size: 1.6rem;
        padding: 20px;
    }
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    background-color: transparent;
    /* or add dark background if needed */
    padding: 10px 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: white;
    font-size: 20px;
    font-family: 'Arial Black', sans-serif;
    white-space: nowrap;
}

.check-icon {
    color: #f7941e;
    /* orange shade similar to your screenshot */
    margin-right: 8px;
    font-size: 24px;
}

/* Responsive: stack items on small screens */
@media (max-width: 600px) {
    .feature-list {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* booking */
.booking-section-wrapper {
    padding: 40px 20px;
}

.booking-section-tabs {
    display: flex;
    margin-left: 190px;
    position: relative;
    z-index: 10;
    gap: 10px;
}

.booking-section-tab {
    padding: 30px 24px;
    font-weight: bold;
    font-size: 18px;
    border: none;
    cursor: pointer;
    background-color: #ef5c24;
    color: white;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.booking-section-tab.active {
    background-color: white;
    color: #1d1d1b;
}

.booking-section-tab-content-wrapper {
    max-width: 1100px;
    margin: auto;
}

.booking-section-container {
    display: none;
    background-color: white;
    padding: 40px;
    border-radius: 0 0 4px 4px;
    position: relative;
    top: -1px;
}

.booking-section-container.active {
    display: block;
}

.booking-section-heading {
    font-size: 48px;
    color: #3f2d17;
    margin-bottom: 20px;
}

.booking-section-description,
.booking-section-sub-description {
    font-size: 20px !important;
    color: #111;
    margin-bottom: 20px;
}

.booking-section-players {
    margin-top: 40px;
}

.booking-section-players h3 {
    color: #ef5c24;
    font-size: 24px;
    margin-bottom: 10px;
}

.booking-section-players label {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.booking-section-player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.booking-section-player-controls button {
    width: 40px;
    height: 40px;
    font-size: 24px;
    border-radius: 50%;
    border: 2px solid #ef5c24;
    background: none;
    color: #ef5c24;
    cursor: pointer;
}

.booking-section-player-controls span {
    font-size: 24px;
}

.booking-section-package-heading {
    margin-top: 50px;
    color: #ef5c24;
    font-size: 24px;
    margin-bottom: 20px;
}

.booking-section-packages {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.booking-section-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    width: 250px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.booking-section-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
}

.booking-section-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.booking-section-card p {
    font-size: 18px;
    color: #ef5c24;
}

/* FAQ */
.click-to-faq {
    padding: 10px;
    margin: 20px;
    font-size: 18px;
    background-color: #ef5c24;
    color: white;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-section-packages {
        flex-direction: column;
        align-items: center;
    }

    /* FIXED: Keep tab buttons horizontal on mobile */
    .booking-section-tabs {
        margin-left: 10px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 10px;
    }

    .booking-section-tab {
        width: auto;
        flex: 1 1 auto;
        text-align: center;
        padding: 20px 16px;
        font-size: 16px;
    }

    .booking-section-heading {
        font-size: 30px;
    }
}


/* bookung */
