/* Tour Cards Wrapper */
.tour-cards-wrapper {
    position: relative;
   
}

/* Tour Cards Container */


/* Individual Tour Card */
.tour-card {
    background: white;
    border-radius: 12px;
    padding: 0;
    max-width: 500px;
    width: 100%;
    margin: 0 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Tour Image */
.tour-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    border-radius: 12px 12px 0 0;
}

.tour-image img {
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

/* Trending Badge */
.trending-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #EA6B1F;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;  
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trending-icon {
    width: 16px;
    height: 16px;
    fill: white;
}

/* Tour Content */
.tour-content {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Tour Header */
.tour-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px !important;
}

.tour-category {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #EA6B1F;
    font-size: 14px;
    font-weight: 500;
}

.tour-icon {
    width: 16px;
    height: 16px;
    fill: #EA6B1F;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-badge {
    background-color: #ffd700;
    color: #000;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    min-width: 32px;
    text-align: center;
}

.review-text {
    color: #666;
    font-size: 14px;
    white-space: nowrap;
}

/* Tour Title */
.tour-title {
    margin-top: 0px;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px !important;
    line-height: 1.2;
  
   
   
}

}

/* Location Info */
.location-info {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 5px !important;
    color: #666;
    font-size: 16px;
    min-height: 48px; /* 2 lines ka space - sabse bade address ke liye */
}

.location-info span {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Maximum 2 lines dikhega */
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    flex: 1;
}

.location-icon {
    width: 16px;
    height: 16px;
    fill: #666;
    flex-shrink: 0; /* Icon hamesha same size rahega */
    margin-top: 2px;
}

/* Pricing Section */
.pricing-section {
    display: flex;
    margin-bottom: 5px!important;
}

.price-label {
    color: #666;
    font-size: 16px;
    align-items: center;
    margin-bottom: 8px;
    display: block;
}



.price-container {
    display: inline-block;
    gap:0px !important;
}

.current-price {
    color: #e63946;   /* red color for discount price */
    font-weight: 700;
    font-size: 18px;
    margin-right: 6px;
}

.original-price {
    color: #999;
    font-size: 15px;
    text-decoration: line-through;
}


/* Tour Details */
.tour-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 16px;
}

.detail-icon {
    width: 16px;
    height: 16px;
    fill: #666;
}
/* Desktop: show full text */
.duration-full {
  display: inline;
}
.duration-short {
  display: none;
}

/* Mobile view (below 768px): show short format */
@media (max-width: 768px) {
  .duration-full {
    display: none;
  }
  .duration-short {
    display: inline;
  }
}

/* Tour Action */
.tour-action {
    margin-left: auto;
}

.book-now-btn {
    display: inline-block;
    background: #EA6B1F;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.tour-cards-container {
    padding:10px;
}
.book-now-btn:hover {
    background: #0168A4;
    color: #ffffff;
}

/* Slick Carousel Custom Styles */
.tour-cards-container.slick-slider {
    margin-bottom: 30px;
}

.tour-cards-container .slick-dots {
   
    text-align: center;
}

.tour-cards-container .slick-dots li button:before {
    color: #EA6B1F;
    font-size: 12px;
}

.tour-cards-container .slick-dots li.slick-active button:before {
    color: #0168A4;
}

.tour-cards-container .slick-prev,
.tour-cards-container .slick-next {
    display: flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #B2767E;
  border: none;
  background: #EA6B1F;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(5px);
  user-select: none;
}

.tour-cards-container .slick-prev:hover,
.tour-cards-container .slick-next:hover {
    background: #0168A4;
}

.tour-cards-container .slick-prev {
    left: -50px;
}

.tour-cards-container .slick-next {
    right: -50px;
}

.tour-cards-container .slick-prev:before,
.tour-cards-container .slick-next:before {
    color: white;
    font-size: 18px;
    line-height: 40px;
}
.slick-dots [type=button]:focus,
.slick-dots [type=button]:hover,
.slick-dots [type=submit]:focus,
.slick-dots [type=submit]:hover,
.slick-dots button:focus,
.slick-dots button:hover {
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}
.slick-prev.slick-arrow:focus,
.slick-prev.slick-arrow:active,
.slick-next.slick-arrow:focus,
.slick-next.slick-arrow:active {
    background:#0168A4  !important;
}
/* Mobile Responsive */
@media (max-width: 1024px) {
    .tour-cards-container .slick-prev {
        left: -30px;
    }
    
    .tour-cards-container .slick-next {
        right: -30px;
    }
}
/* Mobile Tour Cards - Professional Grid Template Layout */
@media (max-width: 768px) {
    .tour-cards-container {
        padding: 10px;
        gap: 10px;
    }
    
    .tour-card {
        background: white;
        border-radius: 8px;
        margin: 0 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        max-width: none;
        width: calc(50% - 6px);
        min-height: auto;
    }
    
    /* Image */
    .tour-image {
        height: 140px;
        border-radius: 8px 8px 0 0;
    }
    
    .tour-image img {
        width: 100%;
        height: 150px !important;
        object-fit: cover;
    }
    
    /* Trending Badge */
    .trending-badge {
        position: absolute;
        top: 8px;
        right: 8px;
        background: #EA6B1F;
        color: white;
        padding: 3px 10px;
        border-radius: 8px;
        font-size: 10px;
        font-weight: 600;
        gap: 4px;
    }
    
    .trending-badge svg {
        width: 14px;
        height: 14px;
    }
    
    /* Content */
    .tour-content {
        padding: 5px;
    }
    
    /* Header */
    .tour-header {
        margin-bottom: 5px!important;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
    }
    
    .tour-category {
        font-size: 13px!important;
        gap: 4px;
    }
    
    .tour-icon {
        width: 12px;
        height: 12px;
    }
    
    .rating-badge {
        background: #ffd700;
        color: white;
        padding: 1px 2px !important;
        border-radius: 6px;
        font-size: 11px;
        font-weight: 600;
        min-width: 28px;
        text-align: center;
    }
    
    .review-text {
        font-size: 11px;
        color: #666;
        margin-left: 4px;
    }
    
    /* Title */
    .tour-title {
        font-size: 13px!important;
        font-weight: 700;
        color: #333;
        margin: 0 0 5px 0;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* Location */
    .location-info {
        display: flex;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 5px;
        color: #666;
        font-size: 12px;
        min-height: 36px; /* Mobile pe 2 lines ka space */
    }

    .location-info span {
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Maximum 2 lines dikhega */
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.5;
        flex: 1;
    }

    /* Icon styling */
    .location-icon {
        width: 14px;
        height: 14px;
        fill: #EA6B1F;
        flex-shrink: 0;
        margin-top: 2px;
    }
    
    /* Pricing */
    .pricing-section {
        margin-bottom: 5px!important;
    }
    
    .price-label {
        font-size: 8px !important;
        margin-bottom: 4px;
        display: block !important;
    }
    
    .current-price {
        color: #EA6B1F;
        font-size: 11px !important;
        font-weight: 700;
    }
    
    .original-price {
        color: #999;
        font-size: 11px!important;
        text-decoration: line-through;
        margin-left: 6px;
    }
    
    /* Tour Details - Wrap Layout */
    .tour-details {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
    }
    
    /* Detail Items - Side by Side */
    .detail-item {
        display: flex;
        align-items: center;
        gap: 3px!important;
        color: #666;
        font-size: 9px;
        font-weight: 500;
        width: calc(50% - 4px);
    }
    
    .detail-icon {
        width: 12px;
        height: 12px;
        fill: #666;
        flex-shrink: 0;
    }
    
    .detail-item span {
        font-size: 9px;
       

    }
    
    /* Full Width Button on New Row */
    .tour-action {
        width: 100%;
        margin-left: 0;
        margin-top: 4px;
    }
    

   
    
   
}

/* Slick Carousel Mobile Settings */
@media (max-width: 768px) {
    .tour-cards-container .slick-list {
        margin: 0 -6px;
    }
    
    .tour-cards-container .slick-slide {
        padding: 0px;
    }
    
    .tour-cards-container .slick-dots {
        bottom: -30px;
    }
    
    .tour-cards-container .slick-dots li button:before {
        color: #EA6B1F;
        font-size: 10px;
    }
    
    .tour-cards-container .slick-dots li.slick-active button:before {
        color: #333;
    }
    
    /* Hide arrows on mobile */
    .tour-cards-container .slick-prev,
    .tour-cards-container .slick-next {
        display: none !important;
    }
}

/* Fix for slick carousel focus outline */
.tour-cards-container .slick-slide:focus {
    outline: none;
}

.tour-cards-container .slick-list {
    margin: 0 -10px;
}

.tour-cards-container .slick-track {
    display: flex;
    padding-bottom:10px;
    align-items: stretch;
}

.tour-cards-container .slick-slide {
    display: flex !important;
    height: auto;
}

.tour-cards-container .slick-slide > div {
    width: 100%;
    height: 100%;
}

/* Ensure all cards have the same height */
.tour-cards-container .tour-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-cards-container .tour-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-cards-container .tour-details {
    margin-top: 0px;
}