/* Custom Tour Details Styling */

/* Modern List Styling for Accordion Body */
.accordion-body h6 {
    color: #1CA8CB;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 0;
}

.accordion-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.accordion-body ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #666;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.accordion-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #1CA8CB 0%, #FFA31A 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.accordion-body ul li:hover {
    color: #333;
    padding-left: 2.2rem;
}

.accordion-body ul li:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(28, 168, 203, 0.4);
}

/* Strong text styling */
.accordion-body strong,
.accordion-body b {
    color: #1CA8CB;
    font-weight: 600;
}

/* Paragraph spacing */
.accordion-body p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.accordion-body p strong {
    color: #333;
}

/* Section headings inside accordion */
.accordion-body h6.mt-3 {
    margin-top: 1.5rem !important;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.accordion-body h6:first-child {
    margin-top: 0 !important;
    padding-top: 0;
    border-top: none;
}

/* Alternative modern bullet style - checkmarks */
.accordion-body ul.checkmark-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #1CA8CB 0%, #0E97B8 100%);
    border-radius: 3px;
    color: white;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    font-weight: bold;
}

/* Alternative modern bullet style - arrows */
.accordion-body ul.arrow-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    color: #1CA8CB;
    font-size: 16px;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .accordion-body ul li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }

    .accordion-body h6 {
        font-size: 1rem;
    }
}

/* ======================================
   Modern Tour Image Carousel Styling
   ====================================== */

.tour-image-carousel {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Main Carousel Container */
.tour-carousel-main {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
}

.tour-carousel-main .swiper-slide {
    height: 500px;
}

.tour-carousel-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-carousel-main .swiper-slide:hover img {
    transform: scale(1.05);
}

/* Thumbnail Carousel */
.tour-carousel-thumbs {
    margin-top: 15px;
    padding: 0 5px;
}

.tour-carousel-thumbs .swiper-slide {
    height: 100px;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.tour-carousel-thumbs .swiper-slide:hover {
    opacity: 0.8;
}

.tour-carousel-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #1CA8CB;
    box-shadow: 0 5px 15px rgba(28, 168, 203, 0.3);
}

.tour-carousel-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Buttons */
.tour-carousel-button-prev,
.tour-carousel-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tour-carousel-button-prev:hover,
.tour-carousel-button-next:hover {
    background: #1CA8CB;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.tour-carousel-button-prev {
    left: 20px;
}

.tour-carousel-button-next {
    right: 20px;
}

.tour-carousel-button-prev i,
.tour-carousel-button-next i {
    font-size: 18px;
    color: #333;
}

.tour-carousel-button-prev:hover i,
.tour-carousel-button-next:hover i {
    color: white;
}

/* Pagination Dots */
.tour-carousel-pagination {
    bottom: 20px !important;
}

.tour-carousel-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
    transition: all 0.3s ease;
}

.tour-carousel-pagination .swiper-pagination-bullet-active {
    background: #1CA8CB;
    width: 30px;
    border-radius: 6px;
}

/* Image Counter Badge */
.tour-image-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
    backdrop-filter: blur(10px);
}

/* Fullscreen Button */
.tour-fullscreen-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tour-fullscreen-btn:hover {
    background: #1CA8CB;
    transform: scale(1.1);
}

.tour-fullscreen-btn i {
    font-size: 16px;
    color: #333;
}

.tour-fullscreen-btn:hover i {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tour-carousel-main {
        height: 300px;
    }

    .tour-carousel-main .swiper-slide {
        height: 300px;
    }

    .tour-carousel-thumbs .swiper-slide {
        height: 70px;
    }

    .tour-carousel-button-prev,
    .tour-carousel-button-next {
        width: 40px;
        height: 40px;
    }

    .tour-carousel-button-prev {
        left: 10px;
    }

    .tour-carousel-button-next {
        right: 10px;
    }

    .tour-image-counter {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ======================================
   Related Tours Carousel (Sidebar)
   ====================================== */

.related-tours-widget {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.related-tours-widget .widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.related-tours-widget .widget-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #1CA8CB 0%, #FFA31A 100%);
}

.related-tours-carousel {
    position: relative;
    padding: 0;
    padding-bottom: 40px;
}

.related-tours-carousel .destination-card-items {
    margin-bottom: 0;
}

/* Compact version for sidebar */
.related-tours-carousel .destination-content h5 {
    font-size: 1rem;
    line-height: 1.4;
    margin: 12px 0;
    min-height: 42px;
}

.related-tours-carousel .destination-content h5 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-tours-carousel .destination-content .meta {
    font-size: 0.85rem;
}

.related-tours-carousel .destination-content .info {
    font-size: 0.85rem;
}

.related-tours-carousel .destination-content .info li {
    padding: 6px 0;
}

.related-tours-carousel .destination-content .price h6 {
    font-size: 1.1rem;
}

.related-tours-carousel .destination-content .price .theme-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
}

/* Pagination Dots for Related Tours */
.related-tours-pagination {
    position: relative !important;
    bottom: 0 !important;
    text-align: center;
    margin-top: 20px;
}

.related-tours-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d1d1;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.related-tours-pagination .swiper-pagination-bullet:hover {
    background: #1CA8CB;
    transform: scale(1.2);
}

.related-tours-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #1CA8CB 0%, #FFA31A 100%);
    width: 24px;
    border-radius: 5px;
}

/* Responsive adjustments for related tours */
@media (max-width: 768px) {
    .related-tours-widget {
        padding: 20px 15px;
    }

    .related-tours-carousel {
        padding: 0;
        padding-bottom: 35px;
    }

    .related-tours-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }

    .related-tours-pagination .swiper-pagination-bullet-active {
        width: 20px;
    }
}

/* ======================================
   Inclusions & Exclusions Card Style
   ====================================== */

.inclusion-exclusion-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.inclusion-exclusion-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.inclusion-exclusion-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.inclusion-exclusion-card .card-header::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
}

.inclusion-card .card-header::after {
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}

.exclusion-card .card-header::after {
    background: linear-gradient(90deg, #dc3545 0%, #fd7e14 100%);
}

.inclusion-exclusion-card .card-header .icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
}

.inclusion-card .card-header .icon {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.exclusion-card .card-header .icon {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    color: white;
}

.inclusion-exclusion-card .card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.inclusion-exclusion-card .list-unstyled {
    margin-bottom: 0;
}

.inclusion-exclusion-card .list-unstyled li {
    padding: 12px 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: start;
    line-height: 1.6;
}

.inclusion-exclusion-card .list-unstyled li:hover {
    background: #e9ecef;
    padding-left: 20px;
}

.inclusion-card .list-unstyled li:hover {
    background: rgba(40, 167, 69, 0.05);
    border-left: 3px solid #28a745;
}

.exclusion-card .list-unstyled li:hover {
    background: rgba(220, 53, 69, 0.05);
    border-left: 3px solid #dc3545;
}

.inclusion-exclusion-card .list-unstyled li i {
    margin-right: 12px;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.inclusion-card .list-unstyled li i {
    color: #28a745;
}

.exclusion-card .list-unstyled li i {
    color: #dc3545;
}

/* Responsive adjustments for inclusion/exclusion cards */
@media (max-width: 768px) {
    .inclusion-exclusion-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .inclusion-exclusion-card .card-header h3 {
        font-size: 1.2rem;
    }

    .inclusion-exclusion-card .card-header .icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-right: 12px;
    }

    .inclusion-exclusion-card .list-unstyled li {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}
