/* Extracted from inline <style> blocks */
/* Modern Tour Card Styles */
    .modern-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;
        border: 1px solid #f0f0f0;
    }
    
    .modern-tour-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
    
    .tour-image-container {
        position: relative;
        height: 220px;
        overflow: hidden;
    }
    
    .tour-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }
    
    .modern-tour-card:hover .tour-image {
        transform: scale(1.08);
    }
    
    .tour-badges {
        position: absolute;
        top: 16px;
        left: 16px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .badge-duration {
        background: rgba(0, 0, 0, 0.8);
        color: white;
        font-size: 12px;
        font-weight: 600;
        padding: 6px 12px;
        border-radius: 6px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .badge-location {
        background: rgba(0, 0, 0, 0.7);
        color: white;
        font-size: 11px;
        font-weight: 500;
        padding: 4px 8px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    
    .badge-location i {
        font-size: 10px;
    }
    
    .tour-card-content {
        padding: 24px;
    }
    
    .tour-card-title {
        font-size: 20px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 16px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .tour-route {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    
    .route-item {
        font-size: 11px;
        font-weight: 600;
        color: #8a8a8a;
        letter-spacing: 0.5px;
    }
    
    .route-arrow {
        color: #d0d0d0;
        font-size: 10px;
    }
    
    .tour-price-section {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 16px;
    }
    
    .price-info {
        flex: 1;
    }
    
    .price-label {
        display: block;
        font-size: 11px;
        color: #8a8a8a;
        font-weight: 500;
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .price-amount {
        margin-bottom: 4px;
    }
    
    .current-price {
        font-size: 28px;
        font-weight: 700;
        color: #2c5f2d;
        line-height: 1;
    }
    
    .price-unit {
        font-size: 10px;
        color: #8a8a8a;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .book-trip-btn {
        background: linear-gradient(135deg, #6cb142 0%, #5ba037 100%);
        color: white;
        padding: 12px 20px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(108, 177, 66, 0.3);
        position: relative;
        overflow: hidden;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        min-width: 120px;
        justify-content: center;
    }
    
    .book-trip-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(108, 177, 66, 0.4);
        color: white;
        text-decoration: none;
    }
    
    .book-trip-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.6s ease;
    }
    
    .book-trip-btn:hover::before {
        left: 100%;
    }
    
    .btn-arrow {
        transition: transform 0.3s ease;
        display: flex;
        align-items: center;
    }
    
    .book-trip-btn:hover .btn-arrow {
        transform: translateX(4px);
    }
    
    .btn-text {
        position: relative;
        z-index: 2;
    }
    
    /* Animation keyframes */
    @keyframes pulse {
        0% { box-shadow: 0 4px 15px rgba(108, 177, 66, 0.3); }
        50% { box-shadow: 0 4px 25px rgba(108, 177, 66, 0.5); }
        100% { box-shadow: 0 4px 15px rgba(108, 177, 66, 0.3); }
    }
    
    .book-trip-btn:hover {
        animation: pulse 2s infinite;
    }
    
    /* Legacy styles for compatibility */
    .tour-card {
        border: 1px solid #e9ecef;
        border-radius: 12px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: #fff;
    }
    
    .tour-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    
    .tour-thumb {
        position: relative;
        overflow: hidden;
        height: 200px;
    }
    
    .tour-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .tour-card:hover .tour-thumb img {
        transform: scale(1.05);
    }
    
    .tour-price {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #6C2EB9;
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 14px;
    }
    
    .tour-meta {
        display: flex;
        gap: 15px;
        font-size: 13px;
        color: #666;
    }
    
    .tour-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .tour-title {
        margin: 15px 0 10px 0;
        font-size: 18px;
        line-height: 1.4;
    }
    
    .tour-title a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .tour-title a:hover {
        color: #6C2EB9;
    }
    
    .tour-description {
        color: #666;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 0;
    }
    
    .tour-rating {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 14px;
    }
    
    .tour-rating .bi-star-fill {
        color: #ffc107;
    }
    
    .tour-rating .bi-star {
        color: #e9ecef;
    }
    
    .rating-count {
        color: #666;
        font-size: 12px;
        margin-left: 5px;
    }
    
    .section-title h3 {
        color: #333;
        margin-bottom: 10px;
    }
    
    .section-title p {
        color: #666;
        margin-bottom: 0;
    }
    
    .no-tours-found {
        background: #f8f9fa;
        border-radius: 12px;
        border: 1px dashed #dee2e6;
    }
    
    .no-tours-found h4 {
        color: #666;
        margin-bottom: 10px;
    }
    
    .no-tours-found p {
        color: #888;
        margin-bottom: 0;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .tour-route {
            font-size: 10px;
        }
        
        .current-price {
            font-size: 24px;
        }
        
        .book-trip-btn {
            padding: 10px 16px;
            font-size: 12px;
            min-width: 100px;
        }
        
        .tour-card-content {
            padding: 20px;
        }
    }
