.tour-detail-banner {
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    padding-bottom: 80px;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.tour-detail-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.tour-detail-title {
    z-index: 2;
    background-color: #ffc107;
    color: #212529;
    font-size: 2.2rem;
    font-weight: 700;
    padding: 8px 25px 8px 15px;
    margin-bottom: 5px;
    align-self: flex-start;
    line-height: 1.2;
    position: relative;
}

.tour-detail-title::after {
    content: "";
    position: absolute;
    top: 0;
    right: -40px;
    width: 60px;
    height: 100%;
    background: #ffc107;
    transform: skewX(-35deg);
}

.tour-detail-subtitle {
    z-index: 2;
    background-color: rgba(220, 220, 220);
    color: #212529;
    font-size: 1.1rem;
    padding: 5px 20px 5px 15px;
    margin-bottom: 20px;
    align-self: flex-start;
    position: relative;
}

.tour-detail-subtitle::after {
    content: "";
    position: absolute;
    top: 0;
    right: -25px;
    width: 40px;
    height: 100%;
    background: rgba(220, 220, 220);
    transform: skewX(-35deg);
}

.tour-detail-button {
    position: absolute;
    bottom: 100px;
    right: 15px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dc3545;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.2s;
}

.tour-detail-button:hover {
    background-color: #c82333;
}

.tour-detail-button i {
    margin-right: 5px;
}

/* responsive */
@media (max-width: 768px) {
    .tour-detail-title {
        font-size: 1.4rem;
        padding: 6px 16px 6px 10px;
    }

    .tour-detail-title::after {
        right: -14px;
        width: 22px;
        transform: skewX(-30deg);
    }

    .tour-detail-subtitle {
        font-size: 0.9rem;
        padding: 4px 14px 4px 10px;
        margin-bottom: 10px;
    }

    .tour-detail-subtitle::after {
        right: -12px;
        width: 18px;
        transform: skewX(-30deg);
    }

    .tour-detail-button {
        bottom: 30px;
        right: 10px;
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .tour-detail-title {
        font-size: 1.2rem;
        padding: 5px 14px 5px 8px;
    }

    .tour-detail-title::after {
        right: -10px;
        width: 18px;
        transform: skewX(-28deg);
    }

    .tour-detail-subtitle {
        font-size: 0.85rem;
        padding: 3px 12px 3px 8px;
    }

    .tour-detail-subtitle::after {
        right: -8px;
        width: 14px;
        transform: skewX(-28deg);
    }

    .tour-detail-button {
        bottom: 25px;
        right: 8px;
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

.white-box {
    border-radius: 10px;
    background: #FFF;
    padding: 10px;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.08);
}


.tour-get-in-touch {
    /* Background and text color */
    background-color: #000000;
    color: white;

    /* Ensure a consistent height or sufficient padding */
    min-height: 180px; /* Adjust this to match the height of the col-8 box */
    border-radius: 5px; /* Subtle rounding of corners */
}

/* Styling for the main heading */
.tour-get-in-touch h5 {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    /* Optional: Add a yellow line/border under the title for emphasis */
    padding-bottom: 5px;
    border-bottom: 1px solid #ffc107;
}

/* Styling for the icon/text rows */
.tour-get-in-touch .d-flex {
    font-size: 0.95rem;
}

/* Styling for the icons */
.tour-get-in-touch i {
    color: #ffc107; /* Yellow color for the icons */
    font-size: 1.1rem;
    min-width: 20px; /* Ensure icons align well */
    text-align: center;
}

/* Custom CSS to define the exact gap */
.nav-with-gap {
    top: 80px;
}

html {
    scroll-padding-top: 150px;
}

.fix-dates-accordion {
    margin: 0 auto;
}

/* Style for the individual accordion item container */
.accordion-item {
    border: none;
    border-radius: 8px; /* Apply rounding to the whole item */
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); /* Subtle shadow around the accordion item */
}

/* Style for the green header button */
.fix-dates-header {
    /* Using bg-success for green, but custom styling for shape and color */
    background-color: var(--bs-success); /* Use Bootstrap green */
    color: white !important;
    font-size: 1.1rem;
    text-align: center;
    border-radius: 8px !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    box-shadow: none !important;
}

/* Header state when NOT collapsed (i.e., open) */
.fix-dates-header:not(.collapsed) {
    background-color: #218838; /* Darker green when open */
    color: white !important;
    border-bottom: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

/* Style the arrow color to white */
.fix-dates-header::after {
    filter: brightness(0) invert(1); /* Turns the dark arrow icon white */
}

/* Style for the beige content body */
.departure-body {
    background-color: #f9f9f4; /* Beige background color */
    border: none;
    /* Ensure the bottom corners are rounded if the item is not followed by another */
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Style for the individual date line */
.date-line {
    /* Match the font size/style of the text inside the beige box */
    font-size: 1rem;
    padding: 2px 0;
    margin-bottom: 0;
}

/* Style for the 'OPEN' status text */
.open-status {
    color: #007bff; /* Standard Bootstrap blue for the 'OPEN' link look */
    font-weight: 700;
}

/* Ensure the date text is properly aligned */
.date-label {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.colored-box {
    border-radius: 10px;
    background: linear-gradient(125deg, rgba(99, 171, 69, 0.1) 0%, rgba(251, 176, 59, 0.1) 100%);
    border-radius: 5px;
    padding: 25px 25px;
}


.package-details-area ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 0;
}

.package-details-area li {
    padding-left: 1.5em;
    text-indent: -1.1em;
    margin-bottom: 8px;
    line-height: 1.5;
}

.package-details-area li::before {
    content: "•";
    color: #dc3545;
    font-size: 1.3em;
    margin-right: 0.5em;
    font-weight: bold;
    line-height: 0;
}

.package-details-area .accordion-header {
    margin-bottom: 0;
}


.trek-essentials-container {

}

/* Global UL reset for navigation lists - important for removing default bullets */
.trek-essentials-container .nav {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

/* ---------------------------------------
   LEVEL 1: Main Tabs (Personal, Provided)
   --------------------------------------- */

/* Ensure the main UL itself is clean */
.trek-essentials-container .main-tabs-list {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

/* General style for all Level 1 buttons (Active and Inactive) */
.trek-essentials-container .main-tabs-list .nav-link {
    color: #dc3545 !important;
    background-color: white !important; /* Inactive background is white */
    border: 1px solid #dc3545; /* Inactive pills have red border */
    border-radius: 50rem; /* Pill shape */
    padding: 8px 16px;
    transition: all 0.2s ease;
    font-weight: 500;
    margin-right: 15px; /* Space between buttons */
}

/* Active Level 1 Tab */
.trek-essentials-container .main-tabs-list .nav-link.active {
    background-color: #dc3545 !important;
    color: white !important;
    border-color: #dc3545;
    font-weight: 600;
}

/* REMOVE DOTS/BULLETS from Level 1 */
.trek-essentials-container .main-tabs-list .nav-item::before,
.trek-essentials-container .main-tabs-list .nav-item:not(:first-child)::before {
    content: none;
}


/* ---------------------------------------
   LEVEL 2: Nested Pills (Basic Gear, Clothes)
   --------------------------------------- */

.trek-essentials-container .subtabs-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 1.5rem;
}

.trek-essentials-container .subtabs-list .nav-item {
    margin-right: 8px; /* Space between each pill/item */
    margin-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

/* Style for all Level 2 buttons */
.trek-essentials-container .subtabs-list button {
    border-radius: 50rem;
    font-weight: 500;
    padding: 4px 12px;
    border: 1px solid #dc3545; /* Outline border */
    color: #dc3545;
    background-color: white;
    transition: background-color 0.2s;
}

/* Active Level 2 Pill */
.trek-essentials-container .subtabs-list .btn-danger.active {
    background-color: #dc3545 !important;
    color: white !important;
    font-weight: 600;
}

/* REMOVE DOTS/BULLETS from Level 2 */
.trek-essentials-container .subtabs-list .nav-item::before,
.trek-essentials-container .subtabs-list .nav-item:last-child::after,
.trek-essentials-container .subtabs-list .nav-item:first-child::before {
    content: none;
}


.package-details-area a {
    color: #1577fd;
}

.tour-detail-banner {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat;
}

.top-bar.style-2 .topbar-right::after {
    display: none;
}

.top-bar.style-2 {
    background-color: #ffde58;
}

header.style-1 {

}

.home1-banner-area .home1-banner-wrapper .home1-banner-content h1,
.home1-banner-area .home1-banner-wrapper .home1-banner-content h2 {
    font-size: 45px;
}

.top-bar.style-2 .topbar-right .social-icon-area ul li a {
    border-color: #000;
    color: #000;
}

.social-icon-area .icon-facebook a {
    background-color: #1877F2;
    color: #fff !important;
    border-color: #042E64 !important;
}

.social-icon-area .icon-instagram a {
    background-color: #C13584;
    color: #fff !important;
    border-color: #833AB4 !important;
}

.social-icon-area .icon-youtube a {
    background-color: #FF0000;
    color: #fff !important;
    border-color: #FF0000 !important;
}

.top-bar .topbar-right {
    max-width: 320px;
}

.home1-banner-bottom .filter-wrapper .nav-buttons {
    opacity: 0;
}

/*@media (min-width: 1400px) {*/
    .home1-banner-area,
    .home1-banner-bottom {
        padding: 0;
    }
    .home1-banner-area .container-fluid,
    .home1-banner-bottom .container-fluid {
        width: 100%;
        padding: 0;
    }
    .home1-banner-area .home1-banner-wrapper,
    .home1-banner-bottom .filter-wrapper .filter-group,
    .home1-banner-bottom .filter-wrapper .filter-group form button{
        border-radius: 0;
    }
/*}*/

@media (min-width: 1400px) {
    /*.home1-banner-area .home1-banner-wrapper .home1-banner-content h1 {
        min-height: 120px;
    }*/
}

.video-outer {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 * 100%) */
}
.video-outer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.blog-stats {
    display: none;
}

.blog-title-modern a {
    color: var(--primary-color1) !important;
}