.single-tour-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}
.tour-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.tour-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.left-section {
    flex: 1;
}
.tour-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}
.tour-review {
    margin: 10px 0;
    font-size: 14px;
}
.right-section {
    display: flex;
    align-items: center;
    gap: 20px;
}
.tour-actions a {
    font-size: 16px;
    color: #004aad;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tour-actions a:hover {
    color: #000;
}
.breadcrumbs {
    font-size: 14px;
    margin-bottom: 10px;
}
.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
}
.breadcrumbs span {
    color: #555;
}
@media (max-width: 768px) {
    .tour-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .right-section {
        margin-top: 10px;
    }
    .tour-actions a {
        font-size: 14px;
        gap: 5px;
    }
}
.tour-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .tour-buttons {
        width: 100%;
        justify-content: center;
    }
}
.group-tour-button {
    border: 1px solid #008000;
    display: flex;
    align-items: center;
    padding: .625rem;
    background-color: transparent;
    color: #008000;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}
.group-tour-button a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: inherit;
    font-size: inherit;
    transition: color 0.3s;
}
.group-tour-button svg {
    margin-right: 8px;
    transition: fill 0.3s;
}
.group-tour-button svg:first-child {
    margin-right: 4px;
}
.group-tour-button:hover {
    background-color: #008000;
    color: white;
}
.group-tour-button:hover a {
    color: white;
}
.group-tour-button:hover svg {
    fill: white;
}
.luxury-tour-button {
    border: 1px solid #f5921a;
    display: flex;
    align-items: center;
    padding: .625rem;
    background-color: transparent;
    color: #f5921a;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}
.luxury-tour-button a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: inherit;
    font-size: inherit;
    transition: color 0.3s;
}
.luxury-tour-button svg {
    margin-right: 8px;
    transition: fill 0.3s;
}
.luxury-tour-button svg:first-child {
    margin-right: 4px;
}
.luxury-tour-button:hover {
    background-color: #f5921a;
    color: white;
}
.luxury-tour-button:hover a {
    color: white;
}
.luxury-tour-button:hover svg {
    fill: white;
}
.private-tour-button {
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    padding: .625rem;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}
.private-tour-button a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: inherit;
    font-size: inherit;
    transition: color 0.3s;
}
.private-tour-button svg {
    margin-right: 8px;
    transition: fill 0.3s;
}
.private-tour-button svg:first-child {
    margin-right: 4px;
}
.private-tour-button:hover {
    background-color: var(--primary-color);
    color: white;
}
.private-tour-button:hover a {
    color: white;
}
.private-tour-button:hover svg {
    fill: white;
}
.tour-buttons .group-tour-button a i,
.tour-buttons .private-tour-button a i,
.tour-buttons .luxury-tour-button a i {
    margin-right: 8px;
}
.tour-buttons .group-tour-button a span,
.tour-buttons .private-tour-button a span,
.tour-buttons .luxury-tour-button a span {
    margin-right: 8px;
}
.single-tour-description {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}
.quick-infos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.info i {
    font-size: 24px;
    color: var(--primary-color);
}
.info span {
    font-weight: bold;
}
.info div {
    color: #555;
}
@media (max-width: 768px) {
    .quick-infos {
        grid-template-columns: repeat(2, 1fr);
    }
    .single-tour-description {
        flex-direction: column;
        gap: 20px;
    }
}
.content-section {
    flex: 1;
    padding: 5px;
}
.content-section p {
    line-height: 24px;
}
.content-section li::marker {
    color: var(--primary-color);
}
.content-section a {
	color: var(--primary-color);
	text-decoration: none;
}
.content-section a:hover {
	text-decoration: underline;
}
.heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    margin: 20px 0;
    padding: 10px 0px;
}
.heading i {
    color: var(--primary-color);
    font-size: 28px;
}
.tour-highlights-list {
    padding-left: 20px;
    margin: 10px 0;
}
.tour-highlights-list li {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    display: flex;
    align-items: center;
}
.tour-highlights-list li i {
    margin-right: 10px;
    color: #008000;
}
.tour-highlights-list li:last-child {
    margin-bottom: 20px;
}
.tour-map {
    text-align: center;
    margin-top: 20px;
}
.tour-map-image {
    max-width: 100%;
    height: auto;
    border: 2px solid #004aad;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    user-select: none;
}
@media (max-width: 768px) {
    .tour-map-image {
        max-width: 90%;
    }
}
.group-price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.group-price-table th,
.group-price-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}
.group-price-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
}
.group-price-table .heading {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.group-price-table i {
    margin-right: 10px;
}
.tour-details-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.inclusion-section ul,
.exclusion-section ul {
    list-style-type: none;
    padding-left: 0;
}
.inclusion-section li,
.exclusion-section li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.inclusion-section i,
.exclusion-section i {
    margin-right: 10px;
    flex-shrink: 0;
}
.inclusion-section li span,
.exclusion-section li span {
    word-wrap: break-word;
    flex-grow: 1;
}
.inclusion-section i {
    color: #008000;
}
.exclusion-section i {
    color: red;
}
@media (max-width: 768px) {
    .tour-details-container {
        flex-direction: column;
        gap: 20px;
    }
}
.aside-section {
    width: 300px;
    position: sticky;
    top: 20px;
    align-self: flex-start;
    padding: 20px;
    
}
.goback-wrapper {
    margin: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.goback-wrapper a {
    color: var(--text-color);
    font-family: Inter, serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 20.8px;
    letter-spacing: 0.16px;
    display: block;
    width: max-content;
    padding: 0.75rem 2.25rem;
    border-radius: 48px;
    border-width: 1px;
    border-style: solid;
    border-color: var(--primary-color);
    cursor: pointer;
    text-align: center;
}
.goback-wrapper a:hover {
    color: var(--primary-color);
}
.tour-price-box {
    padding: 20px;
    text-align: center;
    background-color: #004aad29;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.tour-price {
    font-size: 28px;
    font-weight: bold;
    color: #008000;
}
.tour-price-label {
    font-size: 14px;
    color: #666;
}
.tour-price-box hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 15px 0;
}
.tour-benefits {
    text-align: left;
    margin-bottom: 15px;
}
.benefit {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}
.benefit i {
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 10px;
}
.book-tour-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    font-size: 16px;
    padding: 12px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid var(--primary-color);
}
.book-tour-button i {
    margin-left: 8px;
}
.book-tour-button:hover {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
@media (max-width: 768px) {
    .aside-section {
        align-self: center;
    }
}
.aside-heading {
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
}
.travel-option-box {
    display: block;
    background: rgba(0, 0, 0, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 4px solid;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s ease, transform 0.2s ease;
}
.travel-option-box:hover {
    transform: translateY(-3px);
}
.travel-option-box .icon-title {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}
.travel-option-box .icon-title i {
    margin-right: 8px;
    font-size: 16px;
}
.travel-option-box p {
    margin: 5px 0;
    font-size: 14px;
    color: #333;
}
.group-tour {
    border-color: #008000;
    background: rgba(0, 128, 0, 0.1);
}
.luxury-tour {
    border-color: #f5921a;
    background: rgba(245, 146, 26, 0.1);
}
.private-tour {
    border-color: var(--primary-color);
    background: rgba(0, 74, 173, 0.1);
}
.itinerary-accordion {
    max-width: 800px;
    margin: 20px auto;
    position: relative;
}
.itinerary-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}
.itinerary-item::before {
    content: "\f0a4";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
    color: var(--primary-color);
    position: absolute;
    left: 3px;
    top: 10px;
}
.itinerary-day {
    font-size: 14px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
    display: block;
}
.itinerary-title {
    font-size: 16px;
    font-weight: bold;
    display: block;
    color: #000;
}
.tour-item {
    border-bottom: 1px solid var(--primary-color);
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}
.tour-question {
    width: 100%;
    background: #004aad29;
    font-weight: 600;
    font-size: 16px;
    padding: 15px;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    font-family: inherit;
}
.tour-icon {
    font-size: 22px;
    transition: transform 0.3s ease;
}
.tour-answer {
    display: none;
    padding: 15px;
    background: #004aad14;
    font-size: 16px;
}
.tour-answer a {
    color: var(--primary-color);
    text-decoration: none;
}
.tour-answer a:hover {
    text-decoration: underline;
}
.tour-item.active .tour-answer {
    display: block;
}
.tour-item.active .tour-icon {
    transform: rotate(45deg);
}
.tour-review-section {
    text-align: center;
    margin-top: 20px;
}
.review-summary {
    display: inline-block;
}
.stars {
    font-size: 24px;
    margin: 0;
}
.review-count {
    font-size: 14px;
    color: #666;
}
.write-review-link {
    display: block;
    margin-top: 8px;
    font-size: 16px;
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
}
.tour-review-form {
    display: none;
    width: 100%;
    box-sizing: border-box;
}
.tour-review-form input,
.tour-review-form select,
.tour-review-form textarea,
.tour-review-form button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
}
.tour-review-form textarea {
    resize: none;
}
.tour-review-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    font-size: 16px;
    padding: 12px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    box-sizing: border-box;
}
.tour-review-form button:hover {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.customer-reviews {
    margin-top: 20px;
    text-align: left;
}
#review-container {
    display: block;
}
.customer-review {
    background: #e5f2e5;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.review-header {
    margin-bottom: 10px;
}
.reviewer-name {
    font-weight: bold;
    margin-bottom: 5px;
}
.review-rating {
    color: gold;
    margin-bottom: 10px;
}
.review-body {
    font-size: 16px;
}
.latest-review-section {
    text-align: center;
    margin-top: 20px;
}
#load-more-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    font-size: 16px;
    padding: 12px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    box-sizing: border-box;
    margin: 20px auto;
    width: fit-content;
}
#load-more-reviews:hover {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.featured-gallery {
    width: 100%;
    overflow: hidden;
}
.featured-gallery {
    width: 100%;
    overflow: hidden;
}
.gallery-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.gallery-item {
    flex: 1;
}
.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
}
@media screen and (max-width: 768px) {
    .gallery-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
    }
    .gallery-item {
        min-width: 100%;
        scroll-snap-align: center;
    }
}
.related-tours {
    margin-top: 0px;
}
.related-tours h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.related-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.related-tour-item {
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.related-tour-link {
    text-decoration: none;
    color: inherit;
}
.related-tour-image {
    position: relative;
	z-index: -1;
}
.related-tour-image img {
    width: 100%;
    height: 200px;
    pointer-events: none;
    user-select: none;
}
.tour-type-ribbon {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 5px;
}
.related-rating {
    margin: 10px 0;
    font-size: 14px;
}
.related-rating span {
    font-weight: bold;
}
.related-tour-title {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}
.related-destination {
    display: flex;
    flex-wrap: wrap;
}
.subcategory-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
    color: var(--primary-color);
    text-decoration: none;
}
.subcategory-featured-image {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.subcategory-details {
    display: flex;
    align-items: center;
}
.subcategory-header {
    display: flex;
    align-items: center;
}
.subcategory-flag {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.subcategory-name {
    font-size: 14px;
}
.related-duration-and-price {
    display: flex;
    justify-content: space-between;
    color: #008000;
}
.related-duration-and-price .left, .related-duration-and-price .right {
    display: flex;
    align-items: center;
}
.related-duration-and-price .left i {
    margin-right: 5px;
}
@media screen and (max-width: 768px) {
    .related-tours-grid {
        grid-template-columns: 1fr;
    }
    .tour-type-ribbon {
        font-size: 12px;
        padding: 4px 8px;
    }
    .subcategory-featured-image {
        width: 16px;
        height: 16px;
    }
    .subcategory-flag {
        width: 16px;
        height: 16px;
    }
}
body.no-scroll {
    overflow: hidden;
}
.booking-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease-in-out;
    overflow-y: auto; /* Ensure scrolling in case of long content */
}

.booking-popup a {
    text-decoration: none;
    color: var(--primary-color);
}

.booking-popup-content {
    background: #ebf1f9;
    padding: 15px;
    width: 60%;
    max-width: 700px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.booking-popup.show {
    display: flex;
}

.booking-popup.show .booking-popup-content {
    opacity: 1;
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

.booking-form-details {
    flex: 1;
    text-align: center;
}

.booking-form-details img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    pointer-events: none;
    user-select: none;
}

.booking-form-details h2 {
    margin-top: 10px;
    font-size: 20px;
}

.booking-form-details p {
    margin: 5px 0;
}

.booking-form-info {
    flex: 2;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .booking-popup {
        align-items: flex-start; /* Ensures the popup content is fully visible */
    }

    .booking-popup-content {
        flex-direction: column;
        width: 90%;
        overflow-y: auto;
    }
}
.booking-confusion {
    border-radius: 0px 0px 0px 8px;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(230, 168, 10);
    background: rgba(230, 168, 10, 0.1);
    padding: 1.2rem;
    margin-top: 1rem;
    text-align: center;
}
.confusion-heading {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}
.confusion-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.confusion-contact i {
    font-size: 1.5rem;
    color: #25D366;
}
.confusion-phone {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}
.form-row {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    margin-bottom: 15px;
}
.form-field {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}
.form-label i {
    font-size: 18px;
    color: var(--primary-color);
}
#full-name, #email, #phone, #total-travelers, #start-date, #nationality {
    width: 85%;
    padding: 12px;
    border-radius: 5px;
    border: 2px solid var(--primary-color);
    outline: none;
}
#booking-conditions {
    height: 120px;
    resize: none;
}
#start-date {
    cursor: pointer;
}
#nationality {
    background: #fff;
    cursor: pointer;
    width: 95%;
}
#full-name:focus, #email:focus, #phone:focus, #total-travelers:focus, #start-date:focus, #nationality:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}
.full-width-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    box-sizing: border-box;
    width: fit-content;
}
.full-width-btn:hover {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 20px;
}
table th {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    border-bottom: 2px solid var(--primary-color);
}
table td {
    padding: 12px 15px;
    border-bottom: 2px solid var(--primary-color);
    border-top: 2px solid var(--primary-color);
    font-size: 0.95rem;
    color: #333;
}

table tr {
    background-color: #004aad29;
}
@media (max-width: 768px) {
    table {
        font-size: 0.85rem;
    }
    table th,
    table td {
        padding: 10px;
    }
}