
 :root {
    
}
body {
    font-family: Arial, sans-serif;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

/* Breadcrumb Styles */
.breadcrumbb ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumbb li {
    display: flex;
    align-items: center;
}

.breadcrumbb li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #999;
    font-size: 1.1rem;
}

.breadcrumbb a {
    text-decoration: none;
    color: #6b6a6a;
}

.breadcrumbb li:last-child {
    font-weight: bold;
}

  .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 15px;
        }
        
        .page-title {
            font-size: 36px;
            color: #222;
            text-align: center;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .rating-container {
            background-color: #f9f7f2;
            padding: 10px 0;
            text-align: center;
        }
        
        .rating-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .days-info {
            font-size: 16px;
            color: #333;
        }
        
        .separator {
            color: #999;
            margin: 0 5px;
        }
        
        .star-rating {
            color: #ffc107;
            display: inline-flex;
            align-items: center;
        }
        
        .rating-number {
            font-size: 16px;
            font-weight: 500;
            color: #333;
            margin-left: 6px;
        }
        
        .reviews-link {
            font-size: 16px;
            color: var(--blue);
            text-decoration: underline;
            cursor: pointer;
        }
        
        .reviews-link:hover {
            color: #c62828;
        }

/* Tour Gallery Styles */
.tour-gallery {
    margin: 25px 0;
}

.main-gallery-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
}

.main-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-gallery-container {
    display: flex;
    flex-direction: column;
    height: 400px;
    gap: 8px;
}

.side-gallery-image {
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 4px;
}

.side-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.side-gallery-image:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 500;
    cursor: pointer;
}

.gallery-overlay:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

/* Tour Info Styles */
.tour-meta {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.tour-duration, .tour-type {
    font-size: 0.9rem;
    color: var(--light-gray);
    font-weight: 500;
}

.tour-separator {
    margin: 0 8px;
    color: var(--light-gray);
}

.tour-title {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Price Box Styles */
.price-box {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding:0px 20px;
}

.price-from {
    font-size: 0.9rem;
    color: var(--light-gray);
}

.price-value {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 10px;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wishlist-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: white;
    border: 1px solid gray;
    border-radius: 4px;
    cursor: pointer;
}

.heart-icon {
  
}
.heart-icon:hover{
    color: var(--blue);
}

.heart-icon.active {
       color: var(--blue);

}

.book-btn {
    padding: 12px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}
.book-btn a{
    color: #fff;
}

.book-btn:hover {
    background-color: var(--blue);
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.gallery-modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    max-width: 1200px;
    width: 90%;
    height: 90%;
    margin: 2% auto;
    display: flex;
    flex-direction: column;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

/* Slider Styles */
.slider-container {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.slider-slides {
    height: 100%;
}

.slide {
    display: none;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.slide.active {
    display: flex;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}

.prev-slide {
    left: 20px;
}

.next-slide {
    right: 20px;
}

/* Thumbnails Styles */
.thumbnails-container {
    display: flex;
    gap: 10px;
    padding: 15px 0;
    overflow-x: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.thumbnail {
    width: 80px;
    height: 60px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail.active {
    opacity: 1;
    border-color: white;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .main-gallery-image {
        height: 250px;
    }
    
    .side-gallery-container {
        height: auto;
        flex-direction: row;
        margin-top: 8px;
    }
    
    .side-gallery-image {
        height: 120px;
    }
    
    .price-box {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .side-gallery-image {
        height: 100px;
    }
    
    .tour-title {
        font-size: 1.5rem;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
}

/* استایل کانتینر اصلی */
.trip-part-titles {
    background-color: #f6f4f0;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    transition: background-color 0.3s ease;
}

/* کانتینر منوی ناوبری */
.menu-nav-container {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

/* منطقه اسکرول - دقیقاً 7 آیتم را نمایش می‌دهد */
.menu-nav-wrapper {
    flex: 1;
    overflow: hidden;
    width: calc(100% - 80px); /* فضا برای دکمه‌های فلش */
    margin: 0 auto;
}

/* تنظیم عرض کلی برای نمایش دقیقاً 7 آیتم */
.trip-titles {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform 0.3s ease;
    width: max-content;
}

/* استایل هر آیتم منو */
.trip-title {
    padding: 20px 10px;
    list-style: none;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.trip-title a {
    color: #000;
    font-size: 1em;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* افکت هاور آیتم‌ها */
.trip-title:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.trip-title:hover a {
    color: var(--blue);
}

/* خط زیر آیتم در هنگام هاور */
.trip-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--blue);
    transition: width 0.3s ease;
}

.trip-title:hover::after {
    width: 100%;
}

/* استایل آیتم فعال */
.trip-title.active {
    background-color: rgba(0, 0, 0, 0.05);
}

.trip-title.active a {
    color: var(--blue);
    font-weight: 600;
}

.trip-title.active::after {
    width: 100%;
    background-color: var(--blue);
}

/* استایل دکمه‌های فلش */
.menu-nav-arrow {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border:none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    position: absolute;
    font-size: 1.2em;
}

.menu-nav-arrow:hover {
    
}

.menu-nav-prev {
    left: -20px;
    transform: translateX(0px);
    transition: transform 0.5s ease;
}

.menu-nav-prev:hover {
    transform: translateX(-3px);
}

.menu-nav-next {
    right: -20px;
    transform: translateX(0px);
    transition: transform 0.5s ease;
}

.menu-nav-next:hover {
    transform: translateX(3px);
}

/* فلش غیرفعال */
.menu-nav-arrow.disabled {
    opacity: 0;
    cursor: default;
    pointer-events: none;
}

/* واکنش‌گرایی برای صفحه‌نمایش‌های کوچک‌تر */
@media (max-width: 992px) {
    .trip-title {
        padding: 15px 8px;
    }
    
    .trip-title a {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .trip-title {
        padding: 12px 6px;
    }
    
    .trip-title a {
        font-size: 0.9em;
    }
    
    .menu-nav-arrow {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .menu-nav-wrapper {
        width: calc(100% - 70px);
    }
    
    .menu-nav-arrow {
        width: 30px;
        height: 30px;
    }
}

/* استایل نقشه قابل کلیک */
.trip-map {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    cursor: pointer;
}

.map-image {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.trip-map:hover .map-image {
    transform: scale(1.03);
}

.map-caption {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.8em;
    color: #666;
    background-color: rgba(255,255,255,0.7);
    padding: 2px 6px;
    border-radius: 3px;
}

/* استایل مودال نقشه */
.map-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20002;
}

.map-modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    padding-bottom: 20px;
    z-index: 1;
}

.map-title {
    padding: 15px 20px;
    margin: 0;
    font-size: 1.5em;
    border-bottom: 1px solid #eee;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    background: none;
    border: none;
    color: #333;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
}

.map-image-container {
    padding: 20px;
    text-align: center;
}

.enlarged-map {
    max-width: 100%;
    max-height: 70vh;
}

.modal-footer {
    text-align: center;
    padding: 10px 20px;
}

.close-btn {
    padding: 8px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

.close-btn:hover {
    background-color: #555;
}

/* Media Queries */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px auto;
    }
    
    .map-title {
        font-size: 1.3em;
    }
}


/* استایل کلی بخش اطلاعات تور */
.tour-info-section {
    /* background-color: #f8f8f8; */
    border: 1px solid #000;
    border-radius: 5px;
    /* padding: 25px 20px; */
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
}

/* ردیف‌های اطلاعات */
.tour-info-row {
    /* margin-bottom: 20px; */
    border-bottom: 1px solid #e5e5e5;
    /* padding-bottom: 10px; */
}

.tour-info-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* باکس هر مورد اطلاعات */
.info-box {
    padding: 10px;
    height: 100%;
}

/* عنوان هر مورد */
.info-heading {
    font-size: 1em;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* متن هر مورد */
.info-text {
    font-size: .9em;
    color: #333;
    margin: 0;
}

/* لینک‌ها */
.dest-link {
    color: var(--blue);
    text-decoration: none;
}

.dest-link:hover {
    text-decoration: underline;
}

/* نقاط رتبه‌بندی */
.rating-dots {
    display: flex;
    gap: 4px;
    margin-top: 5px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
}

.dot.filled {
    background-color: #333;
}

/* باکس اطلاعات کربن */
.carbon-box {
    background-color: #fff;
    border: 1px solid rgb(165, 165, 165);
    border-radius: 6px;
    padding: 15px 20px;
}

.carbon-box p {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.carbon-box p + p {
    margin-top: 10px;
}

.carbon-link {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
}

.carbon-link:hover {
    text-decoration: underline;
}

/* آیکون اطلاعات و تولتیپ */
.info-tooltip-container {
    position: relative;
    display: inline-block;
    margin-left: 5px;
}

.info-tooltip-container .info-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #ddd;
    color: #666;
    font-size: 0.8em;
    font-style: italic;
    cursor: pointer;
}

/* تولتیپ - حالت پایه مخفی */
.info-tooltip {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    background-color: #333;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: normal;
    z-index: 100;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

/* فلش تولتیپ */
.info-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* نمایش تولتیپ با کلیک */
.info-tooltip-container:hover .info-tooltip {
    display: block;
}

/* تغییر رنگ آیکون در هاور */
.info-tooltip-container:hover .info-icon {
    background-color: #999;
    color: white;
}

/* واکنش‌گرایی */
@media (max-width: 768px) {
    .tour-info-col {
        margin-bottom: 15px;
    }
    
    .info-text {
        font-size: 1em;
    }
    
    .info-tooltip {
        width: 220px;
        font-size: 0.8em;
    }
}

/* بخش چرا این سفر را دوست خواهید داشت */
.why-love-section {
    padding: 30px 0;
    /* background-color: #f9f9f9; */
    border-radius: 8px;
    display: flex;
}
.why-love-section .section-title{
    font-size: 2.5em ;
    width: 300px;
}
.why-love-section .section-header{
    width: 30%;
}
.why-love-cntnt{
    width: 70%;
}

/* عنوان بخش */
.section-title {
    font-size: 2em;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    padding: 0 20px;
}

/* لیست نکات برجسته */
.highlights-list {
    list-style: none;
    padding: 0 20px;
    margin: 0;
}

/* هر آیتم نکته برجسته */
.highlight-item {
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

/* نقطه آغاز هر آیتم */
.bullet-point {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background-color: var(--blue);
    border-radius: 50%;
    margin-top: 8px;
    margin-right: 15px;
}

/* محتوای هر نکته برجسته */
.highlight-content {
    flex: 1;
}

.highlight-content p {
    margin: 0;
    font-size: 1em;
    line-height: 1.6;
    color: #333;
}

/* واکنش‌گرایی */
@media (max-width: 992px) {
    .section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .why-love-section {
        padding: 20px 0;
    }
    
    .section-title {
        font-size: 1.6em;
    }
    
    .highlight-content p {
        font-size: 0.95em;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.4em;
    }
    
    .bullet-point {
        width: 6px;
        height: 6px;
        margin-top: 9px;
    }
}

/* Base styles for the itinerary section */
.itinerary-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    font-family: Arial, sans-serif;
}

.itinerary-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.itinrary-img{
    width: 30%;
}
.itinrary-img img{
    width: 100%;
}
.itinry-acordions{
    width: 70%;
}
.itinerry-section {
  display: flex;
  /* gap: 20px; */
  position: relative;
}

.itinrary-img {
  position: sticky;
  top: 20px; /* Adjust this value based on your header height */
  align-self: flex-start;
  max-height: calc(100vh - 40px); /* Viewport height minus margins */
  overflow-y: auto;
  width: 30%; /* Adjust as needed */
}

.afr-rev-content-wrapper {
  flex: 1;
  overflow-y: visible;
  height: auto;
}

/* Make sure the parent container has a defined height to enable proper scrolling */
#trip-reviews {
  position: relative;
}


/* Control bar for showing/hiding all itinerary items */
.itinerary-control {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 1rem;
    cursor: pointer;
    color: #333;
    font-weight: 500;
}

.itinerary-control:hover {
    color: #0077cc;
}

.dropdown-icon {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

/* Accordion item styling */
.itinerary-item {
    border-bottom: 1px solid #e0e0e0;
}

.itinerary-header {
    display: flex;
    align-items: center;
    padding: 1.5rem 1rem;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s ease;
}

.itinerary-header:hover {
    background-color: #f9f9f9;
}

.day-label {
    font-weight: normal;
    color: #555;
}

.location-label {
    font-weight: bold;
    color: #333;
}

.accordion-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
}

/* Styling for expanded accordion state */
.itinerary-item.active .accordion-icon {
    transform: rotate(180deg);
}

/* Content area styling */
.itinerary-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f9f9f9;
    padding: 0 1rem;
}

.itinerary-item.active .itinerary-content {
    max-height: 1000px; /* Arbitrary large value to ensure content fits */
    padding: 1rem;
    overflow-y: auto;
}

.welcome-text {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Detail sections styling */
.itinerary-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.detail-section {
    margin-bottom: 1.5rem;
}

.detail-heading {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: bold;
    color: #333;
    font-size: 1em;
}

.detail-heading img {
    margin-right: 0.5rem;
    width: 20px;
    height: 20px;
}

.detail-list {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    font-size: .9em;
}

.detail-list li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .itinerary-details {
        grid-template-columns: 1fr;
    }
}/* Special Information Section Styling */
.special-information {
    background-color: #f2f7ff;
    border-left: 4px solid var(--blue);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}

.special-info-heading {
    color: var(--blue);
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.special-information p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.special-information p:last-child {
    margin-bottom: 0;
}

.special-information strong {
    font-weight: 700;
    color: var(--blue);
}

        .activities-section {
            background-color: #f9f9f9;
            padding: 15px;
            border-radius: 5px;
            /* border: 1px solid #000; */
        }
        #inclusions .section-title {
            color: #333;
            margin-bottom: 35px;
            font-size: 22px;
            font-weight: 900;
            width: max-content;
        }
        .feature-icon {
            font-size: 16px;
            color: #333;
            width: 25px;
            display: inline-block;
        }
        .activity-list {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 8px;
        }
        .activity-list li {
            margin-bottom: 4px;
            position: relative;
            padding-left: 15px;
        }
        .activity-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #333;
        }
        .show-all {
            color: var(--blue);
            cursor: pointer;
            display: block;
            margin-top: 3px;
            text-decoration: none;
            font-size: 13px;
        }
        .section-item {
            margin-bottom: 15px;
        }
        .section-label {
            font-weight: bold;
            margin-bottom: 5px;
        }
        .section-content {
            padding-left: 25px;
            line-height: 1.3;
        }
        .optional-section {
            border-top: 1px solid #e5e5e5;
            padding-top: 15px;
            margin-top: 10px;
        }
        .hidden-activities {
            display: none;
        }


        .trip-info-section {
            display: flex;
            align-items: flex-start;
            padding: 10px 0;
        }
        .trip-info-section .section-title {
            color: #333;
            font-size: 2.5em;
            font-weight: 500;
            line-height: 1.2;
            width: 300px;
            padding-right: 20px;
        }
        .info-list {
            flex: 1;
        }
        .info-list ul {
            list-style-type: none;
            padding-left: 0;
        }
        .info-list li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 20px;
            line-height: 1.4;
        }
        .info-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #333;
        }
        .highlight {
            color: #0066cc;
        }


        .section-title {
            color: #333;
            margin-bottom: 20px;
            font-size: 28px;
            font-weight: 500;
        }
        .year-tabs, .month-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 15px;
        }
        .year-tab, .month-tab {
            padding: 8px 15px;
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 3px;
            cursor: pointer;
            font-size: 14px;
        }
        .year-tab:hover, .month-tab:hover ,.year-tab.active,  .month-tab.active {
            background-color: #222;
            color: white;
        }
        .month-tab.deactive {
            background-color: #cecece;
            color: gray;
        }
        .price-info {
            text-align: right;
            color: var(--blue);
            font-size: 14px;
            margin-bottom: 15px;
        }
        .price-info i {
            margin-left: 5px;
        }
        .travel-dates {
            width: 100%;
            border-collapse: collapse;
        }
        .travel-dates th {
            text-align: left;
            padding: 10px 0;
            border-bottom: 1px solid #e0e0e0;
            /* font-weight: 500; */
            color: #555;
        }
        .travel-dates td {
            padding: 15px 0;
            border-bottom: 1px solid #e0e0e0;
        }
        .accordion-row td:last-child, .travel-dates thead tr th:last-child {
            text-align: right !important;
        }
        .availability {
            color: var(--green);
            font-weight: 500;
            font-size: 14px;
        }
        .on-request {
            color: #666;
            font-size: 13px;
        }
        .accordion-row td:nth-child(4) {
            font-weight: 600;
            /* font-size: 18px; */
        }
        .original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 14px;
            font-weight: 400;
        }
        .dropdown-icon {
            margin-left: 5px;
        }
        .sale-tag {
            /* background-color: #e01919; */
            color:var(--blue);
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 12px;
            display: inline-block;
            border: 1px solid var(--blue);
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        
        /* Accordion Styles */
        .accordion-row {
            cursor: pointer;
        }
        .accordion-row:hover {
            background-color: #f8f8f8;
        }
        .accordion-content {
            display: none;
            padding: 20px;
            background-color: #f9f9f9;
            border-bottom: 1px solid #e0e0e0;
        }
        .trip-details {
            display: flex;
            gap: 20px;
        }
        .trip-dates {
            flex: 1;
            border-right: 1px solid #e0e0e0;
            padding-right: 20px;
        }
        .accommodation-details {
            flex: 2;
            background-color: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            padding: 15px;
        }
        .days-number {
            font-size: 30px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 5px;
        }
        .days-text {
            font-size: 12px;
            color: #555;
            margin-bottom: 15px;
        }
        .trip-milestone {
            position: relative;
            padding-left: 25px;
            margin-bottom: 20px;
        }
        .trip-milestone:before {
            content: "";
            position: absolute;
            left: 7px;
            top: 5px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid #333;
        }
        .trip-milestone:after {
            content: "";
            position: absolute;
            left: 11px;
            top: 15px;
            width: 2px;
            height: calc(100% + 10px);
            background: #ccc;
        }
        .trip-milestone:last-child:after {
            display: none;
        }
        .milestone-title {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            color: #555;
        }
        .milestone-location {
            font-weight: 500;
            margin-bottom: 3px;
        }
        .milestone-date {
            color: #777;
            font-size: 14px;
        }
        .twin-share {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        .price-main {
            font-size: 24px;
            font-weight: 700;
            text-align: right;
            margin-bottom: 5px;
        }
        .on-request-tag {
            font-size: 13px;
            color: var(--green);
        }
        .spaces-left {
            font-size: 13px;
        }
        .per-adult {
            font-size: 13px;
            color: #555;
            text-align: right;
            margin-bottom: 5px;
        }
        .twin-share-room {
            color: var(--blue);
        }
        .request-room {
           color: var(--blue);
            margin-bottom: 5px;
        }
        .view-details {
            font-size: 13px;
            color: var(--blue);
            text-align: right;
        }
        .request-booking {
            background-color: #222;
            color: white;
            border: none;
            padding: 10px;
            width: 100%;
            margin-top: 15px;
            border-radius: 3px;
            font-size: 14px;
            cursor: pointer;
        }
        .request-booking:hover {
            background-color: #000;
        }
        

        /* استایل برای فلش نشانگر آکاردیون */
.accordion-indicator {
    color: #555;
    font-size: .8em;
    transition: transform 0.3s ease;
     display: inline-block;
    margin-left: 3px;
    vertical-align: middle;
}

/* وضعیت فلش وقتی آکاردیون باز است */
.accordion-row.active .accordion-indicator {
    transform: translateY(-50%) rotate(180deg);
}

/* اضافه کردن استایل برای نشان دادن امکان کلیک */
.accordion-row {
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s;
}

.accordion-row:hover {
    background-color: #f7f7f7;
}

/* اضافه کردن یک خط کم‌رنگ زیر هر سطر برای مشخص‌تر کردن جدول */
.accordion-row td {
    position: relative;
    border-bottom: 1px solid #eee;
    padding-top: 12px;
    padding-bottom: 12px;
}

/* اطمینان از عدم تداخل فلش اصلی در ستون قیمت با فلش آکاردیون */
.dropdown-icon {
   
}

/* استایل دکمه "View more dates" */
.view-more-dates {
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    margin: 15px auto;
    display: block;
    transition: all 0.2s;
}

.view-more-dates:hover {
    background-color: #000;
    color: #fff;
}

.view-more-dates i {
    margin-right: 5px;
}

/* استایل برای ردیف دکمه */
.view-more-row td {
    text-align: center;
    padding: 15px 0;
    border-bottom:none;
}

/* استایل برای وقتی همه تاریخ‌ها نمایش داده شده‌اند */
.view-more-dates.all-shown {
    background-color: #f0f0f0;
    border-color: #ccc;
    color: #666;
}

.view-more-dates.all-shown i {
    transform: rotate(45deg);
}
.important-notes-container {
            background-color: #f5f5f2;
          padding:20px 0px 50px 0px;
            border-radius: 2px;
            /* margin: 20px 0; */
        }
        
        .important-notes-title {
            font-size: 28px;
            color: #333;
            margin-bottom: 25px;
            font-weight: 500;
        }
        
        .important-notes-list {
            list-style-position: outside;
            padding-left: 20px;
            counter-reset: item;
        }
        
        .important-notes-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 5px;
            line-height: 1.5;
            counter-increment: item;
        }
        
        .important-notes-list li::marker {
            content: counter(item) ". ";
            color: #333;
            font-weight: 500;
        }
        
        .highlight {
            color: #0066cc;
            font-weight: 500;
        }
        
        @media (max-width: 768px) {
            
            .price-box{
                padding: 0;
            }
            .info-list{
                max-height: 500px;
                overflow-y: auto;
            }
            .tour-info-section{
                border:none;
                box-shadow: none;
                background-color: #f9f9f9;
            }
            .trip-map{
                max-height: 270px;
                min-height: 270px;
                margin-top: 20px;
            }
            
            .important-notes-container {
                padding: 20px;
            }
            
            .important-notes-title {
                font-size: 24px;
            }
        }

  .info-container {
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            padding: 30px;
            margin-top: -50px;
            background-color: #fff;
            max-width: 900px;
            display: flex;
            align-items: flex-start;
        }
        
        .icon-wrapper {
            background-color: #f9f9f9;
            border-radius: 50%;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 25px;
            flex-shrink: 0;
        }
        
        .info-icon {
            width: 40px;
            height: 40px;
            position: relative;
        }
        
        .info-icon .document {
            width: 30px;
            height: 35px;
            border: 2px solid #666;
            border-radius: 3px;
            position: absolute;
            background-color: white;
        }
        
        .info-icon .magnifier {
            width: 20px;
            height: 20px;
            border: 2px solid #666;
            border-radius: 50%;
            position: absolute;
            bottom: 0;
            right: 0;
            background-color: white;
        }
        
        .info-icon .magnifier:after {
            content: "";
            position: absolute;
            width: 2px;
            height: 10px;
            background-color: #666;
            transform: rotate(-45deg);
            bottom: -5px;
            right: -2px;
        }
        
        .info-icon .dot {
            position: absolute;
            width: 6px;
            height: 6px;
            background-color: #e53935;
            border-radius: 50%;
            top: 5px;
            left: 5px;
        }
        
        .info-content {
            flex-grow: 1;
        }
        
        .info-title {
            font-size: 24px;
            color: #333;
           
            font-weight: 500;
        }
        
        .info-container .info-text {
            color: #555;
            margin: 15px 0px !important;
            line-height: 1.5;
        }
        
        .info-button {
            background-color: transparent;
            color: #333;
            border: 1px solid #000;
            padding: 8px 15px;
            border-radius: 3px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 15px;
        }
        
        .info-button:hover {
            background-color: #000;
            color: #fff;
        }
        
        @media (max-width: 576px) {
            .info-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 20px 15px;
            }
            
            .icon-wrapper {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }

:root {
    --blue: hsl(194.92deg 87.1% 57.45%);
    --green: hsl(94.8deg 98.04% 40%);
    --star-color: #ffc107;
    --star-inactive: #e0e0e0;
}

/* Africa Reviews Container */
.afr-rev-container {
    margin: 40px 0;
    font-family: Arial, sans-serif;
}

.afr-rev-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

/* Overall Rating Styles */
.afr-rev-overall {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.afr-rev-stars {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.afr-rev-star {
    position: relative;
    display: inline-block;
    font-size: 1.4em;
    color: var(--star-inactive);
    margin-right: 2px;
    width: 18px;
    height: 18px;
}

.afr-rev-star::before {
    content: "★";
    position: absolute;
    top: -8px;
    left: 0;
}

.afr-rev-star.active {
    color: var(--star-color);
}

.afr-rev-rating {
    font-size: 1.4em;
    font-weight: 700;
    color: #333;
    margin-right: 5px;
}

.afr-rev-count {
    font-size: 1.1em;
    color: #777;
    margin-right: 10px;
}

.afr-rev-info-icon {
    color: #999;
    cursor: pointer;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 50%; */
    transition: all 0.3s ease;
}

.afr-rev-info-icon:hover {
    color: var(--blue);
    background-color: rgba(0, 0, 0, 0.05);
}

/* Rating Filter Section */
.afr-rev-filter {
    margin-bottom: 30px;
}

.afr-rev-filter-title {
    font-size: 1.2em;
    font-weight: 700;
    color: #555;
    margin-bottom: 15px;
}

.afr-rev-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.afr-rev-tab {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    /* border-radius: 8px; */
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

.afr-rev-tab:hover {
    background-color: #f5f5f5;
}

.afr-rev-tab.active {
    background-color: #f0f0f0;
}

.afr-rev-tab-text {
    font-weight: 500;
    margin-right: 15px;
}

.afr-rev-tab-stars {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.afr-rev-tab-star {
    position: relative;
    display: inline-block;
    font-size: 1.2em;
    color: var(--star-inactive);
    margin-right: 2px;
    width: 14px;
    height: 14px;
}

.afr-rev-tab-star::before {
    content: "★";
    position: absolute;
    top: -7px;
    left: 0;
}

.afr-rev-tab-star.active {
    color: var(--star-color);
}

.afr-rev-tab-count {
    font-size: 0.9em;
    color: #777;
    margin-right: 15px;
    width: 40px;
    text-align: right;
}

.afr-rev-progress-bar {
    flex: 1;
    height: 8px;
    background-color: #eee;
    /* border-radius: 4px; */
    overflow: hidden;
}

.afr-rev-progress {
    height: 100%;
    background-color: var(--star-color);
    /* border-radius: 4px; */
}

/* Reviews Content Area */
.afr-rev-content-wrapper {
    position: relative;
    min-height: 400px;
    max-height: 600px;
    overflow-y: auto;
    /* border: 1px solid #eee; */
    /* border-radius: 8px; */
    padding: 20px;
    margin-bottom: 30px;
    background-color: #fff;
}

.afr-rev-content {
    display: none;
}

.afr-rev-content.active {
    display: block;
}

/* Review Item Styles */
.afr-rev-item {
    padding: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.afr-rev-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.afr-rev-item-stars {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.afr-rev-item-star {
    position: relative;
    display: inline-block;
    font-size: 1.2em;
    color: var(--star-inactive);
    margin-right: 2px;
    width: 14px;
    height: 14px;
}

.afr-rev-item-star::before {
    content: "★";
    position: absolute;
    top: -7px;
    left: 0;
}

.afr-rev-item-star.active {
    color: var(--star-color);
}

.afr-rev-item-tour {
    font-size: 1.1em;
    font-weight: 700;
    color: #333;
    margin: 10px 0;
    text-transform: uppercase;
}

.afr-rev-item-info {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 15px;
}

.afr-rev-item-text {
    font-size: 1em;
    line-height: 1.5;
    color: #555;
    margin-bottom: 10px;
}

.afr-rev-item-more {
    display: inline-block;
    color: var(--blue);
    font-size: 0.9em;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.afr-rev-item-more:hover {
    color: var(--green);
    text-decoration: underline;
}

.afr-rev-item-date {
    font-size: 0.8em;
    color: #999;
}

/* Scrollbar Styling */
.afr-rev-content-wrapper::-webkit-scrollbar {
    width: 8px;
}

.afr-rev-content-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* border-radius: 4px; */
}

.afr-rev-content-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    /* border-radius: 4px; */
}

.afr-rev-content-wrapper::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .afr-rev-overall {
        flex-wrap: wrap;
    }
    
    .afr-rev-content-wrapper {
        max-height: 500px;
    }
    
    .afr-rev-item {
        padding: 15px;
    }
}

@media screen and (max-width: 576px) {
      .trip-dates {
            display: flex;
        }
    .trip-details{
        flex-direction: column;
    }
 .accordion-row td:nth-child(2), .accordion-row .availability, .accordion-row .on-request {
    display: none;
 }
 .travel-dates th:nth-child(2){
    display: none;
 }
.accordion-row td{
   /* font-size: .8em !important; */
}
     .trip-info-section .section-title {
          
            font-size: 2em;
           
            width: 100% !important;
           
        }
    .itinrary-img {
        position: static;
    }
    .itinerry-section{
        flex-direction: column;
    }
     .itinrary-img{
        width: 100%;
     }
     .itinry-acordions {
    width: 100%;
}
    .itinrary-img img{
        display: none;
    }
    .why-love-section{
        flex-direction: column;
    }
    .why-love-cntnt {
    width: 100%;
}
.section-header{
    width: 100% !important;
}
.why-love-section .section-title {
    font-size: 2em;
    width: 100% !important;
}
    .page-title{
        font-size: 1.8em;
    }
    .tour-title , .price-value{
        font-size: 1.2em;
    }
    .afr-rev-title {
        font-size: 1.8em;
    }
    
    .afr-rev-tab {
        flex-wrap: wrap;
    }
    
    .afr-rev-progress-bar {
        margin-top: 5px;
        width: 100%;
    }
    
    .afr-rev-content-wrapper {
        max-height: 450px;
        padding: 10px;
    }
    
    .afr-rev-item {
        padding: 10px;
    }
}





        .afr-rev-content-wrapper {
            /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
        }
        
        .afr-rev-item-text.expanded {
            max-height: none !important;
        }
        
        .afr-rev-tab::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            width: 0;
            background-color: var(--blue);
            transition: width 0.3s ease;
        }
        
        .afr-rev-tab.active::after {
            width: 100%;
        }
 
/* Checkbox styling for rating tabs */
.afr-rev-checkbox {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--blue);
}

/* Modify tab styling to accommodate checkboxes */
.afr-rev-tab {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    /* border-radius: 8px; */
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin-bottom: 5px;
    border-left: 3px solid transparent;
}

.afr-rev-tab.active {
    background-color: rgba(var(--blue-rgb), 0.08);
    border-left-color: var(--blue);
}

/* Remove independent scrolling from content wrapper */
.afr-rev-content-wrapper {
    position: relative;
    min-height: auto;
    max-height: none;
    overflow-y: visible;
    /* border-radius: 8px; */
    padding: 20px;
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Ensure content visibility is controlled by active class only */
.afr-rev-content {
    display: none;
}

.afr-rev-content.active {
    display: block;
}

/* Remove scrollbar styling since we no longer need it */
.afr-rev-content-wrapper::-webkit-scrollbar {
    display: none;
}
@media screen and (max-width: 768px) {
    /* Adjust checkbox size on smaller screens */
    .afr-rev-checkbox {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }
    
    /* Make tabs more compact on mobile */
    .afr-rev-tab {
        padding: 8px 12px;
    }
}
 .review-question{
    background-color: #f6f4f0;
   padding: 30px;
   height: 150px;
}
.review-question p{
    font-size: 1.5em;
}
.review-question button{

}
.review-question button{
    width: 50px;
    background-color: none;
    border-radius: 8px;
 
  
}
.review-question button:hover{
    background-color: #6b6a6a !important;
    color: #fff;
}
/* Create a CSS solution for sticky filter sidebar */
.rev-tab-content {
  display: flex;
  gap: 20px;
  position: relative;
}

.afr-rev-filter {
  position: sticky;
  top: 20px; /* Adjust this value based on your header height */
  align-self: flex-start;
  max-height: calc(100vh - 40px); /* Viewport height minus margins */
  overflow-y: auto;
  width: 30%; /* Adjust as needed */
}

.afr-rev-content-wrapper {
  flex: 1;
  overflow-y: visible;
  height: auto;
}

/* Make sure the parent container has a defined height to enable proper scrolling */
#trip-reviews {
  position: relative;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .trip-info-section{
        flex-direction: column;
    }
     .afr-rev-content-wrapper {
                    max-height: 450px;
                    padding: 10px;
                    overflow-y: auto;
                }
  .rev-tab-content {
    flex-direction: column;
  }
  
  .afr-rev-filter {
    position: relative;
    top: 0;
    width: 100%;
    max-height: none;
    margin-bottom: 20px;
  }
}

 
        /* Morocco Tours Section Styles */
        .morocco-tours-section {
            padding: 40px 0;
            position: relative;
        }
        
        .section-title {
            font-size: 2.5em;
            font-weight: 600;
            color: #333;
            margin-bottom: 30px;
        }
        
        .tour-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background-color: #fff;
            height: 100%;
            min-height: 473px;
        }
        
        .tour-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }
        
        .tour-image {
            position: relative;
            height: 180px;
            overflow: hidden;
        }
        
        .tour-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .tour-card:hover .tour-image img {
            transform: scale(1.05);
        }
        
        .tour-content {
            padding: 15px;
        }
        
        .tour-meta {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .tour-duration, .tour-location {
            font-size: 0.85rem;
            color: #666;
            display: flex;
            align-items: center;
        }
        
        .tour-separator {
            margin: 0 8px;
            color: #ddd;
        }
        
        .tour-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
            min-height: 60px;
        }
        
        .tour-price {
            display: flex;
            flex-direction: column;
            border-top: 1px solid #eee;
            padding-top: 15px;
        }
        
        .price-from {
            font-size: 0.85rem;
            color: #999;
        }
        
        .price-value {
            font-size: 1.3rem;
            font-weight: 700;
            color: #333;
        }
        
        .price-date {
            font-size: 0.8rem;
            color: #999;
            margin-top: 5px;
        }
        
        .tour-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 10px;
        }
        
        .badge-comfort {
            background-color: #e8f4f8;
            color: var(--blue);
        }
        
        .badge-original {
            background-color: #f0f0f0;
            color: #555;
        }
        
        .badge-premium {
            background-color: #f5f5dc;
            color: #8b7d39;
        }
        
        /* Carousel Navigation */
        .owl-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            z-index: 2;
            transition: all 0.3s ease;
        }
        
        .owl-nav-btn:hover {
            background-color: var(--blue);
            color: white;
        }
        
        .owl-prev {
            left: -20px;
        }
        
        .owl-next {
            right: -20px;
        }
       
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2em;
            }
        }
        
        @media (max-width: 768px) {
           
            
            .tour-title {
                font-size: 1.1rem;
            }
            
            .owl-nav-btn {
                width: 35px;
                height: 35px;
            }
        }
        
        @media (max-width: 576px) {
            .tour-title{
                min-height:auto;
            }
             .morocco-tours-section .tours-next{
            right:10px !important;
        }
        .morocco-tours-section .tours-prev{
            left:10px !important;
        }
            .year-tab, .month-tab {
                flex:1;
            }
            .section-title {
                font-size: 1.8em;
            }
            
           
            
            .owl-nav-btn {
                width: 30px;
                height: 30px;
            }
        }