ul,
ol,
li {
    list-style: none;
    display: block;

    padding: 0;

}

.tour-details-wrapper {
    padding: 20px 0;
}

.breadcrumb a {
    color: var(--para-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--main-color);
}

.tour-gallery {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    position: relative;
    max-height: 420px;
}


.tour-img img {
    width: 100%;
    /* max-height: 400px; */
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

.tour-gallery .tour-img:nth-child(1) {
    grid-area: 1 / 1 / 5 / 4;
}

.tour-gallery .tour-img:nth-child(2) {
    grid-area: 1 / 4 / 5 / 6;
}

.tour-gallery .tour-img:nth-child(3) {
    grid-area: 1 / 6 / 3 / 8;
}

.tour-gallery .tour-img:nth-child(4) {
    grid-area: 3 / 6 / 5 / 8;
}

.tour-gallery .tour-img:nth-child(n+5) {
    display: none;
}

/* Overlay button */
.more-img-overlay {
    padding: 0.5rem 1rem;
    min-width: 50px;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.3s;
    color: var(--white-color);
    right: 20px;
    bottom: 30px;
    border: none;
    backdrop-filter: blur(10px);
    border: 2px solid var(--white-color);
}

.more-img-overlay:hover {
    background-color: rgba(0, 0, 0, 0.75);
    box-shadow: var(--box-shadow);
}

.product-header {
    margin: 2rem 0;
}
/* .product-header p {
    text-align: justify;
} */

 .itinerary-header h2 {
 font-size: 1.5rem;
 }

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: var(--second-color);
    font-size: 16px;
}

.review-count {
    color: var(--para-color);
    font-size: 14px;
}

.product-title {
    font-size: clamp(1.5rem, 2rem, 1rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black-color);
}

.product-subtitle {
    color: var(--para-color);
    font-size: 16px;
    margin-bottom: 2rem;
}

/* Features */
.features {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.feature {
    display: flex;
    /* align-items: center; */
    gap: 0.75rem;
    padding: 1rem;
    background: var(--main-grey);
    border-radius: 8px;
}

.feature-icon {
    font-size: 24px;
    color: var(--main-color);
}

/* Expandable Sections */
.expandable-section {
    border-top: 1px solid #e0e0e0;
    padding: 1.5rem 0;
}

.expandable-section.show .section-content {
    margin-top: 1rem;
    height: 100%;
    opacity: 1;
    visibility: visible;
    overflow: auto;
    transition: 0.5s all ease-in-out;
}

.expandable-section.show .section-header::before {
    transform: rotate(0);
}

.section-header {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    text-transform: capitalize;
}

.section-header::before {
    width: 2rem;
    height: 2rem;
    content: "";
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 2rem;
    transition: transform 0.3s ease;
    position: absolute;
    right: 20px;
    color: var(--para-color);
    transform: rotate(180deg);
}

.section-content {
    color: var(--para-color);
    line-height: 1.8;
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
}

/* Itinerary Section */
.itinerary-section {
    margin: 3rem 0;
    padding: clamp(1rem, 2rem, 0.5rem);
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    border: 1px solid #e8e8e8;
}

.expand-all-btn {
    background: none;
    border: none;
    color: var(--main-color);
    font-size: 14px;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.expand-all-btn:hover {
    background: var(--light-color);
}

.itinerary-timeline {
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    margin-bottom: 1rem;
    position: relative;
    border: none;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 45px;
    bottom: -16px;
    width: 2px;
    background: #e8e8e8;
}



.timeline-marker {
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    content: "";
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' class='chevron' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' class='chevron' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z'/%3E%3C/svg%3E");

}

.accordion-button:not(.collapsed) {
    background-color: var(--main-grey);
}

.accordion-button:focus {
    box-shadow: none;
}

.start-marker,
.end-marker {
    background: var(--main-color);
    border-radius: 50%;
}

.marker-icon {
    color: var(--white-color);
    font-size: 18px;
}

.marker-dot {
    width: 12px;
    height: 12px;
    background: var(--main-color);
    border-radius: 50%;
    border: 3px solid var(--white-color);
    box-shadow: 0 0 0 2px var(--main-color);
}

.timeline-content {
    flex: 1;
    min-width: 0;
}

.day-item {
    background: var(--white-color);
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.day-item:hover {
    border-color: var(--main-color);
    box-shadow: 0 2px 8px rgba(0, 131, 145, 0.1);
}

.day-header-inline {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 1rem;
}


.day-label {
    font-weight: 600;
    color: var(--para-color);
    font-size: 14px;
}

.day-title {
    flex: 1;
    font-weight: 600;
    color: var(--black-color);
    font-size: 16px;
}


.day-details {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.activity-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f8f8f8;
}

.activity-item> img {
    width: 35%;
    height: 150px;
    float: right;
    border-radius: 12px;
    margin: 0 0 1rem 1rem;  
    object-fit: cover;
}

.activity-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.itinerary-feature img{
 width: 24px;
 height: 24px;
 margin-right: 3px;
}
.itinerary-feature {
    margin-top: 10px;
}
.itinerary-feature span{
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}
.activity-content p {
    color: var(--para-color);
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

.activity-content ul {
    padding-left: 1rem;
}

.activity-content ul li {
    color: var(--para-color);
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 5px;
    display: list-item;
    list-style: disc;
}

.include-content,
.exclude-content,
.note-content,
.higlights-content {
    flex: 1;
}

.include-content ul li::before {
    content: "\f00c";
    font: var(--fa-font-solid);
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--main-color);
}

.exclude-content ul li::before {
    content: "\58";
    font: var(--fa-font-solid);
    position: absolute;
    left: 0;
    top: 5px;
    color: #e74c3c;
}

.note-content ul li::before {
    content: "\f06a";
    font: var(--fa-font-solid);
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--para-color);
}

.higlights-content ul li::before {
    content: "\f591";
    font: var(--fa-font-solid);
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--main-color);
}

.include-content ul li,
.exclude-content ul li,
.note-content ul li,
.higlights-content ul li{
    position: relative;
    margin: 0 0 5px 0;
    padding-left: 20px;
}
.accommodation-content {
    flex: 1;
}


.accommodation-content table {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    border-collapse: unset !important;
    margin: 1rem auto;
}

.accommodation-content table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    border-collapse: collapse !important;
}
.accommodation-content table tbody tr:nth-child(1){
 background-color: var(--beige-color);
 color: var(--main-color);
}
.accommodation-content table tbody tr:nth-child(1) td{
    font-size: 16px;
    font-weight: 500;
}
.accommodation-content table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}


/* Booking Sidebar */
.booking-sidebar {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.date-selector,
.ticket-selector {
    margin-bottom: 1.5rem;
}

.selector-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.selector {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.selector:focus {
    border-color: var(--main-color);
}

.book-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--main-color), var(--third-color));
    color: var(--white-color);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.book-button:hover {
    transform: translateY(-2px);
}

.cancellation-policy {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 8px;
    font-size: 14px;
}

/* Reviews Section */
.reviews-section {
    margin: 3rem 0;
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.overall-rating {
    font-size: 3rem;
    font-weight: 700;
    color: var(--main-color);
}

.rating-details {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.rating-number {
    min-width: 20px;
    font-size: 14px;
}

.bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--second-color);
    transition: width 0.5s ease;
}

.review-card {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--main-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.reviewer-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.review-meta {
    font-size: 14px;
    color: var(--para-color);
}

/* Similar Products */
.similar-products {
    margin: 3rem 0;
}

.tour-section-title {
    font-size: clamp(1.5rem, 2rem, 1rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--black-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-column-gap: 1rem;
    grid-row-gap: 2rem;
}

.product-card {
    background: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image img {
    height: 200px;
    min-width: 100%;
    position: relative;
}

.product-content {
    padding: 1rem;
}

.product-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--main-color);
}

@media (max-width: 768px) {
    .main-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .image-gallery {
        grid-template-columns: 1fr;
        height: 300px;
    }

    .days-container {
        grid-template-columns: 1fr;
    }

    .header-container {
        padding: 1rem;
    }

    .search-bar {
        display: none;
    }
}

.sticky-booking {
    position: relative;
    height: 90%;
}

.booking-section {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    max-width: 400px;
    margin-top: 30px;
    margin-left: auto;
    position: sticky;
    top: 130px;
    border: 1px solid transparent;
    border-top: 5px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(to right, #3acfd5, #3a4ed5) border-box;
}

.booking-section h2 {
    color: var(--black-color);
    font-size: 24px;
    margin-bottom: 15px;
}
.booking-section img {
    margin-right: 5px;
}
.booking-section label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    color: var(--para-color);
    font-weight: 500;
}

.booking-section select,
.booking-section input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--main-grey);
    font-size: 16px;
    background-color: var(--main-grey);
    color: var(--black-color);
    cursor: pointer;
}

.booking-section a {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: var(--main-color);
    color: var(--white-color);
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    text-align: center;
}

.booking-section button:hover {
    background-color: var(--third-color);
}

.policy {
    display: flex;
    align-items: center;
    background-color: var(--main-grey);
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
    color: var(--black-color);
}

.policy svg {
    margin-right: 10px;
    fill: var(--main-color);
}

.info {
    margin-top: 15px;
    font-size: 14px;
    color: var(--para-color);
}

.info li {
    margin-bottom: 6px;
}

/* Mobile Booking Bar */
.mobile-booking-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem 2rem;
    z-index: 1000;
    border-top: 1px solid #e8e8e8;
}

.mobile-booking-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
}

.mobile-price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mobile-price-label {
    font-size: 12px;
    color: #e74c3c;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.mobile-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black-color);
}

.mobile-book-button {
    background: var(--main-color);
    color: var(--white-color);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.mobile-book-button:hover {
    background: var(--third-color);
}


.trip-brochure-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.trip-brochure-banner img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.tour-get-started {
    padding: 1rem 2rem;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 11px 1px -0.5px, rgba(42, 51, 70, 0.04) 1px 8px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    border-radius: 10px;
    margin-top: 1rem;
    background: var(--beige-color);
}

.trip-brochure-banner .content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--main-color);
}

.trip-brochure-banner .text h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: bold;
    color: var(--black-color);
}

.trip-brochure-banner .text p {
    margin: 0;
    font-size: 14px;
    color: var(--main-color);
}

.trip-brochure-banner .btn-effect-2 {
    background: var(--main-color);
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.trip-brochure-banner .btn-effect-2:hover {
    background: var(--white-color);
    color: var(--main-color);
}

.table-title {
    margin: 0;
}

.remove-table-btn {
    background: var(--second-color);
    border: none;
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.remove-table-btn:hover {
    background: #e59400;
    transform: scale(1.05);
}

.table-responsive {
    border-radius: 10px;
    box-shadow: var(--sharp-box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.tour-pricing-table {
    background: var(--white-color);
    border-radius: 0 0 20px 20px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border: none;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.tour-pricing-table thead {
    background: var(--light-color);
    color: var(--black-color);
}

.tour-pricing-table th {
    padding: 1rem;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.tour-pricing-table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.tour-pricing-table td {
    padding: 1.1rem;
    vertical-align: middle;
    color: var(--para-color);
    position: relative;
    transition: all 0.3s ease;
}

.tour-pricing-table tr {
    border-bottom: 1px solid var(--main-grey);
    transition: all 0.3s ease;
}

.tour-pricing-table tr:hover {
    background: linear-gradient(90deg, var(--light-color), var(--white-color));
    transform: scale(1.01);
    box-shadow: 0 4px 12px rgba(0, 131, 145, 0.05);
}

.row-number {
    font-weight: 600;
    color: var(--black-color);
    font-size: 1.1rem;
    text-align: center;
    width: 60px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--main-grey);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white-color);
    color: var(--para-color);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgba(0, 131, 145, 0.1);
    transform: scale(1.02);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.remove-row-btn {
    background: var(--second-color);
    border: none;
    color: var(--white-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.remove-row-btn:hover {
    background: #e59400;
    transform: scale(1.1) rotate(90deg);
}

.add-row-btn {
    background: linear-gradient(135deg, var(--main-color), var(--third-color));
    border: none;
    color: var(--white-color);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 2rem auto;
    display: block;
    width: auto;
}

.add-row-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 131, 145, 0.3);
}

/* Animations */
.tour-pricing-table tr {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease forwards;
}

.tour-pricing-table tr:nth-child(1) {
    animation-delay: 0.1s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-pricing-table tr:hover .form-input,
.tour-pricing-table tr:hover .form-select {
    border-color: var(--main-color);
}

/* Responsive */
@media (max-width: 768px) {
    .tour-pricing-table {
        font-size: 0.85rem;
    }

    .tour-pricing-table th,
    .tour-pricing-table td {
        padding: 1rem 0.75rem;
    }

    .form-input,
    .form-select {
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .table-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .table-responsive {
        border-radius: 15px;
    }

    .tour-pricing-table th,
    .tour-pricing-table td {
        padding: 0.75rem 0.5rem;
    }
}