/* Tur Kategorileri Butonları Stilleri */
.tour-categories-buttons {
    margin-top: 2rem;
}

.tour-category-btn {
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.tour-category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-decoration: none;
}

.tour-category-btn i {
    font-size: 20px;
    margin-right: 10px;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .tour-category-btn {
        font-size: 14px;
        padding: 12px 20px;
        min-height: 50px;
    }
    
    .tour-category-btn i {
        font-size: 18px;
        margin-right: 8px;
    }
}

@media (max-width: 576px) {
    .tour-categories-buttons .col-md-6 {
        margin-bottom: 15px;
    }
    
    .tour-category-btn {
        font-size: 13px;
        padding: 10px 15px;
        min-height: 45px;
    }
}