/* Popular One Day Tours Section */

.section-tours {
    background-color: #ffffff;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: 0;
    padding: 60px 0;
}

.tour-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Image Gallery Slider */
.tour-gallery {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f5f5f5;
}

.tour-gallery-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.tour-gallery-slide {
    min-width: 100%;
    height: 100%;
}

.tour-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Navigation Dots */
.tour-gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.tour-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.tour-gallery-dot.active {
    background: #ffb800;
    width: 24px;
    border-radius: 4px;
    border-color: #ffb800;
}

/* Tour Badge */
.tour-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ffb800 0%, #ffa500 100%);
    color: #0E0E0E;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 184, 0, 0.4);
    z-index: 2;
}

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

.tour-title {
    font-size: 20px;
    font-weight: 700;
    color: #0E0E0E;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.tour-subtitle {
    font-size: 13px;
    color: #ffb800;
    font-weight: 600;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tour Stops */
.tour-stops {
    margin-bottom: 16px;
}

.tour-stops-label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-stops-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tour-stop {
    background: #f8f9fa;
    color: #0E0E0E;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.tour-stop:hover {
    background: rgba(255, 184, 0, 0.1);
    border-color: #ffb800;
    color: #0E0E0E;
}

/* Tour Info */
.tour-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.tour-info-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tour-distance {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-distance svg {
    width: 14px;
    height: 14px;
    fill: #ffb800;
}

.tour-price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tour-price-gel {
    font-size: 22px;
    font-weight: 700;
    color: #0E0E0E;
    line-height: 1;
}

.tour-price-label {
    font-size: 11px;
    color: #999;
    font-weight: 500;
    margin-right: 4px;
}

.tour-price-usd {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    line-height: 1;
}

/* Tour Book Button */
.tour-book-btn {
    background: #d4a037;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(212, 160, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #d4a037;
}

.tour-book-btn:hover {
    transform: translateY(-2px);
    background: #b8860b;
    border-color: #b8860b;
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.5);
    color: #ffffff;
}

.tour-book-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Responsive */
@media (max-width: 991px) {
    .tour-gallery {
        height: 200px;
    }

    .tour-title {
        font-size: 18px;
    }

    .tour-content {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .section-tours {
        padding: 40px 0;
    }

    .tour-gallery {
        height: 180px;
    }

    .tour-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .tour-content {
        padding: 18px;
    }

    .tour-stop {
        font-size: 11px;
        padding: 3px 8px;
    }

    .tour-price-gel {
        font-size: 20px;
    }

    .tour-price-usd {
        font-size: 12px;
    }

    .tour-book-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-card.wow {
    animation: slideIn 0.6s ease-out;
}
