.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.tour-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #eee;
}

.tour-card:hover { transform: translateY(-5px); }

.tour-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tour-tag {
    position: absolute;
    top: 15px; left: 15px;
    background: #002e63;
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    border-radius: 5px;
    text-transform: uppercase;
}

.tour-info { padding: 20px; }

.tour-info h3 { margin: 0 0 10px; font-size: 18px; color: #002e63; }

.tour-info p { font-size: 13px; color: #666; line-height: 1.5; margin-bottom: 20px; }

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.tour-price { font-weight: 700; color: #e67e22; font-size: 15px; }

.tour-btn {
    background: #002e63;
    color: #fff;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    transition: 0.3s;
}

.tour-btn:hover { background: #0056b3; }

@media (max-width: 600px) {
    .tour-grid { grid-template-columns: 1fr; }
}

/* --- 3-Column Gallery Grid --- */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.tour-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.tour-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tour-tag {
    position: absolute;
    top: 10px; left: 10px;
    background: #002e63;
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 4px;
}

.tour-info { padding: 15px; }
.tour-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; }
.tour-price { color: #e67e22; font-weight: 700; }
.tour-btn { background: #002e63; color: #fff; padding: 6px 15px; border-radius: 4px; text-decoration: none; }

/* --- Single Page View Styles --- */
.tour-single-hero {
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.tour-single-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 46, 99, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.tour-single-overlay h1 { color: #fff;} 

.tour-single-container {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.tour-main-column { flex: 2; }
.tour-sidebar-column { flex: 1; position: sticky; top: 100px; }

.tour-card-box {
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.tour-card-box h3 {
    margin-top: 0.5em;
}

.tour-booking-widget {
    background: #002e63;
    color: #fff;
    padding: 20px;
    border-radius: 12px;
}

.tour-booking-widget h4 { color: #fff; margin-top: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }

.tour-meta-item { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 14px; }
.price-amt { color: #e67e22; font-size: 18px; }

.tour-book-btn {
    display: block;
    text-align: center;
    background: #e67e22;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 15px;
}

/* --- Extended Mobile Responsive (Compact) --- */
@media (max-width: 768px) {
    /* 1. Layout Adjustments */
    .tour-single-container { 
        flex-direction: column; 
        gap: 15px; /* Tighter gap for mobile */
        margin-top: 15px; 
    }

    .tour-main-column, 
    .tour-sidebar-column { 
        width: 100% !important; 
        position: static; 
    }

    /* 2. Compact Hero Section */
    .tour-single-hero { 
        height: 220px; /* More compact height */
        border-radius: 0; /* Full width look on mobile */
        margin-bottom: 15px; 
    }

    .tour-single-overlay h1 { 
        font-size: 1.8rem !important; /* Smaller, punchier title */
        padding: 0 15px;
    }

    /* 3. Content Area Tweaks */
    .tour-card-box { 
        padding: 15px; 
        border-radius: 8px; 
    }

    .tour-card-box h3 { 
        font-size: 1.2rem; 
        margin-bottom: 10px; 
    }

    /* 4. Sidebar Widget (Action Card Style) */
    .tour-booking-widget { 
        padding: 15px; 
        border-radius: 10px; 
        margin-top: 10px;
    }

    .tour-booking-widget h4 { 
        font-size: 1rem; 
        padding-bottom: 8px; 
    }

    .tour-meta-item { 
        font-size: 13px; 
        margin-bottom: 8px; 
    }

    .price-amt { 
        font-size: 1.1rem; 
    }

    /* 5. Compact Button */
    .tour-book-btn { 
        padding: 10px; 
        font-size: 14px; 
        margin-top: 10px; 
        border-radius: 6px; 
    }

    /* 6. Typography Clean-up */
    .tour-main-column p {
        font-size: 14px;
        line-height: 1.5;
    }
}
