.top-banner {
    background: #d63a33;
    color: white;
    padding: 18px;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    border-radius: 15px;
}

.map-box img {
    width: 100%;
    height: 280px;
    border-radius: 15px;
}

.slider-box img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
}

.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff78;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid #ccc;
}





.arrow-left {
    left: 15px;
}

.arrow-right {
    right: 15px;
}

.arrow-left:hover,
.arrow-right:hover {
    background: var(--theme-color);
    color: #fff;
}

.date-card {
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 15px;
    background: white;
}

.price-box {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
}



.cut-price {
    text-decoration: line-through;
    color: #d9534f;
    font-size: 14px;
}

.icon-row i {
    color: #e63946;
    font-size: 24px;
}

.date-card-box {
    border: 1px solid #e5e5e5;
    padding: 10px;
    border-radius: 15px;
    background-color: #f9f9f9;
}

.month-selector {
    border-radius: 40px;
    border: 1px solid #d8d8d8;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date-pill {
    background: #ffffffff;
    border-radius: 12px;
    padding: 12px;
    width: 110px;
    text-align: center;
}

.date-pill.soldout {
    opacity: 0.7;
}

.sold-text {
    color: #e63946;
    font-weight: 600;
}

.price-box {
    border: 1px solid #e59d71;
    border-radius: 12px;
    padding: 10px;
    max-width: 140px;
    text-align: center;
    margin-top: 10px;
}

.price-box small {
    font-size: 12px;
    color: #3b3b3b;
}

.price-amount {
    font-size: 20px;
    font-weight: bold;
}

.arrow-btn2 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.fs-12px {
    font-size: 12px
}

.section-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}

.badge-best {
    background: #cf9e18;
    color: #fff;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.badge-save {
    background: #d93636;
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
}

.info-box {
    padding: 18px 20px;
    border-radius: 18px;
    background: #f3f7ff;
    border: 1px solid #dbe6ff;
}

.info-box .icon {
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #d6e2ff;
}

.info-link {
    color: #1f4faa;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
}

/* BOX WRAPPER */
.trip-summary-box {
    width: 100%;
    max-width: 420px;
    margin: auto;
    font-family: "Segoe UI", sans-serif;
}

/* CARD BOX */
.ts-card,
.ts-price-container {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 18px;
}

/* TITLES */
.ts-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* PASSENGER SELECTOR ROW */
.ts-passenger-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    border-radius: 10px;
}

.ts-passenger-label {
    font-size: 15px;
    font-weight: 600;
}

/* COUNTER BUTTONS */
.ts-counter-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ts-counter-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #0095ff;
    background: #fff;
    font-size: 20px;
    cursor: pointer;
}

.ts-counter-value {
    font-size: 18px;
    font-weight: 600;
}

/* PRICE HEADER */
.ts-price-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.ts-currency-switch {
    font-size: 12px;
    color: #0077ff;
}

/* PRICE ROWS */
.ts-price-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #e8e8e8;
}

.ts-price-row:last-child {
    border-bottom: none;
}

.ts-discount-text {
    color: #d60000;
    font-size: 14px;
    font-weight: 700;
}

.ts-small-label {
    font-size: 13px;
    color: #555;
}

/* STRIKE PRICE */
.ts-strike-price {
    text-decoration: line-through;
    color: #c00;
    font-size: 15px;
    text-align: right;
}

/* MAIN PRICE */
.ts-main-price {
    font-size: 16px;
    font-weight: 600;
    text-align: right;
}

/* HIGHLIGHT ROW */
.ts-highlight-row {
    background: #e7f1ff;
    padding: 16px;
    border-radius: 10px;
}

.ts-bold-label {
    font-weight: 700;
    font-size: 14px;
}

.ts-note-label {
    font-size: 12px;
    color: #666;
}

.ts-sub-amount {
    font-size: 12px;
    text-align: right;
    color: #444;
}

/* BOOK NOW BUTTON */
.ts-book-btn {
    width: 100%;
    padding: 14px;
    background: var(--theme-color);
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border-radius: 40px;
    border: none;
    margin-bottom: 20px;
    cursor: pointer;
}

/* BOTTOM BUTTONS */
.ts-bottom-btns {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.ts-secondary-btn {
    width: 50%;
    padding: 14px;
    border-radius: 40px;
    border: 1px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tour-info-wrapper {
    background: #f4f9ff;
    padding: 30px 30px;
    border-radius: 20px;
    font-family: "Segoe UI", sans-serif;
    margin-top: 25px;
}

.tour-info-title {
    font-size: 26px;
    font-weight: 700;
    color: #0c3c72;
    margin-bottom: 25px;
}

.tour-info-grid {
    display: flex;
    gap: 40px;
}

.tour-info-col {
    flex: 1;
}

/* Individual Row */
.tour-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
}

/* Icons */
.tour-icon {
    color: var(--theme-color);
    font-size: 22px;
    min-width: 26px;
}

/* Titles & Values */
.tour-info-label {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 3px;
    color: #003669;
}

.tour-info-value {
    font-size: 14px;
    color: #333;
}

.tourstyle-wrapper {
    background: #f4f9ff;
    padding: 35px 30px;
    border-radius: 22px;
    font-family: "Segoe UI", sans-serif;
    margin-top: 35px;
}

.tourstyle-title {
    font-size: 28px;
    font-weight: 700;
    color: #0c3c72;
    margin-bottom: 30px;
}

.tourstyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tourstyle-card {
    background: #fafafa;
    padding: 25px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.tourstyle-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0c3c72;
    margin-bottom: 15px;
}

.tourstyle-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tourstyle-icon {
    color: var(--theme-color);
    font-size: 40px;
    margin-bottom: 10px;
}

.tourstyle-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Tour Pace Image */
.tourstyle-meter-img {
    width: 90px;
    margin-bottom: 10px;
}

/* Physical Rating Bars */
.tourstyle-rating-box {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.tourstyle-rating {
    width: 30px;
    height: 14px;
    border-radius: 4px;
}

.tourstyle-rating.blue {
    background: #8fb6ff;
}

.tourstyle-rating.green {
    background: #5cb85c;
}

.tourstyle-rating.gray {
    background: #d0d0d0;
}

.tourstyle-bottom-text {
    text-align: center;
    margin-top: 25px;
    font-size: 15px;
}

.tourstyle-bottom-text a {
    color: #0c4faf;
    text-decoration: underline;
}

.tourhighlights-section {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 22px;
    margin-top: 30px;
    border: 1px solid #e7eef7;
    font-family: "Segoe UI", sans-serif;
}

.tourhighlights-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.tourhighlights-icon {
    font-size: 28px;
    color: #0c3c72;
    margin-right: 10px;
}

.tourhighlights-title {
    font-size: 28px;
    font-weight: 700;
    color: #0c3c72;
    margin: 0;
}

.tourhighlights-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tourhighlights-list li {
    font-size: 17px;
    color: #092c52;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
}

.tourhighlights-bullet {
    font-size: 16px;
    color: #0c3c72;
    margin-right: 10px;
    margin-top: 4px;
}

/* Responsive */
@media(max-width: 768px) {
    .tourhighlights-section {
        padding: 25px 20px;
    }

    .tourhighlights-title {
        font-size: 24px;
    }

    .tourhighlights-list li {
        font-size: 15px;
    }
}

.included-box {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 22px;
    margin-top: 30px;
    border: 1px solid #e3ebf4;
    font-family: "Segoe UI", sans-serif;
}

.included-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.included-header-icon {
    font-size: 28px;
    color: #0c3c72;
    margin-right: 10px;
}

.included-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #0c3c72;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    font-size: 17px;
    color: #092c52;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.included-bullet {
    font-size: 16px;
    color: #0c3c72;
    margin-right: 10px;
    margin-top: 4px;
}

/* Responsive */
@media(max-width: 768px) {
    .included-box {
        padding: 25px 20px;
    }

    .included-title {
        font-size: 24px;
    }

    .included-list li {
        font-size: 15px;
    }
}

.itinerary-box {
    background: #f6f9fc;
    padding: 30px;
    border-radius: 16px;
}

.itinerary-accordion .accordion-button {
    font-size: 18px;
    font-weight: 600;
    color: #0c3c72;
}

.itinerary-accordion .accordion-button:not(.collapsed) {
    background-color: #e8f0ff;
    color: #0a2a55;
}

.itinerary-accordion .accordion-body py-4 {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.section-header {
    font-size: 2rem;
    font-weight: 700;
}

.info-box {
    background: #f8f9fb;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
}

.room-card {
    border-radius: 20px;
    padding: 25px;
    background: white;
    border: 1px solid #e6e6e6;
}

.room-img {
    border-radius: 20px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
}





.package-card {
    background: #fff;
    border-radius: 22px;
    border: 1px solid #e5e7eb;
    padding-bottom: 20px;
    transition: 0.3s;
}


.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}


.package-img {
    width: 100%;
    height: 200px;
    border-radius: 10px 10px 0px 0px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}


.tag-save1 {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #d63b3b;
    color: #fff;
    padding: 10px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}


.badge-new1 {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0aaf4b;
    color: #fff;
    padding: 7px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}


.price3 {
    font-size: 20px;
    font-weight: 700;
}


.info-box {
    background: #f2f8ff;
    border: 1px solid #d7e5f5;
    border-radius: 20px;
    padding: 18px;
}

.info-box-2 {
    background: #fff7f2;
    border: 1px solid #ffd8c7;
    border-radius: 20px;
    padding: 14px 18px;
}

.year-header {
    background: #fdeae0;
    padding: 12px 18px;
    border-radius: 25px;
    font-size: 1.4rem;
    font-weight: 700;
}

.save-badge {
    background: #ff6c63;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 12px;
}

.old-price {
    text-decoration: line-through;
    color: #d9534f;
    font-size: 0.9rem;
}

.new-price {
    color: #0c3c78;
    font-size: 1.25rem;
    font-weight: 700;
}

.btn-dates {
    background: #e56b2f;
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
}

.btn-disabled {
    background: #e6e6e6;
    border-radius: 25px;
    color: #9d9d9d;
    padding: 10px 22px;
    font-weight: 600;
}

.table-row {
    padding: 18px 0;
    border-bottom: 1px solid #e8e8e8;
}

.review-wrapper {
    background: #f3f8fc;
}

.review-card {
    transition: 0.2s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08) !important;
}


/* Wrapper */
.batch-ui {
    width: 300px;
    color: #fff;
}

/* Label */
.batch-label {
    font-size: 16px;
    font-weight: 600;
}

/* Select */
.batch-select {
    width: 110px;
    border-radius: 10px;
    font-size: 14px;
    padding: 6px 12px;
}

/* Card */
.batch-card {
    border-radius: 16px;
    background: #fff;
}

/* Batch item */
.batch-item {
    border: 2px solid #d5dbe3;
    border-radius: 10px;
    padding: 14px;
    text-align: center;
    font-size: 15px;
    color: #1e2a3a;
    cursor: pointer;
}

/* Active batch */
.batch-item.active {
    background: #e9eaec;
    border: 2px solid #ff3b3b;
}