/* Tour Show Page Styles */
.tour-detail-page {
    padding: 20px 0;
}

/* Gallery Styles */
.tour-gallery {
    margin-bottom: 30px;
}

.main-gallery {
    height: 400px;
    margin-bottom: 10px;
    border-radius: 12px;
    overflow: hidden;
}

.main-gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-gallery {
    height: 100px;
}

.thumbnail-gallery .swiper-slide {
    opacity: 0.4;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

.thumbnail-gallery .swiper-slide-thumb-active {
    opacity: 1;
}

.thumbnail-gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tour Info Card */
.tour-info-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.tour-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.3;
}

.tour-meta {
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #4a5568;
}

.meta-item i {
    margin-left: 10px;
    color: #4299e1;
    width: 20px;
}

/* Price Section */
.price-section {
    background: #f7fafc;
    border-radius: 8px;
    text-align: center;
}

.main-price {
    font-size: 20px;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 10px;
}

.secondary-price {
    font-size: 18px;
    color: #718096;
}

.price-on-call {
    color: #e53e3e;
    font-size: 18px;
    font-weight: 600;
}

/* Date Section */
.date-section {
    margin: 20px 0;
}

.date-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.date-item:last-child {
    border-bottom: none;
}

.date-item .label {
    color: #718096;
}

.date-item .value {
    font-weight: 600;
    color: #2d3748;
}

/* Action Buttons */
.action-buttons {
    margin: 25px 0;
}

.btn-book {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-inquiry {
    width: 100%;
    padding: 12px;
    font-size: 16px;
}

/* Quick Info */
.quick-info {
    margin-top: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #38a169;
    font-weight: 500;
}

.info-item i {
    margin-left: 10px;
}

/* Tab Styles */
.tour-tabs-section {
    margin: 50px 0;
}

.tour-tabs .nav-tabs {
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 30px;
}

.tour-tabs .nav-link {
    border: none;
    color: #718096;
    font-weight: 600;
    padding: 15px 25px;
    border-radius: 8px 8px 0 0;
    margin-right: 5px;
}

.tour-tabs .nav-link.active {
    color: #4299e1;
    background: white;
    border-bottom: 3px solid #4299e1;
}

.tour-tabs .nav-link i {
    margin-left: 8px;
}

/* Itinerary Styles */
.itinerary-container {
    max-width: 100%;
    margin-top:15px;
}

.itinerary-day {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.day-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.day-header h4 {
    color: #2d3748;
    margin-bottom: 5px;
}

.day-title {
    color: #4299e1;
    font-weight: 600;
}

.day-content {
    color: #4a5568;
    line-height: 1.6;
}

.day-details {
    margin-top: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    background: #f7fafc;
    border-radius: 8px;
}

.detail-item i {
    margin-left: 10px;
    color: #4299e1;
}

/* Hotel Styles */
.hotels-container {
    max-width: 100%;
}

.hotel-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.hotel-stars {
    color: #fbbf24;
}

.hotel-details {
    margin-bottom: 20px;
}

.hotel-amenities {
    margin: 20px 0;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.amenity-badge {
    background: #ebf8ff;
    color: #3182ce;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
}

/* Services Styles */
.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.services-list i {
    margin-left: 10px;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #4299e1;
}

.service-item i {
    margin-left: 10px;
    color: #4299e1;
    font-size: 20px;
}

/* Documents Styles */
.documents-container {
    max-width: 100%;
}

.document-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.document-icon {
    font-size: 32px;
    margin-left: 20px;
}

.document-info {
    flex: 1;
}

.document-info h5 {
    color: #2d3748;
    margin-bottom: 5px;
}

.document-desc {
    color: #718096;
    margin: 0;
}

/* Related Tours */
.related-tours {
    background: #f7fafc;
    padding: 50px 0;
    margin-top: 50px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: #2d3748;
    margin-bottom: 10px;
}

.section-header p {
    color: #718096;
}

.related-tour-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.related-tour-card:hover {
    transform: translateY(-5px);
}

.related-tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-info {
    padding: 20px;
}

.tour-info h5 {
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 600;
}

.tour-meta {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    color: #718096;
    font-size: 14px;
    flex-direction: column;
}

.tour-price {
    color: #e53e3e;
    font-weight: 700;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tour-title {
        font-size: 20px;
    }
    
    .main-gallery {
        height: 300px;
    }
    
    .thumbnail-gallery {
        height: 80px;
    }
    
    .tour-info-card {
        position: static;
        margin-top: 20px;
    }
    
    .document-card {
        flex-direction: column;
        text-align: center;
    }
    
    .document-icon {
        margin: 0 0 15px 0;
    }
    
    .hotel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-info-card,
.itinerary-day,
.hotel-card,
.document-card {
    animation: fadeIn 0.6s ease;
}




.daily-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.daily-detail-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #4299e1;
    transition: transform 0.2s;
}

.daily-detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.daily-detail-card h6 {
    color: #2c5282;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

/* برای نمایش ریسپانسیو در دستگاه‌های کوچک */
@media (max-width: 768px) {
    .daily-details-grid {
        grid-template-columns: 1fr;
    }
}