
.gallery-section {
    margin-top: 80px;
}

.gallery {
    display: flex;
}

.left {
    display: flex;
}

.top-image-box {
    width: 100%;
}

.top-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}


.right {
    display: flex;
    flex-direction: column;
}

/* Top 2 images */
.top-2-images {
    display: flex;
    gap: 10px;
}

    .top-2-images img {
        width: 50%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

/* Bottom image */
.bottom-image {
    margin-top: 10px;
    flex: 1;
}

    .bottom-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

.detail-section {
    padding-left: 15px;
    padding-right: 5px;
}
@media (max-width: 768px) {
    .detail-section {
        padding-left: 15px;
        padding-right: 5px;
    }
}


.detail-section .row {
    margin-left: 0;
    margin-right: 0;
}


.detail-section {
    position: relative;
    z-index: 2;
}
    .detail-section .container-fluid {
        max-width: 1400px;
        margin: auto;
    }

.Details-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    width: 100%; 
    margin: 0; 
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

    .header h1 {
        font-size: 28px;
        margin: 0;
    }

.share-btn {
    border: 1px solid #2f6fff;
    background: #fff;
    color: #2f6fff;
    padding: 10px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
}

.rating {
    margin: 12px 0;
    color: #ff9800;
}

    .rating span {
        color: #666;
        font-size: 14px;
        margin-left: 8px;
    }


.line {
    margin: 15px 0;
    border-color: #eee;
}
h3 {
    margin-bottom: 12px;
}

.info-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.info-box {
    background: #f5f5f5;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    gap: 12px;
    min-width: 220px;
    align-items: center;
}

    .info-box small {
        color: #666;
        display: block;
    }

    .info-box i {
        color: #3074ff;
        font-size: 20px;
    }


.inclusion-row {
    display: flex;
    gap: 20px;
}

.inclusion-box {
    background: #f7f7f7;
    padding: 15px;
    border-radius: 14px;
    width: 25%;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .inclusion-box i {
        color: #3074ff;
        font-size: 20px;
    }

@media (max-width: 768px) {
    .inclusion-row {
        flex-wrap: wrap;
    }

    .inclusion-box {
        width: 100%;
    }
}


.feature-strip {
    background: #fff;
    margin-top: 25px;
    padding: 25px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-item {
    text-align: center;
    flex: 1;
}

    .feature-item p {
        margin-top: 8px;
        font-size: 16px;
        color: #333;
        font-weight: 500;
    }

/* ICON BACKGROUND CIRCLE */
.feature-icon-circle {
    width: 70px;
    height: 70px;
    background: #e7f1ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

    .feature-icon-circle i {
        font-size: 28px;
        color: #2676ff;
    }

/* ---------------------- */
/* RESPONSIVE MOBILE */
/* ---------------------- */
@media (max-width: 768px) {
    .feature-strip {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .feature-icon-circle {
        width: 60px;
        height: 60px;
    }

        .feature-icon-circle i {
            font-size: 24px;
        }
}

.trip-tabs {
    background: #fff;
    margin-top: 25px;
    padding: 18px 25px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trip-tabs {
    position: sticky;
    top: 0;
    z-index: 999;
}


.trip-tab-item {
    font-size: 17px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

    /* Hover effect */
    .trip-tab-item:hover {
        color: #246bff;
    }

    /* Active tab */
    .trip-tab-item.active {
        color: #246bff;
        font-weight: 600;
    }

/* ---------------------- */
/* RESPONSIVE */
/* ---------------------- */
@media (max-width: 768px) {
    .trip-tabs {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
}



.overview-box {
    background: #fff;
    margin-top: 30px;
    padding: 30px 35px;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

.overview-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.overview-line {
    border: none;
    border-top: 1px solid #eee;
    margin-bottom: 18px;
}

.overview-text {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 25px;
}

.view-more-wrapper {
    text-align: right;
}

.view-more-btn {
    font-size: 17px;
    color: #246bff;
    font-weight: 500;
    text-decoration: none;
    transition: .3s ease;
}

    .view-more-btn:hover {
        text-decoration: underline;
    }

#overview-extra {
    transition: all 0.4s ease;
}
.gallery-box {
    background: #fff;
    margin-top: 30px;
    padding: 30px 35px;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

.gallery-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.gallery-line {
    border: none;
    border-top: 1px solid #eee;
    margin-bottom: 18px;
}

/* OUTER LAYOUT (COL-6 / COL-6) */
.gallery-grid {
    display: flex;
    gap: 15px;
}

/* LEFT & RIGHT = 50% WIDTH (col-6 / col-6) */
.gallery-left,
.gallery-right {
    width: 50%;
}

/* FIX SAME HEIGHT FOR BOTH SIDES */
.gallery-left,
.gallery-right {
    height: 440px; /* yahan height tum apne hisaab se change kar sakte ho */
}

/* RIGHT SIDE -> 2x2 GRID */
.gallery-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}

/* COMMON ITEM STYLE */
.gallery-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* OVERLAY CARD */
.overlay-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 18px;
}

.overlay-text {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .gallery-grid {
        flex-direction: column;
    }

    .gallery-left,
    .gallery-right {
        width: 100%;
        height: 260px;
    }
}

.itinerary-box {
    background: #fff;
    padding: 30px 35px;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    margin-top: 30px;
}

.itinerary-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.itinerary-line {
    border: none;
    border-top: 1px solid #eee;
    margin-bottom: 20px;
}

.accordion-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid #efefef;
    overflow: hidden;
    transition: 0.3s ease;
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
}

.day-box {
    background: #f5f5f5;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    margin-right: 18px;
    font-size: 16px;
}

.acc-title {
    flex: 1;
    font-size: 18px;
    font-weight: 500;
}

.arrow {
    font-size: 20px;
    transition: 0.3s ease;
}

.accordion-content {
    padding: 0 20px 15px 138px; /* <-- FIX: pushes answer under title */
    font-size: 15px;
    line-height: 1.6;
    display: none;
}


/* When active (JS will toggle this class) */
.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}



.gallery-section {
    margin-bottom: 40px;
}

.gallery {
    display: flex;
}

.left {
    display: flex;
}

.top-image-box {
    width: 100%;
}

    .top-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }


.right {
    display: flex;
    flex-direction: column;
}

/* Top 2 images */
.top-2-images {
    display: flex;
    gap: 10px;
}

    .top-2-images img {
        width: 50%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

/* Bottom image */
.bottom-image {
    margin-top: 10px;
    flex: 1;
}

    .bottom-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

.detail-section {
    padding: 0 20px;
}

@media (max-width: 768px) {
    .detail-section {
        padding-left: 15px;
        padding-right: 15px;
    }
}


.detail-section .row {
    margin-left: 0;
    margin-right: 0;
}


.detail-section {
    position: relative;
    z-index: 2;
}

    .detail-section .container-fluid {
        max-width: 1400px;
        margin: auto;
    }

.Details-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    margin: 0;
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

    .header h1 {
        font-size: 28px;
        margin: 0;
    }

.share-btn {
    border: 1px solid #2f6fff;
    background: #fff;
    color: #2f6fff;
    padding: 10px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
}

.rating {
    margin: 12px 0;
    color: #ff9800;
}

    .rating span {
        color: #666;
        font-size: 14px;
        margin-left: 8px;
    }


.line {
    margin: 15px 0;
    border-color: #eee;
}

h3 {
    margin-bottom: 12px;
}

.info-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.info-box {
    background: #f5f5f5;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    gap: 12px;
    min-width: 220px;
    align-items: center;
}

    .info-box small {
        color: #666;
        display: block;
    }

    .info-box i {
        color: #3074ff;
        font-size: 20px;
    }


.inclusion-row {
    display: flex;
    gap: 20px;
}

.inclusion-box {
    background: #f7f7f7;
    padding: 15px;
    border-radius: 14px;
    width: 25%;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .inclusion-box i {
        color: #3074ff;
        font-size: 20px;
    }

@media (max-width: 768px) {
    .inclusion-row {
        flex-wrap: wrap;
    }

    .inclusion-box {
        width: 100%;
    }
}


.feature-strip {
    background: #fff;
    margin-top: 25px;
    padding: 25px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-item {
    text-align: center;
    flex: 1;
}

    .feature-item p {
        margin-top: 8px;
        font-size: 16px;
        color: #333;
        font-weight: 500;
    }

/* ICON BACKGROUND CIRCLE */
.feature-icon-circle {
    width: 70px;
    height: 70px;
    background: #e7f1ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

    .feature-icon-circle i {
        font-size: 28px;
        color: #2676ff;
    }

/* ---------------------- */
/* RESPONSIVE MOBILE */
/* ---------------------- */
@media (max-width: 768px) {
    .feature-strip {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .feature-icon-circle {
        width: 60px;
        height: 60px;
    }

        .feature-icon-circle i {
            font-size: 24px;
        }
}

.trip-tabs {
    background: #fff;
    margin-top: 25px;
    padding: 18px 25px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 80px; /* header ke neeche */
    z-index: 1000;
}



.trip-tab-item {
    font-size: 17px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

    /* Hover effect */
    .trip-tab-item:hover {
        color: #246bff;
    }

    /* Active tab */
    .trip-tab-item.active {
        color: #246bff;
        font-weight: 600;
    }

/* ---------------------- */
/* RESPONSIVE */
/* ---------------------- */
@media (max-width: 768px) {

    .trip-tabs {
        flex-direction: row;
        gap: 12px;
        padding: 12px 14px;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 14px;
    }

        .trip-tabs::-webkit-scrollbar {
            display: none; /* clean mobile look */
        }

    .trip-tab-item {
        font-size: 13px; /* TEXT SMALL */
        padding: 6px 12px;
        flex-shrink: 0; /* force single line */
    }

        .trip-tab-item.active {
            color: #246bff;
        }
}




.overview-box {
    background: #fff;
    margin-top: 30px;
    padding: 30px 35px;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

.overview-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.overview-line {
    border: none;
    border-top: 1px solid #eee;
    margin-bottom: 18px;
}

.overview-text {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 25px;
}

.view-more-wrapper {
    text-align: right;
}

.view-more-btn {
    font-size: 17px;
    color: #246bff;
    font-weight: 500;
    text-decoration: none;
    transition: .3s ease;
}

    .view-more-btn:hover {
        text-decoration: underline;
    }

#overview-extra {
    transition: all 0.4s ease;
}

.gallery-box {
    background: #fff;
    margin-top: 30px;
    padding: 30px 35px;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
}

.gallery-title {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.gallery-line {
    border: none;
    border-top: 1px solid #eee;
    margin-bottom: 18px;
}

/* OUTER LAYOUT (COL-6 / COL-6) */
.gallery-grid {
    display: flex;
    gap: 15px;
}

/* LEFT & RIGHT = 50% WIDTH (col-6 / col-6) */
.gallery-left,
.gallery-right {
    width: 50%;
}

/* FIX SAME HEIGHT FOR BOTH SIDES */
.gallery-left,
.gallery-right {
    height: 440px; /* yahan height tum apne hisaab se change kar sakte ho */
}

/* RIGHT SIDE -> 2x2 GRID */
.gallery-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}

/* COMMON ITEM STYLE */
.gallery-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* OVERLAY CARD */
.overlay-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 18px;
}

.overlay-text {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .gallery-grid {
        flex-direction: column;
    }

    .gallery-left,
    .gallery-right {
        width: 100%;
        height: 260px;
    }
}

.itinerary-box {
    background: #fff;
    padding: 30px 35px;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    margin-top: 30px;
}

.itinerary-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.itinerary-line {
    border: none;
    border-top: 1px solid #eee;
    margin-bottom: 20px;
}

.accordion-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    border: 1px solid #efefef;
    overflow: hidden;
    transition: 0.3s ease;
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
}

.day-box {
    background: #f5f5f5;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    margin-right: 18px;
    font-size: 16px;
}

.acc-title {
    flex: 1;
    font-size: 18px;
    font-weight: 500;
}

.arrow {
    font-size: 20px;
    transition: 0.3s ease;
}

.accordion-content {
    padding: 0 20px 15px 138px; /* <-- FIX: pushes answer under title */
    font-size: 15px;
    line-height: 1.6;
    display: none;
}


/* When active (JS will toggle this class) */
.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}

@media (max-width: 768px) {

    .itinerary-box {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .itinerary-title {
        font-size: 22px;
    }

    /* Header layout fix */
    .accordion-header {
        flex-wrap: wrap;
        gap: 10px;
        padding: 14px 16px;
    }

    .day-box {
        font-size: 14px;
        padding: 6px 12px;
        margin-right: 0;
        border-radius: 8px;
    }

    .acc-title {
        font-size: 15px;
        font-weight: 500;
        width: 100%;
        line-height: 1.4;
    }

    .arrow {
        position: absolute;
        right: 16px;
        top: 18px;
        font-size: 18px;
    }

    .accordion-item {
        position: relative;
    }

    /* CONTENT FIX (MOST IMPORTANT) */
    .accordion-content {
        padding: 10px 16px 16px 16px; /* FULL WIDTH */
        font-size: 14px;
        line-height: 1.6;
    }

        .accordion-content ul {
            padding-left: 18px;
        }

        .accordion-content li {
            margin-bottom: 6px;
        }
}


.age-limit-box {
    background: #fff;
    padding: 30px 35px;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    margin-top: 30px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Row */
.age-box-row {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.age-box {
    background: #ffffff;
    border: 4px solid #e4e4e4;
    border-radius: 16px;
    width: 160px;
    height: 125px; /* Perfect height for alignment */
    padding: 18px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    transition: .2s ease;
    display: flex;
    flex-direction: column;
}

    /* Title always stays at top */
    .age-box h4 {
        font-size: 15px;
        font-weight: 600;
        margin: 0;
        line-height: 1.3;
        padding-top: 2px;
    }

/* Line fixed at SAME position for all boxes */
.mid-line {
    position: absolute;
    top: 60%; /* Adjust to match screenshot */
    left: 0;
    right: 0;
    height: 1px;
    background: #e4e4e4;
}

/* Age always starts at SAME place */
.age-range {
    font-size: 22px;
    font-weight: 700;
    position: absolute;
    top: 68%; /* fixed distance from top so all align same */
    left: 0;
    right: 0;
}

.age-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.1);
}



.no-limit {
    color: #0d6efd;
}


.inc-exc-section {
    background: #fff;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-top: 25px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.inc-exc-box {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 25px;
    border: 2px solid #e4e4e4;
    border-radius: 16px;
}

.column {
    width: 50%;
}

    .column h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .column ul {
        list-style: none;
        padding: 0;
    }

        .column ul li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding-left: 30px;
            position: relative;
            line-height: 1.6;
        }



    /* Green circle with white arrow */
    .column:nth-child(1) ul li::before {
        content: "\2794";
        color: #fff;
        background: #2ecc71;
        font-size: 12px;
        font-weight: bold;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 0;
        top: 4px;
    }

    /* Red circle with white arrow */
    .column:nth-child(2) ul li::before {
        content: "\2794";
        color: #fff; /* White arrow */
        background: #e74c3c; /* Red circle */
        font-size: 12px;
        font-weight: bold;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 0;
        top: 4px;
    }


/* hide ONLY when show class NOT present */
.hidden-item:not(.show) {
    display: none;
}

/* show when expanded */
.hidden-item.show {
    display: flex;
}


.btn-wrapper {
    display: flex;
    justify-content: flex-end; /* button right side */
    margin-top: 15px;
}

.view-btn {
    font-size: 18px;
    color: #0d6efd;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {

    .inc-exc-section {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .inc-exc-box {
        flex-direction: column; /* STACK */
        gap: 20px;
        padding: 16px;
        border-radius: 14px;
    }

    .column {
        width: 100%; /* FULL WIDTH */
    }

        .column h3 {
            font-size: 18px;
            margin-bottom: 12px;
        }

        .column ul li {
            font-size: 14px; /* SMALLER TEXT */
            padding-left: 30px; /* icon space */
            margin-bottom: 8px;
            line-height: 1.6;
        }

            .column ul li::before {
                width: 18px;
                height: 18px;
                font-size: 10px;
                top: 5px;
            }

    .btn-wrapper {
        justify-content: center; /* CENTER BUTTON */
        margin-top: 12px;
    }

    .view-btn {
        font-size: 15px;
    }
}

.cancel-policy-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cancel-table {
    width: 100%;
    border: 2px solid #e4e4e4;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 15px;
}

/* SAME GRID FOR ALL ROWS */
.cp-row {
    display: grid;
    grid-template-columns: 180px 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e4e4e4;
}

    .cp-row:last-child {
        border-bottom: none;
    }

.cp-cell {
    padding: 16px 18px;
    text-align: center;
    font-size: 15px;
    line-height: 1.4;
    border-right: 1px solid #e4e4e4;
}

    .cp-cell:last-child {
        border-right: none;
    }

/* LEFT COLUMN TITLES */
.cp-title {
    text-align: left;
    font-weight: 600;
}

/* HEADER ROW */
.cp-header-row {
    background: #fafafa;
}

    .cp-header-row .cp-cell {
        font-size: 16px;
        font-weight: 400;
    }

    .cp-header-row .cp-empty {
        background: #fff;
    }

/* ICONS */
.cp-icon {
    font-size: 24px;
    font-weight: 600;
}

.cp-green {
    color: #27ae60;
}

.cp-red {
    color: #e74c3c;
}

.policy-note {
    margin-top: 20px;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.payment-policy-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-top: 25px;
}

.payment-table {
    width: 100%;
    border: 2px solid #e4e4e4;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 15px;
}

/* All rows same grid */
.pp-row {
    display: grid;
    grid-template-columns: 180px 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e4e4e4;
}

    .pp-row:last-child {
        border-bottom: none;
    }

.pp-cell {
    padding: 16px 20px;
    text-align: center;
    font-size: 15px;
    border-right: 1px solid #e4e4e4;
}

    .pp-cell:last-child {
        border-right: none;
    }

/* Header Row */
.pp-header {
    background: #fafafa;
}

    .pp-header .pp-cell {
        font-size: 16px;
        font-weight: 500;
    }

/* Left Titles */
.pp-title {
    text-align: left;
    font-weight: 600;
}

/* Checkmark & Cross styles */
.pp-check {
    color: #27ae60;
    font-size: 20px;
    font-weight: bold;
}

.pp-cross {
    color: #e74c3c;
    font-size: 20px;
    font-weight: bold;
}

.badge {
    background: #fff;
    padding: 6px 18px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.badge-check {
    background: #fff;
    padding: 6px 18px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    color: #27ae60;
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 768px) {

    .table-scroll {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .cancel-table,
    .payment-table {
        min-width: 720px; /* table will scroll instead of break */
    }

    /* Optional smooth scrollbar */
    .table-scroll::-webkit-scrollbar {
        height: 6px;
    }

    .table-scroll::-webkit-scrollbar-thumb {
        background: #cfcfcf;
        border-radius: 10px;
    }
}

.Faq-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-top: 25px;
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.faq-item {
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .faq-question h3 {
        margin: 0;
        font-size: 15px;
        font-weight: 600;
    }

.faq-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}


.btn-wrapper {
    display: flex;
    justify-content: flex-end; /* button right side */
    margin-top: 15px;
}

.view-more-btn {
    font-size: 18px;
    color: #0d6efd;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
}

.faq-item.active .faq-arrow svg {
    transform: rotate(180deg);
    transition: 0.3s ease;
}


/* ---------------------- */
/* col-md-4 { */
/* ---------------------- */
.col-md-4 {
    overflow: visible;
}

.right-sidebar {
    width: 100%;
}


.image-box {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.img-fluid {
    border-radius: 8px;
}

.prices-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-top: 25px;
}

@media (max-width: 768px) {
    .price-box {
        margin-top: 15px;
    }
}

/* Header Row */
.price-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .price-header .title {
        font-size: 16px;
        font-weight: 600;
        color: #222;
    }

.info-icon {
    font-size: 14px;
    opacity: 0.6;
}

/* Price Section */
.price-amount {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.currency {
    font-size: 28px;
    font-weight: 700;
    color: #0b5cd6;
}

.amount {
    font-size: 32px;
    font-weight: 700;
    color: #0b5cd6;
}

.per-person {
    font-size: 14px;
    background: #E8F3FF;
    color: #444;
    padding: 4px 10px;
    border-radius: 15px;
    margin-left: auto;
}

.book-btn {
    width: 100%;
    background: #0b5cd6;
    color: #fff;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    margin-top: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
}

    .book-btn:hover {
        background: #0D6EFD;
        color: #fff;
    }


    .book-btn:hover {
        background: #0D6EFD;
    }


.pricing-section {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-top: 25px;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .pricing-header h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 600;
    }

.occupancy-tabs {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

    .occupancy-tabs .tab {
        cursor: pointer;
    }

        .occupancy-tabs .tab.active {
            color: #0D6EFD;
            border-bottom: 2px solid #0D6EFD;
            padding-bottom: 2px;
        }

/* ---- BOX ---- */
.pricing-box {
    padding: 25px 30px;
    border-radius: 8px;
    margin-top: 25px;
    border: 1px solid #e4e4e4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-left .title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    line-height: 20px;
}

.pricing-center {
    text-align: center;
    color: #555;
    font-size: 14px;
    line-height: 20px;
}

.pricing-right .price {
    color: #555;
    font-size: 14px;
}

/* GST at bottom right */
.gst-note {
    text-align: right;
    margin-top: 10px;
    font-size: 14px;
    color: #444;
    font-weight: 500;
}

/* Outer box */
.batches-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-top: 25px;
    font-family: "Poppins", sans-serif;
}

/* Header */
.batches-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .batches-header h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 600;
    }

/* Tabs */
.batch-tabs {
    display: flex;
    gap: 15px;
    font-size: 15px;
    color: #666;
}

    .batch-tabs .tab {
        cursor: pointer;
        padding-bottom: 5px;
    }

    .batch-tabs .active {
        color: #0D6EFD;
        border-bottom: 2px solid #0D6EFD;
    }

/* Batch rows */
.batch-row {
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Special batch red tag */
.special-tag {
    position: absolute;
    top: -10px;
    left: 15px;
    background: #E53935;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Date Text */
.batch-date {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Status Badge */
.status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

    .status.available {
        background: #DFF5D8;
        color: #3B874A;
    }

/* Arrow */
.arrow {
    font-size: 18px;
    color: #666;
    margin-left: 10px;
}

.query-box {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* WhatsApp Circle */
.whatsapp-icon {
    background: #E7F8ED;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .whatsapp-icon img {
        width: 24px;
        height: 24px;
    }

/* Rounded Blue Buttons */
.blue-btn {
    background: #0b5cd6;
    color: #fff;
    padding: 12px 55px;
    border-radius: 30px;
    border: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

    .blue-btn:hover {
        background: #0b5cd6;
    }

.right-sidebar {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}



@media (min-width: 768px) {
    .right-sidebar {
        position: sticky;
        top: 80px;
    }
}

@media (max-width: 767px) {
    .right-sidebar {
        max-height: none;
        overflow: visible;
    }
}



/* ---------------------- */
/* col-md-4 { */
/* ---------------------- */
.col-md-4 {
    overflow: visible;
}

.right-sidebar {
    width: 100%;
}


.image-box {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.img-fluid {
    border-radius: 8px;
}
.prices-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-top: 25px;
}
@media (max-width: 768px) {
    .price-box {
        margin-top: 15px;
    }
}

/* Header Row */
.price-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

    .price-header .title {
        font-size: 16px;
        font-weight: 600;
        color: #222;
    }

.info-icon {
    font-size: 14px;
    opacity: 0.6;
}

/* Price Section */
.price-amount {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.currency {
    font-size: 28px;
    font-weight: 700;
    color: #0b5cd6;
}

.amount {
    font-size: 32px;
    font-weight: 700;
    color: #0b5cd6;
}

.per-person {
    font-size: 14px;
    background: #E8F3FF;
    color: #444;
    padding: 4px 10px;
    border-radius: 15px;
    margin-left: auto;
}

/* Button */
.book-btn {
    width: 100%;
    background: #0b5cd6;
    color: #fff;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    margin-top: 20px;
    cursor: pointer;
}

    .book-btn:hover {
        background: #0D6EFD;
    }


.pricing-section {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-top: 25px;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .pricing-header h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 600;
    }

.occupancy-tabs {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #666;
}

    .occupancy-tabs .tab {
        cursor: pointer;
    }

        .occupancy-tabs .tab.active {
            color: #0D6EFD;
            border-bottom: 2px solid #0D6EFD;
            padding-bottom: 2px;
        }

/* ---- BOX ---- */
.pricing-box {
    padding: 25px 30px;
    border-radius: 8px;
    margin-top: 25px;
    border: 1px solid #e4e4e4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-left .title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    line-height: 20px;
}

.pricing-center {
    text-align: center;
    color: #555;
    font-size: 14px;
    line-height: 20px;
}

.pricing-right .price {
    color: #555;
    font-size: 14px;
}

/* GST at bottom right */
.gst-note {
    text-align: right;
    margin-top: 10px;
    font-size: 14px;
    color: #444;
    font-weight: 500;
}

/* Outer box */
.batches-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-top: 25px;
    font-family: "Poppins", sans-serif;
}

/* Header */
.batches-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .batches-header h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 600;
    }

/* Tabs */
.batch-tabs {
    display: flex;
    gap: 15px;
    font-size: 15px;
    color: #666;
}

    .batch-tabs .tab {
        cursor: pointer;
        padding-bottom: 5px;
    }

    .batch-tabs .active {
        color: #0D6EFD;
        border-bottom: 2px solid #0D6EFD;
    }

/* Batch rows */
.batch-row {
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Special batch red tag */
.special-tag {
    position: absolute;
    top: -10px;
    left: 15px;
    background: #E53935;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Date Text */
.batch-date {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Status Badge */
.status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

    .status.available {
        background: #DFF5D8;
        color: #3B874A;
    }

/* Arrow */
.arrow {
    font-size: 18px;
    color: #666;
    margin-left: 10px;
}
.query-box {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* WhatsApp Circle */
.whatsapp-icon {
    background: #E7F8ED;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .whatsapp-icon img {
        width: 24px;
        height: 24px;
    }

/* Rounded Blue Buttons */
.blue-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    /* IMPORTANT */
    white-space: nowrap; /* text ek line me */
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .blue-btn:hover {
        background: #0b5cd6;
    }
@media (min-width: 768px) and (max-width: 991px) {

    .query-box {
        flex-wrap: wrap; /* buttons neeche aa sakte hain */
    }

    .blue-btn {
        flex: 1 1 48%; /* 2 buttons same row */
    }

    .whatsapp-icon {
        flex: 0 0 100%; /* icon full row */
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .blue-btn {
        font-size: 14px;
        padding: 12px 14px;
    }
}

.right-sidebar {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
}



@media (min-width: 768px) {
    .right-sidebar {
        position: sticky;
        top: 80px;
    }
}

@media (max-width: 767px) {
    .right-sidebar {
        max-height: none;
        overflow: visible;
    }
}


