/* ===========================
   TOUR INFO CARDS
=========================== */

.tour-info-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));

    gap: 16px;

    margin-top: 30px;
}

.info-card{
    display: flex;
    align-items: center;
    gap: 15px;

    background: white;

    border: 1px solid #e2e8f0;

    border-radius: 16px;

    padding: 18px;

    transition: .3s;
}

.info-card:hover{
    transform: translateY(-3px);

    box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

.info-card i{
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #eff6ff;

    color: #2563eb;

    font-size: 18px;
}

.info-card span{
    font-weight: 600;
    color: #0f172a;
}

.difficulty-badge {
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

.difficulty-badge.easy {
    background: #e8f7ec;
    color: #198754;
}

.difficulty-badge.moderate {
    background: #fff7e0;
    color: #b8860b;
}

.difficulty-badge.hard {
    background: #fdeaea;
    color: #dc3545;
}