 /* Tour Grid Section Styles */
    .tour-grid-section {
        padding: 20px 0;
        background-color: #f8f9fa;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section-title {
        text-align: center;
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .tour-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .tour-box {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
    }

    .tour-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .tour-image {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

    .tour-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .tour-box:hover .tour-image img {
        transform: scale(1.05);
    }

    .price-tag {
        position: absolute;
        top: 15px;
        right: 15px;
        background: linear-gradient(135deg, #ff6b6b, #ffa726);
        color: white;
        padding: 8px 16px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 1.1rem;
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    }

    .tour-content {
        padding: 25px;
    }

    .tour-content h2 {
        font-size: 1.4rem;
        color: #333;
        margin: 0 0 20px 0;
        font-weight: 600;
     
    }

    .inclusions {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
    }

    .inclusions li {
        padding: 6px 0;
        color: #666;
        position: relative;
        padding-left: 25px;
        font-size: 0.95rem;
    }

    .inclusions li:before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #28a745;
        font-weight: bold;
        font-size: 1rem;
    }

    .tour-buttons {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .btn-view-more, .btn-book-now {
        flex: 1;
        text-align: center;
        padding: 12px 20px;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 500;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 0.9rem;
    }

    .btn-view-more {
        background-color: #f8f9fa;
        color: #333;
        border: 2px solid #e9ecef;
    }

    .btn-view-more:hover {
        background-color: #e9ecef;
        border-color: #dee2e6;
    }

    .btn-book-now {
        background: linear-gradient(135deg, #ff6b6b, #ffa726);
        color: white;
        border: 2px solid transparent;
    }

    .btn-book-now:hover {
        color: white;
        background: linear-gradient(135deg, #ff5252, #ff9800);
        transform: translateY(-1px);
    }

    /* Responsive Tour Grid */
    @media (max-width: 768px) {
        .tour-grid-section {
            padding: 10px 0;
        }

        .section-title {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .tour-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .tour-box {
            margin: 0 10px;
        }

        .tour-content {
            padding: 20px 5px;
        }

        .tour-buttons {
            flex-direction: column;
        }

        .btn-view-more, .btn-book-now {
            flex: none;
        }
    }

    @media (max-width: 480px) {
        .section-title {
            font-size: 1.3rem;
        }

        .tour-content h2 {
            font-size: 1.2rem;
         
        }

        .price-tag {
            font-size: 1rem;
            padding: 6px 12px;
        }

        .container {
            padding: 0;
        }
    }