.inner_menu {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.navbar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.mobileDiv.nav-link {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text); 
    border-radius: 30px;
    background: var(--bg-color);
    transition: var(--transition);
}

.mobileDiv.nav-link:hover {
    background: var(--theme-color); 
    color: var(--white);
}

.mobileDiv.nav-link i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.mobileDiv {
    display: flex;
    overflow-x: auto;
    width: 100%;
    white-space: nowrap;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
}

.mobileDiv::-webkit-scrollbar { height: 6px; }
.mobileDiv::-webkit-scrollbar-thumb { background: var(--theme-color); border-radius: 4px; }

.package_details {
    padding-top: 25px;
    padding-bottom: 25px;
    margin: 10px;
}

.page-scroll {
    scroll-margin-top: 110px; 
}

.sub_title {
    font-size: 1.5rem;
    color: var(--theme-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--theme-color);
    font-weight: 700;
    position: relative;
}

.sub_title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--highlight-color); 
}

.itinerary-info {
    background: var(--white);
    padding: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.package_quick_info {
    background: #f0fdf4; 
    padding: 15px;
}

.glance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
}

.highlight_info{
    margin: 10px;
}

.info {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
}

.item_list {
    display: flex;
    align-items: center;
    background: var(--bg-color);
    padding: 5px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.item_list:hover {
    background: #eef2ff;
    transform: translateY(-3px);
}

.item_list .icon {
    font-size: 1.8rem;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    color: var(--theme-color); 
}

.item_list .text {
    display: flex;
    flex-direction: column;
}

.info-title {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.highlight_points {
    padding: 10px;
    border-left: 4px solid var(--theme-color);
    padding-left: 10px;
    background: var(--white);
}

.accordion-itinerary .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 12px;
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-itinerary .accordion-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.accordion-header {
    margin: 0;
    background: var(--bg-color);
}

.accordion-button {
    width: 100%;
    text-align: left;
    padding: 10px 25px;
    background: var(--bg-color);
    border: none;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--theme-color);
    color: var(--accent-color);
}

/* Hover State (Closed) */
.accordion-button:hover:not(.collapsed) {
    background: var(--theme-color); 
}

.accordion-button:hover {
    background: var(--brand-light); 
    color: var(--white);
}

.accordion-body {
    padding: 15px;
    background: var(--white);
}

.accordion-body p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.itinerary-details {
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px dashed var(--border-color);
    list-style: none;
}

.itinerary-details li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text);
    display: flex;
    align-items: center;
}

.list-group {
    background: none !important;
}

.list-group-item {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-bottom: 1px solid var(--bg-color);
    color: var(--text);
    font-size: 0.95rem;
}

.list-group-item:last-child {
    border-bottom: none;
}

.sidebar-price-card {
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: sticky;
    top: 90px;
    z-index: 90;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.sidebar-price-header {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--secondary) 100%);
    padding: 15px 10px;
    color: var(--white);
    text-align: center;
    position: relative;
}

.sidebar-price-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 20%);
    pointer-events: none;
}



.sidebar-price-info {
    margin-top: 20px;
}

.price-label {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    opacity: 0.9;
    display: block;
    margin-bottom: 5px;
}

.price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.sidebar-original-price {
     font-size: 17px!important;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
}

.sidebar-discounted-price {
    font-size: 16px!important;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.save-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.group-pricing-section {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-mini-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.custom-price-table {
    width: 100%;
    border-collapse: collapse;
}

.custom-price-table tr {
    border-bottom: 1px dashed var(--border-color);
    transition: background 0.2s;
}

.custom-price-table tr:last-child {
    border-bottom: none;
}

.custom-price-table tr:hover {
    background: var(--bg-color);
}

.custom-price-table td {
    padding: 12px 0px;
    font-size: 14px;
}

.label-col {
    color: var(--text-light);
    font-weight: 600;
}

.price-col {
    text-align: right;
    color: var(--brand-dark);
    font-weight: 700;
}

.why-book-section {
    padding: 15px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 5px 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text);
    transition: background 0.2s;
}

.benefits-list li:hover {
    background: #f7f9fc;
}

.benefits-list li i {
    color: var(--brand-dark);
    margin-right: 12px;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.sidebar-cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}




.help-contact {
    background: #fbfbfb;
    padding: 15px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.help-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #25D366;
    font-weight: 700;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(37, 211, 102, 0.1);
    transition: all 0.3s;
}

.whatsapp-link:hover {
    background: #25D366;
    color: #fff;
    text-decoration: none;
}
@media (max-width: 991px) {
    .sidebar-price-card {
        position: static;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

.trip-hero {
    --overlay-color: rgba(11, 77, 89, 0.7);
    height: 500px;
    min-height: 400px;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.trip-hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-color);
}

.trip-hero__content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.trip-hero__title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.gears_info {
    background: #e9ecef;
    padding: 15px;
    margin-bottom: 10px;
}

.gallery-item {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow); 
    transition: var(--transition);
    height: 100%; 
}

.gallery-item:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    width: 100%;
    background-color: #ddd;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 77, 89, 0.7), rgba(22, 36, 61, 0.8)); 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(3px); 
    margin: 0;
    z-index: 2;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
    transform: translateY(30px); 
    transition: transform 0.4s ease;
    padding: 0 20px; 
}

.gallery-item:hover .overlay-content {
    transform: translateY(0); 
}

.overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    color: var(--theme-color); 
    background: rgba(255,255,255,0.9);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px auto;
}

.overlay-content span {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}


@media (max-width: 991px) {
    .sidebar-price-card {
        position: static;
        margin-top: 40px;
    }
    
    .glance-grid {
        grid-template-columns: 1fr; 
    }
    
    .inner_menu {
        position: relative; 
    }
}

@media (max-width: 768px) {
    .trip-hero {
        height: 300px;
        min-height: 300px;
    }

    .trip-hero__title {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .highlight_points li {
     margin-bottom: 5px;
     padding-left: 5px;
 }

 .review-content {
    padding-left: 0px;
}
}

@media (max-width: 767px) {
    .gallery-item {
        border-bottom: 2px solid var(--bg-color); 
    }
}

.review-section {
    margin-top: 20px;
}

.review-item {
    background: #f8f9fa; /* light gray background */
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.review-avatar {
    width: 50px;
    height: 50px;
    background-color: #0b4d59; /* teal */
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.review-content {
    font-size: 0.95rem;
    color: #333;
}

.review-header h5 {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.review-rating {
    font-size: 0.9rem;
}

.review-text {
    margin-top: 5px;
    line-height: 1.5;
    font-style: italic;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .review-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-avatar {
        margin-bottom: 10px;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}